@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,700;1,400&family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bordeaux: #4A0E1F;
  --green: #0F2E22;
  --cream: #F2EDE3;
  --red: #B8232C;
  --display: "Playfair Display", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--green, #0F2E22);
  color: var(--cream, #F2EDE3);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
code { font-family: 'JetBrains Mono', monospace; font-size: 0.92em; padding: 1px 6px; background: rgba(242,237,227,0.08); border-radius: 2px; }

.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.italic { font-style: italic; font-family: var(--display); font-weight: 400; }

.root { background: var(--green); min-height: 100vh; position: relative; overflow: hidden; }

.bg-grid { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: color-mix(in oklab, var(--green) 88%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(242,237,227,0.08); transition: padding 0.3s; }
.nav.scrolled { padding: 0; }
.nav-inner { max-width: 1440px; margin: 0 auto; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; }
.logo-mark { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.logo-text { font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.nav-status { display: flex; align-items: center; gap: 8px; opacity: 0.8; white-space: nowrap; }
.nav-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 1.6s infinite; }
.nav-links a:not(.nav-cta):not(.nav-status) { opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:not(.nav-cta):not(.nav-status):hover { opacity: 1; }
.nav-cta { background: var(--red); color: var(--cream); padding: 12px 18px; display: flex; align-items: center; gap: 8px; clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px)); transition: transform 0.2s; }
.nav-cta:hover { transform: translateY(-1px); }

/* HERO */
.hero { position: relative; max-width: 1440px; margin: 0 auto; padding: 100px 48px 80px; z-index: 1; min-height: calc(100vh - 70px); display: flex; flex-direction: column; justify-content: center; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero-bg-card { position: absolute; opacity: 0.08; font-family: var(--display); font-style: italic; color: var(--cream); user-select: none; }
.hero-bg-card.c1 { font-size: clamp(220px, 26vw, 460px); top: -10%; right: -3%; transform: rotate(8deg); }
.hero-bg-card.c2 { font-size: clamp(180px, 22vw, 380px); bottom: 8%; left: -4%; transform: rotate(-12deg); color: var(--red); opacity: 0.12; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); opacity: 0.7; margin-bottom: 36px; }
.eyebrow .dot { width: 8px; height: 8px; background: #4ade80; display: inline-block; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { font-family: var(--display); font-size: clamp(82px, 13vw, 220px); font-weight: 400; line-height: 0.88; letter-spacing: -0.035em; color: var(--cream); margin-bottom: 40px; max-width: 14ch; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero-title .line span { display: inline-block; animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both; }
.hero-title .line:nth-child(2) span { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero-lede { font-size: 21px; line-height: 1.5; max-width: 580px; color: var(--cream); opacity: 0; margin-bottom: 44px; animation: fadein 1s 0.5s forwards; }
@keyframes fadein { from { opacity: 0; transform: translateY(12px); } to { opacity: 0.85; transform: none; } }

.hero-actions { display: flex; gap: 18px; align-items: center; opacity: 0; animation: fadein 1s 0.7s forwards; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: var(--cream); padding: 20px 28px; display: inline-flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%); transition: transform 0.2s, background 0.2s; position: relative; overflow: hidden; }
.btn-primary:hover { transform: translateY(-2px); background: color-mix(in oklab, var(--red) 85%, white); }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.6s; }
.btn-primary:hover::after { transform: translateX(100%); }
.btn-ghost { color: var(--cream); padding: 20px 22px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--cream); opacity: 0.8; transition: opacity 0.2s, padding 0.2s; }
.btn-ghost:hover { opacity: 1; padding-right: 32px; }

.hero-meta { display: flex; gap: 64px; margin-top: 80px; padding-top: 32px; border-top: 1px solid rgba(242,237,227,0.15); opacity: 0; animation: fadein 1s 0.9s forwards; }
.meta-num { font-family: var(--display); font-size: 64px; line-height: 1; font-weight: 400; color: var(--cream); font-style: italic; }
.meta-num .accent { color: var(--red); }
.meta-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-top: 8px; max-width: 14ch; }

.hero-bottom { position: absolute; bottom: 28px; left: 48px; right: 48px; display: flex; justify-content: space-between; color: var(--cream); opacity: 0.45; }
.blink { animation: pulse 1.5s infinite; color: var(--red); opacity: 1; }
.scroll-hint { display: flex; align-items: center; gap: 8px; }
.scroll-hint .line { width: 32px; height: 1px; background: var(--cream); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ''; position: absolute; inset: 0; background: var(--red); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* === LIVE FEED === */
.livefeed { background: var(--bordeaux); border-top: 1px solid rgba(242,237,227,0.15); border-bottom: 1px solid rgba(242,237,227,0.15); padding: 20px 48px; display: flex; align-items: center; gap: 32px; position: relative; z-index: 2; overflow: hidden; }
.livefeed-label { display: flex; align-items: center; gap: 10px; color: var(--cream); flex-shrink: 0; }
.livefeed-label .pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 12px #4ade80; animation: pulse 1.4s infinite; }
.livefeed-rail { flex: 1; overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.livefeed-rail::before, .livefeed-rail::after { content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none; }
.livefeed-track { display: flex; gap: 48px; animation: marquee 50s linear infinite; white-space: nowrap; }
.livefeed-item { display: flex; align-items: center; gap: 12px; color: var(--cream); font-size: 14px; flex-shrink: 0; }
.livefeed-item .lf-name { color: var(--cream); font-weight: 500; }
.livefeed-item .lf-action { opacity: 0.75; }
.livefeed-item .lf-amount { font-family: 'JetBrains Mono', monospace; color: #ffd166; font-size: 13px; }
.livefeed-item .lf-amount.loss { color: var(--cream); opacity: 0.6; text-decoration: line-through; }
.livefeed-item .lf-sep { opacity: 0.3; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === SECTION CHROME === */
.section-header { display: flex; gap: 14px; margin-bottom: 28px; color: var(--cream); opacity: 0.6; align-items: center; }
.section-num { color: var(--red); opacity: 1; }
.section-header.light { color: var(--bordeaux); opacity: 0.7; }
.section-header.light .section-num { color: var(--red); }
.section-title { font-family: var(--display); font-size: clamp(52px, 8vw, 112px); font-weight: 400; line-height: 0.96; letter-spacing: -0.025em; color: var(--cream); max-width: 18ch; text-wrap: balance; }
.section-title.light { color: var(--bordeaux); }

/* === MANIFESTE === */
.manifeste { max-width: 1440px; margin: 0 auto; padding: 160px 48px; position: relative; z-index: 1; }
.manifeste-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.manifeste-right p { font-size: 17px; line-height: 1.65; color: var(--cream); opacity: 0.85; margin-bottom: 18px; }
.lede { font-size: 22px !important; line-height: 1.5 !important; opacity: 1 !important; }
.lede.light { color: var(--bordeaux); }
.lede strong { color: var(--red); font-weight: 500; }
.bullets { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(242,237,227,0.15); }
.bullet { display: flex; gap: 14px; align-items: baseline; color: var(--cream); opacity: 0.9; font-size: 15px; }
.bullet .mono { color: var(--red); opacity: 1; }

/* === TOURNAMENT BANNER === */
.tournament { background: var(--bordeaux); padding: 90px 48px; position: relative; z-index: 1; overflow: hidden; }
.tournament::before { content: ''; position: absolute; top: 0; left: -10%; right: -10%; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.tournament-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.tournament-eyebrow { display: flex; align-items: center; gap: 10px; color: var(--cream); opacity: 0.8; margin-bottom: 24px; }
.tournament-eyebrow .blink { background: var(--red); width: 8px; height: 8px; border-radius: 50%; }
.tournament-title { font-family: var(--display); font-size: clamp(44px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 16px; }
.tournament-sub { color: var(--cream); opacity: 0.75; font-size: 17px; margin-bottom: 32px; max-width: 50ch; }
.tournament-meta { display: flex; gap: 40px; flex-wrap: wrap; }
.tournament-meta-item { padding-right: 40px; border-right: 1px solid rgba(242,237,227,0.15); }
.tournament-meta-item:last-child { border-right: none; }
.tournament-meta-label { color: var(--cream); opacity: 0.6; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.tournament-meta-value { font-family: var(--display); font-size: 26px; color: var(--cream); font-style: italic; }

.countdown { background: var(--green); padding: 36px 32px; border: 1px solid rgba(242,237,227,0.15); position: relative; }
.countdown::before { content: ''; position: absolute; top: -1px; right: -1px; width: 28px; height: 28px; background: var(--bordeaux); clip-path: polygon(100% 0, 0 0, 100% 100%); }
.countdown-label { color: var(--cream); opacity: 0.6; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.countdown-cell { text-align: left; }
.countdown-num { font-family: var(--display); font-size: clamp(48px, 5vw, 72px); line-height: 0.9; color: var(--cream); font-style: italic; font-variant-numeric: tabular-nums; }
.countdown-unit { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-top: 4px; color: var(--cream); }
.countdown-foot { margin-top: 24px; padding-top: 20px; border-top: 1px dashed rgba(242,237,227,0.15); display: flex; justify-content: space-between; color: var(--cream); opacity: 0.7; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.countdown-foot .accent { color: var(--red); opacity: 1; }

/* === MODULES === */
.modules { background: var(--green); padding: 160px 48px; position: relative; z-index: 1; }
.modules-inner { max-width: 1440px; margin: 0 auto; }
.modules-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.modules-head .right { color: var(--cream); opacity: 0.6; font-size: 14px; max-width: 32ch; text-align: right; }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(242,237,227,0.1); border: 1px solid rgba(242,237,227,0.1); }
.mod-card { background: var(--green); padding: 44px 32px 36px; position: relative; display: flex; flex-direction: column; min-height: 460px; transition: background 0.3s; cursor: pointer; overflow: hidden; }
.mod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.2,.7,.2,1); }
.mod-card:hover::before { transform: scaleX(1); }
.mod-card:hover { background: color-mix(in oklab, var(--green) 70%, black); }
.mod-card:hover .mod-num { transform: translateX(8px); color: var(--cream); }
.mod-card:hover .mod-vis { transform: rotate(0deg) scale(1.05); }
.mod-num { font-family: var(--display); font-size: 84px; font-style: italic; line-height: 0.8; color: var(--red); margin-bottom: 24px; transition: transform 0.4s, color 0.4s; }
.mod-corner { position: absolute; top: 0; right: 0; width: 24px; height: 24px; background: var(--bordeaux); clip-path: polygon(100% 0, 0 0, 100% 100%); }
.mod-vis { position: absolute; right: -20px; top: 40px; width: 110px; height: 110px; opacity: 0.15; transition: transform 0.5s, opacity 0.4s; transform: rotate(-8deg); }
.mod-card:hover .mod-vis { opacity: 0.3; }
.mod-name { font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -0.01em; color: var(--cream); margin-bottom: 6px; }
.mod-sub { color: var(--cream); opacity: 0.55; margin-bottom: 20px; }
.mod-desc { color: var(--cream); opacity: 0.8; font-size: 14.5px; line-height: 1.55; margin-bottom: auto; padding-bottom: 24px; }
.mod-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px dashed rgba(242,237,227,0.18); }
.mod-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mod-tag { color: var(--cream); opacity: 0.55; font-size: 10px; }
.mod-online { display: flex; align-items: center; gap: 6px; color: var(--cream); font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.8; }
.mod-online .pulse-sm { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 1.6s infinite; }


/* === APP PREVIEW === */
.preview { background: var(--bordeaux); padding: 160px 48px; position: relative; z-index: 1; overflow: hidden; }
.preview-inner { max-width: 1440px; margin: 0 auto; }
.preview-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.preview-head p { color: var(--cream); opacity: 0.8; font-size: 17px; line-height: 1.55; }
.preview-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.preview-text .feat-list { display: flex; flex-direction: column; gap: 24px; }
.feat-row { display: flex; gap: 18px; align-items: flex-start; border-top: 1px solid rgba(242,237,227,0.18); padding-top: 20px; transition: padding-left 0.3s; }
.feat-row:hover { padding-left: 12px; }
.feat-bullet { width: 10px; height: 10px; background: var(--red); margin-top: 8px; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); flex-shrink: 0; }
.feat-label { font-family: var(--display); font-size: 26px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.feat-desc { font-size: 15px; color: var(--cream); opacity: 0.7; line-height: 1.55; }

.preview-phones { position: relative; display: flex; justify-content: center; align-items: center; height: 640px; gap: 30px; }
.phone { position: relative; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.phone-lobby { transform: rotate(-5deg) translateY(20px); z-index: 2; }
.phone-poker { transform: rotate(6deg) translateY(-10px); z-index: 1; }
.phone:hover { transform: rotate(0) translateY(-6px); z-index: 5; }
.phone-frame { width: 256px; height: 528px; background: #0a0a0a; border-radius: 38px; padding: 8px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.4); position: relative; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; background: #0a0a0a; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: var(--green); border-radius: 30px; overflow: hidden; position: relative; }
.phone-label { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); color: var(--cream); opacity: 0.5; white-space: nowrap; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

.lobby-screen { padding: 40px 16px 16px; display: flex; flex-direction: column; gap: 14px; }
.screen-header { display: flex; justify-content: space-between; align-items: flex-end; color: var(--cream); }
.screen-greet { opacity: 0.6; margin-bottom: 4px; font-size: 9px; }
.screen-balance { display: flex; align-items: baseline; gap: 6px; }
.bal-num { font-family: var(--display); font-size: 28px; }
.bal-unit { opacity: 0.6; font-size: 9px; }
.screen-rank { text-align: right; }
.rank-num { font-family: var(--display); font-size: 28px; color: var(--red); font-style: italic; }
.rank-label { opacity: 0.6; font-size: 9px; }
.screen-tabs { display: flex; gap: 4px; padding: 4px; background: rgba(242,237,227,0.08); border-radius: 4px; }
.tab { flex: 1; text-align: center; padding: 7px 4px; color: var(--cream); opacity: 0.5; font-size: 9px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; }
.tab.active { background: var(--red); opacity: 1; }
.screen-tables { display: flex; flex-direction: column; gap: 6px; }
.table-row { background: rgba(242,237,227,0.06); padding: 11px 12px; display: flex; justify-content: space-between; align-items: center; border-left: 2px solid var(--red); }
.table-name { color: var(--cream); font-size: 11px; font-weight: 500; }
.table-meta { color: var(--cream); opacity: 0.5; font-size: 8px; margin-top: 2px; font-family: 'JetBrains Mono', monospace; }
.table-right { display: flex; align-items: center; gap: 8px; }
.table-players { color: var(--cream); font-size: 10px; font-family: 'JetBrains Mono', monospace; }
.table-live { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 1.5s infinite; }

.poker-screen { background: var(--green); display: flex; flex-direction: column; padding-top: 40px; }
.poker-felt { flex: 1; background: radial-gradient(ellipse at center, color-mix(in oklab, var(--green) 70%, white) 0%, var(--green) 70%); margin: 0 8px; border-radius: 100px / 80px; border: 4px solid var(--bordeaux); position: relative; display: flex; align-items: center; justify-content: center; }
.felt-center { text-align: center; }
.pot { color: var(--cream); opacity: 0.6; font-size: 8px; margin-bottom: 2px; font-family: 'JetBrains Mono', monospace; }
.pot-num { font-family: var(--display); color: var(--cream); font-size: 26px; margin-bottom: 8px; }
.board { display: flex; gap: 3px; justify-content: center; }
.card { width: 22px; height: 30px; background: var(--cream); color: var(--bordeaux); border-radius: 2px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.card.card-r { color: var(--red); }
.card.card-b { color: #111; }
.card.card-back { background: var(--bordeaux); border: 1px solid rgba(242,237,227,0.3); }
.card.small { width: 24px; height: 32px; font-size: 12px; }
.seat { position: absolute; text-align: center; color: var(--cream); }
.seat-avatar { width: 24px; height: 24px; background: var(--bordeaux); border: 1px solid var(--cream); border-radius: 50%; margin: 0 auto 2px; }
.seat-name { font-size: 9px; }
.seat-chips { font-size: 8px; opacity: 0.7; font-family: 'JetBrains Mono', monospace; }
.seat-top { top: 4px; left: 50%; transform: translateX(-50%); }
.seat-left { left: 6px; top: 50%; transform: translateY(-50%); }
.seat-right { right: 6px; top: 50%; transform: translateY(-50%); }
.seat-bottom { bottom: 4px; left: 50%; transform: translateX(-50%); }
.seat-bottom.you { color: var(--red); font-weight: 600; }
.your-cards { display: flex; gap: 2px; margin-top: 2px; }
.poker-actions { display: flex; gap: 3px; padding: 8px; }
.poker-btn { flex: 1; text-align: center; padding: 8px; background: rgba(242,237,227,0.1); color: var(--cream); font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em; }
.poker-btn.primary { background: var(--red); }

/* === TESTIMONIALS === */
.testimonials { background: var(--green); padding: 160px 48px; position: relative; z-index: 1; }
.testimonials-inner { max-width: 1440px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.testimonial { background: color-mix(in oklab, var(--green) 80%, black); padding: 36px 32px; position: relative; border: 1px solid rgba(242,237,227,0.1); transition: transform 0.4s, border-color 0.4s; }
.testimonial:hover { transform: translateY(-6px); border-color: var(--red); }
.testimonial::before { content: '“'; position: absolute; top: 8px; left: 24px; font-family: var(--display); font-style: italic; font-size: 96px; color: var(--red); line-height: 1; opacity: 0.7; }
.testimonial-quote { color: var(--cream); font-size: 17px; line-height: 1.55; margin-top: 56px; margin-bottom: 32px; font-family: var(--display); font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(242,237,227,0.1); }
.testimonial-avatar { width: 40px; height: 40px; background: var(--bordeaux); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-style: italic; font-size: 18px; flex-shrink: 0; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%); }
.testimonial-name { color: var(--cream); font-size: 14px; font-weight: 500; }
.testimonial-meta { color: var(--cream); opacity: 0.55; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; margin-top: 2px; }

/* === STATS === */
.stats { background: var(--green); padding: 80px 48px 120px; position: relative; z-index: 1; }
.stats-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(242,237,227,0.12); border-bottom: 1px solid rgba(242,237,227,0.12); }
.stat { padding: 56px 32px; border-left: 1px solid rgba(242,237,227,0.12); }
.stat:first-child { border-left: none; }
.stat-num { font-family: var(--display); font-size: clamp(64px, 7vw, 104px); line-height: 0.9; color: var(--cream); font-style: italic; font-weight: 400; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.stat-num .accent { color: var(--red); }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; color: var(--cream); }

/* === DOWNLOAD === */
.download { background: var(--bordeaux); padding: 160px 48px; position: relative; z-index: 1; overflow: hidden; }
.download::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 60%; height: 100%; background: radial-gradient(circle, color-mix(in oklab, var(--red) 50%, transparent) 0%, transparent 60%); pointer-events: none; }
.download-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.dl-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); opacity: 0.8; margin-bottom: 28px; }
.dl-eyebrow .dot { background: #4ade80; }
.dl-title { font-family: var(--display); font-size: clamp(72px, 11vw, 160px); font-weight: 400; line-height: 0.92; letter-spacing: -0.03em; color: var(--cream); margin-bottom: 28px; }
.dl-lede { font-size: 20px; color: var(--cream); opacity: 0.85; max-width: 620px; margin: 0 auto 48px; line-height: 1.5; }
.dl-buttons { margin-bottom: 32px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.dl-btn { display: inline-flex; align-items: center; gap: 24px; background: var(--cream); color: var(--bordeaux); padding: 22px 28px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%); transition: transform 0.2s, background 0.2s; text-align: left; position: relative; overflow: hidden; }
.dl-btn:hover { transform: translateY(-4px); background: white; }
.dl-btn-icon { width: 52px; height: 52px; background: var(--red); color: var(--cream); display: flex; align-items: center; justify-content: center; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%); }
.dl-btn-icon svg { width: 22px; height: 22px; }
.dl-btn-small { font-size: 11px; letter-spacing: 0.15em; opacity: 0.65; margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; }
.dl-btn-big { font-family: var(--display); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.dl-btn-meta { display: flex; flex-direction: column; gap: 3px; font-family: 'JetBrains Mono', monospace; font-size: 10px; opacity: 0.55; border-left: 1px solid rgba(74,14,31,0.2); padding-left: 20px; }
.dl-sub { color: var(--cream); opacity: 0.55; letter-spacing: 0.1em; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; }
.dl-installs { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(242,237,227,0.15); display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; color: var(--cream); opacity: 0.75; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.dl-install-num { font-family: var(--display); font-size: 28px; font-style: italic; color: var(--cream); opacity: 1; }

/* === FOOTER === */
.footer { background: #060e0a; padding: 80px 48px 32px; border-top: 1px solid rgba(242,237,227,0.1); position: relative; z-index: 1; }
.footer-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(242,237,227,0.1); }
.footer-col { display: flex; flex-direction: column; gap: 12px; color: var(--cream); }
.footer-col a { opacity: 0.6; font-size: 14px; transition: opacity 0.2s, padding-left 0.2s; }
.footer-col a:hover { opacity: 1; padding-left: 6px; }
.footer-brand { font-family: var(--display); font-size: 28px; letter-spacing: 0.06em; margin-top: 8px; }
.footer-tag { opacity: 0.6; font-size: 14px; max-width: 280px; }
.footer-h { color: var(--red); margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-bottom { max-width: 1440px; margin: 32px auto 0; display: flex; justify-content: space-between; color: var(--cream); opacity: 0.4; flex-wrap: wrap; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .manifeste-grid, .tournament-inner, .preview-head, .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .countdown-num { font-size: 48px; }

}
@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero, .livefeed, .manifeste, .tournament, .modules, .leaderboard, .preview, .testimonials, .stats, .download, .footer { padding-left: 20px; padding-right: 20px; }
  .modules-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 32px; }
  .meta-num { font-size: 40px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(242,237,227,0.12); }
  .stat:first-child { border-top: none; }
  .dl-btn { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .preview-phones { flex-direction: column; height: auto; gap: 80px; }
  .phone-lobby, .phone-poker { transform: none; }
}

/* === APÉRO === */
.apero { background: var(--bordeaux); padding: 160px 48px; position: relative; z-index: 1; }
.apero-inner { max-width: 1440px; margin: 0 auto; }
.apero-head { max-width: 760px; margin-bottom: 64px; }
.apero-head .section-title { margin-bottom: 24px; }
.apero-sub { color: var(--cream); opacity: 0.8; font-size: 17px; line-height: 1.55; }
.apero-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(242,237,227,0.1); border: 1px solid rgba(242,237,227,0.1); }
.apero-card { background: var(--bordeaux); padding: 36px 28px 32px; min-height: 240px; display: flex; flex-direction: column; transition: background 0.3s, padding-left 0.3s; position: relative; }
.apero-card:hover { background: color-mix(in oklab, var(--bordeaux) 85%, black); padding-left: 36px; }
.apero-card::before { content: ''; position: absolute; left: 0; top: 28px; bottom: 28px; width: 2px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform 0.4s; }
.apero-card:hover::before { transform: scaleY(1); }
.apero-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cream); opacity: 0.5; letter-spacing: 0.12em; margin-bottom: 16px; }
.apero-name { font-family: var(--display); font-size: 30px; color: var(--cream); margin-bottom: 4px; letter-spacing: -0.01em; }
.apero-sub-text { color: var(--cream); opacity: 0.55; margin-bottom: 16px; }
.apero-desc { color: var(--cream); opacity: 0.8; font-size: 14.5px; line-height: 1.5; margin-top: auto; }
.apero-foot { margin-top: 40px; padding: 18px 24px; border: 1px dashed rgba(242,237,227,0.2); text-align: center; color: var(--cream); opacity: 0.6; }

/* === FAMILIES === */
.families { background: var(--green); padding: 160px 48px; position: relative; z-index: 1; }
.families-inner { max-width: 1440px; margin: 0 auto; }
.families-head { max-width: 800px; margin-bottom: 64px; }
.families-head .section-title { margin-bottom: 24px; }
.families-sub { color: var(--cream); opacity: 0.8; font-size: 17px; line-height: 1.6; }
.families-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 64px; }
.fam-card { background: color-mix(in oklab, var(--green) 80%, black); border: 1px solid rgba(242,237,227,0.08); display: flex; flex-direction: column; transition: transform 0.4s, border-color 0.4s; cursor: pointer; overflow: hidden; }
.fam-card:hover { transform: translateY(-6px); border-color: var(--fam); }
.fam-banner { background: var(--fam); aspect-ratio: 3 / 2; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fam-emblem { font-family: var(--display); font-style: italic; font-size: 64px; color: var(--cream); letter-spacing: -0.02em; z-index: 2; }
.fam-stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(0,0,0,0.08) 14px, rgba(0,0,0,0.08) 28px); }
.fam-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fam-name { font-family: var(--display); font-size: 24px; color: var(--cream); letter-spacing: -0.01em; }
.fam-motto { font-family: var(--display); font-style: italic; color: var(--cream); opacity: 0.65; font-size: 14px; line-height: 1.4; }
.fam-stats { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid rgba(242,237,227,0.1); margin-top: auto; }
.fam-stat { display: flex; flex-direction: column; gap: 2px; }
.fam-stat-num { font-family: var(--display); font-size: 22px; color: var(--cream); font-style: italic; white-space: nowrap; }
.fam-stat .mono { color: var(--cream); opacity: 0.5; font-size: 10px; }

/* === CHATS === */
.chats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.chat-panel { background: color-mix(in oklab, var(--green) 80%, black); border: 1px solid rgba(242,237,227,0.08); display: flex; flex-direction: column; height: 480px; position: relative; overflow: hidden; }
.chat-panel.family { border-left: 3px solid var(--red); }
.chat-panel.general::before { content: 'PUBLIC'; position: absolute; top: 18px; right: 18px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.12em; color: var(--cream); opacity: 0.4; }
.chat-head { padding: 18px 22px; border-bottom: 1px solid rgba(242,237,227,0.1); display: flex; justify-content: space-between; align-items: center; }
.chat-title { font-family: var(--display); font-size: 18px; color: var(--cream); }
.chat-sub { color: var(--cream); opacity: 0.5; margin-top: 2px; font-size: 10px; }
.chat-dots { display: flex; gap: 4px; }
.chat-dots span { width: 4px; height: 4px; background: var(--cream); opacity: 0.4; border-radius: 50%; }
.chat-body { flex: 1; padding: 20px 22px; display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.chat-msg { display: flex; flex-direction: column; gap: 4px; opacity: 0; animation: chat-in 0.5s ease-out forwards; }
.chat-msg:nth-child(1) { animation-delay: 0.1s; }
.chat-msg:nth-child(2) { animation-delay: 0.4s; }
.chat-msg:nth-child(3) { animation-delay: 0.8s; }
.chat-msg:nth-child(4) { animation-delay: 1.2s; }
.chat-msg:nth-child(5) { animation-delay: 1.6s; }
.chat-msg:nth-child(6) { animation-delay: 2.0s; }
@keyframes chat-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.chat-msg.accent .chat-text { color: var(--red); font-weight: 500; }
.chat-meta { display: flex; align-items: baseline; gap: 8px; }
.chat-who { color: var(--cream); font-size: 13px; font-weight: 500; }
.chat-tag { color: var(--cream); opacity: 0.45; font-size: 9px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; padding: 2px 5px; border: 1px solid rgba(242,237,227,0.15); }
.chat-time { color: var(--cream); opacity: 0.4; font-size: 10px; margin-left: auto; }
.chat-text { color: var(--cream); opacity: 0.85; font-size: 14px; line-height: 1.4; }
.chat-typing { display: flex; gap: 4px; padding: 2px 0; }
.chat-typing span { width: 6px; height: 6px; background: var(--cream); opacity: 0.5; border-radius: 50%; animation: blink-dot 1.4s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-foot { border-top: 1px solid rgba(242,237,227,0.08); padding: 14px 22px; }
.chat-input { color: var(--cream); opacity: 0.45; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.chat-input .mono { color: var(--red); opacity: 1; }

/* === CUSTO === */
.custo { background: var(--cream); color: var(--bordeaux); padding: 160px 48px; position: relative; z-index: 1; }
.custo-inner { max-width: 1440px; margin: 0 auto; }
.custo-head { max-width: 720px; margin-bottom: 64px; }
.custo-head .section-title { margin-bottom: 24px; }
.custo-sub { color: color-mix(in oklab, var(--bordeaux) 75%, white); font-size: 17px; line-height: 1.55; }
.custo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; grid-template-rows: 260px 220px; gap: 16px; }
.custo-preview { grid-row: span 2; background: white; border: 1px solid rgba(74,14,31,0.15); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.custo-preview-head { color: var(--bordeaux); opacity: 0.55; }
.custo-preview-table { flex: 1; border-radius: 8px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: background 0.4s; box-shadow: inset 0 0 60px rgba(0,0,0,0.4); }
.custo-cards { display: flex; gap: 8px; justify-content: center; }
.custo-card { width: 56px; height: 80px; border-radius: 6px; background: var(--bordeaux); display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: var(--display); font-size: 24px; transition: background 0.4s; border: 1px solid rgba(255,255,255,0.1); }
.custo-card.flipped { background: var(--cream) !important; color: var(--red); }
.custo-avatar-preview { display: flex; align-items: center; gap: 12px; }
.custo-avatar-circle { width: 44px; height: 44px; background: var(--cream); color: var(--bordeaux); display: flex; align-items: center; justify-content: center; font-size: 20px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%); }
.custo-avatar-name { color: var(--cream); opacity: 0.85; font-size: 11px; }
.custo-preview-meta { display: flex; justify-content: space-between; color: var(--bordeaux); opacity: 0.5; font-size: 10px; }

.custo-tile { background: white; border: 1px solid rgba(74,14,31,0.15); padding: 22px; display: flex; flex-direction: column; transition: border-color 0.3s; }
.custo-tile:hover { border-color: var(--red); }
.custo-tile-h { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.custo-tile-h .mono { color: var(--red); }
.custo-tile-name { font-family: var(--display); font-size: 18px; color: var(--bordeaux); flex: 1; }
.custo-tile-count { color: var(--bordeaux); opacity: 0.4; font-size: 10px; }

.custo-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; flex: 1; }
.custo-swatch { aspect-ratio: 1.4; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s, transform 0.2s; padding: 0; }
.custo-swatch:hover { transform: scale(1.05); }
.custo-swatch.on { border-color: var(--red); box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--red); }

.custo-backs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; flex: 1; align-items: stretch; }
.custo-back { border-radius: 4px; cursor: pointer; transition: transform 0.2s; border: 2px solid transparent; padding: 0; min-height: 60px; }
.custo-back:hover { transform: scale(1.05); }
.custo-back.on { border-color: var(--red); }

.custo-avatars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; flex: 1; }
.custo-avatar { aspect-ratio: 1; background: color-mix(in oklab, var(--cream) 80%, var(--bordeaux)); color: var(--bordeaux); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; }
.custo-avatar:hover { transform: scale(1.1); background: var(--cream); }
.custo-avatar.on { background: var(--red); color: var(--cream); }

.custo-blasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; flex: 1; }
.custo-blason { background: var(--c); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-style: italic; font-size: 22px; aspect-ratio: 1; cursor: pointer; transition: transform 0.2s; }
.custo-blason:hover { transform: scale(1.05) rotate(-2deg); }

.custo-emotes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; flex: 1; }
.custo-emote { aspect-ratio: 1; background: color-mix(in oklab, var(--cream) 90%, var(--bordeaux)); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background 0.2s; }
.custo-emote:hover { background: var(--cream); }

.custo-sound { display: flex; flex-direction: column; gap: 8px; flex: 1; justify-content: center; }
.custo-sound-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: color-mix(in oklab, var(--cream) 92%, var(--bordeaux)); font-size: 13px; color: var(--bordeaux); }
.custo-pill { font-family: 'JetBrains Mono', monospace; font-size: 9px; padding: 3px 8px; background: transparent; color: var(--bordeaux); opacity: 0.5; letter-spacing: 0.08em; }
.custo-pill.on { background: var(--red); color: var(--cream); opacity: 1; }

/* === ROADMAP === */
.roadmap { background: var(--bordeaux); padding: 160px 48px; position: relative; z-index: 1; overflow: hidden; }
.roadmap::before { content: ''; position: absolute; top: 0; left: 50%; width: 1px; bottom: 0; background: linear-gradient(180deg, transparent, rgba(242,237,227,0.1) 20%, rgba(242,237,227,0.1) 80%, transparent); }
.roadmap-inner { max-width: 1440px; margin: 0 auto; position: relative; }
.roadmap-head { max-width: 680px; margin-bottom: 80px; }
.roadmap-head .section-title { margin-bottom: 24px; }
.roadmap-sub { color: var(--cream); opacity: 0.8; font-size: 17px; line-height: 1.55; }
.roadmap-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.roadmap-rail::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: rgba(242,237,227,0.15); }
.rm-item { padding: 0 18px 0 0; position: relative; padding-top: 60px; }
.rm-dot { position: absolute; top: 22px; left: 0; width: 14px; height: 14px; background: var(--bordeaux); border: 2px solid var(--cream); border-radius: 50%; z-index: 2; }
.rm-now .rm-dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px color-mix(in oklab, var(--red) 30%, transparent); animation: pulse 2s infinite; }
.rm-next .rm-dot { background: var(--cream); }
.rm-meta { display: flex; gap: 12px; margin-bottom: 8px; color: var(--cream); opacity: 0.7; }
.rm-version { color: var(--red); font-size: 12px; }
.rm-date { font-size: 11px; opacity: 0.7; }
.rm-status { color: var(--cream); opacity: 0.6; font-size: 10px; margin-bottom: 14px; letter-spacing: 0.12em; }
.rm-now .rm-status { color: var(--red); opacity: 1; }
.rm-title { font-family: var(--display); font-size: 22px; color: var(--cream); margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.01em; }
.rm-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rm-list li { color: var(--cream); opacity: 0.75; font-size: 13.5px; line-height: 1.4; display: flex; gap: 10px; align-items: baseline; padding-right: 8px; }
.rm-list li .mono { color: var(--red); opacity: 1; font-size: 11px; }
.rm-planned { opacity: 0.6; }
.roadmap-foot { margin-top: 64px; text-align: center; padding: 20px; border: 1px dashed rgba(242,237,227,0.2); color: var(--cream); opacity: 0.65; }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
  .apero-grid { grid-template-columns: repeat(2, 1fr); }
  .families-grid { grid-template-columns: repeat(2, 1fr); }
  .chats-grid { grid-template-columns: 1fr; }
  .custo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .custo-preview { grid-row: auto; grid-column: span 2; min-height: 320px; }
  .roadmap-rail { grid-template-columns: 1fr; gap: 32px; }
  .roadmap-rail::before { left: 6px; top: 0; bottom: 0; width: 1px; height: auto; right: auto; }
  .rm-item { padding-left: 32px; padding-top: 0; }
  .rm-dot { top: 4px; }
}
@media (max-width: 640px) {
  .apero, .families, .custo, .roadmap { padding-left: 20px; padding-right: 20px; }
  .apero-grid { grid-template-columns: 1fr; }
  .families-grid { grid-template-columns: 1fr; }
  .custo-grid { grid-template-columns: 1fr; }
  .custo-preview { grid-column: auto; }
}

/* nav breakpoint fixes */
@media (max-width: 1180px) {
  .nav-links { gap: 18px; font-size: 11px; }
  .nav-status { display: none !important; }
}
@media (max-width: 920px) {
  .nav-links a:not(.nav-cta) { display: none; }
}
