/* ============================================================
   OUTLIERD MEDIA — dark / brown cinematic landing
   Palette pulled from brand photo: warm near-black · brown ·
   copper/amber pop accent.
   ============================================================ */

@font-face {
  font-family: "Boldonse";
  src: url("assets/fonts/Boldonse-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:          #0c0a08;
  --bg-2:        #130f0b;
  --surface:     #1a140e;
  --surface-2:   #241b12;
  --line:        rgba(255,240,225,0.09);
  --line-strong: rgba(255,240,225,0.18);

  --brown-deep:   #2e1d10;
  --brown:        #6e4326;
  --brown-bright: #b06a32;
  --brown-soft:   #d39a5e;

  --accent:        #c9772f; /* warm copper/amber pop */
  --accent-hover:  #dd8a3d;

  --text:        #f1e9df;
  --text-muted:  #b5a695;
  --text-dim:    #7c6f60;

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 700px at 72% -10%, rgba(176,106,50,0.16), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(46,29,16,0.5), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ---------- texture overlays ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow { position: fixed; z-index: -1; pointer-events: none; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.glow--1 { width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(176,106,50,0.5), transparent 70%); }
.glow--2 { width: 460px; height: 460px; bottom: 4%; left: -140px;
  background: radial-gradient(circle, rgba(201,119,47,0.22), transparent 70%); }

/* ---------- shared mono type ---------- */
.eyebrow, .section-label, .scroll-cue, .marquee, .footer__label,
.note-bubble, .why__tag, .step__num, .nav__brand-sub,
.case__beat-label, .vid__tag, .vid__badge, .stat__lbl, .hero__social {
  font-family: "Space Mono", monospace;
}

/* ---------- display type (Boldonse) ---------- */
.nav__brand, .hero__title, .section-title, .guarantee__title,
.book__title, .footer__wordmark, .stat__num {
  font-family: "Boldonse", "Archivo", sans-serif;
  font-weight: 400;
}

.section-label {
  font-size: 0.72rem; letter-spacing: 0.32em; color: var(--brown-soft);
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.7rem, 4.2vw, 3rem); line-height: 1.34;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.section-intro { color: var(--text-muted); max-width: 46ch; margin-top: 1rem; font-size: 1.05rem; }

.hl {
  background: linear-gradient(100deg, var(--brown-soft), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl-soft { color: var(--brown-soft); }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.1rem, 4vw, 3rem);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(12,10,8,0.74); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.nav__brand {
  font-size: 1.15rem; letter-spacing: 0.02em; color: var(--text);
  text-decoration: none; display: flex; align-items: baseline; gap: .12em; line-height: 1;
}
.nav__brand-d { color: var(--accent); }
.nav__brand-sub {
  font-family: "Space Mono", monospace; font-size: 0.58rem; letter-spacing: 0.4em;
  color: var(--text-dim); margin-left: .45em; transform: translateY(-2px);
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color .25s; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 0.55rem 1.25rem !important; color: var(--text) !important;
  transition: border-color .25s, background .25s;
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  text-align: left; padding: 7rem clamp(1.5rem, 6vw, 5rem) 5rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("assets/img/raj-hero.png") center 28% / cover no-repeat;
  filter: blur(6px) brightness(0.4) saturate(1.1); transform: scale(1.08);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.62) 50%, rgba(12,10,8,0.42) 100%),
    linear-gradient(180deg, rgba(12,10,8,0.5), rgba(12,10,8,0.85));
}
.hero__brackets { position: absolute; inset: clamp(1.5rem, 5vw, 4rem); pointer-events: none; z-index: 2; }
.tick { position: absolute; width: 26px; height: 26px; }
.tick::before, .tick::after { content: ""; position: absolute; background: var(--line-strong); }
.tick::before { width: 26px; height: 2px; }
.tick::after  { width: 2px; height: 26px; }
.tick--tl { top: 0; left: 0; }
.tick--tr { top: 0; right: 0; } .tick--tr::after { right: 0; } .tick--tr::before { right: 0; }
.tick--bl { bottom: 0; left: 0; } .tick--bl::before { bottom: 0; } .tick--bl::after { bottom: 0; }
.tick--br { bottom: 0; right: 0; } .tick--br::before { bottom: 0; right: 0; } .tick--br::after { bottom: 0; right: 0; }

.note-bubble {
  position: absolute; top: clamp(5.5rem, 14vh, 9rem); right: clamp(1.5rem, 8vw, 7rem); z-index: 3;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px;
  padding: .7rem 1rem; text-align: left; animation: float 5s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.note-bubble::after {
  content: ""; position: absolute; bottom: -8px; left: 22px; width: 16px; height: 16px;
  background: var(--surface-2); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.note-bubble__txt { display: block; font-size: 1rem; color: var(--text); font-weight: 700; }
.note-bubble__line { display: block; font-size: 0.72rem; color: var(--brown-soft); margin-top: .15rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__inner { position: relative; z-index: 3; max-width: 880px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem; font-size: 0.74rem;
  letter-spacing: 0.26em; color: var(--brown-soft); text-transform: uppercase; margin-bottom: 1.6rem;
}
.eyebrow__bar { width: 34px; height: 1px; background: var(--accent); }
.hero__title {
  font-size: clamp(1.9rem, 5.5vw, 4.6rem); line-height: 1.42;
  letter-spacing: 0.005em; text-transform: uppercase;
}
.hero__lead { color: var(--text-muted); font-size: clamp(1rem, 2.2vw, 1.22rem); max-width: 56ch; margin: 1.7rem 0 0; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero__social { display: flex; align-items: center; gap: .9rem; margin-top: 2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.hero__social a { color: var(--text-muted); text-decoration: none; transition: color .25s; }
.hero__social a:hover { color: var(--accent); }
.hero__social .sep { color: var(--text-dim); }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: 0.66rem; letter-spacing: 0.3em; color: var(--text-dim); text-decoration: none;
}
.scroll-cue__arrow { animation: bob 1.8s ease-in-out infinite; font-size: 1rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; padding: 0.85rem 1.6rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: .3s var(--ease);
}
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: linear-gradient(100deg, var(--brown), var(--accent)); color: #fff;
  box-shadow: 0 10px 30px rgba(201,119,47,.35);
}
.btn--primary:hover { box-shadow: 0 14px 40px rgba(201,119,47,.55); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--brown-soft); color: var(--brown-soft); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; margin-top: 2.2rem; }

/* ============================================================ MARQUEE */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(176,106,50,.1), rgba(201,119,47,.06));
  padding: 0.9rem 0; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.6rem; font-size: 0.85rem;
  letter-spacing: 0.22em; color: var(--text-muted); text-transform: uppercase;
  animation: scroll-tape 32s linear infinite;
}
.marquee__track .dot { color: var(--accent); }
@keyframes scroll-tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ SECTIONS */
section { padding: clamp(4.5rem, 11vw, 9rem) clamp(1.2rem, 5vw, 3rem); }

/* ---------- results / case study ---------- */
.results__inner { max-width: var(--maxw); margin: 0 auto; }
.results .section-title { font-size: clamp(2rem, 6vw, 4rem); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.6rem 0 3.5rem;
}
.stat {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem 1.3rem;
  background: linear-gradient(180deg, var(--surface), transparent);
}
.stat__num {
  display: block; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1;
  color: var(--brown-soft); margin-bottom: .7rem;
}
.stat__lbl { display: block; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

.case { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.case__beat { margin-bottom: 1.8rem; }
.case__beat-label { font-size: 0.68rem; letter-spacing: 0.25em; color: var(--accent); display: block; margin-bottom: .5rem; }
.case__beat p { color: var(--text-muted); font-size: 1.02rem; }
.case__beat strong { color: var(--text); font-weight: 700; }
.case__lesson {
  font-size: 1.25rem; font-style: italic; color: var(--brown-soft);
  border-left: 2px solid var(--accent); padding-left: 1.1rem; margin-top: 2rem;
}
.case__video { position: sticky; top: 100px; }
.case__video figcaption { margin-top: .9rem; font-size: 0.85rem; color: var(--text-dim); text-align: center; }

/* ---------- video cards ---------- */
.vid {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 12;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; cursor: pointer;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(176,106,50,.28), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--bg));
  transition: border-color .3s, transform .3s var(--ease);
}
.vid--feature { aspect-ratio: 9 / 11; }
.vid:hover { border-color: var(--accent); transform: translateY(-4px); }
.vid__poster {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  filter: blur(3px) brightness(0.62) saturate(1.05); transform: scale(1.08);
  transition: filter .35s var(--ease);
}
.vid:hover .vid__poster { filter: blur(2px) brightness(0.72) saturate(1.05); }
.vid__overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem; padding: 1.5rem; text-align: center;
  background: linear-gradient(180deg, rgba(12,10,8,.15), rgba(12,10,8,.55));
}
.vid__play {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 1.5rem; padding-left: 4px; margin-bottom: .6rem;
  box-shadow: 0 12px 34px rgba(201,119,47,.5); transition: transform .3s var(--ease), background .25s;
}
.vid:hover .vid__play { transform: scale(1.08); background: var(--accent-hover); }
.vid__name { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.vid__tag { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--brown-soft); text-transform: uppercase; }
.vid__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3; font-size: 0.62rem; letter-spacing: 0.2em;
  background: var(--accent); color: #fff; padding: .3rem .6rem; border-radius: 6px;
}
.vid video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }

.testimonials { max-width: var(--maxw); margin: 0 auto; }
.testimonials .section-intro { margin-bottom: 3rem; }
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.vid-card { margin: 0; }

/* ---------- featured work / thumbnails ---------- */
.work { max-width: var(--maxw); margin: 0 auto; }
.work .section-intro { margin-bottom: 3rem; }
.thumb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.thumb {
  position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); text-decoration: none; cursor: pointer;
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
  transition: border-color .3s, transform .3s var(--ease);
}
.thumb:hover { border-color: var(--accent); transform: translateY(-4px); }
.thumb__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.thumb:hover .thumb__img { transform: scale(1.05); }
.thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(12,10,8,0); transition: background .3s; }
.thumb:hover::after { background: rgba(12,10,8,.28); }
.thumb__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.9); z-index: 2;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 1.3rem; padding-left: 3px;
  box-shadow: 0 12px 30px rgba(201,119,47,.55); opacity: 0; transition: opacity .3s, transform .3s var(--ease);
}
.thumb:hover .thumb__play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.thumb__hover {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%) translateY(8px); z-index: 2;
  font-family: "Space Mono", monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(12,10,8,.7); border: 1px solid var(--line-strong);
  padding: .4rem .8rem; border-radius: 100px; white-space: nowrap;
  opacity: 0; transition: opacity .3s, transform .3s var(--ease); backdrop-filter: blur(6px);
}
.thumb:hover .thumb__hover { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- method ---------- */
.method { max-width: var(--maxw); margin: 0 auto; }
.method__head { margin-bottom: 3.5rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.step::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-size: 0.9rem; color: var(--accent); letter-spacing: 0.2em; display: block; margin-bottom: 1.6rem; }
.step__title { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; margin-bottom: .8rem; }
.step__body { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- guarantee ---------- */
.guarantee { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.guarantee__title { font-size: clamp(1.7rem, 5vw, 3.6rem); line-height: 1.42; text-transform: uppercase; letter-spacing: 0.01em; }
.guarantee__sub { color: var(--text-muted); max-width: 54ch; margin: 1.6rem auto 0; font-size: 1.08rem; }

/* ---------- why ---------- */
.why { max-width: var(--maxw); margin: 0 auto; }
.why .section-title { margin-bottom: 3rem; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.why__card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem;
  background: linear-gradient(180deg, var(--surface), transparent); transition: border-color .3s, background .3s;
}
.why__card:hover { border-color: var(--accent); background: linear-gradient(180deg, var(--surface-2), transparent); }
.why__tag { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--accent); display: block; margin-bottom: 1rem; }
.why__card h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: .5rem; }
.why__card p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- book ---------- */
.book { text-align: center; }
.book__inner { max-width: 720px; margin: 0 auto; }
.book__title { font-size: clamp(1.7rem, 5vw, 3.4rem); line-height: 1.34; text-transform: uppercase; }
.book__sub { color: var(--text-muted); margin: 1.3rem auto 0; max-width: 50ch; font-size: 1.08rem; }
.calendly-inline-widget { min-width: 320px; height: 680px; margin-top: 2.5rem; border-radius: 16px; overflow: hidden; }

/* ============================================================ FOOTER */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem,7vw,5rem) clamp(1.2rem,5vw,3rem) 2rem; overflow: hidden; }
.footer__cols { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2.5rem 4rem; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; }
.footer__label { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--text-dim); margin-bottom: .5rem; }
.footer__col a, .footer__col span { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.footer__col a:hover { color: var(--brown-soft); }
.footer__wordmark {
  font-size: clamp(1.8rem, 10vw, 8.5rem); line-height: 1; text-align: center; letter-spacing: -0.01em;
  margin: 3rem 0 1rem; white-space: nowrap;
  background: linear-gradient(180deg, rgba(211,154,94,.24), rgba(110,67,38,.02));
  -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none;
}
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.6rem;
  font-size: 0.82rem; color: var(--text-dim);
}
.footer__bracket { font-family: "Space Mono", monospace; color: var(--accent); }

/* ============================================================ FAB */
.fab {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 1001; display: inline-flex; align-items: center;
  gap: 0; background: var(--accent); color: #fff; text-decoration: none; border-radius: 100px;
  height: 58px; padding: 0; overflow: hidden; box-shadow: 0 12px 34px rgba(201,119,47,.5);
  transition: gap .35s var(--ease), padding .35s var(--ease), background .25s, transform .25s;
}
.fab__plus { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; font-size: 1.9rem; font-weight: 300; line-height: 1; }
.fab__label { font-weight: 700; font-size: 0.95rem; max-width: 0; white-space: nowrap; transition: max-width .35s var(--ease); }
.fab:hover { background: var(--accent-hover); padding-right: 1.4rem; gap: .2rem; transform: translateY(-2px); }
.fab:hover .fab__label { max-width: 140px; }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .case { grid-template-columns: 1fr; gap: 2.5rem; }
  .case__video { position: static; max-width: 420px; }
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
  .thumb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .note-bubble { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 1.4rem;
    padding: 6rem 2rem 2.5rem; background: rgba(12,10,8,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); transform: translateY(-110%); transition: transform .45s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 1.2rem; }
  .nav__cta { align-self: flex-start; }
}
@media (max-width: 560px) {
  .vid-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .thumb-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
