/* Gaudin LLC - site stylesheet. No inline styles anywhere (CSP style-src 'self'); hover only under (hover: hover). */

@font-face { font-family: "Sora"; font-weight: 600; font-display: swap; src: url("../fonts/sora-600.woff2") format("woff2"); }
@font-face { font-family: "Sora"; font-weight: 700; font-display: swap; src: url("../fonts/sora-700.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-weight: 200 800; font-display: swap; src: url("../fonts/manrope-var.woff2") format("woff2"); }

:root {
  --ink: #0b0d14;
  --ink-2: #2b3040;
  --muted: #5b6275;
  --muted-2: #8a90a2;
  --line: #e6e7ee;
  --paper: #fbfbfd;
  --card: #ffffff;
  --night: #0a0c14;
  --night-2: #121526;
  --night-line: rgba(255, 255, 255, 0.09);
  --blue: #3d5afe;
  --violet: #7c4dff;
  --coral: #ff6b4a;
  --grad: linear-gradient(120deg, #3d5afe 0%, #7c4dff 48%, #ff6b4a 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 20, 40, 0.05), 0 2px 8px rgba(16, 20, 40, 0.04);
  --shadow: 0 1px 2px rgba(16, 20, 40, 0.04), 0 12px 32px -8px rgba(16, 20, 40, 0.12);
  --shadow-lg: 0 2px 4px rgba(16, 20, 40, 0.04), 0 30px 70px -20px rgba(30, 30, 90, 0.28);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.65 "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Sora", "Manrope", system-ui, sans-serif; font-weight: 700; letter-spacing: -0.025em; margin: 0; color: var(--ink); }
p { margin: 0; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 8px; }

.icon { width: 20px; height: 20px; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 22px; border-radius: 999px;
  font: 600 15.5px/1 "Manrope", sans-serif; letter-spacing: 0.005em; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 8px 24px -8px rgba(11, 13, 20, 0.55); }
.btn-ghost { background: rgba(255, 255, 255, 0.7); border-color: var(--line); color: var(--ink); backdrop-filter: blur(8px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.22); color: #fff; background: rgba(255, 255, 255, 0.04); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn:hover .icon-arrow { transform: translateX(3px); }
  .btn-primary:hover { box-shadow: 0 14px 30px -10px rgba(11, 13, 20, 0.6); }
  .btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
  .btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); }
}

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background 0.3s, box-shadow 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(251, 251, 253, 0.78); backdrop-filter: saturate(180%) blur(16px); border-bottom-color: rgba(230, 231, 238, 0.8); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font: 700 18px/1 "Sora", sans-serif; letter-spacing: -0.02em; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 6px 16px -6px rgba(92, 77, 255, 0.6); }
.brand-sub { font: 500 13px/1 "Manrope", sans-serif; color: var(--muted); letter-spacing: 0; margin-left: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: block; padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: background 0.2s, color 0.2s; }
@media (hover: hover) { .nav-links a:hover { background: rgba(11, 13, 20, 0.05); color: var(--ink); } }
.nav-links .nav-cta { display: inline-flex; margin-left: 10px; height: 42px; padding: 0 18px; font-size: 14.5px; color: #fff; }
@media (hover: hover) { .nav-links .nav-cta:hover { background: var(--ink); color: #fff; } }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle .icon-close { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 168px 0 110px; overflow: hidden; isolation: isolate; }
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 900px; z-index: -2; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; animation: drift 22s var(--ease) infinite alternate; }
.aurora .a1 { width: 620px; height: 620px; left: 8%; top: 4%; background: radial-gradient(circle, #6f86ff 0%, rgba(111, 134, 255, 0) 70%); }
.aurora .a2 { width: 560px; height: 560px; right: 6%; top: 0; background: radial-gradient(circle, #a57bff 0%, rgba(165, 123, 255, 0) 70%); animation-duration: 26s; animation-delay: -6s; }
.aurora .a3 { width: 520px; height: 520px; left: 42%; top: 30%; background: radial-gradient(circle, #ff9a7d 0%, rgba(255, 154, 125, 0) 70%); opacity: 0.4; animation-duration: 30s; animation-delay: -12s; }
@keyframes drift { 0% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(60px, 40px, 0) scale(1.08); } 100% { transform: translate3d(-40px, 70px, 0) scale(0.95); } }
.grid-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(11, 13, 20, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 13, 20, 0.045) 1px, transparent 1px);
  background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); }
.hero-inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.75); border: 1px solid var(--line);
  font: 600 13.5px/1 "Manrope", sans-serif; color: var(--ink-2); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.eyebrow .dot { width: 22px; height: 22px; border-radius: 999px; background: var(--grad); display: grid; place-items: center; color: #fff; }
.eyebrow .dot .icon { width: 13px; height: 13px; }
.hero h1 { font-size: clamp(42px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -0.04em; margin: 26px 0 22px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: sheen 9s ease-in-out infinite alternate; }
@keyframes sheen { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.lead { font-size: clamp(17px, 1.6vw, 19.5px); color: var(--muted); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; color: var(--muted); font-size: 14.5px; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .icon { width: 17px; height: 17px; color: var(--violet); }

/* hero visual: product scene drawn in HTML/CSS */
.scene { position: relative; height: 540px; perspective: 1600px; }
.win { position: absolute; left: 0; top: 92px; width: 88%; background: var(--card); border-radius: 18px; border: 1px solid rgba(20, 24, 50, 0.08);
  box-shadow: var(--shadow-lg); overflow: hidden; transform: rotateY(-9deg) rotateX(4deg); transform-origin: left center; animation: float 9s ease-in-out infinite; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.win-bar { display: flex; align-items: center; justify-content: space-between; height: 42px; padding: 0 14px 0 16px; border-bottom: 1px solid var(--line); background: #fcfcfe; }
.win-title { display: flex; align-items: center; gap: 9px; font: 700 13px/1 "Sora", sans-serif; }
.win-logo { width: 18px; height: 18px; border-radius: 5px; background: var(--grad); }
.win-ctl { display: flex; gap: 16px; color: var(--muted-2); }
.win-ctl i { width: 10px; height: 10px; border: 1.6px solid currentColor; border-radius: 2px; display: block; }
.win-ctl i:first-child { height: 0; border-width: 1.6px 0 0 0; margin-top: 5px; border-radius: 0; }
.win-body { display: grid; grid-template-columns: 150px 1fr; min-height: 330px; }
.win-side { border-right: 1px solid var(--line); padding: 16px 12px; display: grid; gap: 8px; align-content: start; background: #fafbfe; }
.win-side b { display: block; height: 30px; border-radius: 9px; background: #eef0f7; }
.win-side b.on { background: linear-gradient(90deg, rgba(61, 90, 254, 0.14), rgba(124, 77, 255, 0.1)); box-shadow: inset 2px 0 0 var(--blue); }
.win-main { padding: 18px; display: grid; gap: 12px; align-content: start; }
.win-input { height: 40px; border-radius: 11px; border: 1.5px solid rgba(61, 90, 254, 0.45); box-shadow: 0 0 0 4px rgba(61, 90, 254, 0.08);
  display: flex; align-items: center; padding: 0 12px; gap: 8px; color: var(--violet); font: 600 12.5px/1 "Manrope", sans-serif; }
.win-input .icon { width: 15px; height: 15px; }
.win-input em { font-style: normal; color: var(--ink-2); white-space: nowrap; overflow: hidden; border-right: 2px solid var(--violet); animation: type 5.5s steps(26) infinite, caret 0.9s step-end infinite; width: 26ch; }
@keyframes type { 0% { width: 0; } 45%, 85% { width: 26ch; } 100% { width: 0; } }
@keyframes caret { 50% { border-color: transparent; } }
.row { display: grid; grid-template-columns: 18px 64px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.row i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #d3d7e3; display: block; }
.row s { display: block; height: 10px; border-radius: 6px; background: #e3e6f0; text-decoration: none; }
.row s.t { width: 60%; background: #d6dae6; }
.row div { display: grid; gap: 7px; }
.row div s:last-child { width: 40%; height: 8px; background: #eceef4; }
.row.due { border-color: rgba(255, 107, 74, 0.45); background: linear-gradient(90deg, rgba(255, 107, 74, 0.07), #fff 60%); }
.row.due i { border-color: var(--coral); }
.row .time { height: 12px; width: 48px; background: #cfd4e2; }

.toast { position: absolute; right: 0; top: 0; width: 290px; padding: 16px; border-radius: 16px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 24, 50, 0.08); box-shadow: var(--shadow-lg); animation: float 7s ease-in-out infinite; animation-delay: -2s; }
.toast-head { display: flex; align-items: center; gap: 8px; font: 700 11px/1 "Manrope", sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.toast-head .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255, 107, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0); } }
.toast-title { font: 700 16px/1.3 "Sora", sans-serif; margin: 10px 0 12px; }
.toast-actions { display: flex; gap: 8px; }
.toast-actions span { flex: 1; height: 32px; border-radius: 9px; display: grid; place-items: center; font: 700 12.5px/1 "Manrope", sans-serif; border: 1px solid var(--line); }
.toast-actions span:first-child { background: var(--coral); color: #fff; border-color: transparent; }

.badge-card { position: absolute; right: 4%; bottom: 18px; display: flex; align-items: center; gap: 12px; padding: 14px 18px 14px 14px; border-radius: 16px;
  background: var(--night); color: #fff; box-shadow: 0 24px 50px -18px rgba(10, 12, 20, 0.6); animation: float 8s ease-in-out infinite; animation-delay: -4s; }
.badge-card .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, #2fcf8f, #1aa870); }
.badge-card .ic .icon { width: 20px; height: 20px; }
.badge-card small { display: block; font: 600 11.5px/1.2 "Manrope", sans-serif; color: rgba(255, 255, 255, 0.6); }
.badge-card strong { display: block; font: 700 14.5px/1.3 "Sora", sans-serif; }

.phone { position: absolute; left: 4%; bottom: -8px; width: 150px; height: 250px; border-radius: 30px; padding: 9px; background: var(--night); box-shadow: 0 30px 60px -20px rgba(10, 12, 30, 0.55);
  animation: float 10s ease-in-out infinite; animation-delay: -1s; }
.phone-screen { height: 100%; border-radius: 22px; background: linear-gradient(160deg, #1c2150, #3a2a7a 55%, #7a3b6b); position: relative; overflow: hidden; }
.phone-screen::before { content: ""; position: absolute; left: 50%; top: 8px; width: 46px; height: 12px; border-radius: 99px; background: #05060b; transform: translateX(-50%); }
.phone-screen b { position: absolute; left: 12px; right: 12px; height: 38px; border-radius: 12px; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(6px); }
.phone-screen b:nth-child(1) { top: 44px; }
.phone-screen b:nth-child(2) { top: 92px; background: rgba(255, 255, 255, 0.24); }
.phone-screen b:nth-child(3) { top: 140px; }
.phone-screen b:nth-child(4) { top: 188px; height: 30px; right: 40px; background: rgba(255, 255, 255, 0.1); }

/* ---------- marquee ---------- */
.stack { padding: 26px 0 30px; border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.6); }
.stack-label { text-align: center; font: 700 12px/1 "Manrope", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 14px; animation: scroll 38s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; height: 42px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font: 700 15px/1 "Sora", sans-serif; color: var(--ink-2); letter-spacing: -0.01em; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (hover: hover) { .marquee:hover .marquee-track { animation-play-state: paused; } }

/* ---------- sections ---------- */
.section { padding: 120px 0; position: relative; }
.section.follow { padding-top: 16px; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font: 700 13px/1 "Manrope", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); margin-bottom: 18px; }
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.section h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -0.035em; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18.5px; }

/* bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tile { --mx: 50%; --my: 50%; position: relative; grid-column: span 2; padding: 30px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; isolation: isolate; }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(124, 77, 255, 0.10), transparent 45%); }
.tile.wide { grid-column: span 3; }
@media (hover: hover) {
  .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(124, 77, 255, 0.25); }
  .tile:hover::before { opacity: 1; }
}
.tile-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; color: #fff; background: var(--grad);
  box-shadow: 0 12px 24px -10px rgba(92, 77, 255, 0.7); }
.tile-icon .icon { width: 24px; height: 24px; }
.tile h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -0.02em; }
.tile p { color: var(--muted); font-size: 16px; }
.tile ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tile li { font: 600 12.5px/1 "Manrope", sans-serif; padding: 8px 11px; border-radius: 999px; background: #f3f4f9; color: var(--ink-2); }

/* dark process band */
.band { background: var(--night); color: #fff; overflow: hidden; isolation: isolate; }
.band::before { content: ""; position: absolute; width: 900px; height: 900px; right: -300px; top: -380px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.35), transparent 60%); filter: blur(20px); }
.band::after { content: ""; position: absolute; width: 700px; height: 700px; left: -260px; bottom: -420px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 90, 254, 0.3), transparent 60%); filter: blur(20px); }
.band h2, .band h3 { color: #fff; }
.band .section-head p { color: rgba(255, 255, 255, 0.66); }
.band .kicker { color: #b9a4ff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 30px 26px 28px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--night-line); transition: border-color 0.35s, transform 0.35s var(--ease); }
@media (hover: hover) { .step:hover { border-color: rgba(185, 164, 255, 0.4); transform: translateY(-4px); } }
.step-num { font: 700 13px/1 "Sora", sans-serif; letter-spacing: 0.06em; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.step-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin: 20px 0 22px; background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--night-line); color: #d6ccff; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: rgba(255, 255, 255, 0.64); font-size: 15.5px; }

/* principles */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.principles { display: grid; gap: 14px; }
.principle { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.principle .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: #f1f0ff; color: var(--violet); }
.principle .ic .icon { width: 24px; height: 24px; }
.principle h3 { font-size: 19px; margin: 4px 0 6px; }
.principle p { color: var(--muted); font-size: 16px; }
.quote { margin-top: 36px; padding: 28px 30px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(61, 90, 254, 0.08), rgba(255, 107, 74, 0.08));
  border: 1px solid rgba(124, 77, 255, 0.18); font: 600 19px/1.55 "Sora", sans-serif; letter-spacing: -0.015em; color: var(--ink-2); }

/* founder */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: center; padding: 48px; border-radius: 32px; background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden; isolation: isolate; }
.founder::before { content: ""; position: absolute; width: 520px; height: 520px; left: -180px; top: -200px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 90, 254, 0.14), transparent 65%); }
.founder-visual { position: relative; justify-self: center; }
.founder-frame { width: 280px; height: 280px; border-radius: 36px; padding: 6px; background: var(--grad); box-shadow: 0 30px 60px -24px rgba(92, 77, 255, 0.55);
  transform: rotate(-3deg); transition: transform 0.5s var(--ease); }
.founder-frame img { width: 100%; height: 100%; border-radius: 30px; object-fit: cover; }
@media (hover: hover) { .founder:hover .founder-frame { transform: rotate(0deg) scale(1.02); } }
.founder-chip { position: absolute; right: -18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); font: 700 13.5px/1 "Manrope", sans-serif; color: var(--ink-2); }
.founder-chip .icon { width: 16px; height: 16px; color: var(--violet); }
.founder-text p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.founder-text h2 { margin-top: 2px; }
.founder-facts { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.founder-facts li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: #f5f5fb; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.founder-facts .icon { width: 17px; height: 17px; color: var(--violet); }
.founder-facts a { color: var(--ink-2); }
@media (hover: hover) { .founder-facts a:hover { color: var(--violet); } }

/* company */
.company { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fact-card { padding: 34px; border-radius: 24px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.fact-card h3 { font-size: 22px; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.fact-card h3 .icon { width: 24px; height: 24px; color: var(--violet); }
.facts { margin: 0; display: grid; gap: 0; }
.facts div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.facts div:first-child { border-top: 0; padding-top: 0; }
.facts dt { color: var(--muted); font-weight: 600; font-size: 15px; }
.facts dd { margin: 0; font-weight: 600; color: var(--ink); }
.map-card { position: relative; overflow: hidden; padding: 30px 34px; border-radius: 24px; background: var(--night); color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; isolation: isolate; }
.map-card::after { content: ""; position: absolute; width: 480px; height: 480px; right: -160px; top: -140px; z-index: -3; border-radius: 50%; background: radial-gradient(circle, rgba(124, 77, 255, 0.35), transparent 60%); }
.us-map { position: absolute; left: 50%; top: 42%; width: 92%; height: auto; transform: translate(-50%, -50%); z-index: -2; pointer-events: none; }
.map-card::before { content: ""; position: absolute; inset: auto 0 0 0; height: 48%; z-index: -1; background: linear-gradient(180deg, rgba(10, 12, 20, 0), rgba(10, 12, 20, 0.92) 62%); }
.map-card .label { font: 700 12px/1 "Manrope", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; color: #b9a4ff; }
.map-card .city { font: 700 34px/1.1 "Sora", sans-serif; letter-spacing: -0.03em; margin: 12px 0 8px; }
.map-card address { font-style: normal; color: rgba(255, 255, 255, 0.72); }

/* contact */
.cta { position: relative; overflow: hidden; border-radius: 32px; padding: 72px 64px; background: var(--night); color: #fff; isolation: isolate; text-align: center; }
.cta::before { content: ""; position: absolute; inset: -40%; z-index: -1; background: conic-gradient(from 180deg at 50% 50%, #3d5afe, #7c4dff, #ff6b4a, #3d5afe); filter: blur(90px); opacity: 0.38;
  animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }
.cta h2 { color: #fff; font-size: clamp(32px, 4.4vw, 54px); }
.cta p { color: rgba(255, 255, 255, 0.72); max-width: 560px; margin: 18px auto 0; font-size: 18.5px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.copy-state { display: none; }
.is-copied .copy-default { display: none; }
.is-copied .copy-state { display: inline; }

/* footer */
.site-footer { padding: 64px 0 40px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.foot p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 360px; }
.foot h4 { margin: 4px 0 14px; font: 700 13px/1 "Manrope", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot ul a, .foot address { color: var(--ink-2); font-weight: 600; font-size: 15px; font-style: normal; }
@media (hover: hover) { .foot ul a:hover { color: var(--violet); } }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; color: var(--muted-2); font-size: 14px; font-weight: 600; }

/* legal pages */
.doc { padding: 150px 0 90px; }
.doc-inner { max-width: 760px; }
.doc h1 { font-size: clamp(36px, 4.4vw, 52px); letter-spacing: -0.035em; margin: 18px 0 10px; }
.doc .updated { color: var(--muted); font-weight: 600; font-size: 15px; }
.doc h2 { font-size: 22px; margin: 44px 0 12px; }
.doc p, .doc li { color: var(--ink-2); }
.doc p + p { margin-top: 12px; }
.doc ul { padding-left: 20px; }
.doc a { color: var(--blue); font-weight: 600; }
.doc .facts { margin-top: 8px; }

.notfound { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 140px 0 60px; }
.notfound h1 { font-size: clamp(72px, 12vw, 150px); line-height: 1; letter-spacing: -0.06em; }
.notfound p { color: var(--muted); margin: 14px 0 30px; font-size: 18px; }

/* reveal on scroll (only when JS runs: html.js) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.08s; } .js .reveal.d2 { transition-delay: 0.16s; } .js .reveal.d3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .scene { height: 470px; max-width: 640px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .company { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 76px 12px auto 12px; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; border-radius: 20px;
    background: rgba(255, 255, 255, 0.97); border: 1px solid var(--line); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease); }
  .nav-links a { padding: 13px 16px; font-size: 16px; }
  .nav-links .nav-cta { margin: 6px 0 0; justify-content: center; height: 48px; }
  .nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-open .nav-toggle .icon-menu { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open { background: rgba(251, 251, 253, 0.96); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 128px 0 70px; }
  .brand-sub { display: none; }
  .scene { height: 400px; }
  .win { width: 100%; transform: none; }
  .win-body { grid-template-columns: 1fr; min-height: 0; }
  .win-side { display: none; }
  .toast { width: 240px; top: 0; }
  .win { top: 70px; }
  .phone { display: none; }
  .badge-card { right: 0; bottom: 6px; }
  .section { padding: 84px 0; }
  .section.follow { padding-top: 8px; }
  .bento, .steps { grid-template-columns: 1fr; }
  .tile { padding: 26px; }
  .facts div { grid-template-columns: 1fr; gap: 4px; }
  .fact-card, .map-card { padding: 26px; }
  .cta { padding: 52px 24px; border-radius: 26px; }
  .founder { padding: 32px 22px; border-radius: 26px; }
  .founder-frame { width: 220px; height: 220px; }
  .founder-chip { right: -8px; }
  .foot { grid-template-columns: 1fr; gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .win-input em { width: 26ch; }
}

/* print: a clean document (the fixed header would repeat over every page) */
@media print {
  body { background: #fff; font-size: 12pt; }
  .site-header { position: static; background: none; border: 0; }
  .nav-links, .nav-toggle, .skip, .aurora, .grid-bg { display: none !important; }
  .doc { padding: 24px 0 0; }
  .js .reveal { opacity: 1; transform: none; }
  .site-footer { break-inside: avoid; padding-top: 32px; }
  a { color: inherit; }
}
