/* ============================================================
   GetThatPage — Stylesheet
   Tokens: dark blue-black base, electric blue accent, off-white
   Type: Bricolage Grotesque (display) / Inter (body) / JetBrains Mono (labels)
   ============================================================ */

:root{
  --bg: #05070d;
  --bg-elevated: #080b14;
  --surface: #0d1322;
  --surface-2: #121a2e;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --blue: #2f6bff;
  --blue-bright: #5b8bff;
  --blue-dim: #1a3a8f;
  --blue-deep: #0a1638;

  --white: #f4f6ff;
  --ink: #dbe1f5;
  --ink-soft: #b3bcd8;
  --ink-mute: #7883a0;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(.22,1,.36,1);
  --wrap: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ background:var(--bg); }

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.lock{ overflow:hidden; height:100vh; }

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; }

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 28px;
}

::selection{ background:var(--blue); color:var(--white); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--blue-bright);
  outline-offset:3px;
  border-radius:4px;
}

/* ============ background texture ============ */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    radial-gradient(circle at 15% 8%, rgba(47,107,255,.16), transparent 42%),
    radial-gradient(circle at 85% 0%, rgba(47,107,255,.10), transparent 40%);
  pointer-events:none;
  z-index:0;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition:transform .9s var(--ease), opacity .7s ease;
}
#loader.hide{
  transform:translateY(-100%);
  pointer-events:none;
}
#loader.hide .loader-inner{ opacity:0; }

.loader-inner{ position:relative; width:min(400px, 82vw); text-align:center; transition:opacity .3s ease; }

.loader-frame{ width:100%; height:auto; overflow:visible; }
.frame-rect{
  stroke:var(--line-strong);
  stroke-dasharray:1300;
  stroke-dashoffset:1300;
  animation:draw 1s var(--ease) forwards .05s;
}
.frame-rule{ stroke:var(--line); stroke-dasharray:392; stroke-dashoffset:392; animation:draw .7s var(--ease) forwards .35s; }
.frame-dot{ fill:var(--ink-mute); opacity:0; }
.dot-1{ animation:fadeIn .3s ease forwards .6s; }
.dot-2{ animation:fadeIn .3s ease forwards .72s; }
.dot-3{ animation:fadeIn .3s ease forwards .84s; }

@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes fadeIn{ to{ opacity:1; } }

.loader-url{
  position:absolute; top:14px; left:70px; right:16px;
  font-family:var(--font-mono);
  font-size:12px; color:var(--ink-mute);
  text-align:left; letter-spacing:.02em;
  opacity:0; animation:fadeIn .3s ease forwards .95s;
}
.caret{ animation:blink 1s steps(1) infinite; color:var(--blue-bright); }
@keyframes blink{ 50%{ opacity:0; } }

/* ---- page assembling inside the frame ---- */
.loader-build{
  position:absolute; top:17%; left:5%; right:5%; bottom:8%;
  display:flex; flex-direction:column; gap:12px;
  text-align:left;
  animation:buildFadeOut .35s ease forwards 2s;
}
@keyframes buildFadeOut{ to{ opacity:0; transform:translateY(-6px) scale(.98); } }

.lb-nav{ display:flex; align-items:center; gap:10px; }
.lb-nav-logo{ width:14px; height:14px; border-radius:4px; background:var(--blue-bright); opacity:0; animation:lbIn .4s var(--ease) forwards .95s; }
.lb-nav-link{ width:34px; height:6px; border-radius:3px; background:var(--line-strong); opacity:0; animation:lbIn .4s var(--ease) forwards; }
.lb-nav-link:nth-child(2){ animation-delay:1.03s; }
.lb-nav-link:nth-child(3){ animation-delay:1.09s; }
.lb-nav-link:nth-child(4){ animation-delay:1.15s; }

.lb-hero{ display:flex; flex-direction:column; gap:8px; margin-top:6px; }
.lb-hero-line{ height:15px; width:78%; border-radius:4px; background:linear-gradient(90deg, var(--blue-dim), var(--line-strong)); opacity:0; animation:lbIn .45s var(--ease) forwards 1.24s; }
.lb-hero-line.short{ width:46%; height:10px; background:var(--line-strong); animation-delay:1.34s; }
.lb-hero-btn{ margin-top:6px; width:74px; height:22px; border-radius:100px; background:var(--blue-dim); opacity:0; animation:lbIn .4s var(--ease) forwards 1.44s; }

.lb-cards{ display:flex; gap:10px; margin-top:10px; flex:1; }
.lb-cards span{ flex:1; border-radius:8px; background:var(--surface-2); border:1px solid var(--line); opacity:0; transform:translateY(8px); animation:lbInUp .4s var(--ease) forwards; }
.lb-cards span:nth-child(1){ animation-delay:1.56s; }
.lb-cards span:nth-child(2){ animation-delay:1.66s; }
.lb-cards span:nth-child(3){ animation-delay:1.76s; }

@keyframes lbIn{ to{ opacity:1; } }
@keyframes lbInUp{ to{ opacity:1; transform:translateY(0); } }

.loader-word{
  margin-top:38px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(28px, 6vw, 44px);
  letter-spacing:.02em;
  color:var(--white);
}
.loader-word .lw{
  display:inline-block;
  opacity:0;
  transform:translateY(16px);
  animation:letterUp .5s var(--ease) forwards;
  animation-delay:calc(2.25s + var(--i) * .045s);
}
@keyframes letterUp{ to{ opacity:1; transform:translateY(0); } }

.loader-bar{
  margin:28px auto 0; width:180px; height:2px;
  background:var(--line); border-radius:2px; overflow:hidden;
}
.loader-bar-fill{
  height:100%; width:0%; background:linear-gradient(90deg, var(--blue-dim), var(--blue-bright));
  animation:fillBar 1s var(--ease) forwards 2.85s;
}
@keyframes fillBar{ to{ width:100%; } }

/* ---- light sweep across the whole loader ---- */
.loader-sweep{
  position:absolute; top:0; bottom:0; left:-30%; width:22%;
  background:linear-gradient(100deg, transparent, rgba(120,155,255,.16), transparent);
  transform:skewX(-14deg);
  opacity:0;
  animation:sweepMove 1s var(--ease) forwards 1.95s;
  pointer-events:none;
}
@keyframes sweepMove{
  0%{ left:-30%; opacity:0; }
  15%{ opacity:1; }
  85%{ opacity:1; }
  100%{ left:115%; opacity:0; }
}

/* ---- finale particle burst ---- */
.loader-burst{
  position:absolute; top:50%; left:50%; width:0; height:0;
  pointer-events:none;
}
.loader-burst span{
  position:absolute; top:0; left:0; width:4px; height:4px; border-radius:50%;
  background:var(--blue-bright);
  opacity:0;
  transform:rotate(var(--a)) translateX(0);
  animation:burstOut .7s var(--ease) forwards 3.55s;
}
@keyframes burstOut{
  0%{ opacity:1; transform:rotate(var(--a)) translateX(0) scale(1); }
  100%{ opacity:0; transform:rotate(var(--a)) translateX(90px) scale(.3); }
}

#skipLoader{
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  background:none; border:1px solid var(--line-strong); color:var(--ink-mute);
  font-family:var(--font-mono); font-size:11px; letter-spacing:.05em;
  padding:8px 16px; border-radius:100px; cursor:pointer;
  opacity:0; animation:fadeIn .4s ease forwards 1.1s;
  transition:color .2s ease, border-color .2s ease;
}
#skipLoader:hover{ color:var(--white); border-color:var(--blue-bright); }

/* ============================================================
   CURSOR GLOW (desktop only)
   ============================================================ */
.cursor-glow{
  position:fixed; top:0; left:0; width:380px; height:380px;
  border-radius:50%;
  background:radial-gradient(circle,
    rgba(110,145,255,.15) 0%,
    rgba(90,125,235,.08) 30%,
    rgba(70,100,200,.03) 55%,
    transparent 72%);
  filter:blur(18px);
  mix-blend-mode:screen;
  pointer-events:none; z-index:2;
  transform:translate(-50%,-50%);
  opacity:0;
  transition:opacity .5s ease;
  will-change:transform;
}
.cursor-glow.active{ opacity:1; }
@media (max-width:900px), (pointer:coarse){ .cursor-glow{ display:none; } }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress{
  position:fixed; top:0; left:0; right:0; height:3px; z-index:998;
  background:linear-gradient(90deg, var(--blue-dim), var(--blue-bright), #9db8ff);
  transform:scaleX(0); transform-origin:0 50%;
  box-shadow:0 0 12px rgba(91,139,255,.6);
  will-change:transform;
}

/* ============================================================
   AMBIENT PARTICLE NETWORK
   ============================================================ */
.particle-canvas{
  position:fixed; inset:0; z-index:0;
  pointer-events:none;
  opacity:.6;
}
@media (max-width:700px){ .particle-canvas{ opacity:.35; } }

/* ============================================================
   FILM GRAIN / NOISE
   ============================================================ */
.noise-overlay{
  position:fixed; inset:0; z-index:500;
  pointer-events:none;
  opacity:.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:var(--surface-2); border-radius:10px; border:2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover{ background:var(--blue-dim); }
*{ scrollbar-color:var(--surface-2) var(--bg); scrollbar-width:thin; }

/* ============================================================
   SCROLL CUE (hero)
   ============================================================ */
.scroll-cue{
  position:absolute; left:50%; bottom:38px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  z-index:1; opacity:.75;
  animation:cueFade 2.4s ease-in-out infinite;
}
.scroll-cue-mouse{
  width:24px; height:38px; border:1.6px solid var(--line-strong); border-radius:14px;
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-cue-dot{ width:4px; height:8px; border-radius:2px; background:var(--blue-bright); animation:cueDot 1.8s ease-in-out infinite; }
.scroll-cue-label{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-mute); }
@keyframes cueDot{ 0%{ transform:translateY(0); opacity:1; } 70%{ transform:translateY(10px); opacity:0; } 100%{ opacity:0; } }
@keyframes cueFade{ 0%,100%{ opacity:.4; } 50%{ opacity:.9; } }
@media (max-width:900px){ .scroll-cue{ display:none; } }


.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:background .35s ease, padding .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(5,7,13,.72);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
  padding:12px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:18px; letter-spacing:.01em; color:var(--white); }
.logo-mark{ color:var(--blue-bright); display:flex; }
.logo-mark svg{ width:26px; height:26px; }

.main-nav{ display:flex; gap:32px; }
.main-nav a{
  font-size:14.5px; color:var(--ink-soft); position:relative; padding:4px 0;
  transition:color .2s ease;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--blue-bright);
  transition:width .25s var(--ease);
}
.main-nav a:hover{ color:var(--white); }
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ width:22px; height:2px; background:var(--white); border-radius:2px; transition:transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0 0 0 auto; z-index:99;
  width:min(78vw, 340px); height:100vh;
  background:var(--bg-elevated); border-left:1px solid var(--line);
  display:flex; flex-direction:column; gap:22px;
  padding:100px 32px 40px;
  transform:translateX(100%);
  transition:transform .4s var(--ease);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ font-family:var(--font-display); font-size:22px; color:var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  --pad-y: 13px; --pad-x: 26px;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:var(--pad-y) var(--pad-x);
  border-radius:100px;
  font-weight:600; font-size:14.5px;
  border:1px solid transparent;
  cursor:pointer;
  position:relative; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease, background .3s ease;
}
.btn::before{
  content:"";
  position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-18deg);
  transition:left .65s var(--ease);
  z-index:0;
}
.btn:hover::before{ left:120%; }
.btn span{ position:relative; z-index:1; }
.btn-primary{
  background:linear-gradient(135deg, var(--blue), #4a7dff);
  color:#fff;
  box-shadow:0 0 0 0 rgba(47,107,255,.5), 0 10px 30px -12px rgba(47,107,255,.55);
}
.btn-primary:hover{ box-shadow:0 0 0 0 rgba(47,107,255,.5), 0 14px 36px -10px rgba(47,107,255,.75); transform:translateY(-2px); }
.btn-ghost{ background:rgba(255,255,255,.02); border-color:var(--line-strong); color:var(--white); }
.btn-ghost:hover{ border-color:var(--blue-bright); background:rgba(47,107,255,.08); transform:translateY(-2px); }
.btn-sm{ --pad-y:9px; --pad-x:18px; font-size:13.5px; }
.btn-lg{ --pad-y:16px; --pad-x:32px; font-size:15.5px; }
.btn-block{ width:100%; }

/* ============================================================
   TYPE / SHARED
   ============================================================ */
h1,h2,h3{ font-family:var(--font-display); color:var(--white); margin:0; line-height:1.08; letter-spacing:-.01em; }
h2{ font-size:clamp(30px, 4vw, 46px); font-weight:700; }
h3{ font-size:20px; font-weight:600; }
p{ margin:0; color:var(--ink-soft); line-height:1.65; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue-bright); margin:0 0 18px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-bright); box-shadow:0 0 10px var(--blue-bright); }

.section{ position:relative; padding:120px 0; z-index:1; }
.section-alt{ background:var(--bg-elevated); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ max-width:640px; margin-bottom:64px; }
.section-sub{ margin-top:18px; font-size:16.5px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal]{
  opacity:0; transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal-delay="1"]{ transition-delay:.12s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; padding:170px 0 110px; overflow:hidden; }
.hero-glow{
  position:absolute; top:-200px; right:-160px; width:800px; height:800px;
  background:radial-gradient(circle, rgba(47,107,255,.24), transparent 65%);
  filter:blur(20px); pointer-events:none;
}
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  opacity:.5;
  pointer-events:none;
}

.hero-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }

.hero-title{ font-size:clamp(38px, 5.4vw, 64px); font-weight:700; }
.hero-title-accent{
  display:block; margin-top:4px;
  background:linear-gradient(100deg, var(--blue-bright), var(--white) 60%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ font-size:17.5px; max-width:480px; margin-top:22px; }
.hero-cta{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
.hero-note{ margin-top:28px; font-family:var(--font-mono); font-size:12px; color:var(--ink-mute); letter-spacing:.02em; }

/* mock browser */
.hero-visual{ position:relative; height:420px; }
.mock-browser{
  position:absolute; inset:0;
  background:var(--surface);
  border:1px solid var(--line-strong);
  border-radius:var(--radius-md);
  box-shadow:0 40px 80px -30px rgba(0,0,0,.6);
  overflow:hidden;
}
.mock-browser-back{
  transform:rotate(-4deg) translate(24px, 26px) scale(.96);
  opacity:.5; filter:blur(1px);
}
.mock-browser-front{
  animation:floatY 6s ease-in-out infinite;
}
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }

.mock-bar{ display:flex; align-items:center; gap:6px; padding:12px 14px; border-bottom:1px solid var(--line); background:var(--surface-2); }
.mock-dot{ width:8px; height:8px; border-radius:50%; background:var(--line-strong); }
.mock-url{ margin-left:10px; font-family:var(--font-mono); font-size:11px; color:var(--ink-mute); }
.mock-body{ padding:18px 20px 20px; display:flex; flex-direction:column; gap:16px; font-family:var(--font-body); }
.mock-body-b{ padding:22px; }

/* mini nav */
.mock-nav{ display:flex; align-items:center; gap:16px; padding-bottom:12px; border-bottom:1px solid var(--line); }
.mock-logo{
  width:18px; height:18px; border-radius:5px; background:var(--blue-bright); margin-right:auto;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:10px; color:#05070d;
}
.mock-navlink{ font-size:9.5px; color:var(--ink-mute); letter-spacing:.01em; }
.mock-navbtn{
  font-size:9px; font-weight:600; color:#fff; background:var(--blue-dim);
  padding:5px 10px; border-radius:100px; border:1px solid var(--blue-dim);
}

/* mini hero */
.mock-hero{ display:grid; grid-template-columns:1.15fr .85fr; gap:16px; align-items:center; }
.mock-hero-copy{ display:flex; flex-direction:column; gap:8px; }
.mock-tag{
  align-self:flex-start; font-family:var(--font-mono); font-size:7.5px; letter-spacing:.06em;
  color:var(--blue-bright); background:rgba(91,139,255,.12); padding:3px 8px; border-radius:100px;
  margin-bottom:2px;
}
.mock-headline{ font-family:var(--font-display); font-weight:700; font-size:16px; line-height:1.15; color:var(--white); letter-spacing:-.01em; }
.mock-sub{ font-size:9px; line-height:1.5; color:var(--ink-mute); max-width:26ch; }
.mock-cta-row{ display:flex; gap:8px; margin-top:6px; }
.mock-btn-primary{
  font-size:8.5px; font-weight:600; color:#fff; padding:6px 12px; border-radius:100px;
  background:linear-gradient(135deg, var(--blue), var(--blue-bright));
}
.mock-btn-ghost{ font-size:8.5px; font-weight:600; color:var(--ink-soft); padding:6px 12px; border-radius:100px; border:1px solid var(--line-strong); }

.mock-hero-art{ position:relative; height:100px; }
.mock-art-blob{ position:absolute; inset:0; border-radius:14px; background:radial-gradient(circle at 32% 28%, rgba(91,139,255,.5), rgba(91,139,255,.06) 70%); }
.mock-art-card{
  position:absolute; display:flex; align-items:center; gap:5px;
  padding:6px 9px; border-radius:9px; background:var(--surface); border:1px solid var(--line-strong);
  box-shadow:0 10px 20px -8px rgba(0,0,0,.5);
  font-family:var(--font-mono); font-size:8px; font-weight:600; color:var(--white); white-space:nowrap;
}
.mock-art-card svg{ width:12px; height:12px; color:var(--blue-bright); flex-shrink:0; }
.mock-art-card.c1{ bottom:-8px; left:-10px; animation:floatY 5s ease-in-out infinite; }
.mock-art-card.c2{ top:-6px; right:-8px; animation:floatY 5.6s ease-in-out infinite reverse; }

.mock-row{ display:flex; gap:10px; }
.mock-card{ flex:1; padding:11px; border-radius:10px; background:var(--surface-2); border:1px solid var(--line); display:flex; flex-direction:column; gap:6px; }
.mock-card-icon{ width:20px; height:20px; border-radius:6px; background:linear-gradient(135deg, rgba(91,139,255,.5), rgba(91,139,255,.12)); display:flex; align-items:center; justify-content:center; }
.mock-card-icon svg{ width:11px; height:11px; color:var(--blue-bright); }
.mock-card-title{ font-size:9px; font-weight:700; color:var(--white); }
.mock-card-line{ font-size:7.5px; line-height:1.4; color:var(--ink-mute); }

@media (max-width:520px){
  .mock-hero{ grid-template-columns:1fr; }
  .mock-hero-art{ display:none; }
}

@media (max-width:900px){
  .lg-only{ display:none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-elevated); position:relative; z-index:1; }
.marquee{ overflow:hidden; padding:22px 0; -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track{ display:flex; gap:56px; width:max-content; animation:marquee 26s linear infinite; }
.marquee-track span{ font-family:var(--font-mono); font-size:14px; color:var(--ink-mute); letter-spacing:.03em; white-space:nowrap; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee:hover .marquee-track{ animation-play-state:paused; }

/* ============================================================
   STATS
   ============================================================ */
.stats{ padding:96px 0; position:relative; z-index:1; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
.stat{ text-align:left; border-left:1px solid var(--line); padding-left:22px; }
.stat-num{ font-family:var(--font-display); font-size:clamp(34px,4vw,52px); font-weight:700; color:var(--white); }
.stat-suffix{ font-family:var(--font-display); font-size:clamp(20px,2.4vw,28px); font-weight:600; color:var(--blue-bright); }
.stat p{ margin-top:8px; font-size:14px; max-width:200px; }

/* ============================================================
   CARDS GRID (services)
   ============================================================ */
.cards-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:32px 26px;
  position:relative;
  overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s ease, background .35s ease;
  transform-style:preserve-3d;
  will-change:transform;
}
.service-card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(91,139,255,.14), transparent 70%);
  opacity:0; transition:opacity .35s ease; pointer-events:none;
}
.service-card:hover::before{ opacity:1; }
.service-card:hover{ border-color:var(--blue-dim); background:var(--surface-2); }
.service-icon{
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(47,107,255,.18), rgba(47,107,255,.04));
  color:var(--blue-bright); margin-bottom:20px;
}
.service-icon svg{ width:24px; height:24px; }
.service-card h3{ margin-bottom:10px; }
.service-card p{ font-size:14.5px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-list{ display:flex; flex-direction:column; }
.process-item{
  display:grid; grid-template-columns:110px 1fr; gap:28px;
  padding:34px 0; border-top:1px solid var(--line);
}
.process-item:last-child{ border-bottom:1px solid var(--line); }
.process-num{ font-family:var(--font-mono); font-size:14px; color:var(--blue-bright); letter-spacing:.05em; }
.process-body h3{ margin-bottom:8px; }
.process-body p{ max-width:560px; font-size:15.5px; }

/* ============================================================
   WORK
   ============================================================ */
.work-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.work-card{
  border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden;
  background:var(--surface);
  position:relative;
  transition:transform .4s var(--ease), border-color .4s ease;
}
.work-card::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(91,139,255,.12), transparent 70%);
  opacity:0; transition:opacity .35s ease; pointer-events:none; z-index:1;
}
.work-card:hover::after{ opacity:1; }
.work-card:hover{ transform:translateY(-6px); border-color:var(--blue-dim); }
.work-thumb{ position:relative; height:230px; padding:16px; overflow:hidden; display:flex; flex-direction:column; gap:12px; }

/* shared top chrome bar */
.wt-topbar{ display:flex; align-items:center; gap:8px; }
.wt-dot{ width:8px; height:8px; border-radius:50%; background:var(--blue-bright); }
.wt-crumb{ width:34px; height:6px; border-radius:3px; background:var(--line-strong); }
.wt-crumb.short{ width:20px; opacity:.6; }
.wt-search{ margin-left:auto; width:44px; height:14px; border-radius:100px; border:1px solid var(--line-strong); }
.wt-cart{ width:16px; height:14px; border-radius:3px; background:var(--blue-dim); }

/* --- Aurora Studio: photo gallery --- */
.work-thumb-1{ background:linear-gradient(160deg, #0e1730, #060810); }
.wt-gallery{ flex:1; display:grid; grid-template-columns:1.3fr 1fr; grid-template-rows:1fr 1fr; gap:8px; }
.wt-gallery span{ border-radius:8px; background:linear-gradient(135deg, rgba(91,139,255,.4), rgba(91,139,255,.06)); }
.wt-gallery .g1{ grid-row:1 / 3; background:linear-gradient(150deg, rgba(91,139,255,.5), rgba(20,30,60,.3)); }
.wt-gallery .g2{ background:rgba(255,255,255,.06); }
.wt-gallery .g3{ background:linear-gradient(135deg, rgba(91,139,255,.28), rgba(91,139,255,.04)); }
.wt-gallery .g4{ background:rgba(255,255,255,.05); }
.wt-caption{ display:flex; flex-direction:column; gap:6px; }
.wt-caption span{ height:6px; border-radius:3px; background:var(--line-strong); width:70%; }
.wt-caption span.short{ width:38%; background:var(--line); }

/* --- Nordal: e-commerce grid --- */
.work-thumb-2{ background:linear-gradient(160deg, #0c1424, #060810); }
.wt-shop-grid{ flex:1; display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.wt-product{ display:flex; flex-direction:column; gap:6px; }
.wt-product-img{ flex:1; border-radius:8px; background:linear-gradient(150deg, rgba(91,139,255,.32), rgba(91,139,255,.06)); }
.wt-product-img.alt{ background:linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.02)); }
.wt-price{ height:6px; width:60%; border-radius:3px; background:var(--line-strong); }

/* --- Ledger & Co: dashboard --- */
.work-thumb-3{ background:linear-gradient(160deg, #0a0f1e, #05070d); padding:0; }
.wt-dash{ display:grid; grid-template-columns:44px 1fr; height:100%; }
.wt-sidebar{ background:rgba(255,255,255,.03); border-right:1px solid var(--line); display:flex; flex-direction:column; align-items:center; gap:14px; padding:16px 0; }
.wt-sidebar span{ width:16px; height:16px; border-radius:5px; background:var(--line-strong); }
.wt-sidebar span.active{ background:var(--blue-bright); }
.wt-dash-main{ padding:16px; display:flex; flex-direction:column; gap:14px; }
.wt-dash-stats{ display:flex; gap:8px; }
.wt-dash-stats span{ flex:1; height:26px; border-radius:6px; background:rgba(255,255,255,.05); border:1px solid var(--line); }
.wt-chart{ flex:1; display:flex; align-items:flex-end; gap:6px; }
.wt-chart span{ flex:1; height:var(--h); border-radius:4px 4px 0 0; background:linear-gradient(180deg, var(--blue-bright), var(--blue-dim)); opacity:.85; }

/* --- Bloom: booking widget --- */
.work-thumb-4{ background:linear-gradient(160deg, #101a35, #060810); }
.wt-booking{ flex:1; display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:center; }
.wt-calendar{ display:grid; grid-template-columns:repeat(4,1fr); gap:6px; }
.wt-calendar span{ aspect-ratio:1; border-radius:5px; background:rgba(255,255,255,.05); }
.wt-calendar span.sel{ background:var(--blue-bright); box-shadow:0 0 10px rgba(91,139,255,.6); }
.wt-booking-info{ display:flex; flex-direction:column; gap:8px; }
.wt-line{ height:8px; width:85%; border-radius:3px; background:var(--line-strong); }
.wt-line.short{ width:55%; background:var(--line); }
.wt-book-btn{ margin-top:6px; width:64px; height:18px; border-radius:100px; background:linear-gradient(135deg, var(--blue), var(--blue-bright)); }

.work-meta{ padding:20px 22px 24px; border-top:1px solid var(--line); }
.work-meta h3{ margin-bottom:4px; }
.work-meta p{ font-size:13.5px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.price-card{
  position:relative;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:34px 28px; display:flex; flex-direction:column;
  overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s ease;
}
.price-card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(91,139,255,.13), transparent 70%);
  opacity:0; transition:opacity .35s ease; pointer-events:none;
}
.price-card:hover::before{ opacity:1; }
.price-card:hover{ transform:translateY(-4px); }
.price-card-featured{ border-color:var(--blue-dim); background:linear-gradient(180deg, rgba(47,107,255,.09), var(--surface) 40%); animation:featuredPulse 4s ease-in-out infinite; }
@keyframes featuredPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(47,107,255,0); }
  50%{ box-shadow:0 0 34px -6px rgba(47,107,255,.35); }
}
.price-badge{
  position:absolute; top:-13px; left:28px;
  background:var(--blue); color:#fff; font-family:var(--font-mono); font-size:11px; letter-spacing:.04em;
  padding:5px 12px; border-radius:100px;
}
.price-card h3{ margin-bottom:8px; }
.price-desc{ font-size:14px; min-height:42px; }
.price-amount{ font-family:var(--font-display); font-size:30px; font-weight:700; color:var(--white); margin:18px 0 22px; }
.price-list{ display:flex; flex-direction:column; gap:11px; margin-bottom:28px; flex:1; }
.price-list li{ font-size:14px; color:var(--ink-soft); padding-left:22px; position:relative; }
.price-list li::before{ content:"✓"; position:absolute; left:0; color:var(--blue-bright); font-weight:700; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote-section{ text-align:center; padding:100px 0; }
.quote-mark{ font-family:var(--font-display); font-size:80px; color:var(--blue-dim); line-height:1; margin:0 0 10px; }
blockquote{ margin:0 auto; max-width:760px; font-family:var(--font-display); font-size:clamp(22px,3vw,32px); font-weight:500; color:var(--white); line-height:1.4; }
.quote-attrib{ margin-top:24px; font-family:var(--font-mono); font-size:13px; color:var(--ink-mute); letter-spacing:.04em; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta-section{ position:relative; padding:120px 0 100px; overflow:hidden; background:var(--bg-elevated); border-top:1px solid var(--line); }
.cta-glow{ position:absolute; bottom:-260px; left:50%; transform:translateX(-50%); width:900px; height:900px; background:radial-gradient(circle, rgba(47,107,255,.18), transparent 65%); pointer-events:none; }
.cta-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.contact-list{ margin-top:34px; display:flex; flex-direction:column; gap:16px; }
.contact-list li{ display:flex; flex-direction:column; gap:2px; font-size:15px; }
.contact-list a{ color:var(--white); transition:color .2s ease; }
.contact-list a:hover{ color:var(--blue-bright); }
.contact-label{ font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-mute); }

.cta-form{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px; }
.form-row{ margin-bottom:18px; display:flex; flex-direction:column; gap:8px; }
.form-row label{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-mute); }
.form-row input, .form-row select, .form-row textarea{
  background:var(--surface-2); border:1px solid var(--line-strong); color:var(--white);
  border-radius:10px; padding:12px 14px; font-family:var(--font-body); font-size:14.5px;
  resize:vertical; transition:border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color:var(--blue-bright); box-shadow:0 0 0 3px rgba(47,107,255,.18); outline:none;
}
.form-note{ margin-top:14px; font-size:12px; color:var(--ink-mute); text-align:center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ border-top:1px solid var(--line); padding-top:52px; position:relative; z-index:1; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:36px; }
.footer-nav{ display:flex; gap:26px; }
.footer-nav a{ font-size:14px; color:var(--ink-soft); transition:color .2s ease; }
.footer-nav a:hover{ color:var(--white); }
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:34px; height:34px; border:1px solid var(--line-strong); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:11px; color:var(--ink-mute);
  transition:border-color .2s ease, color .2s ease;
}
.footer-social a:hover{ border-color:var(--blue-bright); color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 28px 28px; border-top:1px solid var(--line); font-size:13px; color:var(--ink-mute); }
.back-to-top{ font-family:var(--font-mono); font-size:12.5px; color:var(--ink-mute); transition:color .2s ease; }
.back-to-top:hover{ color:var(--blue-bright); }

/* ============================================================
   MAGNETIC (js hooks transform)
   ============================================================ */
.magnetic{ will-change:transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .cards-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
}

@media (max-width:900px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:340px; order:-1; }
  .cta-inner{ grid-template-columns:1fr; }
  .work-grid{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
  .process-item{ grid-template-columns:1fr; gap:10px; }
  .footer-bottom{ flex-direction:column; gap:12px; text-align:center; }
}

@media (max-width:560px){
  .cards-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .hero{ padding-top:140px; }
  .wrap{ padding:0 20px; }
}