/* ============================================================
   CASSIANO TRADER · taste-skill calibrated
   - DESIGN_VARIANCE 8 · MOTION_INTENSITY 6 · VISUAL_DENSITY 4
   - Off-black neutral · single warm-champagne accent (#e8c887)
   - Satoshi + Cabinet Grotesk + JetBrains Mono · no Inter
   ============================================================ */

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

:root {
  --bg:        #0b0b0c;          /* off-black (NOT #000) */
  --bg-2:      #111113;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #f5f4f1;
  --muted:     #9b9a96;
  --muted-2:   #6e6d69;
  --accent:    #4ea674;          /* dollar green — desaturated, NOT neon */
  --accent-2:  #3d8a5e;
  --up:        #3d8a5e;          /* candle up — desaturated */
  --down:      rgba(255,255,255,0.18);

  --radius:    20px;
  --radius-lg: 28px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv11";
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* fixed grain — pointer-events: none, never on scrolling containers */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─────────── reveal cascade (CSS-only stagger) ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.9s var(--ease) forwards;
  animation-delay: calc(var(--i, 1) * 90ms);
}
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 28px clamp(20px, 5vw, 56px) 0;
  min-height: 52dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* full-bleed background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-image-cassiano.png');
  background-size: 75%;           /* menor = ele menor e mais à direita */
  background-repeat: no-repeat;
  background-position: 105% 8%;  /* ancora no topo-direita, cabeça aparece inteira */
  filter: contrast(1.05) saturate(0.9);
}
/* degradê: escuro apenas na faixa do texto, abre rápido para a foto */
.hero__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0b0b0c 0%,
    #0b0b0c 16%,
    rgba(11,11,12,0.78) 36%,
    rgba(11,11,12,0.12) 58%,
    rgba(11,11,12,0) 100%
  );
}

/* garante que header e conteúdo ficam acima do bg */
.hero > *:not(.hero__bg) { position: relative; z-index: 1; }

/* brand row */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 64px;
  flex-wrap: wrap;
}
.brand__mark {
  color: var(--text);
  display: grid;
  place-items: center;
}
.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.brand__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.16em;
  margin-top: 4px;
}
.brand__nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand__nav a {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.brand__nav a:hover {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.brand__live {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(78,166,116,0.05);
}
.brand__live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(78,166,116,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(78,166,116,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(78,166,116,0); }
}

/* hero — texto ocupa ~55% esquerda, foto aparece no bg à direita */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 660px);
  align-items: center;
  flex: 1;
  padding-bottom: 32px;
}

/* eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow__num { color: var(--accent); }
.eyebrow__sep {
  width: 28px; height: 1px;
  background: var(--line-2);
}

/* display headline — linha única */
.display {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  white-space: normal;
}
.display span { display: block; }
.display span + span { margin-top: 0.04em; }
.display__alt { color: var(--muted); }
.display__alt em {
  font-style: normal;
  color: var(--accent);
  font-family: 'Cabinet Grotesk', sans-serif;
}
.hero-copy-transition [data-hero-title] {
  opacity: 0;
  transform: translateY(8px);
}

.lede {
  font-size: clamp(15px, 1.08vw, 17px);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.5;
  margin-bottom: 24px;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
[data-hero-title] {
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

/* CTAs */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn--primary {
  background: var(--accent);
  color: #08140d;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 1px 0 rgba(255,255,255,0.04);
}
.btn--primary:hover { background: #5cba84; }
.btn--ghost {
  border-color: var(--line-2);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.04); }

/* metrics — no card containers, just dividers (anti-card overuse) */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 540px;
}
.hero__metrics {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.metrics__item {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.metrics__item:last-child { border-right: 0; padding-right: 0; padding-left: 20px; }
.metrics__item:not(:first-child):not(:last-child) { padding-left: 20px; }
.metrics__item dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.metrics__item dd {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.metrics__item .num { font-variant-numeric: tabular-nums; }
.metrics__item sup {
  color: var(--accent);
  font-size: 18px;
  margin-left: 2px;
}
.metrics__unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.14em;
}


/* marquee — kinetic strip */
.marquee {
  margin: 0 calc(clamp(20px, 5vw, 56px) * -1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  padding: 18px 0;
  animation: scroll 32s linear infinite;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.marquee__track i {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   BENTO LINKS
   ============================================================ */
.links {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 56px) 48px;
}
.links__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  max-width: 720px;
}
.h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* asymmetric bento — fr units, NOT 3 equal columns */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.8s var(--ease) forwards;
  animation-delay: calc(var(--i, 1) * 80ms + 200ms);
}
.tile:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.tile:active { transform: translateY(0) scale(0.995); }

/* spotlight border — mouse-tracked tinted glow (no neon) */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(78,166,116,0.32),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.tile:hover::before { opacity: 1; }

/* placement */
.tile--feature { grid-column: span 6; grid-row: span 2; padding: 0; flex-direction: row; }
.tile--wide    { grid-column: span 4; }
.tile--social  { grid-column: span 3; }
.tile:nth-child(2), .tile:nth-child(3) { grid-column: span 3; }

/* feature tile — split layout */
.tile--feature .tile__media {
  position: relative;
  flex: 0 0 46%;
  min-height: 320px;
  background:
    radial-gradient(70% 50% at 30% 30%, rgba(78,166,116,0.18), transparent 60%),
    linear-gradient(150deg, #1a1815 0%, #0d0c0e 100%);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.tile__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: contrast(1.1) saturate(0.85);
}
.tile__photo--sala::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(to right, transparent 0 24px, rgba(255,255,255,0.04) 24px 25px),
    repeating-linear-gradient(to bottom, transparent 0 24px, rgba(255,255,255,0.04) 24px 25px);
}
.tile__badge {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(11,11,12,0.65);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.tile__badge i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-out infinite;
}
.tile--feature .tile__body {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}
.tile--feature .tile__title {
  font-size: clamp(24px, 2.4vw, 36px);
  max-width: 18ch;
}
.tile--feature .tile__desc { max-width: 44ch; }
.tile__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* tile body */
.tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.tile__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tile__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 6px;
}
.tile__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 32ch;
}
.tile__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  z-index: 2;
}
.tile:hover .tile__arrow {
  transform: translate(2px, -2px);
  background: var(--accent);
  color: #08140d;
  border-color: var(--accent);
}

/* social tiles — denser */
.tile--social { padding: 22px; }
.tile--social .tile__title { font-size: 18px; }

/* ============================================================
   PROFILE FOOTER
   ============================================================ */
.profile {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 56px) 36px;
}
.profile__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.profile__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(140deg, rgba(78,166,116,0.35) 0%, rgba(61,138,94,0.2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile__info { min-width: 0; }
.profile__info .eyebrow { margin-bottom: 8px; }
.profile__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.profile__handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  margin: 4px 0 6px;
  letter-spacing: 0.04em;
}
.profile__tagline {
  color: var(--muted);
  font-size: 14px;
  max-width: 38ch;
}
.profile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.profile__mini-link {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile__mini-link:hover {
  color: #71d194;
}

.profile__socials {
  display: flex;
  gap: 6px;
}
.profile__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.profile__socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.profile__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 0 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page .hero {
  min-height: auto;
  padding-bottom: 28px;
}
.story-page .hero__grid {
  padding-bottom: 20px;
}
.story-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 56px) 16px;
}
.story-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.story-intro .h2 {
  margin-bottom: 14px;
}
.story-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}
.story-section {
  margin-top: 20px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.story-section + .story-section {
  margin-top: 16px;
}
.story-section__head {
  max-width: 680px;
  margin-bottom: 22px;
}
.story-section__head .h2 {
  margin-top: 10px;
}
.story-section__head p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.story-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}
.story-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.story-copy p + p {
  margin-top: 14px;
}
.story-aside,
.story-card,
.faq-item,
.story-proof {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.story-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-aside__label,
.story-card__label,
.story-proof__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.story-aside__title,
.story-card__title,
.story-proof__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.story-aside p,
.story-card p,
.story-proof p,
.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.story-card__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(78,166,116,0.1);
  border: 1px solid rgba(78,166,116,0.22);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  margin-bottom: 16px;
}
.story-proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-item h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.story-cta {
  margin-top: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78,166,116,0.24);
  background:
    radial-gradient(60% 120% at 0% 0%, rgba(78,166,116,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
}
.story-cta h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.story-cta p {
  margin-top: 14px;
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.65;
}
.story-cta .cta-row {
  margin-top: 20px;
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — strict single-column collapse below 768px
   ============================================================ */
@media (max-width: 1024px) {
  .tile--feature { grid-column: span 6; }
  .tile--wide    { grid-column: span 6; }
  .tile--social  { grid-column: span 3; }
  .tile:nth-child(2), .tile:nth-child(3) { grid-column: span 3; }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 16px 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero__bg {
    position: relative;
    inset: auto;
    order: 3;
    height: 260px;
    margin-top: 22px;
    border-radius: 24px;
    overflow: hidden;
  }
  .hero__bg-img {
    background-size: cover;
    background-position: center top;
  }
  .hero__bg-fade {
    background: linear-gradient(
      to bottom,
      rgba(11,11,12,0.08) 0%,
      rgba(11,11,12,0.12) 45%,
      rgba(11,11,12,0.34) 100%
    );
  }

  .brand {
    padding-bottom: 28px;
    order: 1;
  }
  .brand__nav {
    width: 100%;
    margin-left: 0;
    gap: 8px;
  }
  .brand__nav a {
    padding: 8px 12px;
    font-size: 9px;
  }

  .hero__grid {
    order: 2;
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .display {
    font-size: 30px;
    white-space: normal;
    max-width: none;
    line-height: 0.96;
  }
  .lede {
    font-size: 15px;
    max-width: none;
  }
  .cta-row {
    margin-bottom: 0;
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    max-width: none;
  }
  .metrics__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .metrics__item:last-child { border-bottom: 0; padding: 14px 0; }
  .metrics__item:not(:first-child):not(:last-child) { padding: 14px 0; }

  .marquee {
    order: 5;
    margin: 24px -16px 0;
  }
  .hero__metrics {
    order: 4;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .links { padding: 64px 16px 48px; }

  .bento { grid-template-columns: 1fr; }
  .tile,
  .tile--feature,
  .tile--wide,
  .tile--social,
  .tile:nth-child(2),
  .tile:nth-child(3) { grid-column: span 1; grid-row: auto; }
  .tile--feature { flex-direction: column; }
  .tile--feature .tile__media { flex-basis: 220px; min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tile--feature .tile__body { padding: 24px; }

  .profile { padding: 16px 16px 40px; }
  .profile__row {
    grid-template-columns: auto 1fr;
    padding: 24px;
    row-gap: 20px;
  }
  .profile__socials {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .story-layout {
    padding: 32px 16px 16px;
  }
  .story-section {
    padding: 22px;
  }
  .story-columns,
  .story-grid,
  .story-proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .profile__legal { flex-direction: column; padding: 0; }
}
