/* ==== fonts.css ==== */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/space-grotesk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(fonts/plus-jakarta-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url(fonts/jetbrains-mono.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ==== style.css ==== */
:root{
  --bg:#04060f;
  --bg-2:#070a18;
  --glass:rgba(13,20,40,.6);
  --line:rgba(130,170,255,.12);
  --line-hi:rgba(130,170,255,.25);
  --blue:#3b82f6;
  --blue-2:#60a5fa;
  --blue-3:#93c5fd;
  --blue-glow:rgba(59,130,246,.45);
  --purple:#7c3aed;
  --purple-2:#a855f7;
  --purple-3:#c084fc;
  --purple-glow:rgba(168,85,247,.45);
  --green:#10b981;
  --gold:#fcd34d;
  --text:#f0f4ff;
  --text-2:rgba(240,244,255,.72);
  --text-3:rgba(240,244,255,.45);
  --display:'Space Grotesk',system-ui,sans-serif;
  --sans:'Plus Jakarta Sans',system-ui,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
  --gutter:clamp(20px,4vw,72px);
  --radius:18px;
  --radius-lg:28px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;overflow-x:hidden}
body{
  font-family:var(--sans);background:var(--bg);color:var(--text);
  font-size:16px;line-height:1.55;
  position:relative;overflow-x:hidden;
}
body::before{content:"";position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 1100px 800px at 15% 10%,rgba(59,130,246,.18),transparent 60%),
    radial-gradient(ellipse 900px 700px at 85% 90%,rgba(168,85,247,.16),transparent 60%);
  filter:blur(8px)}
body::after{content:"";position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.04;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>")}
main,header,footer,section{position:relative;z-index:1}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
picture{display:contents}
button,input,textarea,select{font-family:inherit;font-size:inherit;color:inherit;outline:none;border:none;background:transparent}
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  max-width:none;margin:0;
  padding:24px 56px;
  display:flex;align-items:center;gap:32px;
  background:transparent;
  border:none;
  border-radius:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
  transition:padding .4s cubic-bezier(.4,0,.2,1),background .4s ease,backdrop-filter .4s ease,border-color .4s ease,box-shadow .4s ease;
}
.nav.scrolled{
  background:rgba(7,10,24,.78);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  padding:14px 56px;
  border-bottom:1px solid var(--line);
  box-shadow:0 12px 40px -16px rgba(0,0,0,.6);
}
@media(max-width:900px){
  .nav,.nav.scrolled{padding:18px 24px}
  .nav.scrolled{
    background:rgba(7,10,24,.94);
    padding-top:max(18px, env(safe-area-inset-top));
    padding-left:max(24px, env(safe-area-inset-left));
    padding-right:max(24px, env(safe-area-inset-right));
  }
}
.nav-brand{display:flex;align-items:center;gap:12px;font-family:var(--display);font-weight:600;font-size:18px;letter-spacing:-.01em;color:var(--text);transition:opacity .15s;position:relative}
.nav-brand:hover{opacity:.85}
.nav-brand .spark{
  display:inline-block;width:16px;height:16px;flex-shrink:0;
  background:linear-gradient(135deg,var(--blue-2) 0%,var(--purple-2) 100%);
  clip-path:polygon(50% 0,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0 50%,40% 40%);
  box-shadow:0 0 16px var(--blue-glow),0 0 10px var(--purple-glow);
}
.nav-brand.spinning .spark{animation:spin 8s linear infinite}
.nav-brand .grad{background:linear-gradient(90deg,var(--blue-2),var(--purple-2));-webkit-background-clip:text;background-clip:text;color:transparent;font-weight:700}
@keyframes spin{to{transform:rotate(360deg)}}
.nav-brand::before{
  content:'';position:absolute;
  left:-5px;top:50%;
  width:26px;height:26px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.98),rgba(192,132,252,.7) 25%,rgba(96,165,250,.4) 55%,transparent 75%);
  transform:translateY(-50%) scale(0);
  opacity:0;pointer-events:none;mix-blend-mode:screen;z-index:2;
}
.nav-brand.opener-shine::before{animation:brandFlash 1.6s cubic-bezier(.2,.9,.2,1)}
@keyframes brandFlash{
  0%{opacity:0;transform:translateY(-50%) scale(.2)}
  18%{opacity:1;transform:translateY(-50%) scale(1.5)}
  100%{opacity:0;transform:translateY(-50%) scale(3.6)}
}
.nav-links{display:flex;gap:36px;margin-left:auto;margin-right:auto;align-items:center;position:relative}
.nav-links a{
  position:relative;
  padding:0;border-radius:0;
  font-size:14px;font-weight:500;
  color:rgba(255,255,255,.85);
  letter-spacing:.02em;
  transition:color .3s;
}
.nav-links a::after{
  content:"";position:absolute;
  left:0;bottom:-6px;
  transform:none;
  width:0;height:1px;
  background:linear-gradient(90deg,var(--blue-2),var(--purple-2));
  border-radius:0;
  transition:width .3s cubic-bezier(.4,0,.2,1);
  opacity:1;
}
.nav-links a:hover{color:#fff}
.nav-links a:hover::after{width:100%}
.nav-links a.active{color:#fff}
.nav-links a.active::after{width:100%}
.nav-cta{
  margin-left:0;
  padding:11px 22px;border-radius:100px;
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  font-family:var(--display);font-weight:500;
  font-size:12px;letter-spacing:.06em;text-transform:uppercase;
  color:#fff;
  display:inline-flex;align-items:center;gap:8px;
  box-shadow:none;
  transition:background .3s,border-color .3s,color .3s,box-shadow .3s;
  position:relative;overflow:hidden;
}
.nav-cta::before{content:none}
.nav-cta > *{position:relative;z-index:1}
.nav-cta:hover{
  background:linear-gradient(135deg,var(--blue),var(--purple));
  border-color:transparent;
  color:#fff;
  box-shadow:0 8px 24px -8px var(--purple-glow),0 0 16px -4px rgba(96,165,250,.35);
}
.nav-cta svg{width:14px;height:14px;transition:transform .3s}
.nav-cta:hover svg{transform:translateX(2px)}
.burger{display:none;background:none;border:none;cursor:pointer;color:var(--text);margin-left:auto;padding:8px;width:38px;height:38px;border-radius:50%;align-items:center;justify-content:center}
.burger span{display:block;width:18px;height:2px;background:var(--text);border-radius:2px;position:relative;transition:transform .25s,opacity .25s}
.burger span::before,.burger span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--text);border-radius:2px;transition:transform .25s}
.burger span::before{top:-6px}.burger span::after{top:6px}
.nav.menu-open .burger span{background:transparent}
.nav.menu-open .burger span::before{transform:translateY(6px) rotate(45deg)}
.nav.menu-open .burger span::after{transform:translateY(-6px) rotate(-45deg)}
.mobile-menu{
  display:none;
  position:fixed;top:84px;left:12px;right:12px;z-index:49;
  padding:18px;
  background:rgba(7,10,24,.95);border:1px solid var(--line);border-radius:24px;
  backdrop-filter:blur(22px);
  flex-direction:column;gap:4px;
  opacity:0;transform:translateY(-8px);
  transition:opacity .25s,transform .25s;
  pointer-events:none;
}
.mobile-menu.open{display:flex;opacity:1;transform:translateY(0);pointer-events:auto}
.mobile-menu a{
  padding:14px 18px;border-radius:14px;
  font-family:var(--display);font-size:18px;font-weight:500;color:var(--text-2);
  display:flex;align-items:center;justify-content:space-between;
  transition:background .15s,color .15s;
}
.mobile-menu a:hover,.mobile-menu a.active{background:rgba(96,165,250,.08);color:var(--text)}
.mobile-menu a.active::after{content:"";width:6px;height:6px;border-radius:50%;background:var(--blue-2);box-shadow:0 0 8px var(--blue-2)}
.mobile-menu .mm-cta{
  margin-top:8px;
  background:linear-gradient(135deg,var(--blue),var(--purple));
  color:#fff;justify-content:center;
}
.mobile-menu .mm-cta:hover{color:#fff}
@media(max-width:880px){
  .nav{padding:10px 12px 10px 18px;margin:12px}
  .nav-links,.nav-cta{display:none}
  .burger{display:inline-flex}
  .nav-brand{font-size:16px}
}
.std{padding:80px var(--gutter);max-width:1240px;margin:0 auto}
.std.tight{padding:48px var(--gutter)}
.eyebrow{
  display:inline-flex;align-items:center;gap:14px;
  font-family:var(--mono);font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:.22em;color:var(--blue-3);
  margin-bottom:18px;
}
h1,h2,h3{font-family:var(--display);font-weight:600;letter-spacing:-.025em;color:var(--text);line-height:1.04}
h1{font-size:clamp(48px,7vw,98px);font-weight:600}
h2{font-size:clamp(36px,5vw,68px);font-weight:600}
h3{font-size:clamp(22px,2.4vw,28px);font-weight:500;letter-spacing:-.01em;line-height:1.2}
.grad{background:linear-gradient(90deg,var(--blue-2),var(--purple-2));-webkit-background-clip:text;background-clip:text;color:transparent;font-weight:700}
.italic{font-style:italic;font-weight:500}
.lead{
  margin-top:24px;font-size:clamp(18px,1.8vw,22px);font-weight:400;
  color:var(--text-2);max-width:60ch;line-height:1.55;
}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:100px;
  font-family:var(--display);font-weight:600;font-size:15px;color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--purple));
  box-shadow:0 0 0 1px rgba(255,255,255,.1) inset,0 14px 36px -12px var(--purple-glow);
  cursor:pointer;text-decoration:none;
  transition:transform .2s cubic-bezier(.2,.9,.2,1),box-shadow .2s;
  letter-spacing:-.005em;line-height:1;
  position:relative;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 0 0 1px rgba(255,255,255,.2) inset,0 20px 44px -10px var(--purple-glow)}
.btn:focus-visible{outline:2px solid var(--blue-2);outline-offset:3px}
.btn svg{width:15px;height:15px;transition:transform .2s}
.btn:hover svg{transform:translateX(3px)}
.btn.ghost{
  background:transparent;color:var(--text);
  border:1px solid var(--line-hi);
  box-shadow:none;
}
.btn.ghost:hover{border-color:var(--blue-2);background:rgba(96,165,250,.06);box-shadow:none;transform:translateY(-2px);color:var(--text)}
.btn.sm{padding:10px 20px;font-size:13px}
.card{
  background:var(--glass);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:transform .25s cubic-bezier(.2,.9,.2,1),border-color .25s,box-shadow .25s;
}
.card:hover{transform:translateY(-4px);border-color:var(--line-hi);box-shadow:0 24px 60px -20px rgba(15,23,42,.5)}
.card-tag{font-family:var(--mono);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:var(--blue-3);margin-bottom:14px;display:block}
.card h3{margin-bottom:8px}
.card p{color:var(--text-2);font-size:14.5px}
.grid{display:grid;gap:22px}
.grid.c2{grid-template-columns:1fr 1fr}
.grid.c3{grid-template-columns:repeat(3,1fr)}
.grid.c4{grid-template-columns:repeat(4,1fr)}
@media(max-width:980px){.grid.c3,.grid.c4{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.grid.c2,.grid.c3,.grid.c4{grid-template-columns:1fr}}
.hero{padding:140px var(--gutter) 60px;max-width:1240px;margin:0 auto;position:relative;text-align:center}
.hero h1{max-width:none;margin:8px auto 0;text-align:center}
.hero .lead{max-width:60ch;margin:40px auto 0}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:48px;justify-content:center}
.hero .tt-hero h1{max-width:none}
.hero h1 .hero-line{display:block;width:100%;text-align:center;white-space:nowrap}
@media(max-width:640px){.hero h1 .hero-line{white-space:normal}}
.foot{
  border-top:1px solid var(--line);
  margin-top:80px;
  padding:48px var(--gutter) 36px;
  max-width:1240px;margin-left:auto;margin-right:auto;
}
.foot-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;margin-bottom:36px}
@media(max-width:760px){.foot-grid{grid-template-columns:1fr 1fr}}
.foot h4{font-family:var(--display);font-weight:600;font-size:13px;color:var(--text);margin-bottom:14px;letter-spacing:-.005em}
.foot ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.foot a{color:var(--text-2);font-size:14px;transition:color .15s}
.foot a:hover{color:var(--blue-2)}
.foot-blurb{color:var(--text-2);font-size:14px;line-height:1.6;max-width:34ch;margin-top:12px}
.foot-bottom{padding-top:28px;border-top:1px solid var(--line);display:flex;justify-content:space-between;color:var(--text-3);font-size:12px;font-family:var(--mono)}
@media(max-width:540px){.foot-bottom{flex-direction:column;gap:8px}}
.center{text-align:center}
.muted{color:var(--text-2)}
.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-48{margin-bottom:48px}
.tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:100px;
  font-family:var(--mono);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.16em;
  background:rgba(96,165,250,.1);color:var(--blue-3);border:1px solid rgba(96,165,250,.25);
}
.tag.gold{background:rgba(252,211,85,.08);color:var(--gold);border-color:rgba(252,211,85,.25)}
.tag.green{background:rgba(16,185,129,.1);color:#6ee7b7;border-color:rgba(52,211,153,.3)}
.tag.purple{background:rgba(168,85,247,.12);color:var(--purple-2);border-color:rgba(168,85,247,.3)}
.opener{
  position:fixed;inset:0;z-index:10000;
  background:var(--bg);overflow:hidden;
  transition:background .7s ease .1s,opacity .5s ease;
}
.opener.fade-bg{background:transparent}
.opener.done{opacity:0;pointer-events:none}
.opener-orb{
  position:absolute;top:50%;left:50%;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(96,165,250,.9),rgba(168,85,247,.4) 40%,transparent 70%);
  filter:blur(48px);
  transform:translate(-50%,-50%) scale(0);
  animation:opener-orb 1.8s cubic-bezier(.2,.9,.2,1) forwards;
}
@keyframes opener-orb{
  0%{transform:translate(-50%,-50%) scale(0);opacity:0}
  40%{opacity:1}
  100%{transform:translate(-50%,-50%) scale(10);opacity:0}
}
.opener-mark{
  position:fixed;top:0;left:0;
  display:flex;align-items:center;gap:25px;
  font-family:var(--display);font-weight:600;
  font-size:38px;letter-spacing:-.01em;color:var(--text);
  white-space:nowrap;transform-origin:0 0;opacity:0;
  z-index:10001;will-change:transform,opacity;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
.opener-mark .spark{
  display:inline-block;width:34px;height:34px;flex-shrink:0;
  background:linear-gradient(135deg,var(--blue-2) 0%,var(--purple-2) 100%);
  clip-path:polygon(50% 0,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0 50%,40% 40%);
  box-shadow:0 0 40px var(--blue-glow),0 0 24px var(--purple-glow);
}
.opener-mark .grad{background:linear-gradient(90deg,var(--blue-2),var(--purple-2));-webkit-background-clip:text;background-clip:text;color:transparent;font-weight:700}
.nav-brand.opener-hidden{visibility:hidden}
.nav-brand.opener-shine .spark{animation:spin 8s linear infinite,sparkShine 1.6s cubic-bezier(.2,.9,.2,1)}
@keyframes sparkShine{
  0%{filter:drop-shadow(0 0 2px var(--blue))}
  18%{filter:drop-shadow(0 0 8px #fff) drop-shadow(0 0 20px var(--blue-2)) drop-shadow(0 0 36px var(--purple-2))}
  55%{filter:drop-shadow(0 0 4px var(--purple-2)) drop-shadow(0 0 14px var(--blue))}
  100%{filter:drop-shadow(0 0 0 var(--blue))}
}
@media(max-width:880px){
  .opener-mark{font-size:23px;gap:17px}
  .opener-mark .spark{width:23px;height:23px;box-shadow:0 0 28px var(--blue-glow),0 0 16px var(--purple-glow)}
}
@media (prefers-reduced-motion: reduce){
  .opener,.opener-quick{display:none}
}
.reviews-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:32px;
  align-items:stretch;
  max-width:1080px;margin-left:auto;margin-right:auto;
}
@media(max-width:780px){
  .reviews-grid{grid-template-columns:1fr;max-width:680px}
}
.reviews-grid.reviews-carousel{
  display:block;
  max-width:760px;
  margin:32px auto 0;
  position:relative;
}
.reviews-track{
  display:flex;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
  padding:6px 0 14px;
}
.reviews-track:active{cursor:grabbing}
.reviews-track::-webkit-scrollbar{display:none}
.reviews-track .review-card{
  flex:0 0 100%;
  scroll-snap-align:center;
  scroll-snap-stop:always;
  max-width:100%;
  min-height:340px;
}
@media(max-width:520px){
  .reviews-track .review-card{min-height:380px}
}
.reviews-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:24px;
}
.reviews-dot{
  width:9px;height:9px;
  border-radius:50%;
  background:var(--line-hi,rgba(130,170,255,.28));
  border:none;
  cursor:pointer;
  padding:0;
  transition:width .3s cubic-bezier(.2,.9,.2,1),background .3s,opacity .2s;
}
.reviews-dot:hover{opacity:.75}
.reviews-dot.active{
  width:32px;
  border-radius:5px;
  background:linear-gradient(90deg,var(--blue-2),var(--purple-2));
}
.reviews-dot:focus-visible{outline:2px solid var(--blue-3);outline-offset:3px}
.reviews-arrow{
  position:absolute;
  top:calc(50% - 24px);
  transform:translateY(-50%);
  width:46px;height:46px;
  border-radius:50%;
  background:rgba(13,20,40,.82);
  border:1px solid var(--line-hi,rgba(130,170,255,.28));
  color:var(--text);
  cursor:pointer;
  display:grid;place-items:center;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  z-index:5;
  padding:0;
  transition:transform .25s cubic-bezier(.2,.9,.2,1),background .3s,opacity .25s,border-color .3s,box-shadow .3s,color .3s;
  box-shadow:0 12px 32px -10px rgba(0,0,0,.55);
}
.reviews-arrow svg{width:18px;height:18px}
.reviews-arrow:hover:not(:disabled){
  background:linear-gradient(135deg,var(--blue),var(--purple));
  border-color:transparent;
  transform:translateY(-50%) scale(1.08);
  color:#fff;
}
.reviews-arrow:disabled{opacity:.32;cursor:default;box-shadow:none}
.reviews-arrow:focus-visible{outline:2px solid var(--blue-3);outline-offset:3px}
.reviews-arrow.prev{left:-22px}
.reviews-arrow.next{right:-22px}
@media(max-width:600px){
  .reviews-arrow{width:40px;height:40px}
  .reviews-arrow svg{width:16px;height:16px}
  .reviews-arrow.prev{left:-6px}
  .reviews-arrow.next{right:-6px}
}
.review-card{
  padding:28px 26px;
  display:flex;flex-direction:column;gap:16px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--glass);
  backdrop-filter:blur(12px);
  transition:transform .25s,border-color .25s,box-shadow .25s;
}
.review-card:hover{transform:translateY(-3px);border-color:var(--line-hi);box-shadow:0 24px 60px -24px rgba(15,23,42,.5)}
.review-stars{color:var(--gold);font-size:17px;letter-spacing:3px;line-height:1}
.review-body{color:var(--text-2);font-size:14.5px;line-height:1.7;flex:1;margin:0}
.review-meta{
  display:flex;align-items:center;gap:14px;
  padding-top:18px;border-top:1px solid var(--line);
}
.review-avatar{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  display:grid;place-items:center;
  color:#fff;font-weight:700;font-family:var(--display);font-size:18px;
  background:linear-gradient(135deg,#14b8a6,#0f766e);
}
.review-avatar.pink{background:linear-gradient(135deg,#ec4899,#9d174d)}
.review-avatar.purple{background:linear-gradient(135deg,#a855f7,#6b21a8)}
.review-who{display:flex;flex-direction:column;gap:2px}
.review-name{font-family:var(--display);font-weight:500;font-size:15px;color:var(--text);line-height:1.2}
.review-biz{color:var(--blue-3);font-size:12.5px;letter-spacing:.01em;transition:color .15s}
.review-biz:hover{color:var(--blue-2)}
.ph-cookie-banner{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:200;
  max-width:640px;margin:0 auto;
  padding:18px 22px;
  background:rgba(7,10,24,.94);
  backdrop-filter:blur(22px) saturate(1.4);
  -webkit-backdrop-filter:blur(22px) saturate(1.4);
  border:1px solid var(--line-hi);
  border-radius:16px;
  box-shadow:0 24px 70px -20px rgba(0,0,0,.75),0 0 0 1px rgba(255,255,255,.03) inset;
  opacity:0;transform:translateY(20px);
  transition:opacity .35s cubic-bezier(.2,.9,.2,1),transform .35s cubic-bezier(.2,.9,.2,1);
}
.ph-cookie-banner.visible{opacity:1;transform:translateY(0)}
.ph-cookie-inner{display:flex;gap:22px;align-items:center;flex-wrap:wrap}
.ph-cookie-text{flex:1;min-width:220px;font-size:13.5px;line-height:1.55;color:var(--text-2);margin:0}
.ph-cookie-text a{color:var(--blue-3);text-decoration:underline;text-decoration-color:rgba(147,197,253,.35);text-underline-offset:2px}
.ph-cookie-text a:hover{text-decoration-color:var(--blue-3)}
.ph-cookie-actions{display:flex;gap:8px;flex-shrink:0}
.ph-cookie-btn{
  padding:9px 18px;border-radius:100px;
  font-family:var(--display);font-weight:500;font-size:13px;
  cursor:pointer;border:1px solid transparent;
  transition:transform .15s,background .2s,border-color .2s,box-shadow .2s;
}
.ph-cookie-decline{background:transparent;border-color:var(--line-hi);color:var(--text-2)}
.ph-cookie-decline:hover{border-color:var(--text-3);color:var(--text)}
.ph-cookie-accept{background:linear-gradient(135deg,var(--blue-2),var(--purple-2));color:#fff}
.ph-cookie-accept:hover{transform:translateY(-1px);box-shadow:0 10px 22px -10px var(--blue-glow)}
@media(max-width:720px){
  .ph-cookie-banner{left:12px;right:12px;bottom:96px;padding:16px 18px}
  .ph-cookie-inner{gap:14px}
  .ph-cookie-actions{width:100%}
  .ph-cookie-btn{flex:1}
}
.faq{display:flex;flex-direction:column;gap:10px;margin-top:32px;max-width:840px;margin-left:auto;margin-right:auto}
.faq-item{border:1px solid var(--line);border-radius:14px;background:var(--glass);overflow:hidden;transition:border-color .2s}
.faq-item:hover{border-color:var(--line-hi)}
.faq-item.open{border-color:rgba(96,165,250,.35);background:rgba(96,165,250,.04)}
.faq-q{width:100%;padding:18px 22px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-family:var(--display);font-weight:500;color:var(--text);font-size:16px;text-align:left;gap:18px;background:transparent;border:none}
.faq-q::after{content:"+";font-size:22px;color:var(--blue-2);font-weight:300;transition:transform .25s;flex-shrink:0}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s;color:var(--text-2);font-size:14.5px;line-height:1.65}
.faq-a-inner{padding:0 22px 22px}
.faq-item.open .faq-a{max-height:800px}
.wa-float{
  position:fixed;bottom:24px;right:24px;z-index:90;
  width:56px;height:56px;border-radius:50%;
  background:#25d366;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  transition:all .4s cubic-bezier(.2,.9,.2,1);
  box-shadow:0 20px 50px -15px rgba(37,211,102,.55),0 10px 30px -10px rgba(0,0,0,.5);
  animation:wa-pulse 2.6s ease-out infinite;
}
.wa-float svg{width:28px;height:28px;fill:#fff}
.wa-float:hover{transform:translateY(-3px) scale(1.06);box-shadow:0 25px 60px -12px rgba(37,211,102,.75)}
@keyframes wa-pulse{
  0%,100%{box-shadow:0 20px 50px -15px rgba(37,211,102,.55),0 10px 30px -10px rgba(0,0,0,.5),0 0 0 0 rgba(37,211,102,.5)}
  70%    {box-shadow:0 20px 50px -15px rgba(37,211,102,.55),0 10px 30px -10px rgba(0,0,0,.5),0 0 0 18px rgba(37,211,102,0)}
}
.scroll-top{
  position:fixed;bottom:90px;right:24px;z-index:90;
  width:52px;height:52px;border-radius:50%;
  background:rgba(13,20,40,.7);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid var(--line-hi);
  color:var(--blue-2);font-size:18px;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transform:translateY(20px);
  transition:all .4s cubic-bezier(.2,.9,.2,1);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.6);
  cursor:pointer;
}
.scroll-top.visible{opacity:1;pointer-events:auto;transform:translateY(0)}
.scroll-top:hover{background:var(--blue);color:#fff;border-color:var(--blue);box-shadow:0 20px 50px -10px var(--blue-glow)}
.mbar{
  position:fixed;bottom:16px;left:16px;right:16px;z-index:95;
  display:none;grid-template-columns:1fr 1fr;gap:10px;
}
.mbar a{
  padding:16px;border-radius:100px;text-align:center;
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--sans);font-size:13px;font-weight:600;
  background:rgba(13,20,40,.8);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid var(--line-hi);color:var(--text);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.6);
  text-decoration:none;
}
.mbar a + a{background:var(--blue);color:#fff;border-color:var(--blue);box-shadow:0 20px 50px -10px var(--blue-glow)}
.mbar a svg{width:17px;height:17px;flex-shrink:0}
.mbar a:first-child svg{fill:#25D366}
@media(max-width:720px){
  .mbar{display:grid}
  body{padding-bottom:84px}
  .scroll-top{bottom:96px}
  .wa-float{display:none}
}
.opener-quick{
  position:fixed;inset:0;z-index:10000;
  background:var(--bg);
  pointer-events:none;
  transform:translateX(0);
  animation:openerSweep .55s cubic-bezier(.77,0,.18,1) .05s forwards;
  will-change:transform;
}
.opener-quick::before{
  content:'';position:absolute;top:0;bottom:0;right:-6px;width:6px;
  background:linear-gradient(180deg,var(--blue-2) 0%,var(--purple-2) 100%);
  box-shadow:0 0 36px var(--blue-glow),0 0 60px var(--purple-glow);
}
@keyframes openerSweep{
  0%  {transform:translateX(0)}
  100%{transform:translateX(105%)}
}
/* ==== theme.css ==== */
:root,
:root[data-theme="default"] {
  --bg:        #04060f;
  --surface:   #0b0e1d;
  --surface-2: #131635;
  --line:      rgba(130,170,255,.12);
  --line-strong: rgba(130,170,255,.25);
  --text:      #f0f4ff;
  --text-2:    #c4c5cf;
  --text-3:    #8b8d99;
  --brand:     #3b82f6;
  --brand-2:   #a855f7;
  --brand-soft: rgba(96,165,250,0.10);
  --accent:    #6ee7b7;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-hand:    'Caveat', cursive;
  --display-weight: 700;
  --display-spacing: -0.025em;
  --heading-case: none;
  --body-tracking: 0;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --section-py: 80px;
  --hero-py:    70px;
  --glass:     rgba(13,20,40,.6);
  --line-hi:   rgba(130,170,255,.25);
  --blue:      #3b82f6;
  --blue-2:    #60a5fa;
  --blue-3:    #93c5fd;
  --blue-glow: rgba(59,130,246,.45);
  --purple:    #7c3aed;
  --purple-2:  #a855f7;
  --purple-3:  #c4b5fd;
  --purple-glow: rgba(168,85,247,.45);
  --green:     #10b981;
  --gold:      #fcd34d;
  --display:   var(--font-display);
  --sans:      var(--font-body);
  --mono:      var(--font-mono);
}
:root[data-theme="plumber"] {
  --bg: #060e1a; --surface: #0d1a30; --surface-2: #16243f;
  --line: rgba(255,255,255,0.10); --line-strong: rgba(255,255,255,0.20);
  --text: #fafafa; --text-2: #d2d6e0; --text-3: #92a0b8;
  --brand: #dc2626; --brand-2: #fbbf24; --brand-soft: rgba(220,38,38,0.12); --accent: #fbbf24;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --display-weight: 400; --display-spacing: 0.02em; --heading-case: uppercase;
  --radius-sm: 2px; --radius: 4px; --radius-lg: 6px; --radius-pill: 4px;
  --section-py: 64px; --hero-py: 44px;
  --glass: rgba(13,26,48,.7); --line-hi: rgba(255,255,255,0.20);
  --blue: #dc2626; --blue-2: #ef4444; --blue-3: #f87171;
  --blue-glow: rgba(220,38,38,.45);
  --purple: #fbbf24; --purple-2: #fcd34d; --purple-3: #fde68a;
  --purple-glow: rgba(251,191,36,.4);
  --display: var(--font-display); --sans: var(--font-body); --mono: var(--font-mono);
}
:root[data-theme="builder"] {
  --bg: #161517; --surface: #1f1e21; --surface-2: #29282d;
  --line: rgba(255,255,255,0.10); --line-strong: rgba(255,255,255,0.22);
  --text: #f5f3ef; --text-2: #c8c3b8; --text-3: #8b8579;
  --brand: #ea580c; --brand-2: #fbbf24; --brand-soft: rgba(234,88,12,0.12); --accent: #fbbf24;
  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-body: 'Roboto Condensed', system-ui, sans-serif;
  --display-weight: 400; --display-spacing: -0.03em; --heading-case: uppercase;
  --radius-sm: 0px; --radius: 0px; --radius-lg: 0px; --radius-pill: 0px;
  --section-py: 80px; --hero-py: 72px;
  --glass: rgba(31,30,33,.85); --line-hi: rgba(255,255,255,0.22);
  --blue: #ea580c; --blue-2: #f97316; --blue-3: #fb923c;
  --blue-glow: rgba(234,88,12,.45);
  --purple: #fbbf24; --purple-2: #fcd34d; --purple-3: #fde68a;
  --purple-glow: rgba(251,191,36,.4);
  --display: var(--font-display); --sans: var(--font-body); --mono: var(--font-mono);
}
:root[data-theme="beauty"] {
  --bg: #faf6f0; --surface: #ffffff; --surface-2: #f4ece1;
  --line: rgba(40,30,30,0.12); --line-strong: rgba(40,30,30,0.26);
  --text: #1f1414; --text-2: #4a3838; --text-3: #6b5757;
  --brand: #b25e72; --brand-2: #b9864e; --brand-soft: rgba(178,94,114,0.10); --accent: #8a6212;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --display-weight: 500; --display-spacing: 0; --heading-case: none; --body-tracking: 0.005em;
  --radius-sm: 16px; --radius: 24px; --radius-lg: 36px; --radius-pill: 999px;
  --section-py: 100px; --hero-py: 90px;
  --glass: rgba(255,255,255,.8); --line-hi: rgba(40,30,30,0.26);
  --blue: #b25e72; --blue-2: #9a4a5d; --blue-3: #843e51;
  --blue-glow: rgba(178,94,114,.4);
  --purple: #b9864e; --purple-2: #a37238; --purple-3: #8a6022;
  --purple-glow: rgba(185,134,78,.4);
  --display: var(--font-display); --sans: var(--font-body); --mono: var(--font-mono);
}
:root[data-theme="solicitor"] {
  --bg: #0d1119; --surface: #161c2a; --surface-2: #1f2638;
  --line: rgba(255,255,255,0.10); --line-strong: rgba(255,255,255,0.18);
  --text: #f4f0e8; --text-2: #c8c1b3; --text-3: #8f897c;
  --brand: #c9a47a; --brand-2: #87a17d; --brand-soft: rgba(201,164,122,0.10); --accent: #87a17d;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;
  --display-weight: 600; --display-spacing: -0.01em; --heading-case: none; --body-tracking: 0.005em;
  --radius-sm: 4px; --radius: 6px; --radius-lg: 8px; --radius-pill: 999px;
  --section-py: 96px; --hero-py: 90px;
  --glass: rgba(22,28,42,.7); --line-hi: rgba(255,255,255,0.18);
  --blue: #c9a47a; --blue-2: #d4b896; --blue-3: #e0cba8;
  --blue-glow: rgba(201,164,122,.4);
  --purple: #87a17d; --purple-2: #9eb593; --purple-3: #b5c9aa;
  --purple-glow: rgba(135,161,125,.4);
  --display: var(--font-display); --sans: var(--font-body); --mono: var(--font-mono);
}
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
body, .nav, .nav-cta, .nav-links a, .hero-card, .hero-variant,
.promise, .promise-portrait, .tt-main, .tt-side, .tt-tag,
.faq-item, .faq-q, .btn, .btn.ghost, .section-head, .eyebrow,
.theme-toggle, .theme-option, .card, .price-card, .price-cta, .card-tag {
  transition:
    background-color 500ms cubic-bezier(0.4, 0, 0.2, 1),
    color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 500ms cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 500ms cubic-bezier(0.4, 0, 0.2, 1),
    border-width 500ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.motif { transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1); }
.theme-switcher { position: fixed; top: 22px; right: 22px; z-index: 200; }
.theme-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: border-color 200ms, transform 200ms, background-color 500ms;
  cursor: pointer;
}
.theme-toggle:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.theme-toggle-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  flex-shrink: 0;
  transition: background 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-options {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  min-width: 280px;
}
.theme-options.open { display: flex; animation: pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes pop-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.theme-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  text-align: left; width: 100%;
  cursor: pointer;
}
.theme-option:hover { background: var(--surface-2); }
.theme-option.active { background: var(--surface-2); border-color: var(--line-strong); }
.theme-option-swatch {
  width: 22px; height: 22px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--line) inset;
}
.theme-option-meta { display: flex; flex-direction: column; line-height: 1.2; }
.theme-option-name { font-size: 14px; font-weight: 600; }
.theme-option-detail { font-size: 11px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.08em; }
.theme-sweep {
  position: fixed; inset: 0; pointer-events: none; z-index: 199;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--brand) 0%, transparent 50%);
  mix-blend-mode: overlay;
}
:root[data-theme="beauty"] .theme-sweep { mix-blend-mode: multiply; }
.theme-sweep.firing { animation: sweep 600ms cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes sweep {
  0%   { opacity: 0; }
  40%  { opacity: 0.25; }
  100% { opacity: 0; }
}
.grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
:root[data-theme="beauty"] .grad,
:root[data-theme="solicitor"] .grad {
  font-style: italic;
  font-weight: 400;
}
:root[data-theme="beauty"] .eyebrow,
:root[data-theme="solicitor"] .eyebrow {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  font-size: 16px !important;
  letter-spacing: 0.04em !important;
  color: var(--brand) !important;
}
.hand { font-family: var(--font-hand); font-weight: 500; }
.promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
:root[data-theme="builder"] .promise { border-width: 2px; }
:root[data-theme="beauty"] .promise { padding: 36px 40px; border-color: var(--brand-2); }
:root[data-theme="solicitor"] .promise { border-color: var(--line-strong); }
@media (max-width: 720px) {
  .promise { grid-template-columns: 1fr; padding: 24px; text-align: left; }
}
.promise-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: var(--display-weight);
  position: relative;
  flex-shrink: 0;
  letter-spacing: var(--display-spacing);
}
img.promise-portrait {
  object-fit: cover;
  object-position: center top;
  padding: 0;
  background: var(--surface-2);
  box-shadow:
    0 0 0 2px var(--surface),
    0 0 0 4px transparent;
  outline: 2px solid transparent;
  outline-offset: 3px;
  background-image: linear-gradient(135deg, var(--brand), var(--brand-2));
  background-clip: border-box;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}
img.promise-portrait:hover {
  transform: scale(1.03) rotate(-1deg);
}
:root[data-theme="builder"] .promise-portrait { border-radius: 0; }
.promise-portrait::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}
:root[data-theme="builder"] .promise-portrait::after { border-radius: 0; }
.promise-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 56ch;
}
:root[data-theme="beauty"] .promise-body p,
:root[data-theme="solicitor"] .promise-body p { font-size: 16px; line-height: 1.75; }
.promise-body p strong { color: var(--text); font-weight: 600; }
.promise-name {
  margin-top: 12px;
  font-family: var(--font-hand);
  font-size: 34px;
  font-weight: 700;
  color: var(--brand-2);
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
}
:root[data-theme="builder"] .promise-name {
  transform: none;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.promise-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
:root[data-theme="beauty"] .promise-meta,
:root[data-theme="solicitor"] .promise-meta {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.foot-signature {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  margin-bottom: 28px;
}
.foot-signature img {
  width: 140px;
  filter: brightness(1.5);
}
:root[data-theme="beauty"] .foot-signature img { filter: invert(0.85); }
.foot-hand {
  font-family: var(--font-hand);
  font-size: 24px;
  color: var(--brand-2);
  margin-top: 6px;
  display: inline-block;
  transform: rotate(-1deg);
}
/* ==== premium.css ==== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 200px 200px;
}
:root[data-theme="beauty"] body::before { opacity: 0.025; mix-blend-mode: multiply; }
@media (pointer: fine) {
  body { cursor: none; }
  input, textarea, select, [contenteditable="true"] { cursor: text; }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text);
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: width 0.18s, height 0.18s, background 0.2s;
  }
  .cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--text);
    border-radius: 50%;
    mix-blend-mode: difference;
    opacity: 0.4;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s,
                opacity 0.2s;
  }
  body.cursor-hover .cursor-dot { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  body.cursor-hover .cursor-ring {
    width: 52px;
    height: 52px;
    opacity: 0.8;
    border-width: 1px;
  }
  body.cursor-down .cursor-ring { width: 24px; height: 24px; }
}
@media (pointer: coarse), (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}
.btn-magnetic {
  will-change: auto;
}
body:not(.reveal-fired) .hero .eyebrow,
body:not(.reveal-fired) .hero .hero-eyebrow-row .hand,
body:not(.reveal-fired) .hero h1 .reveal-word,
body:not(.reveal-fired) .hero p.lead,
body:not(.reveal-fired) .hero-actions,
body:not(.reveal-fired) .hero-card,
body:not(.reveal-fired) .hero-variant {
  opacity: 0;
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes reveal-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
body.reveal-fired .hero .eyebrow                       { animation: reveal-up 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 0ms both; }
body.reveal-fired .hero .hero-eyebrow-row .hand        { animation: reveal-up 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 200ms both; }
body.reveal-fired .hero h1 .reveal-word                {
  display: inline-block;
  animation: reveal-up 750ms cubic-bezier(0.2, 0.9, 0.2, 1) calc(280ms + var(--i, 0) * 80ms) both;
}
body.reveal-fired .hero p.lead                         { animation: reveal-up 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 700ms both; }
body.reveal-fired .hero-actions                        { animation: reveal-up 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 850ms both; }
body.reveal-fired .hero-card,
body.reveal-fired .hero-variant                        { animation: reveal-in 800ms cubic-bezier(0.2, 0.9, 0.2, 1) 950ms both; }
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5.2em;
  line-height: 0.85;
  float: left;
  padding: 0.06em 0.12em 0 0;
  margin-bottom: -0.08em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
:root[data-theme="beauty"] .drop-cap::first-letter,
:root[data-theme="solicitor"] .drop-cap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 5.6em;
}
.pull-quote {
  display: block;
  max-width: 22ch;
  margin: 64px auto;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  position: relative;
}
.pull-quote::before,
.pull-quote::after {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4em;
  color: var(--brand-2);
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 0.05em;
}
.pull-quote-attribution {
  display: block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hand-note {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 28px;
  color: var(--brand-2);
  display: inline-block;
  transform: rotate(-4deg);
  position: relative;
  white-space: nowrap;
}
.hand-note-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  width: 32px;
  height: 24px;
  position: relative;
}
.hand-note-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M2 14 Q12 4 20 14 T28 20 M22 14 L28 20 L24 22' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.browser-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.5s;
  transform-style: preserve-3d;
  will-change: transform;
}
.browser-frame:hover {
  transform: perspective(1400px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
  box-shadow:
    0 50px 120px -20px rgba(0,0,0,0.6),
    0 0 80px -10px var(--brand-soft),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.browser-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  background: linear-gradient(135deg, var(--brand), transparent 50%, var(--brand-2));
  border-radius: 16px;
  opacity: 0.3;
  filter: blur(20px);
  pointer-events: none;
}
.browser-chrome {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 90%, white 10%), var(--surface-2));
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.browser-chrome .traffic {
  display: flex;
  gap: 6px;
}
.browser-chrome .traffic .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-chrome .traffic .dot:nth-child(1) { background: #ff5f56; }
.browser-chrome .traffic .dot:nth-child(2) { background: #ffbd2e; }
.browser-chrome .traffic .dot:nth-child(3) { background: #27c93f; }
.browser-chrome .url {
  margin-left: 14px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-3);
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 6px;
  flex: 1;
  max-width: 280px;
}
.browser-body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg);
  overflow: hidden;
}
.browser-body img,
.browser-body iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 820px){
  body:not(.reveal-fired) .hero .eyebrow,
  body:not(.reveal-fired) .hero .hero-eyebrow-row .hand,
  body:not(.reveal-fired) .hero h1 .reveal-word,
  body:not(.reveal-fired) .hero p.lead,
  body:not(.reveal-fired) .hero-actions,
  body:not(.reveal-fired) .hero-card,
  body:not(.reveal-fired) .hero-variant {
    opacity: 1;
  }
  body.reveal-fired .hero .eyebrow,
  body.reveal-fired .hero .hero-eyebrow-row .hand,
  body.reveal-fired .hero h1 .reveal-word,
  body.reveal-fired .hero p.lead,
  body.reveal-fired .hero-actions,
  body.reveal-fired .hero-card,
  body.reveal-fired .hero-variant {
    animation: none;
  }
}