:root {
  --navy: #081b3e;
  --black: #000000;
  --bg: #0d0d0d;
  --surface: #2a2a2a;
  --border: #575757;
  --text-primary: #ffffff;
  --text-secondary: #bbbaba;
  --accent: #ff8d00;
  --accent-soft: rgba(255, 141, 0, 0.14);
  --max-w: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #060d1c;               /* dark base so overscroll/edges never flash white */
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background-color: #060d1c;
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--black) 60%, var(--navy) 100%);
  min-height: 100vh;
  overscroll-behavior: none;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(13, 13, 13, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--text-primary); }

/* Language switcher */
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px; cursor: pointer;
}
.lang-btn:hover { background: rgba(255,255,255,0.12); }
.lang-btn svg { width: 15px; height: 15px; opacity: 0.85; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px; padding: 6px;
  background: rgba(20,20,22,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  display: none; flex-direction: column; gap: 2px; z-index: 60;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lang-switcher.open .lang-menu { display: flex; }
.lang-menu a {
  padding: 9px 12px; border-radius: 9px; font-size: 14px;
  color: var(--text-secondary);
}
.lang-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-menu a.active { color: var(--accent); font-weight: 600; }
/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; margin-left: auto; padding: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.site-header.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  /* remove header blur on mobile: backdrop-filter would make the header the
     containing block for our fixed overlay (menu would mis-position) */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(9, 17, 33, 0.94); }
  /* keep the top bar a fixed height — the menu opens as an overlay, so nothing shifts */
  .nav-links, .header-right { display: none; }

  /* links panel: fixed overlay from just below the bar down to the CTA bar */
  .site-header.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: #0a1526; padding: 8px 24px 100px; overflow-y: auto; z-index: 80;
  }
  .site-header.open .nav-links a {
    padding: 16px 2px; font-size: 17px; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  /* language switcher + CTA pinned to the bottom of the overlay */
  .site-header.open .header-right {
    display: flex; align-items: center; gap: 14px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 81;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
    background: #0a1526; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-header.open .header-right .btn-primary { flex: 1; text-align: center; }
  .site-header.open .lang-menu { left: 0; right: auto; bottom: calc(100% + 8px); top: auto; }
  .lang-btn { padding: 9px 14px; }
}

/* --- Glass (matches lib/shared/widgets/glass.dart 1:1) ---
   Rim: diagonal gradient border (white 34% -> 5% -> 20%), 1px "border" via padding.
   Inner: backdrop-blur(18px) + fill #1C1C1E at 55% alpha. No inner sheen, no boxes. */
.glass-rim {
  --glass-radius: 16px;
  --glass-fill: rgba(28, 28, 30, 0.55);
  border-radius: var(--glass-radius);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
.glass-rim > .glass-inner {
  border-radius: calc(var(--glass-radius) - 1px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--glass-fill);
  height: 100%;
}

/* Single-element approximation of the same rim light, for spots where
   wrapping markup isn't practical (badges, cards): inset highlight top-left,
   fainter inset bottom-right, blurred dark fill underneath — no inner sheen. */
.glass {
  background: rgba(28, 28, 30, 0.55) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: none !important;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.34),
    inset -1px -1px 0 rgba(255, 255, 255, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
/* ── Two button types only, for a consistent, recognizable brand language ──
   1) PRIMARY / ACCENT  = the Snäxx brand gradient (orange→yellow, like the logo
      and app icon), dark text. This is THE call-to-action button.
   2) GHOST             = liquid glass (rim light + backdrop blur), for secondary
      actions. Matches the app's glass surfaces. */

/* 1) Brand-gradient CTA */
.btn-primary,
.btn-accent {
  background: linear-gradient(100deg, #f57a00 0%, #ff8d00 55%, #ff9e1f 100%);
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  box-shadow: 0 6px 20px rgba(255, 141, 0, 0.28);
}
.btn-primary:hover,
.btn-accent:hover { filter: brightness(1.06); }
/* neutralise any inner <span> so gradient buttons look identical whether or
   not the markup wraps the label in a span */
.btn-primary span,
.btn-accent span {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 2) Liquid-glass secondary */
.btn-ghost {
  position: relative;
  color: #fff;
  border: none;
  padding: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
.btn-ghost span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 11px 23px;
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(28, 28, 30, 0.45);
}
.btn-ghost:hover span { background: rgba(28, 28, 30, 0.6); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 141, 0, 0.25) 0%, rgba(255, 141, 0, 0) 70%);
  pointer-events: none;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 700;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero p.lead strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { font-size: 13px; color: var(--text-secondary); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: 300px;
  border-radius: 36px;
  overflow: hidden;
  border: 8px solid #1a1a1a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-frame img { width: 100%; display: block; }

/* Rotating hero posters (cycles through our microdrama range) */
.poster-rotator { position: relative; width: 100%; aspect-ratio: 2 / 3; }
.poster-rotator img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.9s ease;
}
.poster-rotator img.active { opacity: 1; }

/* Sections */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 700;
}
.section-head p { color: var(--text-secondary); font-size: 17px; line-height: 1.6; }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card .icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 18px; margin: 0 0 8px; font-weight: 600; }
.feature-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Poster strip */
.poster-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.poster-strip img {
  border-radius: 14px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Catalog teaser (home) */
.catalog-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.catalog-feature {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 340px;
}
.catalog-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.catalog-feature-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.catalog-feature-info .tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; color: var(--accent);
  background: rgba(255,141,0,0.15);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.catalog-feature-info h3 { margin: 0 0 6px; font-size: 22px; }
.catalog-feature-info p { margin: 0; font-size: 14px; color: var(--text-secondary); }

/* Home catalog: real show posters in a 2×2 grid */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.show-tile {
  border-radius: 18px;
  display: flex; align-items: flex-end;
  min-height: 162px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.show-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show-tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 38%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.9) 100%); }
.show-tile .st-body { position: relative; z-index: 1; padding: 15px; }
.show-tile .st-genre { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); font-weight: 600; margin-bottom: 3px; }
.show-tile .st-title { font-size: 15px; font-weight: 600; color: #fff; }

@media (max-width: 900px) {
  .catalog-teaser { grid-template-columns: 1fr; }
  .catalog-feature { min-height: 260px; }
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: left; }
.step .num {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(255,141,0,0.4);
  border-radius: 999px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
}
.price-card.highlight {
  border-color: rgba(255,141,0,0.5);
  background: linear-gradient(160deg, rgba(255,141,0,0.08), rgba(255,255,255,0.02));
}
.price-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-card h3 { font-size: 20px; margin: 0 0 6px; }
.price-card .price { font-size: 34px; font-weight: 700; margin: 12px 0; }
.price-card .price small { font-size: 15px; color: var(--text-secondary); font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 28px; }
.price-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-secondary);
  padding: 7px 0;
}
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* Waitlist */
.waitlist {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-gift {
  display: inline-block;
  font-size: 13px; font-weight: 600; color: #0d0d0d;
  background: linear-gradient(100deg, #ff8d00 0%, #ffab1f 52%, #ffc83d 100%);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(255, 141, 0, 0.28);
}
.waitlist h2 { font-size: 32px; margin: 0 0 12px; }
.waitlist p { color: var(--text-secondary); margin: 0 0 28px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.waitlist p strong { color: var(--accent); font-weight: 600; }
.waitlist-fine { font-size: 12.5px; color: #8e8e93 !important; margin: 16px auto 0 !important; }
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.waitlist-form input::placeholder { color: #8e8e93; }
.waitlist-form input:focus { outline: none; border-color: var(--accent); }
.waitlist-status { margin-top: 16px; font-size: 14px; min-height: 20px; }
.waitlist-status.success { color: #4ade80; }
.waitlist-status.error { color: #f87171; }

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  font-size: 13px;
  color: #6b6b6b;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

/* Kids section */
#kids { padding: 30px 0 88px; }
.kids-band {
  border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.kids-content h2 { font-size: 32px; margin: 0 0 16px; letter-spacing: -0.02em; }
.kids-content p { color: var(--text-secondary); line-height: 1.7; font-size: 16px; margin: 0 0 22px; max-width: 620px; }
.kids-content strong { color: #fff; font-weight: 600; }
.kids-content em { color: var(--accent); font-style: normal; }
.kids-list { list-style: none; padding: 0; margin: 0; }
.kids-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 15px; color: var(--text-secondary); line-height: 1.55; }
.kids-list strong { color: #fff; }
.kids-list .kdot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 7px; }
.kids-badge {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 30px; border-radius: 22px;
  background: rgba(255,141,0,0.06); border: 1px solid rgba(255,141,0,0.25);
  min-width: 190px;
}
.kids-shield {
  width: 76px; height: 76px; border-radius: 20px; margin-bottom: 6px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.kids-shield svg { width: 40px; height: 40px; }
.kids-badge strong { font-size: 17px; }
.kids-badge span { font-size: 12.5px; color: var(--text-secondary); }
@media (max-width: 900px) {
  .kids-band { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ── Blog ── */
.blog-hero { padding: 48px 24px 50px; text-align: center; }
.blog-hero h1 { font-size: 46px; letter-spacing: -0.02em; margin: 0 0 16px; }
.blog-hero p { color: var(--text-secondary); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.6; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 100px; }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.blog-card:hover { border-color: rgba(255,141,0,0.35); }
.blog-card .thumb { aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: #14141a; }
.blog-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-card:hover .thumb img { transform: scale(1.04); transition: transform 0.4s ease; }
.blog-card .thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(transparent 45%, rgba(0,0,0,0.7)); }
.blog-card .thumb span {
  z-index: 2;
  position: absolute; left: 16px; bottom: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(6px);
}
.blog-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: 12.5px; color: var(--text-secondary); margin-bottom: 10px; }
.blog-card h2 { font-size: 19px; margin: 0 0 10px; line-height: 1.3; letter-spacing: -0.01em; }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 16px; }
.blog-card .read { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--accent); }

/* Article */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 60px 24px 90px; }
.article-back { display: inline-block; margin-bottom: 28px; color: var(--text-secondary); font-size: 14px; }
.article-back:hover { color: #fff; }
.article-cat {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 5px 13px; border-radius: 999px; margin-bottom: 18px;
}
.article-wrap h1 { font-size: 38px; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 16px; }
.article-meta { color: var(--text-secondary); font-size: 14px; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.article-byline { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 14px; margin-bottom: 26px; }
.article-byline strong { color: #fff; font-weight: 600; }
.article-byline .avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #0d0d0d; background: linear-gradient(120deg, #ff8d00, #ff9e1f); }
.article-hero { margin: 0 0 36px; }
.article-hero-img { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.article-hero figcaption { font-size: 12px; color: #8e8e93; margin-top: 8px; padding-left: 2px; }
.article-body { font-size: 17px; line-height: 1.75; color: #d7d7d7; }
.article-body p { margin: 0 0 22px; }
.article-body h2 { font-size: 25px; letter-spacing: -0.01em; margin: 44px 0 16px; color: #fff; }
.article-body h3 { font-size: 19px; margin: 32px 0 12px; color: #fff; }
.article-body strong { color: #fff; font-weight: 600; }
.article-body ul { margin: 0 0 22px; padding-left: 4px; list-style: none; }
.article-body ul li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.article-body blockquote {
  margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--accent);
  background: rgba(255,141,0,0.05); border-radius: 0 12px 12px 0;
  font-size: 19px; color: #fff; line-height: 1.5;
}
.article-body a { color: var(--accent); text-decoration: underline; }
.article-sources { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13.5px; color: var(--text-secondary); }
.article-sources h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin: 0 0 10px; }
.article-sources a { color: var(--text-secondary); word-break: break-word; }
.article-cta {
  margin-top: 48px; border-radius: 22px; padding: 34px; text-align: center;
}
.article-cta h3 { font-size: 21px; margin: 0 0 8px; }
.article-cta p { color: var(--text-secondary); margin: 0 0 20px; font-size: 15px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .article-wrap h1 { font-size: 30px; } .blog-hero h1 { font-size: 34px; } }

/* Press review (used on the blog) */
.media-strip { text-align: center; margin-bottom: 44px; }
.media-strip .kicker { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-secondary); margin-bottom: 18px; }
.media-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.media-logos span { font-size: 18px; font-weight: 600; color: #cfcfcf; letter-spacing: -0.01em; opacity: 0.9; }

.press-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.press-quotes .quote-card { border-radius: 20px; padding: 28px; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color 0.2s ease, transform 0.2s ease; }
a.quote-card:hover { border-color: rgba(255,141,0,0.45) !important; transform: translateY(-2px); }
.press-quotes .source-link { margin-top: auto; padding-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--accent); }
.press-quotes .outlet { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.press-quotes .outlet strong { font-size: 17px; color: #fff; letter-spacing: -0.01em; }
.press-quotes .outlet span { font-size: 12px; color: var(--text-secondary); }
.press-quotes blockquote { margin: 0 0 16px; font-size: 17px; line-height: 1.45; color: #fff; }
.press-quotes .quote-card > p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; }
.press-quotes .tagline { margin-top: auto; padding-top: 14px; font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.press-context { text-align: center; font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin: 0 auto; }
.press-context strong { color: #d7d7d7; font-weight: 600; }
.press-more { text-align: center; font-size: 14px; color: var(--text-secondary); margin: 8px 0 0; }
.press-more a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) { .press-quotes { grid-template-columns: 1fr; } }

/* Consent banner */
#consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  padding: 16px;
  display: flex;
  justify-content: center;
}
.consent-inner {
  max-width: 860px;
  width: 100%;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.consent-inner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.consent-inner a { color: var(--accent); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions .btn { font-size: 14px; padding: 10px 18px; }
/* ghost button is a glass rim: the button itself must stay padding:0 so only the
   1px rim shows — otherwise the .btn padding above turns the rim into a fat pill */
.consent-actions .btn-ghost { padding: 0; }
.consent-actions .btn-ghost span { padding: 10px 18px; }
@media (max-width: 700px) {
  .consent-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .consent-actions { justify-content: flex-end; }
}

@media (max-width: 900px) {
  /* stacked hero: poster moves to the top, so trim the big top padding
     that otherwise pushes it far below the header */
  .hero { padding: 20px 0 48px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .poster-strip { grid-template-columns: repeat(3, 1fr); }
  .poster-strip img:nth-child(4), .poster-strip img:nth-child(5) { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  section { padding: 64px 0; }
  .waitlist { padding: 36px 20px; }
  .waitlist-form { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
}

/* Cleaner footer on mobile: centered brand + tidy 2-column link grid */
@media (max-width: 700px) {
  footer { padding: 40px 0 32px; }
  .footer-top {
    flex-direction: column; align-items: center; text-align: center;
    gap: 24px; margin-bottom: 26px;
  }
  .footer-links {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    width: 100%; max-width: 360px; font-size: 14.5px;
  }
  .footer-links a {
    padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-bottom { text-align: center; font-size: 12px; padding-top: 20px; }
}


/* === PRINT (Visual-PDF-Export) === */
@media print {
  @page { size: 1200px 1600px; margin: 0; }
  html, body { background: #060d1c !important; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  #consent-banner { display: none !important; }
  .site-header { position: static !important; }
  .hero-glow { display: none !important; }
  img { loading: eager; }
}
