/* PopLink — shared styles for inner site pages.
   index.html keeps its inline styles (single-page hero).
   This stylesheet powers the simpler content pages (pricing, manifesto,
   for-streamers, for-artists, changelog, 404, privacy, terms). */

:root {
  --black-800: #17111B; --black-900: #100B14;
  --white-500: #FFF8F8; --white-800: #F5EEEE;
  --cream: #F2EDE6; --cream-dark: #E8E0D2;
  --purple-300: #E5D1F5; --purple-500: #CC91F0; --purple-700: #B070E0; --purple-800: #9E5ECF;
  --pink-300: #FFD4DF; --pink-500: #FFB0C2; --pink-700: #FF87A6;
  --green-300: #C8F8C7; --green-500: #93F091; --green-800: #4FCD4C;
  --yellow-500: #FFB500; --yellow-800: #FF9100;
  --orange-500: #FF702B; --orange-800: #EB4521;
  --peach-300: #FFE5D4; --peach-500: #FFCBA4; --peach-700: #FFAA75;
  --red-500: #FF405E; --red-800: #D41A45;

  --bg: var(--cream); --surface: #FFFFFF; --ink: var(--black-800);
  --ink-soft: rgba(31,26,35,.68);
  --ink-faint: rgba(31,26,35,.42);
  --muted-on-dark: rgba(255,248,248,.65);

  --display: "Fraunces", ui-serif, Georgia, serif;
  --body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 12px; --r-md: 20px; --r-lg: 28px; --r-xl: 36px; --r-pill: 999px;
  --shadow-soft: 0 24px 60px -28px rgba(31,26,35,.35);
  --shadow-card: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 60px -20px rgba(0,0,0,.45);
  --shadow-float: 0 20px 50px -15px rgba(31,26,35,.4);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--purple-500); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--purple-500); outline-offset: 3px; border-radius: 4px; }

/* ─── Waitlist success / error ─── */
.wl-success {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; border-radius: var(--r-pill);
  background: var(--green-300); color: var(--ink);
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(79,205,76,.3);
}
.wl-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-800); color: #fff;
  display: grid; place-items: center; font-size: 14px;
  flex-shrink: 0;
}
.wl-error {
  color: var(--red-800); font-size: 13px;
  margin: 8px 0 0; padding: 0 4px;
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--white-500);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ─── Subtle grain ─── */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Top banner ─── */
.top-banner-wrap { padding-top: 16px; }
.top-banner-row { display: flex; justify-content: center; }
.top-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple-500); color: var(--ink);
  padding: 10px 14px 10px 18px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 8px 24px -10px rgba(204,145,240,.5);
}
.top-banner .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink);
  animation: pl-banner-pulse 1.8s ease-in-out infinite;
}
@keyframes pl-banner-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,26,35,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(31,26,35,0); }
}
.top-banner a { text-decoration: underline; text-underline-offset: 3px; }

/* ─── Header / nav (pill, dark) ─── */
.site-header { padding: 14px 0 0; position: sticky; top: 14px; z-index: 30; }
.nav {
  display: flex; align-items: center; gap: 6px;
  background: var(--black-800); color: var(--white-500);
  padding: 8px 8px 8px 22px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
  position: relative; /* needed for mobile dropdown positioning */
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em; margin-right: 24px;
}
.brand .glyph {
  position: relative; width: 26px; height: 26px;
  border-radius: 50%; background: var(--white-500);
  display: grid; place-items: center; overflow: hidden;
}
.brand .glyph svg { width: 14px; height: 14px; color: var(--ink); position: relative; z-index: 1; }
.brand .glyph::before {
  content: ""; position: absolute; width: 8px; height: 8px;
  border-radius: 50%; background: var(--purple-500);
  bottom: 4px; right: 4px; z-index: 0;
}
.nav-links { display: flex; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 500; color: var(--white-800);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: rgba(255,255,255,.08); color: #fff;
}
.nav-links a[aria-current="page"] {
  background: var(--purple-500); color: var(--ink);
}
.nav-links .sup {
  font-size: 9.5px; background: var(--purple-500); color: var(--ink);
  padding: 2px 6px; border-radius: 4px; font-weight: 700;
  margin-left: 4px; vertical-align: super;
}
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav-signin {
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid rgba(23,17,27,.15);
  transition: background .15s var(--ease);
  white-space: nowrap;
}
.nav-signin:hover { background: rgba(23,17,27,.05); }
/* !important defense: if a higher-specificity rule were to override (caching
   or experimental selector), this still wins. Sign-in lives in the hamburger
   drawer on mobile. */
@media (max-width: 860px) { .nav-signin { display: none !important; } }
.btn-cta {
  background: var(--white-500); color: var(--ink);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(204,145,240,.55); }
.menu-toggle {
  display: none; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; font-size: 18px;
}

/* Mobile nav dropdown */
.nav-links[data-open="true"] {
  display: flex; flex-direction: column;
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--black-800); padding: 10px 8px;
  border-radius: 20px; z-index: 200;
  box-shadow: var(--shadow-card);
}
.nav-links[data-open="true"] a {
  padding: 11px 16px; border-radius: 12px; width: 100%;
}

/* ─── Type ─── */
.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: .22em;
  color: var(--ink-soft); margin-bottom: 16px; font-weight: 600;
  display: inline-flex; gap: 12px; align-items: center;
}
.eyebrow .num { color: var(--ink); font-weight: 700; }
.h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(44px, 9vw, 132px); line-height: .92;
  letter-spacing: -0.04em; margin: 0 0 24px;
}
.h1 em { font-style: italic; font-weight: 800; }
.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 5.5vw, 80px); line-height: .98;
  letter-spacing: -0.035em; margin: 0 0 24px;
}
.h2 em { font-style: italic; }
.h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.02em;
  line-height: 1.1; margin: 0 0 12px;
}
.lead {
  font-size: clamp(16px, 1.5vw, 20px); color: var(--ink-soft);
  max-width: 56ch; line-height: 1.55;
}
.kicker {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-faint); letter-spacing: .04em;
}

section { padding: clamp(56px, 9vw, 120px) 0; position: relative; }

/* ─── Page hero (shared by inner pages) ─── */
.page-hero { padding: clamp(48px, 8vw, 80px) 0 40px; position: relative; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,26,35,.1) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, #000 50%, transparent 90%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 760px; }
.page-hero.center .inner { margin-inline: auto; text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.btn-ink { background: var(--ink); color: var(--white-500); }
.btn-ink:hover { transform: translateY(-1px); background: var(--purple-800); }
.btn-cream { background: var(--surface); color: var(--ink); border: 1px solid rgba(31,26,35,.08); }
.btn-cream:hover { transform: translateY(-1px); }
.btn-purple { background: var(--purple-500); color: var(--ink); }
.btn-purple:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(204,145,240,.55); }

/* ─── Footer ─── */
.site-footer {
  background: var(--ink); color: var(--white-500);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 64px; overflow: hidden; position: relative;
}
.footer-shell { padding: 64px var(--gutter) 28px; max-width: var(--container);
  margin-inline: auto; position: relative; z-index: 1; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 56px; flex-wrap: wrap; gap: 16px;
}
.footer-top .brand { color: #fff; margin: 0; }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-family: var(--display); font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em; margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: var(--muted-on-dark); font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.footer-socials a:hover { background: rgba(255,255,255,.12); }
.footer-socials svg { width: 14px; height: 14px; color: #fff; }
.footer-giant {
  position: absolute; left: 0; right: 0; bottom: -60px;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(120px, 24vw, 320px); letter-spacing: -0.05em;
  color: rgba(255,255,255,.04); white-space: nowrap; text-align: center;
  pointer-events: none; line-height: 1;
}
.doc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-500); color: var(--ink);
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
  transition: transform .25s var(--ease);
}
.doc-btn:hover { transform: translateY(-1px); }

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.22,1,.36,1), transform 600ms cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── View Transitions (Chrome 126+) ─── */
@view-transition { navigation: auto; }
.brand .glyph { view-transition-name: brand-glyph; }
.site-footer .brand { view-transition-name: footer-brand; }

/* ─── Card ─── */
.card {
  background: var(--surface); border: 1px solid rgba(31,26,35,.06);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ─── Demo preview section cards ─── */
.preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 40px; text-align: left;
}
.preview-card {
  border-radius: var(--r-lg); padding: 24px 22px;
  border: 1px solid rgba(31,26,35,.06);
}
.preview-card.green  { background: var(--green-300); }
.preview-card.purple { background: var(--purple-300); }
.preview-card.peach  { background: var(--peach-300); }
.preview-card-icon  { font-size: 22px; margin-bottom: 10px; }
.preview-card-title {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 7px;
}
.preview-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ─── Demo nav highlight ─── */
.nav-demo a { color: var(--purple-500) !important; font-weight: 600; }

/* ─── Hero demo ghost CTA ─── */
.hero-demo-btn {
  display: inline-block; padding: 12px 28px;
  border-radius: var(--r-pill);
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(31,26,35,.25);
  font-weight: 600; font-size: 15px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  margin-top: 0;
}
.hero-demo-btn:hover { transform: translateY(-1px); border-color: rgba(31,26,35,.45); background: rgba(31,26,35,.03); color: var(--ink); }
.hero-demo-or { font-size: 13px; color: var(--ink-soft); margin-top: 16px; display: block; text-align: center; }
.hero-app-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 12px; }

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav { padding-left: 18px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-shell { padding-top: 48px; padding-bottom: 20px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .page-hero { padding-top: 40px; }
}

/* ─── Platform pages (Streamers / Instagram / TikTok / YouTube / X) ───
   Shared building blocks for the for-*.html pages. Each page sets its own
   --hero-glow + --mock-grad for brand colour; the mock internals are markup
   specific to that platform. */
.plat-hero {
  position: relative; padding: 80px 0 60px; overflow: hidden;
  background: var(--ink); color: var(--white-500);
  border-radius: var(--r-xl); margin: 0 var(--gutter);
}
.plat-hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-glow,
    radial-gradient(ellipse at 20% 80%, rgba(204,145,240,.4), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,176,194,.3), transparent 50%));
}
.plat-hero .container { position: relative; }
.plat-hero h1 { color: #fff; }
.plat-hero .lead { color: rgba(255,248,248,.78); }
.plat-badges { display: inline-flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.plat-badge {
  font-family: var(--mono); font-size: 11.5px; color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  padding: 6px 11px; border-radius: 999px;
}

.plat-mock {
  margin-top: 52px; aspect-ratio: 16/9; border-radius: var(--r-md);
  background: var(--mock-grad, linear-gradient(135deg,#2a1a4d,#6c4bd1,#c2410c));
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.plat-mock .mlabel {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(0,0,0,.5); color: rgba(255,255,255,.88);
  padding: 6px 12px; border-radius: 8px;
  font-family: var(--mono); font-size: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.plat-mock .mlabel .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-500); animation: pl-banner-pulse 1.6s ease-in-out infinite; }
.plat-card {
  position: absolute; z-index: 2;
  background: rgba(23,17,27,.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; padding: 16px 20px; color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.plat-card .ph { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); font-weight: 700; }
.plat-card h3 { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; margin: 0; line-height: 1.12; }
.plat-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; margin: 14px 0 10px; }
.plat-bar div { height: 100%; background: linear-gradient(90deg, var(--purple-500), var(--pink-500)); }
.plat-metaline { display: flex; gap: 14px; font-size: 11.5px; color: rgba(255,255,255,.72); flex-wrap: wrap; }
.plat-toast {
  position: absolute; z-index: 2; width: min(280px, 42%);
  background: var(--white-500); border-radius: 12px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.plat-toast .icon { width: 32px; height: 32px; border-radius: 8px; background: var(--orange-500); color: #fff; display: grid; place-items: center; flex-shrink: 0; font-weight: 800; }
.plat-toast .who { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.plat-toast .what { font-size: 13px; font-weight: 700; color: var(--ink); }
.plat-toast .amt { margin-left: auto; font-family: var(--display); font-weight: 900; font-size: 16px; color: var(--ink); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.feat-card { background: var(--surface); border: 1px solid rgba(31,26,35,.06); border-radius: var(--r-lg); padding: 28px; }
.feat-card .num { font-family: var(--mono); font-size: 12px; color: var(--purple-800); font-weight: 600; }
.feat-card h3 { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin: 12px 0; }
.feat-card p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }

.quote { background: var(--purple-500); color: var(--ink); border-radius: var(--r-xl); padding: 64px var(--gutter); margin: 64px var(--gutter); text-align: center; }
.quote q { font-family: var(--display); font-style: italic; font-weight: 800; font-size: clamp(28px,4vw,48px); letter-spacing: -0.02em; line-height: 1.15; quotes: "\201C" "\201D"; max-width: 26ch; display: inline-block; }
.quote q::before { content: open-quote; }
.quote q::after { content: close-quote; }
.quote .who { margin-top: 24px; font-family: var(--mono); font-size: 13px; }

.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.stack ol { list-style: none; padding: 0; counter-reset: s; display: flex; flex-direction: column; gap: 18px; margin: 0; }
.stack ol li { counter-increment: s; padding: 18px 22px; background: var(--surface); border-radius: var(--r-lg); border: 1px solid rgba(31,26,35,.06); display: flex; gap: 18px; align-items: flex-start; }
.stack ol li::before { content: counter(s, decimal-leading-zero); font-family: var(--mono); font-size: 13px; color: var(--purple-800); font-weight: 600; background: var(--purple-300); padding: 6px 10px; border-radius: 6px; flex-shrink: 0; }
.stack ol h4 { margin: 0 0 4px; font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.stack ol p { margin: 0; color: var(--ink-soft); font-size: 14px; }

@media (max-width: 860px) {
  .feat-grid { grid-template-columns: 1fr; }
  .stack { grid-template-columns: 1fr; gap: 28px; }
  /* Platform hero: reduce vertical padding on tablet */
  .plat-hero { padding: 60px 0 40px; }
  /* Platform mock: reduce aspect ratio slightly so it doesn't dominate */
  .plat-mock { aspect-ratio: 16/8; }
}

@media (max-width: 480px) {
  /* Platform hero: compact on small phones */
  .plat-hero { padding: 40px 0 32px; }
  /* Hide the decorative floating card + toast on very small screens
     to avoid overflow and text cropping */
  .plat-card, .plat-toast { display: none; }
  /* Let the mock fill the full width cleanly */
  .plat-mock { aspect-ratio: 16/7; border-radius: var(--r-md); }
  /* feat-card: reduce padding */
  .feat-card { padding: 20px; }
  .feat-card h3 { font-size: 20px; }
  /* quote: compact */
  .quote { padding: 40px var(--gutter); margin: 40px var(--gutter); }
}
