/* ==========================================================================
   VOC — Marketing & AI Video
   Structure follows the reference: framed bottom-aligned hero, numbered
   eyebrows with right-aligned headings, heavy glass cards with corner arrows.
   Palette and logo are VOC's own.
   ========================================================================== */

@font-face {
  font-family: 'ITBlocron';
  src: url('fonts/ITBlocron-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg-0: #050505;
  --bg-1: #0a0a0d;
  --bg-2: #131318;

  --glass-base:        rgba(255,255,255,.04);
  --glass-elev:        rgba(255,255,255,.06);
  --glass-border:      rgba(255,255,255,.12);
  --glass-border-soft: rgba(255,255,255,.08);

  /* VOC gold */
  --gold-1: #E8CE7A;
  --gold-3: #C9A227;
  --gold-5: #8E7015;
  --accent-1: #E8CE7A;
  --accent-3: #C9A227;

  --text:      #f4f4f0;
  --text-soft: #d8d8d2;
  --text-dim:  #bcbcb4;
  --text-mute: #a4a49c;

  --sans: 'Vela Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display',
          'Helvetica Neue', Inter, sans-serif;
  --mono-label: 'ITBlocron', var(--sans);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

body[data-mode="marketing"] .v-only,
body[data-mode="video"]     .m-only { display: none !important; }

/* ---------- Scroll progress ---------- */

.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 200; pointer-events: none; }

.scroll-progress i {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-5), var(--gold-1));
}

/* ---------- Navbar ---------- */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 40px;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease),
              border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-stuck {
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--glass-border-soft);
}

.logo-circle {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-elev);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.logo-block:hover .logo-circle { border-color: rgba(201,162,39,.45); transform: scale(1.05); }

.logo-circle img { width: 30px; }

.nav-menu { display: flex; gap: 30px; margin-left: auto; }

.nav-menu a {
  position: relative;
  color: var(--text-mute);
  text-decoration: none;
  font-size: 14px;
  transition: color .35s var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--gold-3);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .5s var(--ease);
}

.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav-cta {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass-elev);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              color .4s var(--ease);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  border-color: transparent;
  color: #17130a;
}

/* ---------- Hero ---------- */

.hero.framed {
  position: relative;
  margin: 16px;
  padding: 120px 48px 48px;
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201,162,39,.20);
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-0);
}

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(5,5,5,.97) 6%, rgba(5,5,5,.62) 46%, rgba(5,5,5,.86) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,162,39,.16), transparent 62%);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 60vw; height: 60vw;
  top: -20vw; right: -14vw;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 68%);
  animation: heroDrift 24s cubic-bezier(.4,0,.2,1) infinite alternate;
}

@keyframes heroDrift { to { transform: translate3d(-8vw, 10vh, 0) scale(1.2); } }

.hero-text-r {
  position: absolute;
  top: 108px; right: 48px;
  z-index: 3;
  text-align: right;
}

.hero-caps {
  margin: 0;
  font-family: var(--mono-label);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
}

.hero-body { position: relative; z-index: 3; width: 100%; }

/* ---------- Mode switch ---------- */

.mode-switch { display: flex; margin-bottom: 34px; }

.mode-rail {
  position: relative;
  display: flex;
  padding: 5px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(10,10,13,.6);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.mode-glide {
  position: absolute;
  top: 5px; left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  transition: transform .6s var(--ease);
}

body[data-mode="video"] .mode-glide { transform: translateX(100%); }

.mode-opt {
  position: relative;
  z-index: 2;
  min-width: 156px;
  padding: 11px 22px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--text-mute);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: -.005em;
  transition: color .45s var(--ease);
}

body[data-mode="marketing"] .mode-opt[data-mode-set="marketing"],
body[data-mode="video"]     .mode-opt[data-mode-set="video"] { color: #17130a; font-weight: 500; }

.mode-opt:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 4px; }

/* ---------- Hero type ---------- */

.hero-h1 {
  margin: 0 0 30px;
  max-width: 17ch;
  font-size: clamp(32px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.hero-h1 em, h2 em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-1) 8%, var(--gold-3) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.line { display: block; overflow: hidden; }

.line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.1s var(--ease);
}

.line.is-in > span { transform: translateY(0); }

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px 44px;
  margin-bottom: 46px;
}

.hero-sub { margin: 0; max-width: 44ch; font-size: 17px; color: var(--text-dim); }
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-btn-primary, .hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              background .45s var(--ease), border-color .45s var(--ease);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #17130a;
  font-weight: 500;
  box-shadow: 0 18px 44px -14px rgba(201,162,39,.55);
}

.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 56px -14px rgba(201,162,39,.72); }
.hero-btn-primary .arrow { transition: transform .45s var(--ease); }
.hero-btn-primary:hover .arrow { transform: translateX(4px); }

.hero-btn-secondary {
  border: 1px solid var(--glass-border);
  background: var(--glass-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text);
}

.hero-btn-secondary:hover { border-color: rgba(201,162,39,.5); transform: translateY(-2px); }

/* ---------- Hero stack cards ---------- */

.hero-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.hero-stack-card {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 22px 48px -22px rgba(0,0,0,.7);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}

.hero-stack-card:hover { transform: translateY(-5px); border-color: rgba(201,162,39,.42); }

.hero-stack-card .title {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(201,162,39,.16);
  border: 1px solid rgba(201,162,39,.34);
  color: var(--gold-1);
  font-family: var(--mono-label);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stat-big {
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.stat-desc { margin: 8px 0 0; font-size: 13.5px; color: var(--text-mute); line-height: 1.45; }

/* corner arrow, as in the reference */
.card-corner {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-mute);
  font-size: 12px;
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .45s var(--ease);
}

.hero-stack-card:hover .card-corner,
.glass:hover .card-corner,
.flow-card:hover .card-corner {
  background: var(--gold-3);
  border-color: var(--gold-1);
  color: #17130a;
  transform: rotate(45deg);
}

/* ---------- Layout ---------- */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 48px; position: relative; }

section { padding: 96px 0; }

/* ---------- Section head: eyebrow left, heading right ---------- */

.section-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--glass-border-soft);
  flex-wrap: wrap;
}

.section-eyebrow .num {
  font-family: var(--mono-label);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--gold-3);
}

.section-eyebrow .label {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.9vw, 50px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-align: right;
}

h2 .accent { color: var(--gold-1); font-weight: 400; }

.lead {
  margin: 26px 0 62px;
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mute);
}

.fine { margin: 34px 0 0; font-size: 13.5px; color: var(--text-mute); }

/* ---------- Manifesto ---------- */

.manifesto-h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.04em;
  text-align: left;
}

.strike { position: relative; color: rgba(255,255,255,.4); }

.strike::after {
  content: '';
  position: absolute;
  left: -2%; top: 54%;
  width: 104%; height: 2px;
  background: var(--gold-3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s var(--ease) .35s;
}

[data-reveal].is-in .strike::after, .manifesto-h2.is-in .strike::after { transform: scaleX(1); }

.money {
  background: linear-gradient(120deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 400;
}

.manifesto-sub { margin: 0 0 52px; max-width: 720px; font-size: 18px; color: var(--text-mute); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.c-card {
  border-radius: 22px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-base);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}

.c-card--new { border-color: rgba(201,162,39,.34); }
.c-card:hover { transform: translateY(-4px); }

.c-art {
  position: relative;
  padding: 30px 26px 26px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,.07), transparent 62%),
    linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
}

.c-card--new .c-art {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,162,39,.22), transparent 64%),
    linear-gradient(160deg, rgba(201,162,39,.10), rgba(255,255,255,.01));
}

.c-label {
  position: absolute;
  top: 22px; left: 26px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.c-card--new .c-label { color: var(--gold-1); }

.c-head { margin: 0; font-size: clamp(24px, 2.6vw, 34px); font-weight: 300; line-height: 1.1; letter-spacing: -.03em; }

.c-pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 26px 26px; }

.c-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border-soft);
  background: rgba(20,20,22,.7);
  font-size: 13px;
  color: var(--text-mute);
}

.c-pill svg { width: 13px; height: 13px; color: rgba(255,255,255,.32); }
.c-pill--on { border-color: rgba(201,162,39,.36); color: var(--text); }
.c-pill--on svg { color: var(--gold-1); }

.manifesto-tagline { margin: 44px 0 0; max-width: 760px; font-size: 17px; color: var(--text-mute); }
.manifesto-tagline strong { color: var(--text); font-weight: 400; }

/* ---------- Flow cards ---------- */

.flow-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.flow-card {
  position: relative;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .5s var(--ease), border-color .5s var(--ease),
              background .5s var(--ease);
}

.flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,162,39,.4);
  background: var(--glass-elev);
}

.flow-num {
  display: block;
  margin-bottom: 46px;
  font-family: var(--mono-label);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold-3);
}

.flow-title { margin: 0 0 10px; font-size: 22px; font-weight: 400; letter-spacing: -.02em; }
.flow-desc { margin: 0; font-size: 15px; color: var(--text-mute); }

/* ---------- Glass grid cards ---------- */

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

.glass {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  background: var(--glass-elev);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 24px 48px -20px rgba(0,0,0,.5);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}

.glass:hover { transform: translateY(-5px); border-color: rgba(201,162,39,.45); }

.glass-gold {
  position: relative;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 58%, var(--gold-5) 100%);
  color: #17130a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 24px 56px -16px rgba(142,112,21,.5);
  transition: transform .5s var(--ease);
}

.glass-gold:hover { transform: translateY(-5px); }

.step-num {
  margin-bottom: 18px;
  font-family: var(--mono-label);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold-3);
}

.glass-gold .step-num { color: rgba(23,19,10,.62); }

.step-title { margin-bottom: 10px; font-size: 20px; font-weight: 400; letter-spacing: -.022em; }
.step-desc { font-size: 15px; color: var(--text-mute); line-height: 1.55; }
.glass-gold .step-desc { color: rgba(23,19,10,.82); }

.step-time {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border-soft);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--text-mute);
}

.glass-gold .step-time { border-top-color: rgba(23,19,10,.22); color: rgba(23,19,10,.7); }

/* ---------- Loop note ---------- */

.hf-loop {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 18px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-base);
}

.hf-loop-icon { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold-3); margin-top: 2px; }
.hf-loop-text { margin: 0; font-size: 15.5px; color: var(--text-mute); }
.hf-loop-text strong { color: var(--text); font-weight: 400; }

/* ---------- Rules ---------- */

.rule-num {
  margin-bottom: 16px;
  font-family: var(--mono-label);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold-3);
}

.rule-card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.rule-card p { margin: 0; font-size: 15px; color: var(--text-mute); }

/* ---------- Work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.work-tile {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  background: var(--bg-1);
}

.work-tile video { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 1s var(--ease); }
.work-tile:hover video { transform: scale(1.05); }

.reels-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.reel {
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  background: var(--bg-1);
}

.reel video { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.reel:hover video { transform: scale(1.05); }

/* ---------- Offer ---------- */

.price-name { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.glass-gold .price-name { color: rgba(23,19,10,.66); }

.price-value {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.glass-gold .price-value { background: none; -webkit-text-fill-color: #17130a; color: #17130a; }

.price-meta { margin: 14px 0 0; font-size: 14px; color: var(--text-mute); }
.glass-gold .price-meta { color: rgba(23,19,10,.78); }

.offer-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.offer-hero { position: relative; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 860px; margin-left: auto; }

.faq-item { border-bottom: 1px solid var(--glass-border-soft); transition: border-color .5s var(--ease); }
.faq-item[open] { border-bottom-color: rgba(201,162,39,.34); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  color: var(--text-soft);
  transition: color .4s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--text); }
.faq-item[open] summary { color: var(--gold-1); }

.faq-item summary i { position: relative; flex: 0 0 auto; width: 14px; height: 14px; }

.faq-item summary i::before, .faq-item summary i::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold-3);
  transition: transform .5s var(--ease);
}

.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::before { transform: rotate(180deg); }
.faq-item[open] summary i::after { transform: rotate(180deg); }

.faq-item p {
  margin: 0;
  padding: 0 2px 26px;
  max-width: 70ch;
  font-size: 15.5px;
  color: var(--text-mute);
  animation: faqIn .5s var(--ease);
}

@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Final CTA ---------- */

.cta-card { padding: clamp(38px, 5vw, 72px); text-align: center; }

.cta-card h2 { text-align: center; margin-bottom: 18px; }

.cta-card > p {
  max-width: 50ch;
  margin: 0 auto 32px;
  font-size: 17px;
  color: var(--text-mute);
}

.cta-card .fine { margin-top: 20px; }

/* ---------- Footer ---------- */

.site-footer { padding: 60px 48px 34px; border-top: 1px solid var(--glass-border-soft); }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 34px;
}

.footer-mark { width: 64px; opacity: .82; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }

.footer-nav a {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 14px;
  transition: color .35s var(--ease);
}

.footer-nav a:hover { color: var(--gold-1); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--glass-border-soft);
  font-size: 13px;
  color: var(--text-mute);
}

.footer-bottom span:first-child { color: var(--gold-3); letter-spacing: .04em; }

.footer-wa { color: var(--text-soft); text-decoration: none; transition: color .35s var(--ease); }
.footer-wa:hover { color: var(--gold-1); }

/* ---------- Reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .grid-3, .flow-cards, .hero-stack { grid-template-columns: 1fr 1fr; }
  .hero-stack-card:last-child { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav-menu { display: none; }
  .navbar { padding: 14px 20px; }
  .nav-cta { margin-left: auto; }
  .hero.framed { margin: 10px; padding: 104px 22px 30px; border-radius: 20px; }
  .hero-text-r { display: none; }
  .wrap { padding: 0 22px; }
  section { padding: 66px 0; }
  h2 { text-align: left; }
  .grid-3, .flow-cards, .hero-stack, .compare, .offer-wide { grid-template-columns: 1fr; }
  .hero-stack-card:last-child { grid-column: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .reels-row { grid-template-columns: 1fr; max-width: 380px; }
  .mode-opt { min-width: 0; flex: 1; padding: 11px 14px; font-size: 12.5px; }
  .mode-rail { width: 100%; }
  .faq-list { margin-left: 0; }
  .site-footer { padding: 44px 22px 28px; }
}

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