/*
  Global stylesheet — single source of truth for the site.

  Structure:
    1) Reset and base
    2) Design tokens (:root) — palette and typography are owned by the
       `brand-guidelines` skill. Spacing, radii, shadows, motion, and layout
       tokens are owned here.
    3) Layout primitives
    4) Components (site-wide reusable primitives only — page-specific
       styles live with their page builds, not here)
    5) Utilities
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

/* ===== 1) Reset and base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== 2) Design tokens ===== */
/* Palette and typography are written by the `brand-guidelines` skill from
   `build-assets/0-the-brand/tokens.json`. Spacing, radii, shadows, and
   transitions are owned here. */
:root {
  /* Palette (brand-guidelines) */
  --color-bg: #faf7fb;
  --color-surface: #ffffff;
  --color-surface-soft: #f3e9f0;
  --color-text: #241f33;
  --color-text-soft: #6b6580;
  --color-primary: #4ec9be;
  --color-primary-dark: #2fa89d;
  --color-primary-light: #d9f5f1;
  --color-accent: #8b7fd6;
  --color-focus: #4ec9be;

  /* Typography (brand-guidelines) */
  --font-heading: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Anton", "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(60, 64, 67, 0.12);
  --shadow-md: 0 4px 14px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.12);

  /* Motion */
  --transition-fast: 180ms ease;
  --transition-base: 260ms ease;
  --transition-slow: 500ms ease;
  --easing-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --easing-smooth: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 72rem;
  --content-prose: 68ch;
  --content-wide: 56rem;

  /* Aesthetic dials (design-system, 2026-07-23) — Unicorn Dates leans soft /
     friendly / playful: pill buttons, generously rounded cards, a soft shadow
     doing the separation work instead of a hard border. Logo presence:
     Prominent (matches the reference homepage's header proportions — the wide
     outlined wordmark reads clearly at this size without dominating the nav). */
  --logo-height: 2.75rem;    /* Prominent, mobile */
  --logo-max-width: 22rem;
  --header-bg: var(--color-surface);   /* neutral header — logo's outline works on any bg, no band needed at Prominent */
  --header-fg: var(--color-text);
  --btn-radius: var(--radius-pill);
  --card-radius: var(--radius-lg);
  --card-shadow: var(--shadow-md);
  --card-border: none;
  --chip-radius: var(--radius-pill);
}

/* Logo grows on wider screens — override the dial at the breakpoint, never per-page. */
@media (min-width: 1024px) {
  :root { --logo-height: 3.5rem; }
}

/* ===== 3) Layout primitives ===== */
.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.section {
  padding: var(--space-10) 0;
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== 4) Components ===== */

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  color: var(--header-fg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.site-header-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* The header logo is an <img src="{{logo.src}}"> whose REAL file is injected by the CMS
   at upload — its aspect ratio is unknown at build time. HEIGHT is the primary driver
   (a generous --logo-height), so every logo renders at a consistent, prominent height
   regardless of ratio; --logo-max-width is a generous, viewport-relative safety cap that
   only clamps a very wide logo on small screens (it then scales down proportionally, never
   distorts). Never pin width AND height. Tune the dials per brand — never a per-page size. */
.site-logo img {
  height: auto;
  width: auto;
  max-height: var(--logo-height);
  max-width: min(var(--logo-max-width, 22rem), 55vw);
  object-fit: contain;
}

/* Native primary nav — pure CSS checkbox toggle for mobile, no authored <script> anywhere
   (see "Custom JavaScript — steer to CSS-first" in CLAUDE.md; a bulk CMS import rejects any
   page containing a <script>, so the JS-drawer pattern from native-menu.md was deliberately
   swapped for this checkbox-hack equivalent, same pattern already used by the homepage's
   "I am" selector). */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-2);
  order: 5;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--header-fg);
  display: block;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  order: 2;
}

.site-nav .nav-list {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .nav-list a {
  color: var(--header-fg);
  font-weight: 600;
}

.site-nav .nav-list a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 20rem);
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    padding: var(--space-8) var(--space-6);
    z-index: 30;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .nav-toggle-input:checked ~ .site-nav {
    transform: translateX(0);
  }
}

.site-cta {
  order: 4;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* CMS-rendered menus — `{{menu.navigation}}` and `{{menu.footer}}` expand to
   <ul class="canvas-navigation-menu"> / <ul class="canvas-footer-menu"> with
   <li><a> children. Style the generated classes directly. */

.canvas-navigation-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.canvas-navigation-menu > li {
  margin: 0;
}

.canvas-navigation-menu a {
  color: var(--header-fg);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.canvas-navigation-menu a:hover,
.canvas-navigation-menu a:focus-visible {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.canvas-footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
}

/* Footers can carry many links. With 8+ items, flow them into responsive columns
   (auto-fill grid) instead of one long, sprawling wrapping row — multi-column on wide
   screens, collapsing toward a single column on mobile. Short footer menus keep the
   inline row above. Where :has() is unsupported it harmlessly stays the flex row. */
.canvas-footer-menu:has(> li:nth-child(8)) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 9rem), 1fr));
  align-items: start;
  gap: var(--space-2) var(--space-5);
}

.canvas-footer-menu > li {
  margin: 0;
}

.canvas-footer-menu a {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.canvas-footer-menu a:hover,
.canvas-footer-menu a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--color-text-soft);
  opacity: 0.6;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--btn-radius);
  min-height: 2.75rem;
  padding: 0.78rem 1.4rem;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline-offset: 3px; }

.btn[disabled],
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 28%, transparent);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 40%, transparent);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-surface-soft) 75%, #fff);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 20%, transparent);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--color-surface-soft) 65%, transparent);
}

/* Header CTAs follow the header foreground so they stay legible on a coloured band
   (no-op on the neutral default where --header-fg == --color-text). */
.site-header .btn-ghost {
  color: var(--header-fg);
  border-color: color-mix(in srgb, var(--header-fg) 20%, transparent);
}

.btn-sm {
  min-height: 2.2rem;
  padding: 0.55rem 1rem;
  font-size: 0.87rem;
}

.btn-lg {
  min-height: 3rem;
  padding: 0.9rem 1.7rem;
  font-size: 1.04rem;
}

.btn-block { width: 100%; }

.btn-icon {
  width: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  border-radius: 50%;
}

/* Card */
.card {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: var(--space-5);
}

.card-title {
  margin: 0 0 var(--space-2);
  font-size: 1.08rem;
}

.card-text {
  margin: 0;
  color: var(--color-text-soft);
}

/* Chip — pill-shaped tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--chip-radius);
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}

.chip-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* Article */
.article-header { max-width: var(--content-prose); margin: 0 auto var(--space-6); }
.article-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
}
.article-byline {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
.article-hero {
  max-width: var(--content-wide);
  margin: 0 auto var(--space-8);
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--card-shadow);
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.article-body {
  max-width: var(--content-prose);
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: var(--space-8) 0 var(--space-3);
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: var(--space-6) 0 var(--space-2);
}
.article-body p { margin: 0 0 var(--space-4); }
.article-body ul, .article-body ol { margin: 0 0 var(--space-4); padding-left: 1.3rem; }
.article-body li { margin-bottom: var(--space-2); }
.article-body blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-4) var(--space-5);
  border-left: 4px solid var(--color-primary);
  background: var(--color-surface-soft);
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--color-text);
}
.article-tags { max-width: var(--content-prose); margin: var(--space-8) auto 0; }
.article-related { max-width: var(--content-prose); margin: var(--space-8) auto 0; }
.article-related-list { display: grid; gap: var(--space-3); margin-top: var(--space-3); }
.article-related-list a {
  display: block;
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  font-weight: 600;
  color: var(--color-text);
  transition: transform var(--transition-fast);
}
.article-related-list a:hover { transform: translateY(-2px); color: var(--color-primary); }

/* Articles landing */
.landing-hero { max-width: var(--content-prose); margin: 0 auto var(--space-8); text-align: center; }
.landing-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 var(--space-3);
}
.landing-sub { color: var(--color-text-soft); font-size: 1.05rem; }

.featured-card {
  display: grid;
  gap: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .featured-card { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
}
.featured-card-media { aspect-ratio: 16 / 9; }
@media (min-width: 768px) { .featured-card-media { aspect-ratio: auto; height: 100%; } }
.featured-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.featured-card-body { padding: var(--space-6); display: flex; flex-direction: column; }
.featured-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.featured-card-title { font-family: var(--font-heading); font-size: 1.6rem; margin: 0 0 var(--space-3); }
.featured-card-text { color: var(--color-text-soft); margin: 0 0 var(--space-4); }
.featured-card-meta { color: var(--color-text-soft); font-size: 0.85rem; margin-top: auto; }

.article-card-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition-fast);
}
.article-card:hover { transform: translateY(-3px); }
.article-card-media { aspect-ratio: 4 / 3; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.article-card-body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1; }
.article-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.article-card-title { font-family: var(--font-heading); font-size: 1.1rem; margin: 0 0 var(--space-2); }
.article-card-text { color: var(--color-text-soft); font-size: 0.9rem; margin: 0 0 var(--space-3); }
.article-card-meta { color: var(--color-text-soft); font-size: 0.8rem; margin-top: auto; }

.landing-cta {
  max-width: var(--content-prose);
  margin: var(--space-10) auto 0;
  text-align: center;
  padding: var(--space-8);
  background: var(--color-surface-soft);
  border-radius: var(--card-radius);
}

/* Comparison table */
.compare-table {
  max-width: var(--content-prose);
  margin: var(--space-8) auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-row + .compare-row { border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent); }
.compare-cell {
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
}
.compare-cell:first-child { border-right: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent); }
.compare-cell-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-soft);
  margin: 0 0 var(--space-1);
}
.compare-cell-us .compare-cell-label { color: var(--color-primary); }
.compare-cell p { margin: 0; font-size: 0.95rem; }

/* Site footer */
.site-footer {
  padding: var(--space-10) 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

/* Member profile */
.profile-head {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-6);
}
.profile-avatar {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: var(--radius-pill);
  object-fit: cover;
}
.profile-id {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.profile-headline {
  font-size: 1.15rem;
  font-weight: 600;
}
.profile-bio {
  color: var(--color-text-soft);
  max-width: 60ch;
}
.profile-interests {
  margin-top: var(--space-3);
}

/* Homepage — squeeze hero + signup card + below-fold explore boxes */

/* Landing bumps the logo one step beyond the site-wide dial (homepage.md brief). */
.site-header--hero { --logo-height: 3.25rem; }
@media (min-width: 1024px) {
  .site-header--hero { --logo-height: 3.75rem; }
}

.homepage-hero {
  position: relative;
  min-height: 38rem;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
}
.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 30, 0.68) 0%, rgba(20, 16, 30, 0.4) 32%, rgba(20, 16, 30, 0) 58%);
}
.homepage-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-10) 0;
  max-width: 24rem;
}
.homepage-hero-headline {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 var(--space-3);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  max-width: 16ch;
}
.homepage-hero-sub {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  font-size: 1.05rem;
  max-width: 40ch;
  margin: 0;
}

/* Signup card — the "I Am" intent selector */
.signup-card { max-width: 26rem; }
.signup-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 var(--space-4);
}
.intent-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.intent-option { position: relative; }
.intent-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.intent-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--chip-radius);
  background: var(--color-surface-soft);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.intent-option input:checked + label {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary-dark);
}
.intent-option input:focus-visible + label {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}
.signup-card-note {
  color: var(--color-text-soft);
  font-size: 0.85rem;
  margin: 0 0 var(--space-4);
}
.signup-card-note a { color: var(--color-primary); text-decoration: underline; }

/* Trust row — short, honest, no fabricated claims */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  justify-content: center;
  padding: var(--space-6) 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Explore boxes — below-fold links into articles / countries / comparisons */
.explore-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
}
.explore-card {
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--color-surface);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.explore-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.explore-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.explore-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.explore-card-body { padding: var(--space-5); }
.explore-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.explore-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 var(--space-2);
}
.explore-card-text {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  margin: 0;
}

.photo-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  text-align: center;
  padding-top: var(--space-6);
}

/* Entrance motion — Subtle (design-system, 2026-07-23). Pure CSS, plays on load —
   deliberately NOT an IntersectionObserver/JS scroll-trigger, since any authored
   <script> on a page (drawer JS, reveal JS, anything but JSON-LD) gets the whole
   page rejected on a bulk CMS import. Reduced-motion-safe via the seed's global
   prefers-reduced-motion rule above (which collapses animation-duration too). */
@keyframes reveal-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal-on-load {
  animation: reveal-rise var(--transition-slow) var(--easing-smooth) both;
  animation-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-load { animation-duration: 0.01ms; }
}

/* ===== 5) Utilities ===== */
.text-center { text-align: center; }
.muted { color: var(--color-text-soft); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

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