/* ===================================================================
   OG NETWORK — front-facing site (www.theognetwork.net)
   Same room as the app: noir, logo gold, Amazon Ember, the Top 10
   numerals and the hero that plays the film itself.
   =================================================================== */
:root {
  --noir: #101010;
  --noir-2: #151310;
  --noir-3: #1c1813;
  --gold: #cbb682;
  --gold-soft: #e9dbbd;
  --gold-deep: #a7865d;
  --pearl: #e9dbbd;
  --silver: #a08c5b;
  --muted: #8a7d60;
  --ink: #f4f1ea;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 68px;
  --pad: clamp(16px, 5vw, 72px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--noir); color: var(--ink);
  font-family: "Amazon Ember", "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(203,182,130,0.3); }

/* film grain, very faint — the whole page reads like a print */
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
}
@keyframes grain { 0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); } 40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); } 80% { transform: translate(3%,1%); } }

/* ---------------- nav ---------------- */
/* No border here: a transparent border sits OUTSIDE the gradient's box, so the gradient tiles and
   its dark first pixel paints a hairline across the top of the hero. The solid state draws its
   rule with a box-shadow instead, and the fade continues past the bar so there is no hard edge. */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center; gap: clamp(14px, 3vw, 34px);
  padding: 0 var(--pad);
  background: linear-gradient(180deg, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.62) 52%, rgba(10,9,8,0.3) 100%);
  background-repeat: no-repeat;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border: 0;
}
.nav::after {                      /* the fade keeps going below the bar, so nothing ends on a line */
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 26px; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,8,0.3), rgba(10,9,8,0));
  opacity: 1; transition: opacity 0.3s var(--ease);
}
.nav.solid {
  background: rgba(13,12,10,0.88);
  box-shadow: 0 1px 0 rgba(203,182,130,0.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.1); backdrop-filter: blur(14px) saturate(1.1);
}
.nav.solid::after { opacity: 0; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; gap: clamp(12px, 2vw, 26px); margin-left: 8px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--pearl); opacity: 0.82;
  padding: 6px 2px; position: relative; transition: opacity 0.2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--gold); transition: right 0.28s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-cta { margin-left: auto; }
@media (max-width: 860px) { .nav-links { display: none; } .nav-cta { margin-left: auto; } }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; font-weight: 800; font-size: 14.5px;
  letter-spacing: 0.2px; white-space: nowrap; transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-gold {
  color: #16130d;
  background: linear-gradient(135deg, #f6e7bd, #cbb682 45%, #a7865d);
  box-shadow: 0 10px 30px rgba(203,182,130,0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(203,182,130,0.42); }
.btn-ghost { color: var(--pearl); border: 1px solid rgba(203,182,130,0.5); background: rgba(255,255,255,0.04); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(203,182,130,0.14); }

/* ---------------- hero ---------------- */
.hero {
  position: relative; z-index: 2;
  min-height: min(100svh, 980px); height: clamp(560px, 100svh, 980px);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--noir);
}
.hero-art, .hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-art {
  background-size: cover; background-position: center 22%;
  transition: opacity 1.1s var(--ease), transform 9s linear;
  transform: scale(1.06);
}
.hero-art.zoom { transform: scale(1.14); }
.hero-video { z-index: 1; opacity: 0; transition: opacity 1s var(--ease); }
.hero-video.playing { opacity: 1; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,9,8,0.94) 0%, rgba(10,9,8,0.74) 32%, rgba(10,9,8,0.24) 62%, rgba(10,9,8,0) 86%),
    linear-gradient(0deg, rgba(10,9,8,0.86) 0%, rgba(10,9,8,0.2) 42%, rgba(10,9,8,0) 70%);
}
/* the section's edge is page colour on page colour — no seam into the band below */
.hero-fade {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(0deg, var(--noir) 0%, var(--noir) 8%, rgba(16,16,16,0.94) 14%,
    rgba(16,16,16,0.74) 24%, rgba(16,16,16,0.46) 36%, rgba(16,16,16,0.2) 48%, rgba(16,16,16,0) 62%);
}
.hero-content {
  position: relative; z-index: 4; padding: 0 var(--pad) clamp(76px, 12vh, 132px);
  max-width: min(760px, 92vw);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 16px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(203,182,130,0.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(203,182,130,0.6); } 70% { box-shadow: 0 0 0 12px rgba(203,182,130,0); } 100% { box-shadow: 0 0 0 0 rgba(203,182,130,0); } }
.hero-title {
  font-size: clamp(38px, 7.2vw, 92px); line-height: 0.98; font-weight: 900;
  letter-spacing: -0.035em; color: #fff; text-wrap: balance;
  text-shadow: 0 6px 40px rgba(0,0,0,0.6);
  animation: rise 0.7s var(--ease) both;
}
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; font-size: 14px; color: var(--pearl); }
.hero-meta .pill { border: 1px solid rgba(203,182,130,0.5); border-radius: 5px; padding: 1px 7px; font-size: 11.5px; font-weight: 700; }
.hero-meta .sep { opacity: 0.45; }
.hero-syn { margin-top: 14px; max-width: 56ch; color: #d9d3c6; font-size: clamp(14.5px, 1.4vw, 17px); line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-fine { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hero-fine .sep { margin: 0 6px; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-dots { position: absolute; z-index: 5; right: var(--pad); bottom: clamp(30px, 6vh, 56px); display: flex; gap: 9px; }
.hero-dots button { width: 26px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.28); transition: background 0.3s var(--ease), width 0.3s var(--ease); }
.hero-dots button.on { background: var(--gold); width: 40px; }
.hero-mute {
  position: absolute; z-index: 5; right: var(--pad); top: calc(var(--nav-h) + 18px);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.4); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-mute svg { width: 18px; height: 18px; }
.hero-mute[hidden] { display: none; }
@media (max-width: 860px) {
  .hero { align-items: flex-end; }
  .hero-scrim { background: linear-gradient(0deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.35) 46%, rgba(10,9,8,0.05) 72%), linear-gradient(90deg, rgba(10,9,8,0.6), rgba(10,9,8,0) 70%); }
  .hero-dots { left: var(--pad); right: auto; }
}

/* ---------------- promise band ---------------- */
.promise { position: relative; z-index: 2; padding: clamp(48px, 8vh, 96px) var(--pad) clamp(34px, 5vh, 60px); text-align: center; }
.promise-inner { max-width: 900px; margin: 0 auto; }
.promise-h { font-size: clamp(30px, 5vw, 62px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; color: #fff; }
.promise-p { margin: 16px auto 0; max-width: 62ch; color: #cfc9bb; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; }
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 5vw, 64px); margin-top: clamp(30px, 5vh, 52px); }
.stat { min-width: 108px; }
.stat b {
  display: block; font-size: clamp(30px, 4.4vw, 54px); font-weight: 900; line-height: 1;
  background: linear-gradient(176deg, #fffaf0 0%, #f2e2bd 30%, #dfc48a 52%, #cdae72 64%, #f2e4bf 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { display: block; margin-top: 8px; font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* ---------------- sections ---------------- */
.sec { position: relative; z-index: 2; padding: clamp(38px, 5.6vh, 70px) 0; }
.sec, .hero, .promise, .foot { scroll-margin-top: calc(var(--nav-h) + 10px); }
.sec-head { padding: 0 var(--pad); margin-bottom: clamp(20px, 3vh, 34px); }
.sec-head.center { text-align: center; }
.sec-h { font-size: clamp(26px, 3.6vw, 46px); font-weight: 900; letter-spacing: -0.028em; line-height: 1.05; color: #fff; }
.accent {
  background: linear-gradient(176deg, #fffaf0 0%, #f2e2bd 26%, #dfc48a 50%, #cdae72 62%, #f5e9c8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sec-sub { margin-top: 12px; max-width: 60ch; color: #bdb6a7; font-size: clamp(14px, 1.3vw, 16.5px); line-height: 1.6; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

/* rails */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: clamp(14px, 1.6vw, 26px); overflow-x: auto; scroll-behavior: smooth;
  padding: 10px var(--pad) 20px; scrollbar-width: none; scroll-snap-type: x proximity;
  scroll-padding-left: var(--pad);            /* or the snap swallows the gutter */
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 auto; }
.rail-arrow {
  position: absolute; top: 0; bottom: 20px; width: clamp(34px, 4vw, 58px); z-index: 6;
  display: grid; place-items: center; opacity: 0; transition: opacity 0.25s var(--ease);
  background: linear-gradient(90deg, rgba(10,9,8,0.8), rgba(10,9,8,0));
}
.rail-arrow.right { right: 0; background: linear-gradient(270deg, rgba(10,9,8,0.8), rgba(10,9,8,0)); }
.rail-arrow.left { left: 0; }
.rail-wrap:hover .rail-arrow { opacity: 1; }
.rail-arrow::before {
  content: ""; width: 13px; height: 13px; border-right: 2.4px solid var(--pearl); border-bottom: 2.4px solid var(--pearl);
  transform: rotate(-45deg);
}
.rail-arrow.left::before { transform: rotate(135deg); }
@media (hover: none) { .rail-arrow { display: none; } }

/* Top 10 — the app's numerals, in the logo's gold */
.top10-rail { align-items: center; gap: clamp(10px, 1.4vw, 22px); }
.t10 { position: relative; display: flex; align-items: center; flex: 0 0 auto; }
.t10-n {
  font-weight: 900; font-size: clamp(104px, 13vw, 218px); line-height: 0.7; letter-spacing: -0.05em;
  margin-right: -0.1em; white-space: nowrap; user-select: none; flex: 0 0 auto;
  background:
    linear-gradient(100deg, rgba(255,246,200,0) 36%, rgba(255,246,200,0.55) 47%, rgba(255,250,220,0.8) 50%, rgba(255,246,200,0.55) 53%, rgba(255,246,200,0) 64%),
    linear-gradient(118deg, #b8843a 0%, #d7b060 12%, #f6df8c 26%, #fbec9d 33%, #e9c86e 43%, #d2a852 54%, #a97a33 64%, #d9b45f 76%, #f4dc86 88%, #dab565 100%);
  background-size: 250% 100%, 100% 100%; background-position: 175% 0, 0 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,230,150,0.55);
  filter: drop-shadow(0 0 10px rgba(212,177,101,0.35)) drop-shadow(0 5px 14px rgba(0,0,0,0.55));
  animation: glint 6s ease-in-out 1.2s infinite;
}
@keyframes glint { 0% { background-position: 178% 0, 0 0; } 55%, 100% { background-position: -78% 0, 0 0; } }
.card {
  display: block; position: relative; flex: 0 0 auto; border-radius: 12px; overflow: hidden; z-index: 1;
  background: var(--noir-3); outline: 1px solid rgba(255,255,255,0.06); outline-offset: -1px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), outline-color 0.3s var(--ease);
}
.card img { width: 100%; height: 100%; object-fit: cover; }
.card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 22px 46px rgba(0,0,0,0.6); outline-color: rgba(203,182,130,0.7); }
.card-land { width: clamp(250px, 27vw, 380px); aspect-ratio: 16 / 9; }
.card-port { width: clamp(148px, 16vw, 210px); aspect-ratio: 2 / 3; }
.card-badge {
  position: absolute; top: 9px; left: 9px; z-index: 2; font-size: 9.5px; font-weight: 800; letter-spacing: 1.2px;
  padding: 4px 7px; border-radius: 5px; color: var(--gold-soft);
  background: rgba(0,0,0,0.62); border: 1px solid rgba(203,182,130,0.55); text-transform: uppercase;
}
.card-cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 10px 10px; font-size: 12.5px; font-weight: 700; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), transparent); opacity: 0; transition: opacity 0.25s var(--ease); }
.card:hover .card-cap { opacity: 1; }
@media (hover: none) { .card-cap { opacity: 1; } .card-port .card-cap { padding-top: 34px; } }

/* ---------------- clips split ---------------- */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 5vw, 70px); align-items: center; padding-left: var(--pad); padding-right: var(--pad); }
.split-copy .sec-h { margin-top: 4px; }
.split-copy .btn { margin-top: 26px; }
.phone-frame {
  position: relative; justify-self: center; width: min(300px, 76vw); aspect-ratio: 9 / 19.5;
  border-radius: 40px; padding: 9px; background: linear-gradient(160deg, #3a332a, #14120f 42%, #2a251d);
  box-shadow: 0 40px 90px rgba(0,0,0,0.7), 0 0 0 1px rgba(203,182,130,0.28);
}
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #000; }
.phone-screen img, .phone-screen video { width: 100%; height: 100%; object-fit: cover; }
.phone-screen video { position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s var(--ease); }
.phone-screen.live video { opacity: 1; }
.phone-screen .ph-scrim, .phone-screen .ph-rail, .phone-screen .ph-cap, .phone-screen .ph-bar { z-index: 2; }
.phone-screen .ph-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.95) 4%, rgba(0,0,0,0.72) 18%, rgba(0,0,0,0.15) 46%, rgba(0,0,0,0.35) 100%); }
.phone-screen .ph-cap { position: absolute; left: 14px; right: 58px; bottom: 30px; font-size: 14px; font-weight: 800; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.ph-rail { position: absolute; right: 10px; bottom: 116px; display: flex; flex-direction: column; gap: 20px; align-items: center; color: #fff; }
.ph-rail span { display: grid; place-items: center; gap: 4px; font-size: 9.5px; font-weight: 700; opacity: 0.92; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8)); }
.ph-rail svg { width: 26px; height: 26px; }
.ph-bar { position: absolute; left: 14px; right: 14px; bottom: 16px; height: 2.5px; border-radius: 2px; background: rgba(255,255,255,0.25); overflow: hidden; }
.ph-bar i { display: block; height: 100%; width: 34%; border-radius: 2px; background: var(--gold); animation: phbar 7s var(--ease) infinite; }
@keyframes phbar { 0% { width: 6%; } 100% { width: 96%; } }
.ph-swipe { position: absolute; left: 50%; transform: translateX(-50%); bottom: 44px; display: grid; place-items: center; gap: 3px; color: rgba(255,255,255,0.8); font-size: 9.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; animation: swipe 2.4s ease-in-out infinite; }
.ph-swipe svg { width: 16px; height: 16px; }
@keyframes swipe { 0%,100% { transform: translate(-50%, 0); opacity: 0.55; } 50% { transform: translate(-50%, -7px); opacity: 1; } }
.phone-screen .ph-cap small { display: block; font-weight: 600; font-size: 11.5px; color: var(--gold-soft); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 22px; border-radius: 0 0 14px 14px; background: #14120f; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .phone-frame { margin-top: 10px; } }

/* ---------------- devices ---------------- */
.devices { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(10px, 1.6vw, 18px); padding: 0 var(--pad); }
.dev {
  display: flex; flex-direction: column; align-items: center; gap: 10px; width: clamp(116px, 14vw, 164px);
  padding: 22px 12px; border-radius: 16px; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(203,182,130,0.2); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.dev:hover { transform: translateY(-4px); border-color: rgba(203,182,130,0.55); }
.dev svg { width: 34px; height: 34px; color: var(--gold-soft); }
.dev span { font-size: 13px; font-weight: 700; color: var(--pearl); }
.apps-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: clamp(26px, 4vh, 40px); padding: 0 var(--pad); }
.apps-note { color: var(--muted); font-size: 13.5px; }

/* ---------------- creators ---------------- */
.creators { padding-left: var(--pad); padding-right: var(--pad); }
.creators-inner {
  position: relative; overflow: hidden; border-radius: 22px; padding: clamp(30px, 6vw, 66px);
  background: radial-gradient(120% 140% at 90% 10%, rgba(203,182,130,0.16), rgba(203,182,130,0) 60%), linear-gradient(180deg, #17140f, #100e0c);
  border: 1px solid rgba(203,182,130,0.26);
}
.creators-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.creators-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.steps { display: grid; gap: 12px; }
.step { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(203,182,130,0.18); }
.step b { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 900; color: #16130d; background: linear-gradient(135deg, #f6e7bd, #cbb682 55%, #a7865d); }
.step p { font-size: 14px; line-height: 1.5; color: #cfc9bb; }
.step p strong { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 2px; }
@media (max-width: 900px) { .creators-inner { grid-template-columns: 1fr; } }

/* ---------------- faq ---------------- */
.faq-list { max-width: 860px; margin: 0 auto; padding: 0 var(--pad); }
.faq-item { border-bottom: 1px solid rgba(203,182,130,0.2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left;
  padding: 22px 2px; font-size: clamp(16px, 1.7vw, 19px); font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--gold-soft); }
.faq-q .plus { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; inset: 8px 0 auto 0; height: 2px; background: var(--gold); transition: transform 0.28s var(--ease); }
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .plus::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 2px 22px; color: #bdb6a7; line-height: 1.65; font-size: 15px; max-width: 68ch; }
.faq-cta { text-align: center; margin-top: clamp(30px, 5vh, 54px); }
.faq-cta p { color: var(--muted); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

/* ---------------- footer ---------------- */
.foot { position: relative; z-index: 2; padding: clamp(36px, 6vh, 64px) var(--pad) clamp(28px, 5vh, 48px); border-top: 1px solid rgba(203,182,130,0.16); }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.foot .brand img { height: 44px; }
.foot-social { display: flex; gap: 18px; }
.foot-social a { font-size: 13.5px; font-weight: 700; color: var(--pearl); opacity: 0.8; }
.foot-social a:hover { color: var(--gold-soft); opacity: 1; }
.foot-links { display: flex; flex-wrap: wrap; gap: 14px 26px; margin: 26px 0 22px; }
.foot-links a { font-size: 13.5px; color: var(--muted); }
.foot-links a:hover { color: var(--gold-soft); }
.foot-fine { font-size: 12.5px; color: #6d6450; }

/* ---------------- reveals ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .grain, .eyebrow .dot, .t10-n, .ph-bar i, .ph-swipe { animation: none; }
  html { scroll-behavior: auto; }
}
