/* =============================================
   IMPACT — Tailored systems for serious creators
   ============================================= */
:root {
  --bg:        #07080b;
  --bg-mid:    #0e0f14;

  --steel:     #d4d9e0;
  --steel-dim: #98a1b0;
  --blue:      #4a97dd;
  --blue-dim:  #2c6aa3;
  --gold:      #c9a24c;
  --gold-dim:  #8a6e30;

  --white:     #f4f5f7;
  --muted:     #8990a0;
  --muted-2:   #5b616d;
  --border:    rgba(255,255,255,0.10);
  --glass:     rgba(255,255,255,0.035);

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* logo PNGs are transparent white — no blend tricks needed */
.logo-img { display: block; }

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-mark { width: 70px; height: 70px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.loader-bar-track { width: 240px; height: 2px; background: rgba(255,255,255,0.12); }
#loader-bar { height: 100%; width: 0%; background: var(--white); transition: width 0.15s linear; }
#loader-percent {
  font-family: var(--font-cond); font-size: 0.72rem;
  letter-spacing: 0.25em; color: var(--muted);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; transition: background 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(7,8,11,0.9); backdrop-filter: blur(12px);
  padding: 12px 40px; border-bottom: 1px solid var(--border);
}
.header-logo { display: flex; align-items: center; }
.header-logo .logo-img { height: 48px; width: auto; }
.site-header.scrolled .header-logo .logo-img { height: 40px; transition: height 0.4s; }
.header-nav { display: flex; gap: 34px; }
.header-nav a {
  font-family: var(--font-cond); font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.header-nav a:hover { color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero-standalone {
  position: relative; height: 100vh; height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
}
.hero-bg-glow {
  position: absolute; inset: -30%;
  background: radial-gradient(ellipse 42% 42% at 50% 42%, rgba(74,151,221,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.hero-lockup {
  width: min(640px, 82vw); height: auto;
  opacity: 0; transform: translateY(24px) scale(0.96);
  animation: heroIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0) scale(1); } }
/* animated logo (transparent PNG frames on canvas) */
.hero-canvas { display: block; }
.hero-tagline {
  font-family: var(--font-cond);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-tagline b { color: var(--white); font-weight: 600; }
.hero-by {
  font-family: var(--font-cond);
  font-size: clamp(0.7rem, 1.5vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: -34px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.85s forwards;
}
.hero-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
  color: var(--muted-2); font-family: var(--font-cond);
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: 14px;
}
.hero-scroll-cue svg { width: 16px; height: 40px; animation: scrollBounce 2s ease-in-out infinite; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* =============================================
   PINNED 3-COLUMN SCENE (desktop)
   ============================================= */
#scroll-container { position: relative; }
#phase-logos {
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  display: flex; overflow: hidden; background: var(--bg);
}
.col {
  position: relative; width: 33.3333%; height: 100%;
  display: flex; flex-direction: column; align-items: center; overflow: hidden;
}
.col-left, .col-center { border-right: 1px solid var(--border); }
.col-grow     { --accent: var(--steel); --accent-dim: var(--steel-dim); }
.col-monetise { --accent: var(--blue);  --accent-dim: var(--blue-dim); }
.col-scale    { --accent: var(--gold);  --accent-dim: var(--gold-dim); }
.col::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 50% 28%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 60%);
}
.col-logo-wrap {
  position: absolute; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  top: 50%; transform: translateY(-50%);
  will-change: transform; padding: 20px;
}
.col-mark { width: 116px; height: 116px; flex-shrink: 0; opacity: 0; will-change: transform; }
.col-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  letter-spacing: 0.18em; color: var(--accent);
  opacity: 0; white-space: nowrap; will-change: opacity;
}
.col-content {
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  padding: 0 30px 40px;
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto; opacity: 0; transform: translateY(40px);
  will-change: opacity, transform; pointer-events: none;
  scrollbar-width: none;
}
.col-content::-webkit-scrollbar { display: none; }

/* no box — just text in the column with a button at the bottom */
.col-panel {
  padding: 0 6px;
  text-align: center;
}
.content-label { display: none; }
.content-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.6vw, 4.2rem); line-height: 0.96;
  color: var(--white); margin-bottom: 24px;
}
.content-body {
  font-family: var(--font-body); font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400; line-height: 1.8; color: var(--muted); margin-bottom: 32px;
}
.content-list { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 16px; }
.content-list li {
  font-family: var(--font-cond); font-size: clamp(1rem, 1.15vw, 1.15rem);
  letter-spacing: 0.04em; color: var(--white); opacity: 0.85;
}
.content-list li::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 12px; margin-bottom: 3px;
}
.explore-btn {
  display: block; width: fit-content; margin: 0 auto;
  font-family: var(--font-cond); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-align: center;
  text-decoration: none; color: var(--bg);
  background: var(--accent); padding: 17px 44px; border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.3s;
}
.explore-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 35%, transparent); }

/* mobile description (hidden on desktop — desktop uses the list) */
.col-desc-mobile { display: none; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  position: relative; padding: 46px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-wrap { white-space: nowrap; will-change: transform; }
.marquee-text {
  display: inline-block; font-family: var(--font-display);
  font-size: 7vw; letter-spacing: 0.06em;
  color: transparent; -webkit-text-stroke: 1px var(--muted-2);
  white-space: nowrap;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 40px; background: var(--bg); overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74,151,221,0.06) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.cta-label {
  font-family: var(--font-cond); font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 26px; opacity: 0; transform: translateY(30px);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 9rem); line-height: 0.9;
  color: var(--white); margin-bottom: 26px;
  opacity: 0; transform: translateY(50px);
}
.cta-heading .accent { color: var(--blue); }
.cta-sub {
  font-family: var(--font-cond); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.05em; color: var(--muted);
  margin-bottom: 42px; opacity: 0; transform: translateY(30px);
}
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px); }
.cta-btn-primary {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 17px 46px; border-radius: 999px; background: var(--white); color: var(--bg);
  transition: transform 0.2s, box-shadow 0.3s;
}
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,255,255,0.16); }
.cta-btn-secondary {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 17px 46px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted);
  transition: color 0.3s, border-color 0.3s;
}
.cta-btn-secondary:hover { color: var(--white); border-color: var(--muted); }
.cta-names {
  position: absolute; bottom: 36px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.cta-names .logo-img { height: 44px; width: auto; opacity: 0.75; }

/* =============================================
   SUB-PAGES
   ============================================= */
.sub-page { background: var(--bg); }
.sub-bg-glow {
  position: fixed; inset: -30%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 45% at 50% 22%, rgba(74,151,221,0.10) 0%, transparent 60%);
}
.sub-wrap { position: relative; z-index: 1; }
.sub-page[data-accent="steel"] { --accent: var(--steel); --accent-dim: var(--steel-dim); }
.sub-page[data-accent="blue"]  { --accent: var(--blue);  --accent-dim: var(--blue-dim); }
.sub-page[data-accent="gold"]  { --accent: var(--gold);  --accent-dim: var(--gold-dim); }
.sub-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 36px; max-width: 1120px; margin: 0 auto;
}
.sub-header .header-logo .logo-img { height: 28px; }
.back-link {
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.back-link:hover { color: var(--white); }
.sub-hero { text-align: center; padding: 50px 24px 36px; }
.sub-eyebrow {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.sub-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: 0.9; margin-bottom: 20px; color: var(--white);
}
.sub-title .accent { display: block; color: var(--accent); }
.sub-lede { font-size: 1.08rem; color: var(--muted); line-height: 1.65; max-width: 580px; margin: 0 auto; }

/* VSL placeholder */
.vsl-block { max-width: 860px; margin: 30px auto 0; padding: 0 24px; }
.vsl-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.vsl-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 45%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 65%);
}
.vsl-play {
  width: 78px; height: 78px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); position: relative; z-index: 1;
  transition: transform 0.25s, background 0.25s;
}
.vsl-play svg { width: 26px; height: 26px; margin-left: 4px; }
.vsl-frame:hover .vsl-play { transform: scale(1.06); background: color-mix(in srgb, var(--accent) 14%, transparent); }
.vsl-label {
  position: relative; z-index: 1;
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.vsl-cta { text-align: center; margin: 32px auto 0; }

.sub-body { max-width: 860px; margin: 0 auto; padding: 50px 24px 90px; }
.panel {
  background: var(--glass); color: var(--white);
  border: 1px solid var(--border); border-top: 2px solid var(--accent);
  border-radius: 16px; padding: 42px 38px 46px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.panel-lede {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem); line-height: 1.6;
  color: var(--white); text-align: center; max-width: 560px; margin: 0 auto;
}
.panel-rule { width: 54px; height: 2px; margin: 24px auto 32px; border-radius: 2px; background: var(--accent); }
.dlist { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 38px; }
.dl { display: flex; align-items: flex-start; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--border); }
.dl-ic { flex-shrink: 0; width: 25px; height: 25px; margin-top: 2px; color: var(--accent); }
.dl-ic svg { width: 100%; height: 100%; display: block; }
.dl-tx strong {
  display: block; font-family: var(--font-cond); font-size: 1.02rem;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 3px;
}
.dl-tx span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.panel-cta { text-align: center; margin-top: 40px; }
.btn {
  display: inline-block; font-family: var(--font-cond); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 16px 50px; border-radius: 999px; color: var(--bg); background: var(--accent);
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 35%, transparent); }
.group-label {
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; text-align: center;
  color: var(--accent); margin: 46px 0 4px;
}
.group-title { font-family: var(--font-display); font-size: clamp(1.8rem,5vw,2.6rem); text-align: center; color: var(--white); margin-bottom: 26px; }

/* ---- Proof: photo + stacked stats ---- */
.proof { max-width: 1000px; margin: 0 auto; padding: 54px 24px 16px; }
.proof-inner {
  display: flex; align-items: flex-start; gap: 38px;
}
.proof-photo {
  position: relative; flex-shrink: 0;
  width: 300px; aspect-ratio: 4 / 5;
  background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.proof-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 45%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 65%);
}
.proof-photo span {
  position: relative; z-index: 1; text-align: center; padding: 0 16px;
  font-family: var(--font-cond); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.proof-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 16%; z-index: 1;
}
.stat-list { flex: 1; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.stat-sub {
  font-family: var(--font-cond); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  margin: 16px 0 2px; padding-left: 2px;
}
.stat-sub:first-child { margin-top: 0; }
.stat {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px;
  border: 1px solid var(--border); border-left: 2px solid var(--accent);
  border-radius: 12px; background: var(--glass);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.stat:hover {
  transform: translateX(5px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--glass));
}
.stat-ic {
  flex-shrink: 0; width: 30px; height: 30px; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.stat-ic svg { width: 100%; height: 100%; display: block; }
.stat-body { min-width: 0; }
.stat-n {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1; color: var(--white);
}
.stat-l {
  font-family: var(--font-cond); font-size: 0.84rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; line-height: 1.3;
}

/* ---- Book a call: calendar embed wrapper ---- */
.book-cal {
  max-width: 920px; margin: 30px auto 80px;
  padding: 0 24px;
}
.book-cal iframe {
  display: block; width: 100%;
  min-height: 720px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
@media (max-width: 860px) {
  .book-cal { padding: 0 16px; margin: 18px auto 60px; }
  .book-cal iframe { min-height: 640px; border-radius: 12px; }
}

.sub-footer { text-align: center; padding: 56px 24px 48px; border-top: 1px solid var(--border); }
.sub-footer .logo-img { height: 38px; width: auto; opacity: 0.7; margin: 0 auto 14px; }
.sub-footer p { font-family: var(--font-cond); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }

/* =============================================
   MOBILE SCENE — one mark splits into 3 rows
   ============================================= */
#m-scene { display: none; }

@media (max-width: 860px) {
  .header-nav { display: none; }
  #phase-logos { display: none !important; }
  #scroll-container { height: auto !important; }

  /* header sits at the very top of the page, scrolls away (not fixed) */
  .site-header,
  .site-header.scrolled {
    position: absolute; background: none; backdrop-filter: none;
    border-bottom: none; padding: 22px 22px;
  }
  .site-header .header-logo .logo-img,
  .site-header.scrolled .header-logo .logo-img { height: 44px; }

  #m-scene { display: block; position: relative; }
  /* no CSS sticky here — ScrollTrigger owns the pin (double-pin = jank) */
  .m-pin {
    position: relative;
    height: 100vh; height: 100dvh;
    overflow: hidden;
  }
  /* the single origin mark (pre-split) */
  .m-origin {
    position: absolute; left: 50%; top: 50%;
    width: 92px; height: 92px;
    transform: translate(-50%, -50%);
    opacity: 0; will-change: opacity, transform;
  }
  /* three divided sections — mark on the left, content on the right */
  .m-rows {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    padding: 54px 20px 16px;
    --rev: 0;
  }
  .m-row {
    position: relative; overflow: hidden;
    flex: 1 1 0; min-height: 0;
    display: flex; flex-direction: row; align-items: center;
    gap: 16px; padding: 14px 4px;
  }
  .m-row + .m-row {
    border-top: 1px solid color-mix(in srgb, var(--border) calc(var(--rev) * 100%), transparent);
  }
  .m-row.m-grow     { --accent: var(--steel); --glow: rgba(212,217,224,0.16); }
  .m-row.m-monetise { --accent: var(--blue);  --glow: rgba(74,151,221,0.20); }
  .m-row.m-scale    { --accent: var(--gold);  --glow: rgba(201,162,76,0.18); }
  /* per-section background glow, fades in with the content */
  .m-row::before {
    content: ''; position: absolute; inset: -8% -10%;
    z-index: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 75% at 50% 50%, var(--glow) 0%, transparent 66%);
    opacity: var(--rev);
  }
  .m-mark {
    position: relative; z-index: 1;
    width: 46px; height: 46px; flex-shrink: 0;
    opacity: 0; will-change: opacity, transform;
  }
  .m-tx {
    position: relative; z-index: 1; flex: 1; min-width: 0;
    opacity: 0; will-change: opacity, transform;
  }
  .m-tx h3 {
    font-family: var(--font-display); font-size: 1.5rem;
    letter-spacing: 0.06em; color: var(--accent); line-height: 1;
    margin-bottom: 5px;
  }
  .m-tx p {
    font-family: var(--font-body); font-size: 0.8rem;
    line-height: 1.4; color: var(--muted); margin-bottom: 12px;
  }
  .m-tx .btn {
    display: inline-block; font-family: var(--font-cond);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none;
    color: var(--bg); background: var(--accent);
    padding: 9px 22px; border-radius: 999px;
  }

  .marquee-text { font-size: 15vw; }
  .dlist { grid-template-columns: 1fr; gap: 0; }
  .panel { padding: 32px 22px 36px; }
  .sub-header { padding: 18px 20px; }
  .vsl-block { padding: 0 18px; }
  .proof { padding: 30px 18px 8px; }
  .proof-inner { flex-direction: column; align-items: center; gap: 24px; }
  .proof-photo { width: 200px; }
  .stat-list { width: 100%; gap: 11px; }
  .stat { padding: 14px 18px; gap: 14px; }
  .stat-ic { width: 26px; height: 26px; }
  .stat-n { font-size: 1.7rem; }
  .stat-l { font-size: 0.8rem; }
}
@media (max-width: 520px) {
  .hero-lockup { width: 88vw; }
  .m-tx p { font-size: 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lockup, .hero-by, .hero-tagline, .hero-scroll-cue { animation: none; opacity: 1; transform: none; }
}
