/* ============================================================
   PEPTRIBE · US Ambassador Teaser — design system
   Matches dev.peptribe.com.au: black canvas, pink signature,
   fluoro yellow, white. Archivo display. Large logo → shrinks
   on scroll. Box drops in then floats over the brand X.
   NO cream. Visually striking, image-forward.
   ============================================================ */

:root {
  --ink:        #0A0A0A;
  --ink-soft:   #141414;
  --ink-mid:    #1F1F1F;
  --ink-line:   #2A2A2A;
  --white:      #FFFFFF;
  --bone:       #FAFAFA;

  --pink:       #FE009C;
  --pink-soft:  #FF4DB7;
  --pink-dark:  #C8007D;
  --yellow:     #FFE100;

  --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans:    'Geist', ui-sans-serif, system-ui, sans-serif;
  --mono:    'Geist Mono', ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 132px;
  --header-h-compact: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* Lenis owns smooth-scroll. NO CSS scroll-behavior:smooth — having both
   is the classic cause of scroll "catching"/stopping. overflow-x:clip
   (not hidden) keeps <body> from becoming a second scroll container. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  background: var(--ink); color: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; overscroll-behavior-y: none;
}
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--pink); color: var(--ink); }

/* grain — matches AU .grain */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.06; mix-blend-mode: overlay;
}

/* ---------- header (large logo → shrinks on scroll) ---------- */
.header { position: sticky; top: 0; z-index: 50; background: #fff;
  height: var(--header-h); transition: height .35s var(--ease), background-color .35s var(--ease); }
.header.scrolled { height: var(--header-h-compact); background: var(--ink); }
.header .row { max-width: 1280px; height: 100%; margin: 0 auto; padding: 0 clamp(20px,4vw,40px);
  display: flex; align-items: center; justify-content: space-between; }
.header .logo { height: 100px; width: 178px; fill: var(--ink); transition: height .35s var(--ease), width .35s var(--ease), fill .35s var(--ease); display: block; }
.header.scrolled .logo { height: 40px; width: 71px; fill: #fff; }

/* header contact icons (Font Awesome) + CTA, grouped on the right */
.header-actions { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 20px); }
.hdr-ico { display: inline-flex; align-items: center; justify-content: center; width: 21px; height: 21px;
  color: var(--ink); transition: color .35s var(--ease), transform .2s var(--ease); }
.hdr-ico svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.hdr-ico:hover { color: var(--pink); transform: translateY(-1px); }
.header.scrolled .hdr-ico { color: #fff; }
.header.scrolled .hdr-ico:hover { color: var(--pink); }

/* CTA button — wipe-up hover (matches AU V2Button) */
.btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 12px; cursor: pointer; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease); }
.btn span { position: relative; z-index: 2; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: 1; transform: translateY(101%); transition: transform .35s var(--ease); }
/* buttons stay fixed on hover — only the fill wipes, nothing moves */
.btn:hover::before { transform: translateY(0); }
.btn.yellow { background: var(--yellow); color: var(--ink); }
.btn.yellow::before { background: var(--ink); } .btn.yellow:hover { color: var(--yellow); }
.btn.pink { background: var(--pink); color: #fff; }
.btn.pink::before { background: var(--ink); } .btn.pink:hover { color: #fff; }
.btn.ink { background: var(--ink); color: #fff; }
.btn.ink::before { background: var(--pink); } .btn.ink:hover { color: #fff; }
.btn.ghost { border: 2px solid rgba(255,255,255,.5); color: rgba(255,255,255,.9); padding: 12px 20px; }
.btn.ghost::before { background: #fff; } .btn.ghost:hover { color: var(--ink); border-color: #fff; }
.btn.lg { font-size: 14px; padding: 17px 28px; }
.btn .arr { font-size: 1.05em; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero .wrap { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 32px; padding: clamp(8px,1.4vw,14px) max(0px, calc(clamp(20px,4vw,40px) - 50px)) clamp(16px,2.4vw,34px) clamp(20px,4vw,40px); }
@media (max-width: 980px){ .hero .wrap { grid-template-columns: 1fr; min-height: auto; padding-top: 16px; padding-bottom: 52px; gap: 4px; } }

.hero-eyebrow { display: inline-flex; flex-direction: column; align-items: center; gap: 11px; margin-bottom: 28px; }
.hero-eyebrow .hr { height: 1px; width: 34px; background: rgba(255,255,255,.4); flex: none; }
.hero-eyebrow .lbl { font-family: var(--display); font-size: 16px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #fff; line-height: 1.18; text-align: center; }
.hero-eyebrow .flags { display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow .flag { width: 63px; height: auto; border-radius: 3px; display: block; }
.hero-eyebrow .fx { font-family: var(--display); font-weight: 900; font-size: 26px; color: #fff; line-height: 1; }
.hero h1 { font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 0.9; letter-spacing: -0.04em; color: #fff; }
.hero h1 .pink { color: var(--pink); }
.hero h1 .yellow { color: var(--yellow); }
/* rotating word + blinking caret (matches AU typing hero) */
.hero h1 .rot { display: inline-block; }
.hero h1 .caret { display: inline-block; width: .055em; height: .76em; margin-left: .04em;
  background: var(--pink); vertical-align: baseline; transform: translateY(.04em);
  animation: caret-blink 1s steps(1, end) infinite; }
@keyframes caret-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.hero .lede { margin-top: 26px; max-width: 30rem; font-size: clamp(15px,1.6vw,18px); line-height: 1.6; color: rgba(255,255,255,.72); text-wrap: pretty; }
.hero .lede b { color: #fff; font-weight: 600; }
.hero .cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* hero stage — X backdrop + floating box */
.hero-stage { position: relative; height: 100%; min-height: 420px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 980px){ .hero-stage { min-height: auto; margin-top: 30px; } }
.hero-x { position: absolute; right: -80%; top: 50%; width: 104%; max-width: none;
  transform: translateY(-50%); opacity: .9; z-index: 0; pointer-events: none;
  animation: x-in 1.7s var(--ease) .15s both; }
.hero-box { position: relative; z-index: 1; width: 125%; --bx: 26%; flex-shrink: 0;
  animation: box-drop 1.15s cubic-bezier(0.2, 0.85, 0.25, 1) both; }
@media (max-width: 980px){ .hero-box { width: 82%; max-width: 440px; --bx: 0%; } .hero-x { width: 124%; right: -22%; opacity: .8; } }
.hero-box img { width: 100%; height: auto; filter: drop-shadow(0 50px 90px rgba(0,0,0,.55));
  transform: translateX(var(--bx)); animation: box-float 5s ease-in-out 1.15s infinite; }

@keyframes box-drop { from { transform: translateY(-60vh); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes box-float { 0%,100% { transform: translateX(var(--bx)) translateY(0); } 50% { transform: translateX(var(--bx)) translateY(-14px); } }
@keyframes x-in { from { transform: translateY(-50%) translateX(34%) rotate(22deg); opacity: 0; } to { transform: translateY(-50%) translateX(0) rotate(0); opacity: .9; } }

/* ---------- generic section ---------- */
.sec { position: relative; padding: clamp(64px,9vw,128px) clamp(20px,4vw,40px); }
.sec .in { max-width: 1280px; margin: 0 auto; }
.sec.ink { background: var(--ink); }
.sec.pink { background: var(--pink); color: #fff; }
.sec.white { background: #fff; color: var(--ink); }
.eyebrow { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px; }
.sec.ink .eyebrow { color: var(--yellow); }
.sec.pink .eyebrow { color: var(--ink); }
.sec.white .eyebrow { color: var(--pink); }
h2 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.94;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 .pink { color: var(--pink); } h2 .yellow { color: var(--yellow); }
.sec.pink h2 .yellow { color: var(--yellow); }
.lead { margin-top: 24px; max-width: 46rem; font-size: clamp(16px,1.7vw,20px); line-height: 1.55; }
.sec.ink .lead { color: rgba(255,255,255,.74); } .sec.ink .lead b { color: #fff; }
.sec.pink .lead { color: rgba(255,255,255,.92); } .sec.pink .lead b { color: var(--yellow); }
.sec.white .lead { color: rgba(10,10,10,.72); } .sec.white .lead b { color: var(--ink); }

/* ---------- statement band (pink) ---------- */
.statement h2 { max-width: 18ch; }
.statement .lead { margin-top: 28px; }
.diff-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
@media (max-width: 760px){ .diff-row { grid-template-columns: 1fr; gap: 22px; } }
.diff { display: flex; gap: 16px; align-items: flex-start; border-top: 2px solid rgba(255,255,255,.35); padding-top: 18px; }
.diff-ico { flex: none; width: 44px; color: var(--pink); }
.diff-ico svg { width: 100%; height: auto; display: block; }
.diff-tx { flex: 1; }
.diff h4 { font-family: var(--display); font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; color: var(--pink); }
.diff p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.9); }

/* ---------- category social tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 48px; grid-auto-rows: clamp(260px, 24vw, 340px); }
@media (max-width: 1000px){ .cats { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px){ .cats { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(220px, 42vw, 280px); } }
.cat { position: relative; border-radius: 18px; overflow: hidden; background: var(--ink-mid); }
.cat img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat:hover img { transform: scale(1.06); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.9) 100%); }
.cat .lbl { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; }
.cat .lbl h5 { font-family: var(--display); font-weight: 800; font-size: 17px; text-transform: uppercase; color: #fff; line-height: 1.04; }
.cat .lbl p { font-size: 12px; color: rgba(255,255,255,.78); margin-top: 5px; line-height: 1.4; }
.cat .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; background: var(--pink); color: #fff; padding: 5px 10px; border-radius: 99px; }

/* ---------- social / example-post cards ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 380px)); justify-content: center; gap: 20px; margin: 48px auto 0; max-width: 1180px; }
.post { background: #fff; border: 1px solid #ececec; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 50px -24px rgba(0,0,0,.4); }
.post .top { display: flex; align-items: center; gap: 10px; padding: 13px 15px; }
.post .av { width: 34px; height: 34px; border-radius: 99px; object-fit: cover; border: 2px solid var(--pink); background: var(--ink); }
.post .who { line-height: 1.2; }
.post .who .h { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.post .who .s { font-size: 10.5px; color: #888; }
.post .media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #000; }
.post .media img { width: 100%; height: 100%; object-fit: cover; }
.post .media .sp { position: absolute; bottom: 10px; left: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; background: rgba(0,0,0,.6); color: #fff; padding: 5px 9px; border-radius: 99px; }
.post .acts { display: flex; gap: 14px; padding: 12px 15px 6px; color: var(--ink); }
.post .acts svg { width: 22px; height: 22px; }
.post .cap { padding: 0 15px 16px; font-size: 13px; line-height: 1.5; color: var(--ink); }
.post .cap b { font-weight: 700; }
.post .cap .tagword { color: var(--pink); }
.post-disc { margin-top: 26px; font-family: var(--mono); font-size: 11px; color: rgba(10,10,10,.45); text-align: center; }
.sec.white .post-disc { color: rgba(10,10,10,.45); }

/* ---------- pink section: copy left, hover-tilt post card right ---------- */
.why-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px,5vw,72px); align-items: center; }
@media (max-width: 900px){ .why-grid { grid-template-columns: 1fr; gap: 44px; } }
.why-copy .lead { margin-top: 24px; }
.diff-col { display: grid; gap: 22px; margin-top: 40px; }
.why-card { display: flex; justify-content: center; perspective: 1000px; }
.why-card .post { width: 100%; max-width: 360px; box-shadow: 0 26px 50px -24px rgba(0,0,0,.4), 0 6px 16px rgba(0,0,0,.18); }
.why-box { width: 100%; max-width: 430px; filter: drop-shadow(0 22px 30px rgba(0,0,0,.3)); }
.tilt { transition: transform .55s var(--ease); transform-style: preserve-3d; will-change: transform; }

/* ---------- fanned example posts ---------- */
.fan { position: relative; height: clamp(440px,46vw,560px); max-width: 1100px; margin: 60px auto 0; --step: 132px; --rot: 7deg; }
@media (max-width: 980px){ .fan { --step: 70px; --rot: 6deg; height: clamp(400px,86vw,500px); } }
@media (max-width: 560px){ .fan { --step: 38px; --rot: 5deg; } }
.fancard { position: absolute; top: 46%; left: 50%; width: clamp(208px,21vw,264px); border-radius: 18px; overflow: hidden;
  background: #fff; border: 1px solid #e7e7e7; box-shadow: 0 34px 70px -22px rgba(0,0,0,.5), 0 6px 16px rgba(0,0,0,.2);
  transform-origin: 50% 130%; opacity: 0; transform: translate(-50%,-50%) translateY(80px) scale(.94);
  transition: transform .95s var(--ease), opacity .7s var(--ease); }
.fan.in .fancard { opacity: 1;
  transform: translate(-50%,-50%) translateX(calc(var(--i) * var(--step))) translateY(calc(var(--i) * var(--i) * 9px)) rotate(calc(var(--i) * var(--rot)));
  transition-delay: calc((var(--i) + 3) * 0.07s); }
.fan.in .fancard:hover { transform: translate(-50%,-50%) translateX(calc(var(--i) * var(--step))) translateY(-11px) rotate(calc(var(--i) * 4.5deg)) scale(1.025); z-index: 40 !important; transition-delay: 0s; cursor: pointer; }
.fancard .fc-top { display: flex; align-items: center; gap: 8px; padding: 10px 11px; }
.fancard .fc-av { width: 26px; height: 26px; border-radius: 99px; object-fit: cover; border: 1.5px solid var(--pink); flex: none; }
.fancard .fc-h { font-weight: 700; font-size: 11.5px; color: var(--ink); line-height: 1.15; }
.fancard .fc-h small { display: block; font-weight: 400; font-size: 9px; color: #9a9a9a; letter-spacing: 0; }
.fancard .fc-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #000; }
.fancard .fc-media img { width: 100%; height: 100%; object-fit: cover; }
.fancard .fc-media .sp { position: absolute; left: 8px; bottom: 8px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .06em; text-transform: uppercase; background: rgba(0,0,0,.6); color: #fff; padding: 4px 7px; border-radius: 99px; }
.fancard .fc-cap { padding: 9px 11px 12px; font-size: 11px; line-height: 1.45; color: var(--ink); }
.fancard .fc-cap b { font-weight: 700; }
.fancard .fc-media video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* hero 3-card fan (replaces the box+X hero) */
.hero-fan { position: relative; width: 100%; height: clamp(450px, 46vw, 600px); margin-left: 100px; }
.hero-fan .fancard { top: 50%; left: 50%; width: clamp(244px, 21vw, 308px);
  opacity: 0; transform: translate(-50%,-50%) translateY(46px) scale(.95);
  transition: transform .9s var(--ease), opacity .7s var(--ease);
  box-shadow: 0 34px 70px -22px rgba(0,0,0,.42), 0 8px 20px rgba(0,0,0,.26); }
.hero-fan.in .hc-left  { opacity: 1; z-index: 2; transform: translate(-50%,-50%) translate(-42%, 6%) rotate(-9deg); transition-delay: .06s; }
.hero-fan.in .hc-mid   { opacity: 1; z-index: 3; transform: translate(-50%,-50%) translate(32%, -4%) rotate(0deg) scale(1.07); transition-delay: .15s; }
.hero-fan.in .hc-right { opacity: 1; z-index: 1; transform: translate(-50%,-50%) translate(112%, 9%) rotate(9deg); transition-delay: 0s; }
.hero-fan-x { position: absolute; top: 50%; left: 50%; width: 122%; transform: translate(-50%,-50%) translateX(16%) translateX(120px); z-index: 0; filter: brightness(0); opacity: 0; transition: opacity .9s var(--ease); pointer-events: none; }
.hero-fan.in .hero-fan-x { opacity: .88; }
@media (max-width: 980px){ .hero-fan-x { width: 150%; transform: translate(-50%,-50%); } }

/* diagonal-hatch strip on the hero's left edge (CSS-drawn, no asset needed) */
.hero-hatch { position: absolute; left: 0; width: 120px; top: calc(63% + 20px); height: 45px; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(135deg, var(--ink) 0 1.6px, transparent 1.6px 9.6px); }
@media (max-width: 980px){ .hero-hatch { display: none; } }
@media (max-width: 980px){
  .hero-fan { height: clamp(400px, 96vw, 520px); margin-top: 18px; margin-left: 0; }
  .hero-fan .fancard { width: clamp(188px, 48vw, 248px); }
  .hero-fan.in .hc-left  { transform: translate(-50%,-50%) translate(-50%, 6%) rotate(-8deg); }
  .hero-fan.in .hc-mid   { transform: translate(-50%,-50%) translate(10%, -4%) scale(1.05); }
  .hero-fan.in .hc-right { transform: translate(-50%,-50%) translate(72%, 8%) rotate(8deg); }
}

/* box + X moved into the pink "we look after our people" card */
.why-card { overflow: visible; }
#why .eyebrow { color: var(--pink); }
.why-card .hero-stage { width: 100%; min-height: clamp(380px, 40vw, 540px); }

/* frosted-glass benefit callouts floating over the box */
.box-callouts { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.callout { position: absolute; display: flex; align-items: center; gap: 11px;
  padding: 11px 15px 11px 12px; border-radius: 16px; max-width: 186px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(13px) saturate(1.1); backdrop-filter: blur(13px) saturate(1.1);
  box-shadow: 0 22px 44px -18px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.12);
  opacity: 0; transform: translateY(14px) scale(.96); }
.why-card.in .callout { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .8s var(--ease); }
.callout-ico { flex: none; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,225,0,.18); color: var(--yellow); }
.callout-ico svg { width: 20px; height: 20px; }
.callout-tx b { display: block; font-family: var(--display); font-weight: 800; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .01em; line-height: 1.08; color: #fff; }
.callout-tx small { display: block; font-size: 11px; line-height: 1.3; color: rgba(255,255,255,.72); margin-top: 4px; }
/* positions — overlap the box so it reads through the glass; gentle hover-float */
.callout.c1 { top: calc(5% + 80px);  left: 110px;   transition-delay: .12s; animation: cfloat 6s ease-in-out .2s infinite; }
.callout.c2 { top: calc(41% - 60px); right: calc(-4% - 110px); transition-delay: .24s; animation: cfloat 6.8s ease-in-out .5s infinite; }
.callout.c3 { bottom: calc(7% + 50px); left: calc(9% + 100px); transition-delay: .36s; animation: cfloat 7.4s ease-in-out .9s infinite; }
@keyframes cfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 900px){
  .callout { max-width: 168px; padding: 9px 13px 9px 10px; }
  .callout.c1 { top: 2%; left: -2%; } .callout.c2 { top: 44%; right: 0%; } .callout.c3 { bottom: 4%; left: 4%; }
}
/* box + X use the base (hero) sizing: box larger, X cropped off-frame */

/* ---------- LIGHT (white) top section — whites reverse to black ---------- */
.header.light { background: #fff; border-bottom: 1px solid rgba(10,10,10,.08); }
.header.light .logo { fill: var(--ink); }
.hero.light { background: #fff; }
.hero.light h1 { color: var(--ink); }
.hero.light h1 .pink { color: var(--pink); }
.hero.light .lede { color: rgba(10,10,10,.7); }
.hero.light .lede b { color: var(--ink); }
.hero.light .hero-eyebrow .lbl,
.hero.light .hero-eyebrow .fx { color: var(--ink); }
.hero.light .btn.ghost { border-color: rgba(10,10,10,.4); color: rgba(10,10,10,.85); }
.hero.light .btn.ghost::before { background: var(--ink); }
.hero.light .btn.ghost:hover { color: #fff; border-color: var(--ink); }
.hero.light .grain::after { mix-blend-mode: multiply; opacity: .04; }

/* ---------- CTA — video band + glass card (mirrors peptribe.com) ---------- */
.offer-band { position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 78vh; overflow: hidden; background: var(--ink); padding: clamp(64px,9vw,120px) clamp(20px,4vw,40px); }
.offer-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.offer-scrim { position: absolute; inset: 0; z-index: 1; background: rgba(8,8,8,.45);
  background: linear-gradient(180deg, rgba(8,8,8,.5), rgba(8,8,8,.38) 50%, rgba(8,8,8,.6)); }
.offer-card { position: relative; z-index: 2; width: 100%; max-width: 640px; text-align: center;
  padding: clamp(34px,5vw,56px) clamp(26px,4vw,52px); border-radius: 28px;
  background: rgba(10,10,10,.62); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -28px rgba(0,0,0,.7); }
.offer-card .eyebrow { color: var(--yellow); }
.offer-card h2 { color: #fff; margin: 0 auto; max-width: 16ch; }
.offer-card h2 .pink { color: var(--pink); }
.offer-card .lead { color: rgba(255,255,255,.8); margin: 22px auto 0; max-width: 40ch; }
.offer-card .cta-row { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- footer (matches peptribe.com) ---------- */
.foot { background: var(--ink); padding: 56px clamp(20px,4vw,40px); border-top: 1px solid var(--ink-line); }
.foot .in { max-width: 1280px; margin: 0 auto; }
.foot .logo { height: 36px; width: 64px; fill: #fff; }
.foot .foot-copy { margin-top: 18px; max-width: 28rem; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); }
.foot .foot-legal { margin-top: 18px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ---------- password gate (glassy white card on white) ---------- */
.gate { position: fixed; inset: 0; z-index: 10000; background: #fff; padding: 24px;
  display: flex; align-items: center; justify-content: center; transition: opacity .5s var(--ease); }
.gate.accepted { pointer-events: none; }
.gate.accepted .gate-card { opacity: 0; transform: translateY(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.gate-card { display: flex; flex-direction: column; align-items: center; gap: 18px;
  width: 100%; max-width: 360px; padding: 42px 34px 34px; text-align: center;
  background: rgba(255,255,255,.55); border: 1px solid rgba(10,10,10,.07); border-radius: 24px;
  -webkit-backdrop-filter: blur(22px) saturate(1.4); backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 34px 80px -26px rgba(10,10,10,.30), 0 8px 22px rgba(10,10,10,.07), inset 0 1px 0 rgba(255,255,255,.85); }
.gate-logo { width: 116px; height: auto; fill: var(--ink); margin-bottom: 2px; }
.gate-label { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(10,10,10,.6); }
.gate-input { width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink); text-align: center;
  padding: 15px 18px; border-radius: 14px; border: 1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 12px 26px -16px rgba(10,10,10,.35), inset 0 1px 0 rgba(255,255,255,.95);
  outline: none; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.gate-input::placeholder { color: rgba(10,10,10,.38); letter-spacing: .04em; }
.gate-input:focus { border-color: var(--pink);
  box-shadow: 0 12px 30px -14px rgba(254,0,156,.45), inset 0 1px 0 rgba(255,255,255,.95); }
.gate-btn { width: 100%; font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; background: var(--pink); border: none; border-radius: 14px;
  padding: 15px 18px; cursor: pointer; transition: transform .18s var(--ease), background-color .25s var(--ease); }
.gate-btn:hover { background: var(--pink-dark); }
.gate-btn:active { transform: translateY(1px); }
.gate-err { font-family: var(--mono); font-size: 11.5px; color: var(--pink-dark); letter-spacing: .01em; margin-top: -4px; }
.gate.shake .gate-card { animation: gate-shake .42s var(--ease); }
@keyframes gate-shake { 0%,100%{transform:translateX(0);} 18%{transform:translateX(-9px);} 38%{transform:translateX(8px);} 58%{transform:translateX(-6px);} 78%{transform:translateX(4px);} }

/* ---------- intro overlay (logo → Ambassador Program → "Are you ready.") ---------- */
.intro { position: fixed; inset: 0; z-index: 9999; background: #fff; padding: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .65s var(--ease); }
.intro.done { opacity: 0; pointer-events: none; }
.intro-lockup { display: flex; flex-direction: column; align-items: center; }
.intro-logo { width: clamp(150px, 19vw, 215px); height: auto; fill: var(--ink); margin-bottom: 48px;
  opacity: 0; transform: translateY(16px); filter: blur(6px); animation: iw-in .7s var(--ease) .10s forwards; }
.intro-flags { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
  opacity: 0; transform: translateY(14px); filter: blur(6px); animation: iw-in .65s var(--ease) .38s forwards; }
.intro-flags .flag { width: 50px; height: auto; border-radius: 3px; display: block; }
.intro-flags .fx { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--ink); line-height: 1; }
.intro-prog { font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .15em; text-align: center; font-size: 16px; line-height: 1.2; color: var(--ink);
  opacity: 0; transform: translateY(14px); filter: blur(6px); animation: iw-in .7s var(--ease) .58s forwards; }
.intro-text { margin-top: 42px; display: flex; flex-direction: column; align-items: center;
  font-family: var(--display); font-weight: 900; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.8rem, 5.6vw, 3.7rem); letter-spacing: -0.02em; line-height: 1.0; text-align: center; }
.intro-text .iw { display: inline-block; opacity: 0; transform: translateY(22px); filter: blur(9px);
  animation: iw-in .65s var(--ease) .92s forwards; }
.intro-text .idot { color: var(--pink); opacity: 0; animation: idot-blink .6s steps(1, end) 1.7s infinite; }
@keyframes iw-in { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes idot-blink { 0%, 54% { opacity: 1; } 55%, 100% { opacity: 0; } }
html.intro-lock { overflow: clip; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-box, .hero-box img, .hero-x { animation: none !important; }
  .hero-x { opacity: .9; transform: translateY(-50%); }
  .callout { animation: none !important; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive fine-tuning
   • Large desktop / 27" (>1800px): untouched — keeps the defaults.
   • Laptop (981–1800px, still two-column): nudge hero + why bits.
   • Mobile (≤980px stacked, ≤640px phone header): logo, padding, box.
   ============================================================ */

/* ---- laptop (smaller two-column screens) ---- */
@media (min-width: 981px) and (max-width: 1800px) {
  /* hero videos: ~10% smaller and nudged ~50px left.
     Scale on .in so it beats the reveal system's `.reveal.in { transform: none }`. */
  .hero-fan { margin-left: 50px; }
  .hero-fan.in { transform: scale(.9); transform-origin: center center; }
  /* diagonal hatch on the far left: 50px further left */
  .hero-hatch { left: -50px; }
  /* why-section: shift "income that compounds" + the box left */
  .callout.c2 { right: calc(-4% - 60px); }
  .why-card .hero-box { margin-left: -80px; }
}

/* ---- mobile: phone header (logo smaller, drop contact icons) ---- */
@media (max-width: 640px) {
  .header .logo { height: 85px; width: 151px; }      /* ~15% smaller */
  .header-actions .hdr-ico { display: none; }         /* frees the row → Get Started on one line */
}

/* ---- mobile: stacked layout tweaks ---- */
@media (max-width: 980px) {
  .hero .cta-row { margin-bottom: 22px; }             /* breathing room before the videos */
  #why .hero-x { display: none; }                     /* drop the background X */
  #why .hero-box { width: 98%; max-width: 528px; }    /* ~20% larger box */
}
