:root {
  --bg: #F8F6F7;
  --text: #101B3B;
  --text-secondary: #26428B;
  --muted: #6b7280;
  --border: #e2e5ea;
  --border-light: #FDEDD3;
  --accent: #101B3B;
  --accent-mid: #26428B;
  --accent-light: #516AC7;
  --accent-warm: #E3AF64;
  --accent-warm-soft: #FDEDD3;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Neue Haas Grotesk Text', 'Neue Haas Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-optical-sizing: auto;
  line-height: normal;
  overflow-x: hidden;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #fff;
  color: var(--accent);
  padding: 8px 16px;
  font-size: 0.875rem;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ── Layout ── */
.container {
  margin: 0 auto;
  padding: 50px;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Nofex', 'Neue Haas Grotesk Display', 'Neue Haas Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 {
  font-size: 4rem;
  line-height: normal;
}

h2 {
  font-size: 2rem;
  line-height: normal;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.05rem;
  line-height: normal;
  font-weight: 700;
}

.pill {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 1.5rem;
  background: var(--accent-warm-soft);
  color: var(--accent);
  padding: 10px 15px;
}

/* ── Sections ── */
.section + .section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Social strip (white area below hero) ── */
.social-strip {
  background: var(--bg);
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--border);
}

.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.social-strip-label {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.15s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: scale(1.08);
}

.social-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

/* ══════════════════════
   HERO (dark above-fold)
   ══════════════════════ */
.hero-wrapper {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 45%, var(--accent-light) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-logo {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-phone {
  flex-shrink: 0;
  width: 380px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.hero h1 {
  line-height: 4rem;
  margin-bottom: 24px;
  max-width: 55%;
  color: #fff;
}

.hero-description {
  font-size: 1.8rem;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  max-width: 55%;
  margin-bottom: 30px;
}

/* ── Waitlist form ── */
.waitlist {
  max-width: 480px;
}

.waitlist label {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.waitlist-row {
  display: flex;
  gap: 0;
}

.waitlist input[type="email"] {
  flex: 1;
  min-width: 430px;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 1.8rem;
  border: none;
  border-radius: 0;
  background: #FFF;
  color: var(--accent);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.waitlist input[type="email"]::placeholder {
  color: var(--accent);
  opacity: 1;
}

.waitlist input[type="email"]:focus {
  position: relative;
  z-index: 1;
}

.waitlist button {
  padding: 15px 28px;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--accent-warm);
  color: var(--accent);
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 15px;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.waitlist button:hover {
  background: var(--accent-warm-soft);
}

.waitlist button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.waitlist-note {
  margin-top: 14px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.45);
}

.form-legal-link {
  margin-bottom: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.form-legal-link a {
  color: #fff;
  text-underline-offset: 0.12em;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-warm);
}

.form-consent a {
  color: #fff;
  text-underline-offset: 0.12em;
}

.form-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.is-consent-blocked input[type="email"] {
  cursor: not-allowed;
  opacity: 0.75;
}

.hero-socials-intro {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-social-link:hover {
  color: #fff;
}

.hero-social-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.hero-social-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.hero-social-icon svg {
  display: block;
}

.waitlist-message,
.footer-waitlist-message {
  margin-top: 12px;
  font-size: 1rem;
}

.waitlist-message--success,
.footer-waitlist-message--success {
  color: #2f855a;
}

.waitlist-message--error,
.footer-waitlist-message--error {
  color: #c53030;
}

.turnstile-host {
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ── Follow popup ── */
.follow-popup {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  padding: 20px;
}

.follow-popup.is-open {
  visibility: visible;
}

.follow-popup__card {
  position: relative;
  width: min(520px, calc(100vw - 28px));
  background: #fff;
  color: var(--accent);
  padding: 34px 30px 30px;
  border: 1px solid rgba(16, 27, 59, 0.14);
  box-shadow: 0 20px 60px rgba(16, 27, 59, 0.22), inset 0 0 0 1px rgba(16, 27, 59, 0.04);
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.follow-popup.is-open .follow-popup__card {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.follow-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  color: rgba(16, 27, 59, 0.55);
  font-size: 1.8rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.follow-popup__close:hover {
  color: var(--accent);
}

.follow-popup__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.follow-popup__eyebrow {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 27, 59, 0.62);
  margin-bottom: 10px;
}

.follow-popup__card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--accent);
}

.follow-popup__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.follow-popup__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.follow-popup__social {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.follow-popup__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.follow-popup__social-icon svg {
  display: block;
}

.follow-popup__social:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 27, 59, 0.18);
}

.follow-popup__social:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.follow-popup__social--instagram {
  background: #fdf1df;
  color: #8a3a00;
}

.follow-popup__social--facebook {
  background: #eef2ff;
  color: #233f95;
}

.follow-popup__social--linkedin {
  background: #e8f4ff;
  color: #005f8b;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  inset: auto 0 20px;
  z-index: 1000;
  display: none;
  justify-content: center;
  padding: 0 20px;
}

.cookie-banner.is-open {
  display: flex;
}

.cookie-banner__panel {
  width: min(560px, calc(100vw - 40px));
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(16, 27, 59, 0.12);
  box-shadow: 0 18px 60px rgba(16, 27, 59, 0.2);
  padding: 24px;
}

.cookie-banner.is-shaking .cookie-banner__panel {
  animation: cookieBannerShake 0.42s ease-in-out;
}

@keyframes cookieBannerShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-7px); }
  80% { transform: translateX(7px); }
}

.cookie-banner__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 27, 59, 0.5);
  margin-bottom: 10px;
}

.cookie-banner__title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cookie-banner__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(16, 27, 59, 0.8);
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.cookie-banner__button,
.cookie-banner__save,
.cookie-banner__secondary {
  font: inherit;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-banner__button {
  padding: 12px 16px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
}

.cookie-banner__button:hover,
.cookie-banner__secondary:hover {
  background: rgba(16, 27, 59, 0.05);
}

.cookie-banner__button--primary,
.cookie-banner__save {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.cookie-banner__button--primary:hover,
.cookie-banner__save:hover {
  background: #1c2f68;
}

.cookie-banner__button:focus-visible,
.cookie-banner__save:focus-visible,
.cookie-banner__secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cookie-banner__preferences {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 27, 59, 0.12);
}

.cookie-banner__preferences.is-open {
  display: block;
}

.cookie-banner__option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.cookie-banner__option + .cookie-banner__option {
  border-top: 1px solid rgba(16, 27, 59, 0.08);
}

.cookie-banner__option h3 {
  margin-bottom: 6px;
}

.cookie-banner__option p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(16, 27, 59, 0.75);
}

.cookie-banner__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  white-space: nowrap;
  color: rgba(16, 27, 59, 0.75);
}

.cookie-banner__toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.cookie-banner__preferences-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner__save,
.cookie-banner__secondary {
  padding: 12px 16px;
}

.cookie-banner__secondary {
  border: 1px solid rgba(16, 27, 59, 0.15);
  background: #fff;
  color: var(--accent);
}

/* ══════════════════════
   NEWS / MEDIA
   ══════════════════════ */
.news-intro {
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: normal;
  font-size: 1.5rem;
}

.news-list {
  list-style: none;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 420px;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.news-list::-webkit-scrollbar {
  height: 6px;
}

.news-list::-webkit-scrollbar-track {
  background: var(--border-light);
}

.news-list::-webkit-scrollbar-thumb {
  background: var(--border);
}

.news-item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: rgba(16, 27, 59, 0.04);
  padding: 0;
  min-height: 240px;
  position: relative;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}


.news-og {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
}

.news-og--center {
  object-position: center;
}

.news-item-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-source {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source img {
  display: block;
  position: static;
  height: 22px;
  width: auto;
  max-width: 160px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left;
}

.news-source-name {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  font-weight: 600;
  opacity: 0.5;
}

.news-source-name--text {
  font-weight: 700;
  opacity: 1;
  font-size: 0.95rem;
}

.news-headline {
  flex: 1;
}

.news-headline-text {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: normal;
}

.news-headline-text::before {
  content: "\201C";
}

.news-headline-text::after {
  content: "\201D";
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  background: var(--bg);
  padding: 10px 16px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.15s ease, color 0.15s ease;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  white-space: nowrap;
}

.news-link:hover {
  background: var(--accent);
  color: #fff;
}

.news-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.news-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════
   FEATURES
   ══════════════════════ */
.features-intro {
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: normal;
  font-size: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.feature {
  background: rgba(16, 27, 59, 0.04);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: normal;
  margin-bottom: 20px;
}

.feature-story {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: normal;
  padding-left: 16px;
  border-left: 2px solid rgba(16, 27, 59, 0.15);
}

/* ── Legal pages ── */
.legal-page {
  min-height: 100vh;
}

.legal-hero {
  background: var(--accent);
}

.legal-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.legal-hero__brand {
  display: inline-flex;
  align-items: center;
}

.legal-hero__brand .hero-logo {
  margin-bottom: 0;
}

.legal-hero__back {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 1rem;
}

.legal-hero__back:hover {
  color: #fff;
}

.legal-hero__back:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.legal-section {
  padding: 72px 0 88px;
}

.legal-layout {
  max-width: 900px;
}

.legal-updated {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
}

.legal-card {
  margin-top: 32px;
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(16, 27, 59, 0.08);
  box-shadow: 0 16px 50px rgba(16, 27, 59, 0.06);
}

.legal-placeholder {
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--accent-warm-soft);
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(16, 27, 59, 0.92);
}

.legal-card ul {
  margin: 12px 0 16px;
  padding-left: 1.35em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(16, 27, 59, 0.86);
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(16, 27, 59, 0.86);
}

.legal-card a {
  color: var(--accent-mid);
}

/* ══════════════════════
   FOOTER
   ══════════════════════ */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.site-footer .container {
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 1.5rem;
  line-height: normal;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.footer-col .footer-cookie-button {
  display: inline-block;
  font: inherit;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  text-align: left;
}

.footer-col .footer-cookie-button:hover {
  color: #fff;
}

.footer-col .footer-cookie-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.footer-cta {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-cta-text {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-waitlist-row {
  display: flex;
  gap: 0;
}

.footer-waitlist input[type="email"] {
  padding: 15px 18px;
  font-family: inherit;
  font-size: 1.4rem;
  border: 2px solid #fff;
  border-right: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  min-width: 260px;
  appearance: none;
  -webkit-appearance: none;
}

.footer-waitlist input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-waitlist input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.footer-waitlist button {
  padding: 15px 28px;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 600;
  background: #fff;
  color: var(--accent);
  border: 2px solid #fff;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease;
}

.footer-waitlist button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.footer-waitlist button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

.footer-bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer:not(.site-footer--compact) .footer-bottom-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 24px;
}

.footer-bottom-left {
  justify-self: start;
}

.footer-bottom-email {
  justify-self: center;
  text-align: center;
}

.footer-bottom-right {
  justify-self: end;
  text-align: right;
}

.footer-copyright {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-cookie-button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-cookie-button:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cookie-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.footer-badge {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.site-footer--compact .container {
  padding-top: 48px;
}

/* ══════════════════════
   RESPONSIVE
   ══════════════════════ */
@media (max-width: 1240px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 1145px) {
  .hero h1,
  .hero-description {
    max-width: 100%;
  }

  .hero-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 24px;
  }

  .hero-logo {
    height: 36px;
    margin-bottom: 36px;
  }

  h1,
  .hero h1 {
    font-size: 3rem;
    line-height: 3rem;
    max-width: unset;
  }

  h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.5rem;
    max-width: unset;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-list {
    grid-template-rows: 1fr;
    grid-auto-columns: minmax(260px, 78vw);
    gap: 12px;
    padding-right: 24px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-mid) var(--border-light);
  }

  .news-item {
    min-height: auto;
  }

  .news-source-name {
    font-size: 0.85rem;
  }

  .news-og {
    height: 140px;
  }

  .news-item-body {
    padding: 20px 20px 20px;
  }

  .news-link {
    padding: 8px 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 28px;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-waitlist {
    width: 100%;
  }

  .footer-waitlist input[type="email"] {
    width: 100%;
    min-width: 0;
    flex: 1;
    border-right: 2px solid #fff;
  }

  .footer-waitlist-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer-waitlist button {
    width: 100%;
  }

  .footer-bottom {
    gap: 8px;
  }

  .footer-bottom-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer:not(.site-footer--compact) .footer-bottom-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-footer:not(.site-footer--compact) .footer-bottom-left {
    align-self: flex-start;
  }

  .site-footer:not(.site-footer--compact) .footer-bottom-email {
    align-self: center;
    text-align: center;
  }

  .site-footer:not(.site-footer--compact) .footer-bottom-right {
    align-self: flex-end;
    text-align: right;
  }

  .form-legal-link,
  .form-consent {
    font-size: 0.95rem;
  }

  .waitlist {
    max-width: 100%;
  }

  .waitlist label {
    font-size: 1rem;
  }

  .waitlist-note {
    font-size: 1.2rem;
  }

  .waitlist-row {
    flex-direction: column;
  }

  .waitlist input[type="email"] {
    width: 100%;
    min-width: 0;
    font-size: 1.5rem;
    border: none;
  }

  .waitlist button {
    width: 100%;
    font-size: 1.5rem;
    border-top: none;
    margin-left: 0;
    margin-top: 10px;
  }

  .follow-popup {
    padding: 14px;
  }

  .follow-popup__card {
    width: 100%;
    padding: 28px 18px 18px;
    transform: translateY(16px) scale(0.98);
  }

  .follow-popup.is-open .follow-popup__card {
    transform: translateY(0) scale(1);
  }

  .follow-popup__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    inset: auto 0 12px;
    padding: 0 12px;
  }

  .cookie-banner__panel {
    width: calc(100vw - 24px);
    padding: 20px 18px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__option {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner__preferences-actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__save,
  .cookie-banner__secondary {
    width: 100%;
  }

  .legal-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-section {
    padding: 40px 0 56px;
  }

  .legal-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 18px;
  }

  h1,
  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .pill {
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .waitlist input[type="email"],
  .waitlist button,
  .footer-waitlist input[type="email"],
  .footer-waitlist button {
    font-size: 1.15rem;
    padding: 12px 14px;
  }

  .news-list {
    grid-template-rows: 1fr;
    grid-auto-columns: 82vw;
    padding-right: 28px;
  }

  .footer-cta-text {
    font-size: 1.35rem;
  }
}


.news-source {
  align-items: flex-start;
}

/* ══════════════════════
   PRINT
   ══════════════════════ */
@media print {
  .skip-link,
  .waitlist {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .hero-wrapper {
    background: none;
    color: #000;
  }

  .hero h1 {
    color: #000;
  }

  .hero-description {
    color: #333;
  }

  .hero-logo {
    filter: none;
  }

  .hero-phone {
    display: none;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .section {
    padding-top: 24pt;
    padding-bottom: 24pt;
    page-break-inside: avoid;
  }

  a { color: #000; }

  .feature {
    border-top-color: #000;
  }

  .site-footer {
    background: none;
    color: #000;
    font-size: 9pt;
  }

  .site-footer .container {
    padding-top: 24pt;
  }

  .footer-logo {
    filter: none;
  }

  .footer-tagline,
  .footer-col h4,
  .footer-col a,
  .footer-col .footer-cookie-button,
  .footer-cta-text,
  .footer-copy,
  .footer-badge,
  .footer-copyright {
    color: #333;
  }

  .footer-cta {
    display: none;
  }

  .footer-top,
  .footer-bottom {
    border-color: #ccc;
  }
}

