/* ============================================================
   Axis — Brand Style Guide 2026
  Obsidian #FCF7F1 · Silver #C0C0C0 · Soft Sandstone #E2C5AF
  Silver Gray #AEB4BC · Volcanic Ash #66615A · Deep Appetite #11586F
   Pale Iron #5F574C · Gunmetal Iron #E7D8C6 · Graphite Silver #5F676E
   Headings: Cera Bold (Poppins 600/700 stand-in) · Body: Poppins Light
   ============================================================ */
:root {
  --obsidian: #010406;
  --cream: #FCF7F1;
  --copper: #DAAF8C;
  --sandstone: #E2C5AF;
  --amber: #C28A45;
  --ash: #66615A;
  --Appetite: #11586F;
  --iron: #5F574C;
  --gunmetal: #E7D8C6;
  --graphite: #5F676E;
  --white: #211A12;
  --glass: rgba(255, 255, 255, .66);
  --glass-line: rgba(33, 26, 18, .13);
  --grad-cta: linear-gradient(115deg, #F4F4F5, #C0C0C0 50%, #8C9198);
  --grad-text: linear-gradient(100deg, #9C6C38, #C28A45 45%, #7A4E1B);
  --ease: cubic-bezier(.19, .6, .18, 1);
  --head: 'Cera Pro', 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--amber);
  color: var(--obsidian)
}

/* ============ AURORA — scroll-reactive northern lights ============ */
#aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  filter: blur(60px) saturate(.9) brightness(1.3) opacity(.45);
  transform: scale(1.2);
  /* hide blur edges */
}

.aurora-fallback {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(194, 138, 69, .20), transparent 60%),
    radial-gradient(ellipse 70% 45% at 80% 25%, rgba(17, 88, 111, .22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(218, 175, 140, .12), transparent 60%);
}

.veil {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 70% at 50% -10%, transparent 45%, rgba(252, 247, 241, .32) 100%),
    linear-gradient(180deg, rgba(252, 247, 241, .08), rgba(252, 247, 241, .36));
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E")
}

/* ============ shared ============ */
main {
  position: relative;
  z-index: 1
}

.wrap {
  width: min(1200px, 92vw);
  margin: 0 auto
}

h1,
h2,
h3 {
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: -.025em
}

.chapter {
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0;
  position: relative
}

#how.chapter {
  min-height: auto;
  justify-content: flex-start;
  padding-bottom: 32px
}

.k {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: .85
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.sub {
  color: var(--iron);
  font-weight: 300;
  line-height: 1.7
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .06em;
  border-radius: 100px;
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
  will-change: transform;
}

.btn-copper {
  background: linear-gradient(115deg, #DAAF8C, #E2C5AF 50%, #C28A45);
  color: var(--obsidian);
  box-shadow: 0 10px 36px rgba(194, 138, 69, .30)
}

.btn-copper:hover {
  box-shadow: 0 18px 54px rgba(194, 138, 69, .45)
}

.btn-ghost {
  color: var(--white);
  background: rgba(226, 197, 175, .05);
  border: 1px solid rgba(226, 197, 175, .16);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  border-color: rgba(226, 197, 175, .4);
  background: rgba(226, 197, 175, .09)
}

.arrow {
  transition: transform .35s var(--ease)
}

.btn:hover .arrow {
  transform: translateX(4px)
}

/* rotating word — rolls up and out, next rolls in, width glides */
.rot {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  text-align: left;
  vertical-align: bottom;
  transition: width .55s var(--ease)
}

.rot .rot-in {
  display: inline-block;
  will-change: transform, opacity, filter
}

.rot .rot-in.out {
  animation: rotOut .38s var(--ease) forwards
}

.rot .rot-in.go {
  animation: rotIn .48s var(--ease)
}

@keyframes rotOut {
  to {
    opacity: 0;
    transform: translateY(-.55em);
    filter: blur(7px)
  }
}

@keyframes rotIn {
  from {
    opacity: 0;
    transform: translateY(.55em);
    filter: blur(7px)
  }
}

.rot-meas {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap
}

/* inline CTA pairs — surface every other section */
.hcta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap
}

/* reveals */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease)
}

.rv.in {
  opacity: 1;
  transform: none
}

.rv-d1 {
  transition-delay: .1s
}

.rv-d2 {
  transition-delay: .2s
}

.rv-d3 {
  transition-delay: .3s
}

@media(prefers-reduced-motion:reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* ============ nav ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 54px);
  transition: padding .5s;
}

nav.scrolled {
  padding: 14px clamp(20px, 4vw, 54px);
}

.logo {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .18em;
  text-decoration: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo b {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 12px 32px;
  align-items: center;
  max-width: 800px;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.6s var(--ease), padding 0.6s var(--ease), opacity 0.4s var(--ease);
  margin-left: 100px;
}

nav.scrolled-down .nav-links {
  max-width: 0;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  border-color: transparent;
}

nav.scrolled-down .theme-toggle {
  opacity: 0;
  pointer-events: none;
  width: 0;
  padding: 0;
  border: 0;
  margin-right: -12px;
  overflow: hidden;
  transition: all 0.6s var(--ease);
}

.nav-links a {
  color: #211A12;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: color .3s
}

.nav-links a:hover {
  color: var(--sandstone)
}

.nav-cta {
  font-size: 12px;
  padding: 10px 24px;
  box-shadow: none !important;
  color: var(--obsidian) !important;
  background: var(--cream) !important;
  border: 2px solid transparent !important;
  border-radius: 50px !important;
  background-clip: padding-box, border-box !important;
  background-origin: padding-box, border-box !important;
  background-image: linear-gradient(var(--cream), var(--cream)), linear-gradient(120deg, #C28A45, #DAAF8C 50%, #C28A45) !important;
  box-shadow: 0 0 0 1px rgba(194, 138, 69, .1), 0 7px 22px rgba(194, 138, 69, .18) !important;
  isolation: isolate;
}

.nav-right .nav-cta::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid #C28A45;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.nav-right .nav-cta.is-tapped {
  animation: axis-nav-cta-tap .36s var(--ease);
}

.nav-right .nav-cta.is-tapped::after {
  animation: axis-nav-cta-ring .42s ease-out;
}

@keyframes axis-nav-cta-tap {
  0% { transform: scale(1); }
  38% { transform: scale(.94); }
  72% { transform: scale(1.025); }
  100% { transform: scale(1); }
}

@keyframes axis-nav-cta-ring {
  0% { opacity: .8; transform: scale(.96); }
  100% { opacity: 0; transform: scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-right .nav-cta.is-tapped,
  .nav-right .nav-cta.is-tapped::after { animation: none; }
}

@media(max-width:880px) {
  .nav-links {
    display: none
  }
}

/* ============ hero ============ */
.hero {
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: max(13vh, 110px)
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.08;
  font-weight: 600
}

.hero .sub {
  font-size: clamp(15px, 1.5vw, 19px);
  margin: 22px auto 36px;
  max-width: 34ch
}

.hero .ctas {
  display: flex;
  gap: 14px;
  justify-content: center
}

/* dashboard — the showcase */
.stage {
  perspective: 1800px;
  width: min(1120px, 94vw);
  margin: 72px auto 0;
  position: relative
}

.stage::before {
  /* floor glow */
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -46px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(194, 138, 69, .28), transparent 70%);
  filter: blur(30px);
}

.dash {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  background: linear-gradient(168deg, #FFFFFF 0%, #FBF5ED 70%, #F4EFE6 100%);
  border: 1px solid rgba(226, 197, 175, .13);
  box-shadow: 0 80px 160px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(226, 197, 175, .12);
  transform: rotateX(10deg) scale(.97);
  transform-origin: 50% 0;
  transition: transform 1.3s var(--ease);
  display: grid;
  grid-template-columns: 196px 1fr;
  min-height: 580px;
  will-change: transform;
  --d-line: rgba(33, 26, 18, .10);
  --d-card: #FFFFFF;
  --d-ink: #211A12;
  --d-mut: #5F574C;
  --d-sage: #9CC4A8;
  --serif: 'Playfair Display', Georgia, serif;
}

.stage.in .dash {
  transform: rotateX(0) scale(1)
}

.dash::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 44%, rgba(226, 197, 175, .055) 50%, transparent 56%);
  background-size: 300% 100%;
  animation: sheen 8s var(--ease) infinite
}

@keyframes sheen {

  0%,
  60% {
    background-position: 140% 0
  }

  95%,
  100% {
    background-position: -60% 0
  }
}

/* —— faithful Axis Overview recreation —— */
.side {
  border-right: 1px solid var(--d-line);
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  background: rgba(252, 247, 241, .5)
}

.dlogo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 6px;
  text-decoration: none
}

.dlogo b {
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--d-ink)
}

.dlogo b i {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.dlogo span {
  font-size: 5.5px;
  letter-spacing: .52em;
  color: var(--copper);
  margin-top: 3px;
  text-transform: uppercase
}

.sg {
  margin-top: 20px
}

.sl {
  font-size: 8px;
  letter-spacing: .24em;
  color: #55615A;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 9px
}

.side a.it {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--d-mut);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  padding: 7px 9px;
  border-radius: 9px;
  margin-top: 2px;
  transition: all .3s
}

.side a.it:hover {
  color: var(--d-ink)
}

.side a.it.on {
  color: #211A12;
  background: #FFFFFF
}

.ico {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  opacity: .8
}

.apet {
  margin-top: auto;
  border-radius: 13px;
  padding: 13px 13px 12px;
  background: linear-gradient(160deg, #FFFFFF, #FCF7F1);
  border: 1px solid var(--d-line)
}

.apet .al {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
  letter-spacing: .14em;
  color: var(--d-mut);
  text-transform: uppercase
}

.apet .al::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper)
}

.apet .an {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--d-ink);
  margin-top: 6px
}

.apet .an span {
  font-size: 10px;
  color: var(--d-mut);
  font-family: var(--body)
}

.apet .abar {
  height: 3px;
  border-radius: 3px;
  background: rgba(33, 26, 18, .14);
  margin: 9px 0 11px;
  overflow: hidden
}

.apet .abar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--grad-cta);
  width: 0;
  transition: width 1.8s var(--ease) .6s
}

.stage.in .apet .abar i {
  width: 86%
}

.apet .abtn {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #211A12;
  border: 1px solid rgba(33, 26, 18, .22);
  border-radius: 8px;
  padding: 7px 0;
  text-decoration: none
}

.dmain {
  padding: 0
}

.dbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  border-bottom: 1px solid var(--d-line)
}

.crumb {
  font-size: 11px;
  color: var(--d-mut)
}

.crumb b {
  color: #211A12;
  font-weight: 400
}

.dbar-r {
  display: flex;
  align-items: center;
  gap: 14px
}

.search {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 10.5px;
  color: #5E6B64;
  background: #FFFFFF;
  border: 1px solid var(--d-line);
  border-radius: 9px;
  padding: 7px 12px
}

.search kbd {
  font-family: var(--body);
  font-size: 8.5px;
  color: #5E6B64;
  border: 1px solid var(--d-line);
  border-radius: 4px;
  padding: 1px 5px
}

.bell {
  position: relative;
  width: 14px;
  height: 14px;
  opacity: .65
}

.bell::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper)
}

.dwrap {
  padding: 18px 22px
}

.dtop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px
}

.greet {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0;
  color: var(--d-ink)
}

.greet em {
  color: var(--copper);
  font-style: italic
}

.date {
  font-size: 9px;
  color: var(--d-mut);
  letter-spacing: .18em;
  margin-top: 5px;
  text-transform: uppercase
}

.chip {
  font-size: 11px;
  font-weight: 500;
  color: #231708;
  background: linear-gradient(115deg, #DAB084, #C89A62);
  border-radius: 8px;
  padding: 9px 16px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(194, 138, 69, .22)
}

.onb {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--d-card);
  border: 1px solid var(--d-line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 13px;
  position: relative
}

.onb .oic {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  background: #FFFFFF;
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 12px
}

.onb .ot1 {
  font-size: 10px;
  color: var(--copper);
  font-weight: 500;
  letter-spacing: .04em
}

.onb .ot1 span {
  color: #5E6B64;
  font-weight: 300
}

.onb .ot2 {
  font-size: 12px;
  color: #211A12;
  margin-top: 3px;
  font-weight: 300
}

.onb .obtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  font-size: 11px;
  font-weight: 500;
  color: #FCF7F1;
  background: #211A12;
  border-radius: 7px;
  padding: 8px 14px;
  text-decoration: none
}

.onb .osync {
  position: absolute;
  right: 14px;
  top: 13px;
  color: #5E6B64;
  font-size: 12px
}

.cards {
  display: flex;
  gap: 11px;
  margin-bottom: 13px
}

.card {
  background: var(--d-card);
  border: 1px solid var(--d-line);
  border-radius: 12px;
  padding: 13px 14px;
  flex: 1;
}

.card .lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
  color: var(--d-mut);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400
}

.card .lbl svg {
  width: 10px;
  height: 10px;
  opacity: .7
}

.card .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--d-ink);
  margin-top: 8px
}

.card .num span {
  font-size: 10.5px;
  color: var(--d-mut);
  font-weight: 300;
  margin-left: 3px;
  font-family: var(--body)
}

.card .dlt {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 400;
  margin-top: 9px;
  padding: 3px 9px;
  border-radius: 6px
}

.up {
  color: var(--d-sage);
  background: rgba(80, 140, 100, .12)
}

.amb {
  color: #C8B89A;
  background: rgba(33, 26, 18, .08)
}

.panes {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 11px
}

.pane {
  background: var(--d-card);
  border: 1px solid var(--d-line);
  border-radius: 12px;
  padding: 14px 16px
}

.ph {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.ph h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: #211A12
}

.ph h4 svg {
  width: 12px;
  height: 12px;
  opacity: .7
}

.ph a {
  font-size: 10px;
  color: #211A12;
  text-decoration: none
}

.post {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-top: 1px solid rgba(33, 26, 18, .07)
}

.post:first-of-type {
  border-top: 0
}

.pip {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #211A12
}

.pip.ig {
  background: radial-gradient(circle at 30% 110%, #FDB54E 10%, #F43960 50%, #C837AB 90%)
}

.pip.tk {
  background: #000000 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18)
}

.pip.li {
  background: #0A66C2;
  border-radius: 6px
}

.pip.fb {
  background: #1877F2;
  border-radius: 50%
}

.pip.x {
  background: #000000 !important;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18)
}

.post .t {
  font-size: 11.5px;
  font-weight: 400;
  color: #211A12;
  line-height: 1.4
}

.post .m {
  font-size: 9.5px;
  color: var(--d-mut);
  margin-top: 2px
}

.tag {
  margin-left: auto;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: .14em;
  color: #B9A77F;
  background: #FFFFFF;
  border: 1px solid rgba(194, 138, 69, .18);
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap
}

.tag.live {
  color: var(--d-sage);
  background: #FFFFFF;
  border-color: rgba(80, 140, 100, .3)
}

.tag.cnt {
  color: #211A12;
  background: transparent;
  border: 1px solid rgba(33, 26, 18, .26);
  border-radius: 7px;
  font-size: 9px;
  letter-spacing: .02em;
  padding: 6px 13px;
  font-weight: 400
}

/* counters strip — borderless, Tesla-quiet */
.stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 7vw, 110px);
  margin: 84px auto 0;
  flex-wrap: wrap
}

.stat {
  text-align: center
}

.stat .v {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px)
}

.stat .k2 {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 8px;
  font-weight: 400
}

/* ============ feature chapters (Tesla) ============ */
.feature {
  text-align: center
}

.feature .k {
  display: block;
  margin-bottom: 18px
}

.feature h2 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.04
}

.feature .sub {
  font-size: clamp(14px, 1.4vw, 17px);
  margin: 18px auto 0;
  max-width: 44ch
}

.showcase {
  margin: 64px auto 0;
  width: min(1040px, 94vw)
}

/* glass tile shared */
.tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(226, 197, 175, .05), rgba(252, 247, 241, .55));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 197, 175, .10);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(226, 197, 175, .12);
  transition: transform .25s ease-out, border-color .5s, box-shadow .5s;
  transform-style: preserve-3d;
  will-change: transform;
}

.tile:hover {
  border-color: rgba(226, 197, 175, .26);
  box-shadow: 0 60px 130px rgba(0, 0, 0, .6), 0 0 60px rgba(194, 138, 69, .10), inset 0 1px 0 rgba(226, 197, 175, .16)
}

.tile .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 197, 175, .10), transparent 65%)
}

.tile:hover .shine {
  opacity: 1
}

/* trio grid */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, 94vw);
  margin: 64px auto 0
}

@media(max-width:880px) {
  .trio {
    grid-template-columns: 1fr
  }
}

.trio .tile {
  padding: 30px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  text-align: left
}

.trio h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em
}

.trio .one {
  font-size: 12.5px;
  color: var(--iron);
  margin-top: 6px;
  font-weight: 300
}

.trio .art {
  margin-top: auto
}

/* calendar art */
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 26px
}

.cal i {
  aspect-ratio: 1;
  border-radius: 7px;
  background: rgba(33, 26, 18, .10)
}

.cal i.f {
  background: linear-gradient(140deg, rgba(218, 175, 140, .85), rgba(194, 138, 69, .6))
}

.cal i.h {
  background: rgba(17, 88, 111, .5)
}

.tile:hover .cal i.f {
  animation: blink 1.8s infinite
}

@keyframes blink {
  50% {
    filter: brightness(1.4)
  }
}

/* gauge art */
.gauge {
  position: relative;
  margin: 30px auto 10px;
  width: 200px;
  height: 118px
}

.gauge svg {
  width: 200px;
  height: 200px
}

.garc {
  fill: none;
  stroke: rgba(33, 26, 18, .16);
  stroke-width: 11;
  stroke-linecap: round
}

.gval {
  fill: none;
  stroke: url(#gg);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-dasharray: 278;
  stroke-dashoffset: 278;
  transition: stroke-dashoffset 2s var(--ease) .4s
}

.tile.in .gval {
  stroke-dashoffset: 70
}

.gnum {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  text-align: center;
  font-family: var(--head);
  font-weight: 600;
  font-size: 34px
}

.gsub {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  text-align: center;
  font-size: 8.5px;
  letter-spacing: .3em;
  color: var(--graphite);
  text-transform: uppercase
}

/* chat art */
.chat {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 26px
}

.bub {
  max-width: 82%;
  font-size: 11.5px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .6s var(--ease)
}

.tile.in .bub {
  opacity: 1;
  transform: none
}

.bub.b1 {
  transition-delay: .3s
}

.bub.b2 {
  transition-delay: .9s
}

.bub.b3 {
  transition-delay: 1.5s
}

.bub.them {
  background: rgba(33, 26, 18, .12);
  border: 1px solid rgba(226, 197, 175, .07);
  align-self: flex-start;
  color: #211A12
}

.bub.us {
  background: linear-gradient(130deg, rgba(218, 175, 140, .95), rgba(194, 138, 69, .85));
  color: var(--obsidian);
  align-self: flex-end;
  font-weight: 400
}

/* ads chapter — full-bleed tile with bars */
.adstage {
  padding: 44px 48px 36px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 30px;
  align-items: end;
  min-height: 420px
}

@media(max-width:760px) {
  .adstage {
    grid-template-columns: 1fr
  }
}

.bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 260px
}

.bars .bcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  height: 100%
}

.bars i {
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, rgba(218, 175, 140, .95), rgba(194, 138, 69, .35));
  height: 10%;
  transition: height 1.4s var(--ease)
}

.bars .bcol:nth-child(2n) i {
  background: linear-gradient(180deg, rgba(23, 110, 138, .95), rgba(17, 88, 111, .3))
}

.tile.in .bars i {
  height: var(--h)
}

.bars .bl {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--graphite);
  text-transform: uppercase;
  text-align: center
}

.adside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 18px
}

.kpi {
  padding: 16px;
  border-radius: 16px;
  background: rgba(252, 247, 241, .4);
  border: 1px solid rgba(226, 197, 175, .08)
}

.kpi b {
  font-family: var(--head);
  font-weight: 600;
  font-size: 26px;
  display: block
}

.kpi span {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--graphite);
  text-transform: uppercase
}

/* ============ THE PROBLEM — slam scene ============ */
.pscene {
  height: 420vh;
  position: relative
}

.pstage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden
}

.phk {
  position: absolute;
  top: 9vh;
  left: 0;
  right: 0;
  text-align: center
}

.pslam {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity, filter
}

#ps1 {
  left: 7vw;
  top: 20%;
  text-align: left;
  width: min(600px, 74vw)
}

#ps2 {
  right: 7vw;
  top: 35%;
  text-align: right;
  width: min(600px, 74vw)
}

#ps3 {
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  text-align: center;
  width: min(780px, 88vw)
}

.pslam.pfin {
  left: 50%;
  top: 36%;
  transform: translateX(-50%);
  text-align: center;
  width: min(1040px, 94vw)
}

.pfin .w4 {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity
}

@media(max-width:760px) {

  #ps1,
  #ps2 {
    left: 6vw;
    right: 6vw;
    width: auto;
    text-align: left
  }

  #ps1 {
    top: 24%
  }

  #ps2 {
    top: 32%
  }
}

.pslam .pnum {
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4em;
  color: var(--graphite);
  display: inline-block;
  margin-bottom: 8px
}

.pslam h2 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  margin-top: 14px
}

.pslam h2 em {
  font-style: normal;
  color: var(--amber)
}

.pslam p {
  font-size: 15px;
  color: var(--iron);
  margin-top: 16px;
  line-height: 1.7;
  font-weight: 300
}

.pslam.pfin h2 {
  font-size: clamp(38px, 5.8vw, 78px)
}

/* ============ HOW IT WORKS — sticky chapters ============ */
.flow {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 54px;
  align-items: start;
  margin-top: 56px;
  text-align: left
}

@media(max-width:880px) {
  .flow {
    grid-template-columns: 1fr
  }
}

.steps {
  position: sticky;
  top: 16vh
}

.step {
  padding: 22px 0 22px 28px;
  border-left: 1px solid rgba(226, 197, 175, .12);
  position: relative;
  transition: opacity .4s
}

.step .n {
  position: absolute;
  left: -13px;
  top: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(226, 197, 175, .2);
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 11px;
  color: var(--iron);
  transition: all .4s
}

.step h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--iron);
  transition: color .4s;
  font-weight: 600
}

.step p {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.6;
  max-width: 38ch;
  font-weight: 300
}

.step.on .n {
  background: var(--grad-cta);
  color: var(--obsidian);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(194, 138, 69, .5)
}

.step.on h3 {
  color: var(--white)
}

.step:not(.on) {
  opacity: .4
}

.shots {
  display: flex;
  flex-direction: column;
  gap: 84px
}

.shot {
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
  min-height: 320px;
  background: linear-gradient(170deg, rgba(226, 197, 175, .05), rgba(252, 247, 241, .6));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 197, 175, .10);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(226, 197, 175, .12)
}

.shot h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.shot h5::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(226, 197, 175, .12)
}

.frow {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(252, 247, 241, .4);
  border: 1px solid rgba(226, 197, 175, .07);
  border-radius: 11px;
  padding: 12px 14px;
  margin-bottom: 9px;
  font-size: 12.5px;
  color: #211A12;
  font-weight: 300
}

.frow .ok {
  margin-left: auto;
  color: #9CC4A8;
  font-size: 11px
}

.frow .fic {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  background: rgba(194, 138, 69, .16);
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700
}

.pipes {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px
}

.node {
  background: rgba(252, 247, 241, .4);
  border: 1px solid rgba(226, 197, 175, .08);
  border-radius: 12px;
  padding: 13px 10px;
  text-align: center
}

.node b {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sandstone)
}

.node span {
  font-size: 9.5px;
  color: var(--graphite)
}

.pipe {
  height: 2px;
  width: 100%;
  min-width: 24px;
  background: linear-gradient(90deg, rgba(102, 97, 90, .6), var(--amber));
  position: relative
}

.pipe::after {
  content: "";
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sandstone);
  animation: pflow 2.4s linear infinite;
  box-shadow: 0 0 10px rgba(226, 197, 175, .9)
}

@keyframes pflow {
  to {
    left: calc(100% - 7px)
  }
}

.pubgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.pub {
  background: rgba(252, 247, 241, .4);
  border: 1px solid rgba(226, 197, 175, .07);
  border-radius: 12px;
  padding: 14px 12px
}

.pub b {
  font-size: 11.5px;
  font-weight: 600;
  display: block
}

.pub span {
  font-size: 9.5px;
  color: var(--graphite)
}

.pub .st {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #9CC4A8
}

.pub .st.q {
  color: var(--copper)
}

/* ============ BRAND VOICE — THE FINGERPRINT ============ */
.vscene {
  height: 180vh;
  position: relative
}

.vstage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  contain: layout paint
}

.vhead {
  position: absolute;
  top: clamp(42px, 8vh, 82px);
  left: 0;
  right: 0;
  z-index: 2;
  box-sizing: border-box;
  padding: 0 clamp(18px, 4vw, 56px);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity
}

.vhead .k {
  display: block;
  margin-bottom: 14px
}

.vhead h2 {
  width: min(100%, 980px);
  margin: 0 auto;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.025em;
  text-wrap: balance
}

.vhead .lede {
  width: min(80%, 820px);
  margin: clamp(14px, 2vh, 20px) auto 0;
  color: var(--iron);
  font-weight: 300;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.65;
  text-wrap: pretty
}

.vcur {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background: var(--copper);
  vertical-align: -2px;
  margin-left: 2px;
  animation: vblink 1s steps(1) infinite
}

@keyframes vblink {
  50% {
    opacity: 0
  }
}

/* villain card */
.vgen {
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -46%);
  width: min(520px, 86vw);
  padding: 24px 26px 28px;
  border-radius: 14px;
  opacity: 0;
  will-change: transform, opacity;
  background: #FFFFFF;
  border: 1px solid rgba(33, 26, 18, .25)
}

.vgen-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--graphite);
  margin-bottom: 14px
}

.vgen-txt {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #211A12;
  min-height: 4.6em
}

/* melt drips */
.vdrips i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 60% 60%;
  background: #E7D8C6;
  filter: blur(2px);
  opacity: 0;
  will-change: transform, opacity
}

.vdrips i:nth-child(2) {
  width: 7px;
  height: 11px
}

.vdrips i:nth-child(3) {
  width: 12px;
  height: 16px;
  background: #565E66
}

.vdrips i:nth-child(4) {
  width: 6px;
  height: 9px
}

.vdrips i:nth-child(5) {
  width: 9px;
  height: 13px;
  background: #565E66
}

/* the handprint — liquid → solid */
.vhand {
  position: absolute;
  left: 50%;
  top: 60%;
  width: clamp(92px, 10vw, 132px);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity, filter
}

.vhand svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible
}

.vpress {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(194, 138, 69, .30), transparent 65%);
  will-change: opacity, transform
}

.vtip {
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sandstone);
  box-shadow: 0 0 16px rgba(226, 197, 175, .9);
  opacity: 0;
  will-change: transform, opacity
}

.vsrc {
  position: absolute;
  left: 50%;
  top: calc(60% + min(142px, 27vw));
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0;
  white-space: nowrap;
  will-change: opacity;
  max-width: 92vw
}

/* the outputs — one voice, every channel */
.vo {
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(250px, 74vw);
  padding: 16px 18px;
  border-radius: 14px;
  opacity: 0;
  will-change: transform, opacity;
  text-align: left;
  background: linear-gradient(170deg, rgba(226, 197, 175, .06), rgba(252, 247, 241, .66));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(218, 175, 140, .22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5)
}

.vo-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px
}

.vo .pip {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 7px;
  font-size: 11px
}

.pip.vmail {
  background: rgba(194, 138, 69, .18);
  color: var(--sandstone);
  display: grid;
  place-items: center
}

.pip.vmeta2 {
  background: rgba(6, 104, 225, .16);
  color: #7FB3FF;
  display: grid;
  place-items: center;
  font-weight: 800
}

.vo-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--graphite)
}

.vo p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.5;
  color: #211A12
}

@media(max-width:760px) {
  .vring {
    transform: scale(.8)
  }

  .vo {
    width: min(220px, 80vw)
  }

  .vhead {
    top: clamp(26px, 5.5vh, 52px);
    padding: 0 16px
  }

  .vhead h2 {
    font-size: clamp(25px, 7.2vw, 36px);
    line-height: 1.06
  }

  .vhead .lede {
    font-size: clamp(12px, 3.2vw, 15px);
    width: min(100%, 580px);
    max-width: 90vw;
    padding: 0 8px;
    line-height: 1.55
  }

  .vgen {
    width: min(340px, 90vw);
    padding: 18px 20px 22px
  }

  .vgen-txt {
    font-size: 12px
  }

  .vhand {
    width: clamp(76px, 24vw, 104px)
  }

  .vsrc {
    top: calc(60% + min(92px, 26vw));
    font-size: 8px;
    letter-spacing: .1em;
    width: min(88vw, 520px);
    white-space: normal;
    text-align: center;
    line-height: 1.45
  }

  .vo {
    width: min(180px, 42vw);
    padding: 12px 14px
  }

  .vo p {
    font-size: 13px
  }

  .vo .pip {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 6px;
    font-size: 10px
  }

  .vscene {
    height: 150vh
  }
}

/* ============ SCHEDULING — night shift (+ integrations finale + ADS tackle) ============ */
.sscene {
  height: 180vh;
  position: relative;
  margin-top: 0;
  z-index: 6
}

.sscene.is-timeline-complete {
  height: 100vh;
  height: 100svh
}

.night,
.shead,
.nstat {
  will-change: transform, opacity
}

.adsword {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 5;
  opacity: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  will-change: opacity
}

.aw-main {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(110px, 21vw, 320px);
  letter-spacing: -.03em;
  line-height: 1;
  will-change: transform;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 30px 70px rgba(194, 138, 69, .25))
}

.aw-rest {
  display: flex;
  gap: .32em;
  justify-content: center;
  margin-top: 2.5vh
}

.awr {
  display: inline-block;
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 64px);
  letter-spacing: -.02em;
  color: var(--white);
  opacity: 0;
  will-change: transform, opacity
}

/* integration chips — stream A flies in top-left → panel entrance,
   stream B exits panel right → lands piled in the bottom-right corner */
.ichip {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  z-index: 4;
  display: grid;
  place-items: center;
  opacity: 0;
  will-change: transform, opacity;
  font-weight: 700;
  font-size: 17px;
  color: #211A12;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .09)
}

.ichip svg {
  display: block
}

.ichip .adb {
  position: absolute;
  right: -5px;
  bottom: -5px;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: .04em;
  background: var(--grad-cta);
  color: var(--obsidian);
  border-radius: 5px;
  padding: 2px 4px
}

.ic-ig {
  background: radial-gradient(circle at 30% 110%, #FDB54E 10%, #F43960 50%, #C837AB 90%)
}

.ic-tt {
  background: #000000 !important
}

.ic-li {
  background: #0A66C2;
  font-size: 15px;
  font-weight: 800
}

.ic-fb {
  background: #1877F2;
  font-size: 20px
}

.ic-x {
  background: #000000 !important;
  font-size: 16px
}

.ic-th {
  background: #000000 !important;
  font-size: 19px;
  font-weight: 600
}

.ic-yt {
  background: #FF0033
}

.ic-sc {
  background: #FFFC00;
  color: #000
}

.ic-ma {
  background: linear-gradient(135deg, #0066ff 0%, #1a8cff 100%) !important
}

.ic-higs {
  background: #000000 !important;
  border: 1px solid rgba(192, 255, 0, 0.3) !important
}

.ic-gbp {
  background: #FFFFFF !important;
  border: 1px solid rgba(33, 26, 18, 0.08) !important
}

.ic-ga4 {
  background: #F9AB00
}

.ic-psi {
  background: #211A12
}

.ic-mads {
  background: #211A12;
  color: #0668E1;
  font-size: 21px;
  font-weight: 800
}

.ic-gads {
  background: #FFFFFF !important;
  border: 1px solid rgba(33, 26, 18, 0.08) !important
}

.ic-shop {
  background: #95BF47
}

.sstage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden
}

.shead {
  text-align: center;
  margin-top: 80px;
}

.shead .k {
  display: block;
  margin-bottom: 14px
}

.shead h2 {
  font-size: clamp(36px, 5vw, 68px)
}

.shead .sub {
  font-size: 15px;
  margin-top: 12px
}

.night {
  position: relative;
  width: min(1040px, 92vw);
  height: 300px;
  margin: 54px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(4, 10, 14), rgba(1, 4, 6, .7));
  border: 1px solid rgba(226, 197, 175, .09);
  z-index: 5;
}

.nstars i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(226, 197, 175, .6);
  animation: twink 3s infinite
}

.nstars i:nth-child(1) {
  left: 8%;
  top: 18%
}

.nstars i:nth-child(2) {
  left: 22%;
  top: 40%;
  animation-delay: .7s
}

.nstars i:nth-child(3) {
  left: 35%;
  top: 15%;
  animation-delay: 1.4s
}

.nstars i:nth-child(4) {
  left: 52%;
  top: 34%;
  animation-delay: .3s
}

.nstars i:nth-child(5) {
  left: 64%;
  top: 12%;
  animation-delay: 1.9s
}

.nstars i:nth-child(6) {
  left: 77%;
  top: 38%;
  animation-delay: 1.1s
}

.nstars i:nth-child(7) {
  left: 88%;
  top: 20%;
  animation-delay: .5s
}

.nstars i:nth-child(8) {
  left: 45%;
  top: 55%;
  animation-delay: 2.3s
}

@keyframes twink {
  50% {
    opacity: .15
  }
}

.moon {
  position: absolute;
  left: 6%;
  top: 18%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgb(176, 174, 174);
  box-shadow: 0 0 50px rgba(226, 197, 175, .45);
  will-change: left, top, opacity
}

.sun {
  position: absolute;
  left: 30%;
  top: 18%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle at 38% 34%, #FFF3DC, #F2B85C 62%, #D89436);
  box-shadow: 0 0 70px rgba(242, 184, 92, .55), 0 0 130px rgba(242, 184, 92, .25);
  will-change: left, top, opacity
}

.nday {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  background: linear-gradient(180deg, rgba(33, 26, 18, .16), rgba(190, 170, 130, .07) 55%, rgba(40, 46, 52, .04))
}

.nstars {
  will-change: opacity
}

.ntl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--graphite)
}

.ntl::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: -12px;
  height: 1px;
  background: rgba(226, 197, 175, .12)
}

.npost {
  position: absolute;
  bottom: 64px;
  text-align: center;
  opacity: 0;
  will-change: transform, opacity
}

.npost .pip {
  margin: 0 auto 8px
}

.npost b {
  display: block;
  font-family: var(--head);
  font-weight: 600;
  font-size: 13px;
  color: var(--sandstone)
}

.npost span {
  font-size: 8.5px;
  letter-spacing: .18em;
  color: #9CC4A8;
  text-transform: uppercase
}

.nstat {
  text-align: center;
  margin-top: 40px
}

.nstat b {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px)
}

.nstat span {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 8px
}

/* ============ integrations finale (inside scheduling stage) ============ */
.ihead {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(700px, 88vw);
  opacity: 0;
  will-change: transform, opacity;
  z-index: 2
}

.ihead .k {
  display: block;
  margin-bottom: 14px
}

.ihead h2 {
  font-size: clamp(34px, 4.8vw, 64px)
}

.ihead .sub {
  font-size: 15px;
  margin-top: 12px
}

/* ============ ADS — faithful "Ads & campaigns" screen ============ */
.adx {
  padding: 0;
  text-align: left;
  background: linear-gradient(168deg, #FFFFFF 0%, #FBF5ED 70%, #F4EFE6 100%);
  --x-card: #FFFFFF;
  --x-line: rgba(33, 26, 18, .10);
  --x-ink: #211A12;
  --x-mut: #5F574C;
  --x-sage: #9CC4A8;
  --serif2: 'Playfair Display', Georgia, serif
}

.adx .dbar {
  border-bottom: 1px solid var(--x-line)
}

.adq-wrap {
  padding: 20px 24px 22px
}

.adq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px
}

.adq-title {
  font-family: var(--serif2);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0;
  color: var(--x-ink)
}

.adq-title em {
  font-style: italic
}

.adq-sub {
  font-size: 11.5px;
  color: #211A12;
  font-weight: 300;
  line-height: 1.6;
  max-width: 52ch;
  margin-top: 7px
}

.adq-cta {
  display: flex;
  gap: 9px;
  flex: 0 0 auto
}

.adq-ghost {
  font-size: 11px;
  color: #211A12;
  border: 1px solid rgba(33, 26, 18, .22);
  border-radius: 8px;
  padding: 9px 14px;
  white-space: nowrap
}

.adq-stats {
  display: flex;
  gap: 11px;
  margin-bottom: 16px
}

.adq-card {
  background: var(--x-card);
  border: 1px solid var(--x-line);
  border-radius: 12px;
  padding: 13px 14px;
  flex: 1;
}

.al {
  display: block;
  font-size: 8.5px;
  color: var(--x-mut);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400
}

.adq-card .an {
  display: block;
  font-family: var(--serif2);
  font-weight: 400;
  font-size: 25px;
  color: var(--x-ink);
  margin-top: 8px
}

.anx {
  font-size: 12px;
  color: #211A12;
  font-family: var(--serif2);
  font-style: italic;
  margin-left: 2px
}

.aq {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 400;
  margin-top: 9px;
  padding: 3px 9px;
  border-radius: 6px
}

.ok3 {
  color: var(--x-sage);
  background: rgba(80, 140, 100, .12)
}

.mut3 {
  color: var(--x-mut);
  background: rgba(33, 26, 18, .07)
}

.adq-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--x-line);
  padding-bottom: 0;
  margin-bottom: 4px
}

.adq-tabrow {
  display: flex;
  gap: 22px
}

.adq-tab {
  font-size: 11px;
  color: var(--x-mut);
  font-weight: 300;
  padding: 8px 2px 10px;
  border-bottom: 2px solid transparent
}

.adq-tab.on {
  color: var(--x-ink);
  font-weight: 500;
  border-bottom-color: var(--copper)
}

.adq-tools {
  display: flex;
  gap: 9px;
  padding-bottom: 8px
}

.adq-search {
  font-size: 10px;
  color: #5E6B64;
  background: #FFFFFF;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  padding: 7px 14px;
  min-width: 200px
}

.adq-filter {
  font-size: 10px;
  color: #211A12;
  border: 1px solid rgba(33, 26, 18, .18);
  border-radius: 8px;
  padding: 7px 12px;
  white-space: nowrap
}

.adq-row {
  display: grid;
  grid-template-columns: 44px 1.5fr 1fr 1.2fr 70px;
  align-items: center;
  gap: 14px;
  background: var(--x-card);
  border: 1px solid var(--x-line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 9px
}

.pipq {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800
}

.pipq.qm {
  background: rgba(6, 104, 225, .16);
  color: #5E94E0
}

.pipq.qt {
  background: #FCF7F1;
  color: #211A12;
  box-shadow: inset 0 0 0 1px rgba(33, 26, 18, .18)
}

.pipq.qg {
  background: #211A12;
  color: #4285F4
}

.adq-info b {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #211A12
}

.adq-info>span {
  font-size: 9.5px;
  color: var(--x-mut)
}

.adq-pills {
  display: flex;
  gap: 6px;
  margin-top: 7px
}

.adq-pills i {
  font-style: normal;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase
}

.pl-on {
  color: var(--x-sage);
  background: #FFFFFF
}

.pl-well {
  color: #D9B36B;
  border: 1px solid rgba(194, 138, 69, .4)
}

.pl-under {
  color: #211A12;
  border: 1px solid rgba(33, 26, 18, .25)
}

.adq-met b {
  display: block;
  font-family: var(--serif2);
  font-weight: 400;
  font-size: 17px;
  color: var(--x-ink);
  margin-top: 5px
}

.adq-met b.roas {
  color: #79C893;
  font-style: italic
}

.adq-met .ms {
  display: block;
  font-size: 8.5px;
  color: var(--x-mut);
  margin-top: 4px
}

.adq-status {
  text-align: right
}

.tgl {
  display: inline-block;
  width: 30px;
  height: 16px;
  border-radius: 9px;
  background: #E7D8C6;
  position: relative;
  margin-top: 7px
}

.tgl::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #211A12;
  transition: left .3s;
  left: 16px
}

.adq-ai {
  margin-top: 14px;
  background: var(--x-card);
  border: 1px solid var(--x-line);
  border-radius: 12px;
  padding: 15px 16px
}

.adq-aihead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

.adq-ailbl {
  font-size: 11px;
  color: #211A12;
  font-weight: 400
}

.adq-match {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .16em;
  color: #211A12;
  border: 1px solid rgba(33, 26, 18, .22);
  border-radius: 6px;
  padding: 5px 10px
}

.adq-aigrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px
}

.adq-aicard {
  background: rgba(252, 247, 241, .45);
  border: 1px solid var(--x-line);
  border-radius: 10px;
  padding: 14px 15px;
  display: flex;
  flex-direction: column
}

.adq-aicard .q {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--x-ink)
}

.adq-aicard .b {
  font-size: 10px;
  color: #211A12;
  line-height: 1.55;
  font-weight: 300;
  margin: 9px 0 14px
}

.acts {
  display: flex;
  gap: 8px;
  margin-top: auto
}

.acts .a1 {
  font-size: 9px;
  color: #FCF7F1;
  background: #211A12;
  border-radius: 6px;
  padding: 6px 11px;
  font-weight: 500
}

.acts .a2 {
  font-size: 9px;
  color: var(--x-mut);
  border: 1px solid var(--x-line);
  border-radius: 6px;
  padding: 6px 11px
}

/* graft: chart + autopilot log */
.adq-mid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 11px;
  margin-top: 14px
}

.adq-pane2 {
  background: var(--x-card);
  border: 1px solid var(--x-line);
  border-radius: 12px;
  padding: 14px 16px
}

.axh2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.axh2 h4 {
  font-size: 11.5px;
  font-weight: 500;
  color: #211A12;
  letter-spacing: .02em
}

.axtgt {
  font-size: 9px;
  color: var(--x-mut);
  letter-spacing: .06em
}

.adq-live {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--x-sage);
  background: #FFFFFF;
  border: 1px solid rgba(80, 140, 100, .3);
  padding: 3px 9px;
  border-radius: 6px
}

.adq-chartbox {
  height: 168px
}

.adq-chartbox svg {
  width: 100%;
  height: 100%
}

.axlab {
  font-family: var(--body);
  font-size: 8.5px;
  fill: var(--x-mut);
  font-weight: 300
}

.axgr {
  stroke: rgba(33, 26, 18, .08);
  stroke-width: 1
}

.axb {
  fill: rgba(33, 26, 18, .16);
  transform: scaleY(0);
  transform-origin: bottom;
  transform-box: fill-box;
  transition: transform .9s var(--ease)
}

.tile.in .axb {
  transform: scaleY(1)
}

.axb:nth-of-type(odd) {
  transition-delay: .15s
}

.axb:nth-of-type(3n) {
  transition-delay: .3s
}

.axb:nth-of-type(4n) {
  transition-delay: .45s
}

.axt {
  stroke: rgba(218, 175, 140, .4);
  stroke-width: 1;
  stroke-dasharray: 5 6
}

.axfill {
  fill: url(#axf);
  opacity: 0;
  transition: opacity 1.4s var(--ease) 1.5s
}

.tile.in .axfill {
  opacity: 1
}

.axline {
  fill: none;
  stroke: url(#axg);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 660;
  stroke-dashoffset: 660;
  transition: stroke-dashoffset 2.4s var(--ease) .6s
}

.tile.in .axline {
  stroke-dashoffset: 0
}

.axpt {
  fill: var(--sandstone);
  opacity: 0;
  transition: opacity .5s 2.4s
}

.tile.in .axpt {
  opacity: 1
}

.axhalo {
  fill: rgba(218, 175, 140, .16);
  animation: pulse 2.8s infinite 2.6s
}

.adq-legend {
  display: flex;
  gap: 18px;
  margin-top: 8px
}

.adq-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  color: var(--x-mut)
}

.lg-bar {
  width: 10px;
  height: 7px;
  border-radius: 2px;
  background: rgba(33, 26, 18, .3)
}

.lg-line {
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-cta)
}

.lg {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-top: 1px solid rgba(33, 26, 18, .07)
}

.lg:first-of-type {
  border-top: 0
}

.lg .lt {
  font-size: 9.5px;
  color: var(--x-mut);
  flex: 0 0 34px;
  letter-spacing: .04em
}

.lg p {
  flex: 1;
  font-size: 11px;
  font-weight: 300;
  color: #211A12;
  line-height: 1.45
}

.lg .lr {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  white-space: nowrap
}

.lr.lup {
  color: var(--x-sage);
  background: rgba(80, 140, 100, .12)
}

.lr.lfat {
  color: #C99A5C;
  background: rgba(194, 138, 69, .12)
}

.lr.lgrd {
  color: #8FB3C9;
  background: rgba(17, 88, 111, .22)
}

@media(max-width:880px) {

  .adq-stats,
  .adq-aigrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .adq-row {
    grid-template-columns: 44px 1fr 1fr;
    row-gap: 10px
  }

  .adq-mid {
    grid-template-columns: 1fr
  }

  .adq-status {
    display: none
  }

  .adq-tools {
    display: none
  }
}

#ads {
  min-height: 100vh;
  padding: clamp(80px, 11vh, 140px) 0 60px;
  margin-top: 0;
  position: relative;
  z-index: 8;
  isolation: isolate;
  transform: translateZ(0);
  background: var(--cream);
  box-shadow: 0 -34px 80px rgba(252, 247, 241, .96)
}

.sscene.is-timeline-complete .adsword {
  pointer-events: none
}

#ads.is-spinning-up {
  transform-origin: 50% 0;
  animation: adsChapterSpinUp 1.15s cubic-bezier(.16, 1, .3, 1) both
}

@keyframes adsChapterSpinUp {
  0% { opacity: .25; transform: translateY(72px) perspective(1000px) rotateX(8deg) rotateZ(-1.4deg) scale(.975); }
  62% { opacity: 1; transform: translateY(-7px) perspective(1000px) rotateX(-1deg) rotateZ(.18deg) scale(1.006); }
  100% { opacity: 1; transform: translateY(0) perspective(1000px) rotateX(0) rotateZ(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #ads.is-spinning-up { animation: none }
}

#ads .showcase {
  margin-top: 26px
}

@media(max-width:760px) {
  .sscene {
    height: 150vh;
    margin-top: 0;
  }

  .sscene.is-timeline-complete {
    height: 100vh;
    height: 100svh
  }

  #ads {
    margin-top: 0;
  }
}

/* ============ CONTENT CREATED — scroll-driven gallery dolly ============ */
.gscene {
  height: 560vh;
  position: relative
}

.gstage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center
}

.ghead {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  will-change: transform, opacity;
  width: min(800px, 90vw)
}

.ghead .k {
  display: block;
  margin-bottom: 16px
}

.ghead h2 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05
}

.ghead .sub {
  font-size: 15px;
  color: var(--iron);
  margin-top: 14px
}

.gtrack {
  display: flex;
  align-items: center;
  gap: 4vw;
  padding-left: 6vw;
  position: relative;
  z-index: 2;
  will-change: transform;
  width: max-content
}

.gcard {
  flex: 0 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #FCF7F1;
  border: 1px solid rgba(226, 197, 175, .16);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(226, 197, 175, .1);
  will-change: transform
}

.gcard.tall {
  height: 68vh
}

.gcard.short {
  height: 54vh
}

.gcard img,
.gcard video {
  height: 100%;
  width: auto;
  min-width: 36vh;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease)
}

.gcard:hover img,
.gcard:hover video {
  transform: scale(1.05)
}

.gcard .vid-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 14px rgba(194, 138, 69, .9);
  animation: pulse 2.4s infinite;
  z-index: 2
}

.gcard .gnum {
  position: absolute;
  left: 16px;
  bottom: 13px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .28em;
  color: rgba(245, 242, 238, .75);
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8)
}

@media(max-width:760px) {
  .gcard.tall {
    height: 52vh
  }

  .gcard.short {
    height: 42vh
  }
}

/* ============ THE MATH — THE RECEIPT ============ */
.mscene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.mstage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.mhead {
  text-align: center;
  opacity: 0;
  will-change: transform, opacity
}

.mhead .k {
  display: block;
  margin-bottom: 14px
}

.mhead h2 {
  font-size: clamp(34px, 4.8vw, 64px)
}

.mgrid {
  display: grid;
  grid-template-columns: auto auto;
  gap: clamp(24px, 5vw, 80px);
  justify-content: center;
  align-items: center;
  margin-top: 48px
}

@media(max-width:760px) {
  .mgrid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    margin-top: 30px
  }
}

.receipt {
  position: relative;
  width: min(360px, 86vw);
  padding: 22px 24px 26px;
  background: #FFFFFF;
  color: #211A12;
  border-radius: 4px;
  transform: rotate(-1.5deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
  will-change: transform, opacity;
  -webkit-mask-image: linear-gradient(#FCF7F1 calc(100% - 10px), transparent calc(100% - 10px)),
    radial-gradient(circle at 8px 100%, transparent 6px, #FCF7F1 6.5px);
  mask-image: linear-gradient(#FCF7F1 calc(100% - 10px), transparent calc(100% - 10px)),
    radial-gradient(circle at 8px 100%, transparent 6px, #FCF7F1 6.5px);
  -webkit-mask-size: 100% 100%, 16px 12px;
  mask-size: 100% 100%, 16px 12px;
  -webkit-mask-repeat: no-repeat, repeat-x;
  mask-repeat: no-repeat, repeat-x;
  -webkit-mask-position: 0 0, 0 100%;
  mask-position: 0 0, 0 100%
}

.r-head {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #211A12;
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px dashed #211A12
}

.r-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed #211A12;
  opacity: 0;
  will-change: transform, opacity
}

.r-line span {
  font-size: 11px;
  font-weight: 400;
  color: #211A12
}

.r-line b {
  font-size: 11.5px;
  font-weight: 600;
  color: #211A12;
  font-variant-numeric: tabular-nums
}

.r-total {
  display: flex;
  justify-content: space-between;
  padding: 13px 0 4px;
  opacity: 0;
  will-change: opacity
}

.r-total span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #211A12
}

.r-total b {
  font-family: var(--head);
  font-size: 21px;
  font-weight: 700;
  color: #211A12;
  font-variant-numeric: tabular-nums
}

.r-slash {
  position: absolute;
  left: -8%;
  top: 54%;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-cta);
  transform: rotate(-13deg);
  box-shadow: 0 0 24px rgba(194, 138, 69, .8);
  will-change: width
}

.mcard {
  position: relative;
  width: min(330px, 86vw);
  padding: 30px 28px;
  text-align: left;
  border-radius: 20px;
  opacity: 0;
  will-change: transform, opacity;
  background: linear-gradient(170deg, rgba(194, 138, 69, .14), rgba(252, 247, 241, .7));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(218, 175, 140, .4);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .55), 0 0 70px rgba(194, 138, 69, .12)
}

.mcard .mk {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper)
}

.mprice {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 12px
}

.mprice b {
  font-family: var(--head);
  font-weight: 700;
  font-size: 60px;
  letter-spacing: -.02em
}

.mprice span {
  font-size: 13px;
  color: var(--iron)
}

.mcard p {
  font-size: 13px;
  color: #211A12;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 22px
}

.mstamp {
  position: absolute;
  top: 18px;
  right: -14px;
  transform: rotate(12deg) scale(0);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--copper);
  border: 2px solid var(--copper);
  border-radius: 8px;
  padding: 12px 18px;
  opacity: .9;
  will-change: transform;
  background: rgba(252, 247, 241, .6)
}

.mcard .btn {
  width: 100%;
  justify-content: center
}

/* ============ FAQ ============ */
.faqs {
  width: min(760px, 92vw);
  margin: 48px auto 0;
  text-align: left
}

.faq {
  border: 1px solid rgba(226, 197, 175, .10);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(226, 197, 175, .04), rgba(252, 247, 241, .5));
  transition: border-color .4s
}

.faq.open {
  border-color: rgba(218, 175, 140, .34)
}

.fq {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white)
}

.fx {
  font-size: 18px;
  color: var(--copper);
  transition: transform .4s var(--ease)
}

.faq.open .fx {
  transform: rotate(45deg)
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease)
}

.fa p {
  padding: 0 22px 20px;
  font-size: 13px;
  color: var(--iron);
  line-height: 1.7;
  font-weight: 300
}

/* ============ manifesto ============ */
.manifesto {
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center
}

.manifesto h2 {
  font-size: clamp(38px, 5.8vw, 80px);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto;
  font-weight: 600
}

.manifesto .w {
  display: inline-block;
  opacity: .10;
  filter: blur(3px);
  transform: translateY(10px);
  transition: opacity .8s var(--ease), filter .8s var(--ease), transform .8s var(--ease)
}

.manifesto .w.lit {
  opacity: 1;
  filter: none;
  transform: none
}

.manifesto .sig {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500
}

/* ============ pricing — THE FORGE (scroll-scrubbed axe scene) ============ */
.axescene {
  height: 780vh;
  position: relative
}

.axestage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden
}

.axehead {
  position: absolute;
  top: 15vh;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  pointer-events: none
}

.axehead .k {
  display: block;
  margin-bottom: 14px
}

.axehead h2 {
  font-size: clamp(34px, 4.6vw, 60px)
}

.billing-toggle {
  pointer-events: auto;
  display: inline-flex;
  gap: 6px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid rgba(154, 103, 55, .22);
  border-radius: 999px;
  background: rgba(255, 250, 244, .78);
  backdrop-filter: blur(10px)
}

.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: transparent;
  color: var(--muted);
  font: 700 12px/1 Poppins, sans-serif;
  cursor: pointer
}

.billing-toggle button.active {
  background: var(--copper);
  color: #111110
}

.axepos {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(28.4vh, 43.4vw);
  z-index: 3;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none
}

.axepos svg,
.axepos img {
  width: 65%;
  height: auto;
  display: block;
  overflow: visible
}

.ax-iron {
  top: 53%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .62)) drop-shadow(0 0 46px rgba(33, 26, 18, .18))
}

.ax-silver {
  top: 53%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .62)) drop-shadow(0 0 46px rgba(226, 232, 239, .16))
}

.ax-gold {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .62)) drop-shadow(0 0 46px rgba(194, 138, 69, .24))
}

.ptext {
  position: absolute;
  left: 50%;
  bottom: 9vh;
  z-index: 7;
  transform: translateX(-50%);
  text-align: center;
  width: min(640px, 88vw);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none
}

.ptext h3 {
  font-size: clamp(26px, 3.2vw, 40px)
}

.ptext h3 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ptext p {
  font-size: 14px;
  color: var(--iron);
  line-height: 1.7;
  margin: 12px auto 20px;
  max-width: 52ch
}

.ptext .btn {
  pointer-events: auto
}

.pcols {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  z-index: 2;
  transform: translateX(-50%);
  width: min(1150px, 94vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  will-change: transform, opacity
}

.pcol {
  border-radius: 20px;
  padding: 110px 24px 24px;
  text-align: left;
  background: linear-gradient(170deg, rgba(226, 197, 175, .05), rgba(252, 247, 241, .6));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 197, 175, .10);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(226, 197, 175, .12)
}

.pcol.mid {
  border-color: rgba(218, 175, 140, .34);
  background: linear-gradient(170deg, rgba(194, 138, 69, .12), rgba(252, 247, 241, .65))
}

.pcol h3 {
  font-size: 17px
}

.pcol .pr {
  font-family: var(--head);
  font-weight: 600;
  font-size: 24px;
  margin: 6px 0 14px;
  color: var(--copper)
}

.pcol .pr small {
  font-size: 11px;
  color: var(--iron);
  font-weight: 300;
  -webkit-text-fill-color: var(--iron)
}

.pcol ul {
  list-style: none;
  margin: 0 0 20px;
  display: grid;
  gap: 8px
}

.pcol li {
  font-size: 11.5px;
  color: var(--iron);
  display: flex;
  gap: 8px;
  line-height: 1.55;
  font-weight: 300
}

.pcol li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sandstone), var(--amber));
  opacity: .9
}

.pcol .btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 12px 16px
}

@media(max-width:760px) {
  .pcols {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 2vh
  }

  .pcol {
    padding: 20px 18px
  }
}

/* reduced-motion / no-scene fallback */
.axescene.static {
  height: auto
}

.axescene.static .axestage {
  position: relative;
  height: auto;
  padding: 90px 0 60px;
  overflow: visible
}

.axescene.static .axehead {
  position: relative;
  top: auto;
  margin-bottom: 40px
}

.axescene.static .axepos,
.axescene.static .ptext {
  display: none
}

.axescene.static .pcols {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  opacity: 1;
  margin: 0 auto
}

.axescene.static .pcol {
  padding: 26px 24px
}

/* ============ final ============ */
.final {
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center
}

.final h2 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.03;
  font-weight: 600
}

.final .sub {
  margin: 22px auto 38px;
  font-size: 16px
}

.final .ctas {
  display: flex;
  gap: 14px;
  justify-content: center
}

footer {
  position: relative;
  z-index: 1;
  padding: 38px 0;
  color: var(--graphite);
  font-size: 11.5px;
  border-top: 1px solid rgba(226, 197, 175, .07)
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px
}

footer a {
  color: var(--iron);
  text-decoration: none;
  margin-left: 28px;
  font-size: 11px;
  letter-spacing: .08em
}

footer a:hover {
  color: var(--sandstone)
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(226, 197, 175, .12);
  border: 1px solid rgba(226, 197, 175, .2);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
  position: relative
}

.theme-toggle:hover {
  background: rgba(226, 197, 175, .2);
  border-color: rgba(226, 197, 175, .4);
  transform: scale(1.05)
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .4s ease
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

.theme-toggle:active svg {
  transform: rotate(180deg)
}
