:root {
  --bg: #0a0e17;
  --bg2: #0f1420;
  --card: #161d2c;
  --card-hover: #1c2536;
  --border: rgba(255, 255, 255, 0.08);
  --fg: #f1f5f9;
  --muted: #8b95a7;
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.14);
  --amber: #f5b942;
  --amber-soft: rgba(245, 185, 66, 0.16);
  --blue: #4f8ff0;
  --blue-soft: rgba(79, 143, 240, 0.16);
  --red: #ef4444;
  --red-soft: rgba(239, 68, 68, 0.14);
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

/* ambient background glow instead of grain/blobs */
.glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      50% 40% at 18% 0%,
      rgba(34, 211, 238, 0.16),
      transparent 70%
    ),
    radial-gradient(
      40% 35% at 100% 20%,
      rgba(79, 143, 240, 0.12),
      transparent 70%
    ),
    var(--bg);
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}
.brand .dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent);
  flex-shrink: 0;
}
nav.main-nav {
  display: none;
  gap: 26px;
  font-size: 0.86rem;
  color: var(--muted);
}
nav.main-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}
nav.main-nav a:hover {
  color: var(--fg);
}
@media (min-width: 780px) {
  nav.main-nav {
    display: flex;
  }
}

/* mobile nav — pure CSS checkbox toggle, no JS */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-btn {
  display: flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 780px) {
  .nav-toggle-btn {
    display: none;
  }
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px 20px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}
.mobile-nav a {
  text-decoration: none;
  padding: 11px 0;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.hl {
  color: var(--accent);
}
.nav-toggle-input:checked ~ .mobile-nav {
  display: flex;
}
@media (min-width: 780px) {
  .mobile-nav {
    display: none !important;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.9rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #04222a;
  box-shadow: 0 10px 30px -8px rgba(34, 211, 238, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(34, 211, 238, 0.65);
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}
@media (max-width: 480px) {
  .header-inner .btn-sm {
    display: none;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 9999px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

section {
  padding: 76px 0;
}
section.tight {
  padding: 40px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  line-height: 1.06;
  margin: 0 0 22px;
}
h1 .accent {
  color: var(--accent);
}
.hero p.lead {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 34px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.kbd-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
kbd {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 7px;
  padding: 3px 8px;
  color: var(--fg);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* app-frame — recreation of the real RP Helper UI */
.app-frame {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.app-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.app-logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
}
.app-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 6px 11px;
  font-size: 0.72rem;
  color: var(--muted);
}
.app-tabs {
  display: flex;
  gap: 4px;
  background: var(--card);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 12px;
}
.app-tab {
  flex: 1;
  text-align: center;
  padding: 7px;
  border-radius: 9px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
}
.app-tab.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.app-search.focused {
  border-color: var(--accent);
  color: var(--fg);
}
.app-search .clear {
  margin-left: auto;
  color: var(--muted);
}
.app-list-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.app-scroll {
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.app-scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--bg2));
  pointer-events: none;
}
/* hero — 5 tall screenshot cards fanned out, one highlights on hover.
   Each card is a real mini app-frame (app-head/app-tabs/app-row/law-card
   etc, same markup as the accurate #screenshots section) shrunk down
   with a CSS scale transform, so it reads as an actual screenshot
   instead of a stripped-down text snippet. */
.shot-fan {
  position: relative;
  height: 820px;
  margin: 0 0 4px;
}
.shot-fan-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 384px;
  height: 680px;
  margin-left: -192px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 30px;
  transform-origin: bottom center;
  box-shadow: 0 26px 60px -18px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: default;
}
.shot-fan-card .shot-inner {
  width: 340px;
  transform: scale(1.129);
  transform-origin: top left;
  padding: 16px;
}
.shot-fan-card .shot-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg2));
  pointer-events: none;
}

.shot-fan-card:nth-child(1) {
  transform: rotate(-12deg) translateX(-119px);
  z-index: 1;
}
.shot-fan-card:nth-child(2) {
  transform: rotate(-6deg) translateX(-60px);
  z-index: 2;
}
.shot-fan-card:nth-child(3) {
  transform: rotate(0deg) translateX(0);
  z-index: 3;
}
.shot-fan-card:nth-child(4) {
  transform: rotate(6deg) translateX(60px);
  z-index: 2;
}
.shot-fan-card:nth-child(5) {
  transform: rotate(12deg) translateX(119px);
  z-index: 1;
}

.shot-fan:hover .shot-fan-card:nth-child(1) {
  transform: rotate(-19deg) translateX(-202px) translateY(-20px);
}
.shot-fan:hover .shot-fan-card:nth-child(2) {
  transform: rotate(-9deg) translateX(-102px) translateY(-32px);
}
.shot-fan:hover .shot-fan-card:nth-child(3) {
  transform: rotate(0deg) translateX(0) translateY(-41px);
}
.shot-fan:hover .shot-fan-card:nth-child(4) {
  transform: rotate(9deg) translateX(102px) translateY(-32px);
}
.shot-fan:hover .shot-fan-card:nth-child(5) {
  transform: rotate(19deg) translateX(202px) translateY(-20px);
}

.shot-fan-card:hover {
  transform: rotate(0deg) translateX(0) translateY(-110px) scale(1.06) !important;
  z-index: 10 !important;
  border-color: var(--accent);
  box-shadow: 0 40px 80px -18px rgba(34, 211, 238, 0.5);
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 13px;
  margin-bottom: 7px;
  font-size: 0.78rem;
}
.app-row.dim {
  opacity: 0.5;
}
.app-row .chev {
  color: var(--muted);
  flex-shrink: 0;
}
.app-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
}
.app-badge.warn {
  background: var(--amber-soft);
  color: var(--amber);
}
.app-badge.mild {
  background: var(--amber);
  color: #241a03;
}
.app-badge.admin {
  background: var(--blue);
  color: #fff;
}

.law-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px;
  margin-bottom: 10px;
  font-size: 0.78rem;
}
.law-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.law-num {
  font-weight: 700;
  font-size: 0.8rem;
}
.law-copy {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 3px 9px;
}
.law-star {
  color: var(--muted);
}
.law-star.filled {
  color: var(--amber);
}
.law-desc {
  color: var(--fg);
  line-height: 1.55;
  margin: 0 0 8px;
}
.law-note {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  margin: 0 0 8px;
}
.law-penalty {
  background: var(--red-soft);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 0.74rem;
  color: #f3a4a4;
  line-height: 1.5;
}

/* section headers */
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
}
h2 .accent {
  color: var(--accent);
}
.section-lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 0.95rem;
  margin: 0 0 40px;
}
.section-head {
  text-align: center;
}
.section-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.pain-card {
  padding: 32px;
}
.pain-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--fg);
}
.pain-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.pain-card strong {
  color: var(--accent);
}

.grid-3 {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  padding: 28px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.08rem;
  margin: 0 0 10px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.shot-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shot-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 16%;
    right: 16%;
    border-top: 1px dashed var(--border);
  }
}
.step {
  padding: 26px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #04222a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.audience-card {
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.audience-card .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.audience-card h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.audience-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.price-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price-card.highlight {
  border-color: rgba(34, 211, 238, 0.4);
}
.price-card h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.price-val {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 6px 0 4px;
  color: var(--accent);
}
.price-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.price-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 22px;
  flex-grow: 1;
}
.price-check {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.88rem;
  display: grid;
  gap: 9px;
  flex-grow: 1;
  color: var(--fg);
}
.price-check li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

/* faq */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 18px;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-weight: 600;
  font-size: 0.95rem;
}
summary::-webkit-details-marker {
  display: none;
}
summary .chev {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--accent);
}
details[open] summary .chev {
  transform: rotate(180deg);
}
details p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 68ch;
}

.final-band {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.14),
    rgba(79, 143, 240, 0.1)
  );
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 28px;
}
.final-band h2 {
  margin-bottom: 14px;
}
.final-band p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 28px;
  font-size: 0.92rem;
}
.final-band .cta-row {
  justify-content: center;
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.footer-grid h4 {
  font-size: 0.78rem;
  color: var(--fg);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  font-weight: 700;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-grid ul a {
  text-decoration: none;
}
.footer-grid ul a:hover {
  color: var(--accent);
}
.footer-grid p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* cookie consent banner (the one deliberate exception to zero-JS: real
   persistence across page loads needs localStorage, which needs JS) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1 1 320px;
}
.cookie-banner p a {
  color: var(--accent);
}
.cookie-banner .btn {
  flex-shrink: 0;
}

/* legal document pages (privacy.html, terms.html) */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 110px;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 38px 0 12px;
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal ul,
.legal ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal strong {
  color: var(--fg);
}
.legal .callout {
  background: var(--red-soft);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 32px;
  color: #f3a4a4;
  font-size: 0.88rem;
  line-height: 1.6;
}
.legal a {
  color: var(--accent);
}

/* shrink the (now much bigger) hero fan to fit narrower viewports —
   scale keeps every card's internal proportions identical, just smaller */
@media (max-width: 900px) {
  .shot-fan {
    transform: scale(0.58);
    transform-origin: bottom center;
    height: 480px;
  }
}
@media (max-width: 480px) {
  .shot-fan {
    transform: scale(0.42);
    height: 350px;
  }
}

/* phones */
@media (max-width: 380px) {
  .wrap {
    padding: 0 14px;
  }
  section {
    padding: 52px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 44px;
  }
  h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
  .app-frame {
    padding: 12px;
  }
  .shot-fan {
    transform: scale(0.34);
    transform-origin: bottom center;
    height: 290px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* large monitors — maxw scales continuously with viewport instead of
   plateauing at a fixed step, so ultra-wide screens don't end up with
   huge unused side margins */
@media (min-width: 1440px) {
  :root {
    --maxw: min(86vw, 2700px);
  }
  section {
    padding: 104px 0;
  }
  .hero {
    min-height: 84vh;
  }
  h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 1.05rem;
  }
}
@media (min-width: 2560px) {
  body {
    font-size: 1.1rem;
  }
}
@media (min-width: 3200px) {
  body {
    font-size: 1.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
