/* Anna Super Apps — light studio aesthetic */
:root {
  --bg-void: #f8fafc;
  --bg-deep: #f1f5f9;
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --surface: rgba(241, 245, 249, 0.92);
  --surface-solid: #f1f5f9;
  --surface-hover: #e2e8f0;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-muted: rgba(248, 250, 252, 0.96);
  --footer-bg: #eef2f7;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --border-accent: rgba(14, 165, 233, 0.38);
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --accent: #0284c7;
  --accent-bright: #0ea5e9;
  --accent-strong: #0369a1;
  --accent-dim: rgba(14, 165, 233, 0.12);
  --accent-glow: rgba(14, 165, 233, 0.35);
  --violet: #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.1);
  --gradient-mesh: radial-gradient(ellipse 120% 90% at 50% -25%, rgba(14, 165, 233, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 15%, rgba(124, 58, 237, 0.1), transparent 48%),
    radial-gradient(ellipse 45% 40% at 0% 55%, rgba(56, 189, 248, 0.06), transparent 48%);
  --gradient-text: linear-gradient(135deg, #0f172a 0%, #0369a1 46%, #6d28d9 96%);
  --gradient-btn: linear-gradient(135deg, #0ea5e9 0%, #0284c7 48%, #6366f1 100%);
  --gradient-page: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 38%, var(--bg) 100%);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', var(--font);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 8px 36px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.05) inset;
  --shadow-card-hover: 0 18px 52px rgba(15, 23, 42, 0.12), 0 0 48px -18px rgba(14, 165, 233, 0.28);
  --shadow-glow: 0 4px 28px rgba(14, 165, 233, 0.22);
  --container: 1140px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

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

  .hero-inner {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--gradient-page);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(14, 165, 233, 0.22);
  color: var(--text);
}

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

.container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.35);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.brand-lockup:hover {
  opacity: 0.92;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s, background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: var(--shadow-glow), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.32), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.btn-outline {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--border-accent);
  color: var(--accent-strong);
  background: rgba(14, 165, 233, 0.06);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}

.btn-xl {
  padding: 17px 38px;
  font-size: 1.06rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(56px, 10vw, 96px) 0 clamp(72px, 12vw, 112px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120vw, 900px);
  height: min(70vw, 480px);
  background: radial-gradient(ellipse closest-side, rgba(14, 165, 233, 0.14), transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  animation: hero-rise 0.85s ease-out both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.22);
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.06);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 22px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: clamp(40px, 8vw, 56px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.stat {
  text-align: center;
}

.hero-stats > .stat {
  padding: 22px 16px;
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-stats > .stat:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Sections */
.section {
  padding: clamp(72px, 11vw, 104px) 0;
  position: relative;
}

.section.alt-bg {
  background: linear-gradient(180deg, var(--surface-solid) 0%, #e8eef5 100%);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head--tight {
  margin-bottom: 36px;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
  opacity: 0.95;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.06rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.section-subtitle strong {
  color: var(--text);
}

.catalog-teaser {
  text-align: center;
  margin-top: 32px;
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Single app showcase */
.apps-showcase {
  display: flex;
  justify-content: center;
}

.app-card-featured {
  width: 100%;
  max-width: 880px;
  background: linear-gradient(155deg, #ffffff 0%, var(--panel-muted) 50%, #ffffff 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.app-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.38), rgba(124, 58, 237, 0.12), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.app-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 720px) {
  .app-card-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-card-meta {
    justify-content: center;
  }

  .app-feature-list {
    text-align: left;
  }
}

.app-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--accent-dim), var(--violet-dim));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.85rem;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.app-launch-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.28);
}

.app-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text);
}

.app-card-tagline {
  font-size: 1rem;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 14px;
}

.app-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 20px;
  line-height: 1.72;
}

.app-feature-list {
  list-style: none;
  margin-bottom: 22px;
}

.app-feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.app-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  box-shadow: 0 0 12px var(--accent-glow);
}

.app-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.meta-pill {
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.meta-pill span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.app-card-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .app-card-actions {
    justify-content: center;
  }
}

/* Approach grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.solution-card {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(10px);
}

.section.alt-bg .solution-card {
  background: #ffffff;
}

.solution-card:hover {
  border-color: rgba(124, 58, 237, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.solution-card ul {
  list-style: none;
}

.solution-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.solution-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.why-card {
  background: linear-gradient(165deg, var(--panel-muted) 0%, #ffffff 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent-dim), var(--violet-dim));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 11px;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.66;
  margin-bottom: 16px;
}

.why-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-strong);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.22);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Trust strip */
.trust-strip {
  padding: clamp(64px, 10vw, 96px) 0;
  background: linear-gradient(180deg, var(--surface-solid) 0%, var(--bg-void) 100%);
  border-top: 1px solid var(--border-strong);
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.35), transparent);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-stats .stat {
  padding: 20px 14px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s;
}

.trust-stats .stat:hover {
  border-color: var(--border-accent);
}

.trust-stats .stat-value {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.trust-quote {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, #ffffff, var(--panel-muted));
  box-shadow: var(--shadow-sm);
}

.trust-quote p {
  font-size: 1.08rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.78;
}

.trust-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

/* Final CTA */
.cta-final {
  padding: clamp(88px, 12vw, 120px) 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-deep) 55%);
  border-top: 1px solid var(--border-strong);
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 120px;
  background: radial-gradient(ellipse closest-side, rgba(14, 165, 233, 0.12), transparent 100%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
}

.cta-final .section-kicker {
  margin-bottom: 10px;
}

.cta-final .section-title {
  margin-bottom: 14px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final .section-subtitle {
  margin-bottom: 30px;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-subtle);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Stay updated */
.stay-updated {
  max-width: 460px;
  margin: 52px auto 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--panel-muted);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.stay-updated h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.stay-updated p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.stay-updated a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  border: 1px solid rgba(14, 165, 233, 0.28);
  transition: background 0.2s, transform 0.2s;
}

.stay-updated a:hover {
  background: rgba(14, 165, 233, 0.14);
  transform: translateY(-2px);
}

.stay-hint {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-subtle);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-strong);
  padding: 56px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(124, 58, 237, 0.22), transparent 90%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr auto auto;
  gap: clamp(28px, 5vw, 48px);
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .brand-lockup {
    align-items: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    align-items: center;
  }
}

.footer-brand .brand-lockup {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.91rem;
  max-width: 300px;
  line-height: 1.65;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-bright);
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.footer-contact strong {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-contact a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* Policy pages */
.page {
  padding: 48px 0 88px;
  min-height: 80vh;
  position: relative;
  z-index: 1;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-content {
  max-width: 720px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

.page-content ul,
.page-content ol {
  margin: 12px 0 12px 24px;
}

.page-content a {
  color: var(--accent-bright);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Legal docs — layout inspired by hsrapps.com policy pages */
.page--legal .page-content {
  max-width: 800px;
}

.policy-note {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.policy-note strong {
  color: var(--text);
}

.policy-important {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.policy-important strong {
  color: var(--text);
}

.policy-related {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.policy-related h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.policy-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.policy-related-links a {
  font-weight: 500;
  font-size: 0.92rem;
}

.policy-consent {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.policy-consent h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 0;
  color: var(--text);
}

.policy-consent p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.policy-contact-card {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.policy-contact-card p {
  margin-bottom: 8px;
}

.policy-contact-card p:last-child {
  margin-bottom: 0;
}

.policy-print {
  margin-top: 16px;
  font-size: 0.88rem;
}

.policy-print button {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
}

.policy-print button:hover {
  border-color: var(--accent);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 12px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 52px 0 72px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .section {
    padding: 64px 0;
  }
}
