/* =========================================================================
   REVENUE PILOTS
   Dark fintech confidence + luxury editorial restraint + SaaS pricing clarity
   ========================================================================= */

:root{
  /* surfaces */
  --bg:#07090D;
  --surface:#0D121A;
  --surface-2:#111A27;
  --surface-3:#0A0F16;

  /* text */
  --text:#F5F2EA;
  --text-2:#AAB2BF;
  --text-3:#7C8593;

  /* lines */
  --line:rgba(255,255,255,.10);
  --line-2:rgba(255,255,255,.16);

  /* gold */
  --gold:#C59A3C;
  --gold-hi:#E2BD64;
  --gold-deep:#8B671E;
  --gold-tint:rgba(197,154,60,.12);
  --gold-tint-2:rgba(197,154,60,.28);

  /* type */
  --font:"Manrope",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-serif:"Instrument Serif","Times New Roman",serif;

  /* layout */
  --shell:1240px;
  --shell-narrow:820px;
  --pad:24px;
  --header-h:68px;
  --radius:14px;
  --radius-sm:10px;

  /* motion */
  --ease:cubic-bezier(.22,.61,.36,1);
  --t:220ms;
}

*,*::before,*::after{box-sizing:border-box;}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

/* subtle grain so the OLED black reads rich instead of flat */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,video{max-width:100%;display:block;}

h1,h2,h3,h4{margin:0;font-weight:800;line-height:1.04;letter-spacing:-.022em;text-wrap:balance;}
p{margin:0;}
ul,ol{margin:0;padding:0;list-style:none;}

a{color:inherit;}

::selection{background:var(--gold);color:#07090D;}

/* ---------- shell ---------- */
.shell{
  width:100%;
  max-width:var(--shell);
  margin-inline:auto;
  padding-inline:var(--pad);
  position:relative;
  z-index:1;
}
.shell-narrow{max-width:var(--shell-narrow);}

/* ---------- focus + skip ---------- */
:focus-visible{
  outline:2px solid var(--gold-hi);
  outline-offset:3px;
  border-radius:4px;
}

.skip-link{
  position:absolute;
  left:16px;
  top:-60px;
  z-index:200;
  background:var(--gold);
  color:#07090D;
  font-weight:700;
  font-size:14px;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  transition:top var(--t) var(--ease);
}
.skip-link:focus-visible{top:12px;}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  --btn-bg:transparent;
  --btn-fg:var(--text);
  --btn-bd:var(--line-2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.01em;
  line-height:1;
  min-height:48px;
  padding:15px 24px;
  border-radius:10px;
  border:1px solid var(--btn-bd);
  background:var(--btn-bg);
  color:var(--btn-fg);
  cursor:pointer;
  text-decoration:none;
  text-align:center;
  transition:background var(--t) var(--ease),
             border-color var(--t) var(--ease),
             color var(--t) var(--ease),
             transform var(--t) var(--ease),
             box-shadow var(--t) var(--ease);
}
.btn:hover{transform:translateY(-1px);}
.btn:active{transform:translateY(0);}

.btn-gold{
  --btn-bg:linear-gradient(180deg,var(--gold-hi),var(--gold));
  --btn-fg:#07090D;
  --btn-bd:transparent;
  box-shadow:0 1px 0 rgba(255,255,255,.22) inset, 0 10px 28px -14px rgba(197,154,60,.75);
}
.btn-gold:hover{
  --btn-bg:linear-gradient(180deg,#EFCE7E,var(--gold-hi));
  box-shadow:0 1px 0 rgba(255,255,255,.3) inset, 0 14px 34px -14px rgba(197,154,60,.9);
}

.btn-ghost{
  --btn-bg:rgba(255,255,255,.02);
  --btn-fg:var(--text);
  --btn-bd:var(--line-2);
}
.btn-ghost:hover{
  --btn-bg:rgba(255,255,255,.06);
  --btn-bd:var(--gold-tint-2);
  --btn-fg:var(--gold-hi);
}

.btn-lg{font-size:16px;min-height:54px;padding:18px 30px;}
.btn-sm{font-size:14px;min-height:42px;padding:12px 18px;}
.btn-block{width:100%;}

.btn[disabled],.btn[aria-busy="true"]{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(7,9,13,0);
  border-bottom:1px solid transparent;
  transition:background var(--t) var(--ease), border-color var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}
.site-header.is-stuck{
  background:rgba(7,9,13,.78);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--line);
}

.header-inner{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  gap:20px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  flex:none;
  margin-right:auto;
}
.brand-badge{
  width:34px;height:34px;
  flex:none;
  border-radius:8px;
  overflow:hidden;
  background:#F8F7F4;
  box-shadow:0 0 0 1px rgba(255,255,255,.14), 0 4px 14px -6px rgba(0,0,0,.8);
}
.brand-badge img{width:100%;height:100%;object-fit:cover;}
.brand-badge-sm{width:30px;height:30px;border-radius:7px;}
.brand-name{
  font-family:var(--font-serif);
  font-size:23px;
  letter-spacing:.004em;
  color:var(--text);
  white-space:nowrap;
}

.nav-desktop{display:flex;align-items:center;gap:30px;}
.nav-desktop a{
  font-size:15px;
  font-weight:500;
  color:var(--text-2);
  text-decoration:none;
  transition:color var(--t) var(--ease);
}
.nav-desktop a:hover{color:var(--text);}

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

.nav-toggle{
  display:none;
  width:44px;height:44px;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line-2);
  border-radius:9px;
  cursor:pointer;
}
.nav-toggle-bars{display:block;width:18px;}
.nav-toggle-bars i{
  display:block;height:1.5px;background:var(--text);border-radius:2px;
  transition:transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav-toggle-bars i+i{margin-top:5px;}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:first-child{transform:translateY(3.25px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:last-child{transform:translateY(-3.25px) rotate(-45deg);}

.nav-mobile{
  display:none;
  flex-direction:column;
  padding:8px var(--pad) 18px;
  background:rgba(7,9,13,.96);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-mobile a{
  padding:13px 2px;
  font-size:16px;
  font-weight:600;
  color:var(--text-2);
  text-decoration:none;
  border-bottom:1px solid var(--line);
}
.nav-mobile a:last-child{border-bottom:0;}
.nav-mobile a:hover{color:var(--text);}

/* =========================================================================
   SHARED SECTION FURNITURE
   ========================================================================= */
.section{
  padding-block:clamp(76px,10vw,132px);
  position:relative;
  scroll-margin-top:calc(var(--header-h) + 12px);
}

.section-head{margin-bottom:clamp(38px,5vw,58px);max-width:640px;}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:20px;
}
.eyebrow-dash{
  width:26px;height:1px;flex:none;
  background:linear-gradient(90deg,var(--gold),transparent);
}

.section-title{
  font-size:clamp(34px,5.4vw,58px);
  margin-bottom:16px;
}
.section-sub{
  font-size:clamp(16px,1.6vw,18.5px);
  color:var(--text-2);
  max-width:56ch;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  position:relative;
  padding-top:clamp(72px,11vw,124px);
  padding-bottom:clamp(64px,9vw,104px);
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  top:-340px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,140vw);
  height:760px;
  pointer-events:none;
  background:
    radial-gradient(ellipse 46% 50% at 50% 50%, rgba(197,154,60,.16), transparent 68%),
    radial-gradient(ellipse 70% 46% at 50% 62%, rgba(17,26,39,.85), transparent 72%);
  filter:blur(12px);
}
.hero-inner{position:relative;}
.hero-copy{position:relative;z-index:2;max-width:1044px;}

.hero-title{
  font-size:clamp(42px,8.2vw,88px);
  letter-spacing:-.035em;
  margin-bottom:26px;
}
/* leave room for the composition without letting the headline wrap to 3 lines */
@media (min-width:1024px){ .hero-title{font-size:clamp(64px,5.4vw,78px);} }
.hero-title-accent{
  background:linear-gradient(98deg,var(--gold-hi) 4%,var(--gold) 58%,#AC8330 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-sub{
  font-size:clamp(17px,2.1vw,21px);
  color:var(--text-2);
  max-width:56ch;
  margin-bottom:34px;
}
/* controlled line break — only where there is room for it */
.br-md{display:none;}
@media (min-width:768px){ .br-md{display:inline;} }
.hero-sub strong{color:var(--text);font-weight:700;}

.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:20px;}

.hero-micro{
  font-size:13.5px;
  color:var(--text-3);
  letter-spacing:.01em;
}

/* -------------------------------------------------------------------------
   HERO ART — decorative composition
   Depicts the deliverable: a 9:16 creative pack. Contains no metrics,
   charts, or performance figures by design (see 04_DESIGN_SYSTEM / claims).
   ------------------------------------------------------------------------- */
.hero-art{
  position:absolute;
  right:-58px;
  top:50%;
  width:452px;
  height:528px;
  margin-top:-10px;
  transform:translateY(-50%);
  z-index:1;
  pointer-events:none;
}
.art-stage{position:absolute;inset:0;}

.art-arcs{
  position:absolute;
  left:44%;top:50%;
  width:172%;height:150%;
  transform:translate(-50%,-50%);
  stroke-width:1;
  -webkit-mask-image:linear-gradient(96deg,transparent 2%,#000 38%);
  mask-image:linear-gradient(96deg,transparent 2%,#000 38%);
}
.art-dots{
  position:absolute;
  right:-4px;bottom:8px;
  width:124px;height:82px;
  opacity:.6;
  -webkit-mask-image:linear-gradient(300deg,#000,transparent 76%);
  mask-image:linear-gradient(300deg,#000,transparent 76%);
}
.art-spark{
  position:absolute;
  top:8px;right:26px;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--gold-hi);
  box-shadow:0 0 14px 3px rgba(226,189,100,.55);
}

/* --- the 9:16 frame --- */
.art-frame-wrap{
  position:absolute;
  left:0;top:50%;
  width:206px;
  transform:translateY(-50%);
  animation:artFloat 9s var(--ease) infinite;
}
.art-frame{
  aspect-ratio:9/16;
  padding:1.4px;
  border-radius:27px;
  background:linear-gradient(158deg,rgba(233,199,118,1),rgba(197,154,60,.62) 40%,rgba(197,154,60,.42) 70%,rgba(139,103,30,.75));
  transform:perspective(1400px) rotateY(-15deg) rotateZ(-2.5deg);
  box-shadow:0 46px 90px -40px rgba(0,0,0,.95), 0 0 46px -12px rgba(197,154,60,.28);
}
.art-frame-inner{
  position:relative;
  height:100%;
  border-radius:25.6px;
  background:
    radial-gradient(ellipse 78% 40% at 50% 40%, rgba(197,154,60,.14), transparent 72%),
    linear-gradient(168deg,#151C25,#0A0E14 66%);
  overflow:hidden;
}
.art-lens{
  position:absolute;top:15px;left:17px;
  width:9px;height:9px;border-radius:50%;
  background:rgba(226,189,100,.32);
  box-shadow:0 0 0 1px rgba(226,189,100,.22);
}
.art-play{
  position:absolute;left:50%;top:50%;
  width:0;height:0;
  transform:translate(-38%,-50%);
  border-left:26px solid rgba(245,242,234,.88);
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.65));
}
.art-progress{
  position:absolute;left:20px;right:20px;bottom:30px;
  height:3px;border-radius:100px;
  background:rgba(245,242,234,.16);
  overflow:hidden;
}
.art-progress i{
  display:block;height:100%;width:42%;
  border-radius:100px;
  background:linear-gradient(90deg,var(--gold),var(--gold-hi));
}

/* --- floating glass cards --- */
.art-card{
  position:absolute;
  border-radius:15px;
  border:1px solid rgba(226,189,100,.24);
  background:linear-gradient(165deg,rgba(20,26,34,.9),rgba(9,12,17,.82));
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  box-shadow:0 26px 56px -30px rgba(0,0,0,.95);
}
.art-card-a{
  top:44px;right:8px;
  padding:15px 19px 16px;
  animation:artFloat 7.5s var(--ease) infinite .8s;
}
.art-card-value{
  font-size:29px;font-weight:800;line-height:1;
  letter-spacing:-.03em;
  color:var(--gold-hi);
  margin-bottom:6px;
}
.art-card-label{
  font-size:10.5px;font-weight:600;
  letter-spacing:.07em;text-transform:uppercase;
  color:var(--text-2);
}
.art-card-b{
  right:0;top:186px;
  width:206px;
  padding:16px 17px 17px;
  animation:artFloat 8.5s var(--ease) infinite .35s;
}
.art-card-title{
  font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-2);
  margin-bottom:13px;
}
.art-rows{display:flex;flex-direction:column;gap:11px;}
.art-rows li{display:flex;align-items:center;gap:11px;}
.art-thumb{
  flex:none;width:19px;height:33px;
  border-radius:4px;
  border:1px solid rgba(226,189,100,.4);
  background:linear-gradient(160deg,rgba(197,154,60,.24),rgba(197,154,60,.05));
}
.art-lines{display:flex;flex-direction:column;gap:6px;flex:1;min-width:0;}
.art-lines i{
  display:block;height:5px;border-radius:100px;
  background:rgba(245,242,234,.20);
}
.art-lines i:first-child{background:rgba(226,189,100,.38);}
/* uneven widths so the placeholder rows read as content, not a chart */
.art-rows li:nth-child(1) i:first-child{width:74%;}
.art-rows li:nth-child(1) i:last-child{width:44%;}
.art-rows li:nth-child(2) i:first-child{width:58%;}
.art-rows li:nth-child(2) i:last-child{width:36%;}
.art-rows li:nth-child(3) i:first-child{width:82%;}
.art-rows li:nth-child(3) i:last-child{width:50%;}
.art-card-c{
  left:112px;bottom:14px;
  width:62px;height:62px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold-hi);
  animation:artFloat 10s var(--ease) infinite 1.4s;
}
.art-card-c svg{width:26px;height:26px;}

@keyframes artFloat{
  0%,100%{transform:translate3d(0,0,0);}
  50%{transform:translate3d(0,-9px,0);}
}
.art-frame-wrap{animation-name:artFloatY;}
@keyframes artFloatY{
  0%,100%{transform:translateY(-50%) translateZ(0);}
  50%{transform:translateY(calc(-50% - 10px)) translateZ(0);}
}

/* =========================================================================
   WORK
   ========================================================================= */
.section-work{
  border-top:1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(17,26,39,.6), transparent 70%),
    var(--bg);
}

.work-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(18px,2.2vw,30px);
  align-items:start;
}
/* editorial stagger — desktop only */
@media (min-width:1024px){
  .work-grid > .work-card:nth-child(2){transform:translateY(38px);}
}

.work-card{display:flex;flex-direction:column;gap:16px;min-width:0;}

.video-frame{
  position:relative;
  aspect-ratio:9/16;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--surface-3);
  border:1px solid var(--line-2);
  box-shadow:0 24px 60px -32px rgba(0,0,0,.95);
  transition:border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.work-card:hover .video-frame{
  border-color:var(--gold-tint-2);
  box-shadow:0 28px 70px -30px rgba(0,0,0,1), 0 0 0 1px var(--gold-tint);
  transform:translateY(-3px);
}
.work-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:var(--surface-3);
}

.spec-chip{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  font-size:9.5px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--text);
  background:rgba(7,9,13,.62);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.16);
  padding:5px 9px;
  border-radius:100px;
  pointer-events:none;
}

.video-toggle{
  position:absolute;
  z-index:3;
  left:50%;bottom:14px;
  transform:translateX(-50%);
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  color:#07090D;
  background:var(--gold-hi);
  border:0;
  border-radius:100px;
  padding:10px 20px;
  min-height:40px;
  cursor:pointer;
}

.work-meta{padding-inline:2px;}
.work-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:7px;
}
.work-title{
  font-size:clamp(17px,1.6vw,19.5px);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.25;
  color:var(--text);
}

.work-disclosure{
  margin-top:clamp(34px,4.5vw,54px);
  padding-top:22px;
  border-top:1px solid var(--line);
  font-size:14px;
  color:var(--text-3);
  max-width:70ch;
}

/* =========================================================================
   PRICING
   ========================================================================= */
.section-pricing{border-top:1px solid var(--line);}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}

.price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:22px;
  padding:32px 28px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.008));
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.price-card:hover{border-color:var(--line-2);transform:translateY(-2px);}

.price-card-featured{
  border-color:var(--gold-tint-2);
  background:
    linear-gradient(180deg,rgba(197,154,60,.10),rgba(197,154,60,.02) 42%,rgba(255,255,255,.01)),
    var(--surface);
  box-shadow:0 30px 70px -40px rgba(197,154,60,.5);
}
.price-card-featured:hover{border-color:rgba(197,154,60,.48);}

.price-badge{
  position:absolute;
  top:-11px;
  left:28px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#07090D;
  background:linear-gradient(180deg,var(--gold-hi),var(--gold));
  padding:5px 12px;
  border-radius:100px;
}

.price-head{display:flex;flex-direction:column;gap:10px;}
.price-name{
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-2);
}
.price-amount{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;}
.price-value{
  font-size:clamp(40px,4.4vw,52px);
  font-weight:800;
  letter-spacing:-.035em;
  line-height:1;
  color:var(--text);
}
.price-term{font-size:14px;color:var(--text-3);font-weight:500;}
.price-pitch{font-size:15.5px;color:var(--text-2);}

.price-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  padding-top:22px;
  border-top:1px solid var(--line);
  flex:1;
}
.price-list li{
  position:relative;
  padding-left:26px;
  font-size:15px;
  line-height:1.45;
  color:var(--text-2);
}
.price-list li::before{
  content:"";
  position:absolute;
  left:2px;top:7px;
  width:11px;height:6px;
  border-left:1.75px solid var(--gold);
  border-bottom:1.75px solid var(--gold);
  transform:rotate(-45deg);
}

.config-notice{
  margin-top:26px;
  padding:16px 20px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(226,189,100,.34);
  background:rgba(197,154,60,.08);
  color:var(--text);
  font-size:14.5px;
  line-height:1.55;
}
.config-notice code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:13px;
  color:var(--gold-hi);
  background:rgba(0,0,0,.35);
  padding:2px 6px;
  border-radius:5px;
  overflow-wrap:anywhere;
}
.config-notice strong{display:block;margin-bottom:5px;font-weight:700;}

.price-foot{
  margin-top:24px;
  font-size:13.5px;
  color:var(--text-3);
  max-width:70ch;
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.section-how{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  border-top:1px solid var(--line);
}

/* --- background: static glow (always) + moving beams (motion allowed) --- */
.how-ambient{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background:radial-gradient(ellipse 52% 62% at 50% 42%, rgba(197,154,60,.11), transparent 70%);
}
.how-beams{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  display:block;width:100%;height:100%;
  filter:blur(30px);
  opacity:.75;
}
.how-beams-veil{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 60% 66% at 50% 40%, transparent 0%, transparent 40%, var(--bg) 82%),
    linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
}
@media (prefers-reduced-motion:reduce){
  .how-beams{display:none;}
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(18px,2.4vw,34px);
}
.step{
  position:relative;
  padding-top:26px;
  border-top:1px solid var(--line);
}
.step::after{
  content:"";
  position:absolute;
  top:-1px;left:0;
  width:34px;height:1px;
  background:var(--gold);
}
.step-num{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--gold);
  margin-bottom:14px;
}
.step-title{
  font-size:19px;
  font-weight:700;
  letter-spacing:-.018em;
  margin-bottom:9px;
}
.step-body{font-size:15px;color:var(--text-2);line-height:1.55;}

.steps-note{
  margin-top:clamp(32px,4vw,46px);
  font-size:14.5px;
  color:var(--text-3);
  max-width:70ch;
}

/* =========================================================================
   TRUST
   ========================================================================= */
.section-trust{border-top:1px solid var(--line);}

.trust-block{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:clamp(28px,4vw,58px);
  align-items:start;
  padding:clamp(32px,4.4vw,52px);
  border-radius:var(--radius);
  border:1px solid var(--line);
  border-left:2px solid var(--gold);
  background:linear-gradient(100deg,rgba(197,154,60,.055),rgba(255,255,255,.012) 48%);
}
.trust-title{
  font-size:clamp(27px,3.6vw,40px);
  margin-bottom:18px;
}
.trust-body{font-size:16.5px;color:var(--text-2);max-width:52ch;}
.trust-disclosure{
  font-size:14.5px;
  color:var(--text-3);
  line-height:1.65;
  padding-top:6px;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.section-faq{border-top:1px solid var(--line);}

.faq-list{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 2px;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.014em;
  color:var(--text);
  cursor:pointer;
  list-style:none;
  min-height:48px;
  transition:color var(--t) var(--ease);
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary:hover{color:var(--gold-hi);}
.faq-item summary::after{
  content:"";
  flex:none;
  width:10px;height:10px;
  border-right:1.75px solid var(--gold);
  border-bottom:1.75px solid var(--gold);
  transform:rotate(45deg) translateY(-2px);
  transition:transform var(--t) var(--ease);
}
.faq-item[open] summary::after{transform:rotate(-135deg) translateY(-2px);}
.faq-answer{padding:0 2px 24px;max-width:70ch;}
.faq-answer p{font-size:15.5px;color:var(--text-2);line-height:1.62;}

/* =========================================================================
   CONTACT
   ========================================================================= */
.section-contact{
  border-top:1px solid var(--line);
  background:
    radial-gradient(ellipse 54% 60% at 12% 0%, rgba(197,154,60,.075), transparent 68%),
    var(--bg);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(34px,5vw,72px);
  align-items:start;
}
.contact-pitch .section-title{font-size:clamp(30px,4.2vw,46px);}
.contact-ctas{margin:28px 0 14px;display:flex;flex-wrap:wrap;gap:12px;}

.contact-form-wrap{
  padding:clamp(24px,3vw,34px);
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.008));
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.form-heading{
  font-size:20px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:22px;
  line-height:1.25;
}

.lead-form{display:flex;flex-direction:column;gap:16px;}
.field{display:flex;flex-direction:column;gap:7px;min-width:0;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}

.field label{
  font-size:13px;
  font-weight:600;
  letter-spacing:.01em;
  color:var(--text-2);
}
.req{color:var(--gold);}
.opt{color:var(--text-3);font-weight:400;}

.field input,
.field select,
.field textarea{
  width:100%;
  font-family:inherit;
  font-size:15.5px;
  color:var(--text);
  background:rgba(0,0,0,.32);
  border:1px solid var(--line-2);
  border-radius:9px;
  padding:13px 14px;
  min-height:48px;
  transition:border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.field textarea{resize:vertical;min-height:88px;line-height:1.5;}
.field select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23AAB2BF' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:38px;
}
.field input::placeholder,
.field textarea::placeholder{color:var(--text-3);}
.field input:hover,.field select:hover,.field textarea:hover{border-color:rgba(255,255,255,.24);}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:rgba(0,0,0,.5);
}
.field input:focus-visible,.field select:focus-visible,.field textarea:focus-visible{
  outline:2px solid var(--gold-hi);
  outline-offset:2px;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"]{border-color:#E0674F;}

.field-error{font-size:13px;color:#F09A85;font-weight:500;}

.hp-field{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
}

.form-status{
  font-size:14.5px;
  line-height:1.55;
  padding:14px 16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line-2);
  background:rgba(255,255,255,.03);
}
.form-status.is-success{
  border-color:rgba(122,196,148,.4);
  background:rgba(122,196,148,.1);
  color:#BEE6CD;
}
.form-status.is-error{
  border-color:rgba(224,103,79,.42);
  background:rgba(224,103,79,.1);
  color:#F5B7A6;
}
.form-status code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:12.5px;
  background:rgba(0,0,0,.4);
  padding:2px 6px;
  border-radius:5px;
  overflow-wrap:anywhere;
}

.form-fineprint{font-size:12.5px;color:var(--text-3);}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{
  border-top:1px solid var(--line);
  padding-block:44px 52px;
  background:var(--surface-3);
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 28px;
}
.footer-brand{display:inline-flex;align-items:center;gap:10px;}
.footer-brand .brand-name{font-size:20px;}
.footer-contact{margin-right:auto;}
.footer-contact a{
  font-size:14.5px;
  color:var(--text-2);
  text-decoration:none;
  border-bottom:1px solid var(--line-2);
  padding-bottom:2px;
  transition:color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.footer-contact a:hover{color:var(--gold-hi);border-color:var(--gold);}
.footer-disclosure{
  font-size:12.5px;
  color:var(--text-3);
  flex-basis:100%;
  padding-top:18px;
  border-top:1px solid var(--line);
  line-height:1.6;
}
.footer-copy{font-size:12.5px;color:var(--text-3);}

/* =========================================================================
   REVEAL
   ========================================================================= */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 620ms var(--ease), transform 620ms var(--ease);
}
.reveal.is-visible{opacity:1;transform:none;}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

/* --- hero art scales as one piece, then steps aside entirely --- */
@media (max-width:1340px){
  .hero-art{transform:translateY(-50%) scale(.9);transform-origin:100% 50%;right:-34px;}
}
@media (max-width:1180px){
  .hero-art{transform:translateY(-50%) scale(.78);transform-origin:100% 50%;right:0;opacity:.9;}
}
/* Below this the headline needs the full width — the art would crowd it. */
@media (max-width:1023px){
  .hero-art{display:none;}
}

/* --- tablet --- */
@media (max-width:1023px){
  .nav-desktop{display:none;}
  .nav-toggle{display:inline-flex;}
  .nav-mobile{display:none;}
  .nav-mobile.is-open{display:flex;}

  .price-grid{grid-template-columns:1fr;max-width:560px;margin-inline:auto;}
  .price-card-featured{order:-1;}

  .steps{grid-template-columns:repeat(2,1fr);row-gap:34px;}

  .trust-block{grid-template-columns:1fr;}

  .contact-grid{grid-template-columns:1fr;}
  .contact-pitch{max-width:620px;}
}

/* --- work section: horizontal snap carousel below desktop --- */
@media (max-width:1023px){
  .work-grid{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:min(74vw,330px);
    grid-template-columns:none;
    gap:16px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    /* bleed to the viewport edges so cards feel intentional, not cramped */
    margin-inline:calc(var(--pad) * -1);
    padding-inline:var(--pad);
    padding-bottom:8px;
    /* keep the gutter when a card snaps, instead of snapping flush to the edge */
    scroll-padding-inline:var(--pad);
  }
  .work-grid::-webkit-scrollbar{display:none;}
  .work-card{scroll-snap-align:start;}
  .work-card:last-child{
    /* trailing gutter so the final card can snap flush */
    margin-right:var(--pad);
  }
}

/* --- phone --- */
@media (max-width:640px){
  :root{--pad:20px;}
  body{font-size:16px;}

  .header-cta{display:none;}

  .hero{padding-top:52px;}
  .hero-title{font-size:clamp(38px,10.5vw,52px);letter-spacing:-.03em;}
  .hero-ctas{gap:10px;}
  .hero-ctas .btn{width:100%;}

  .work-grid{grid-auto-columns:min(80vw,300px);}

  .price-card{padding:28px 22px;}
  .price-grid{max-width:none;}

  .steps{grid-template-columns:1fr;row-gap:28px;}

  .field-row{grid-template-columns:1fr;}

  .contact-ctas .btn{width:100%;}

  .footer-inner{flex-direction:column;align-items:flex-start;gap:14px;}
  .footer-contact{margin-right:0;}
}

@media (max-width:380px){
  .brand-name{font-size:20px;}
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{opacity:1;transform:none;}
  .btn:hover,.work-card:hover .video-frame,.price-card:hover{transform:none;}
  /* hold the composition still, but keep its layout transforms intact */
  .art-card-a,.art-card-b,.art-card-c{animation:none;}
  .art-frame-wrap{animation:none !important;transform:translateY(-50%);}
}
