:root {
  --bg: #f5f7fb;
  --bg-soft: #edf1f7;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-muted: rgba(247, 249, 252, 0.94);
  --stroke: rgba(17, 24, 39, 0.08);
  --stroke-strong: rgba(17, 24, 39, 0.14);
  --text: #131927;
  --text-soft: #42516a;
  --text-muted: #66758f;
  --accent: #4a67d6;
  --accent-soft: #6b84ea;
  --accent-mist: rgba(74, 103, 214, 0.1);
  --teal: #1f88a7;
  --purple: #6f64c8;
  --shadow-lg: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 14px 34px rgba(17, 24, 39, 0.06);
  --shadow-sm: 0 8px 22px rgba(17, 24, 39, 0.05);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1220px;
  --content-width-narrow: 980px;
}

body[data-theme="dark"] {
  --bg: #0d1118;
  --bg-soft: #141a24;
  --surface: rgba(18, 24, 35, 0.82);
  --surface-strong: #151c27;
  --surface-muted: rgba(21, 28, 39, 0.92);
  --stroke: rgba(148, 163, 184, 0.16);
  --stroke-strong: rgba(148, 163, 184, 0.24);
  --text: #eef3fb;
  --text-soft: #c1cedf;
  --text-muted: #94a3b8;
  --accent: #7c96ff;
  --accent-soft: #9cb1ff;
  --accent-mist: rgba(124, 150, 255, 0.14);
  --teal: #55b7d4;
  --purple: #9a8ef1;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --sticky-offset: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "SF Pro Display", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(74, 103, 214, 0.08), transparent 30%),
    radial-gradient(circle at top left, rgba(31, 136, 167, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 42%, #eef2f8 100%);
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at top right, rgba(124, 150, 255, 0.14), transparent 28%),
    radial-gradient(circle at top left, rgba(85, 183, 212, 0.12), transparent 20%),
    linear-gradient(180deg, #0b1017 0%, #111722 44%, #161d29 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, 0.015) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
}

body[data-theme="dark"]::before {
  background:
    linear-gradient(rgba(6, 10, 16, 0.28), rgba(6, 10, 16, 0.28)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
}

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 24px 0 88px;
}

.site-shell-narrow {
  width: min(100% - 40px, var(--content-width-narrow));
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

body[data-theme="dark"] .topbar {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(15, 21, 31, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(74, 103, 214, 0.14);
}

body[data-theme="dark"] .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-icon {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.topbar-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-links,
.mobile-nav-extra {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav-extra {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

body[data-theme="dark"] .menu-toggle {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.theme-toggle-track {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 44px;
  height: 24px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.theme-toggle-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  color: var(--text-muted);
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.92));
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.16);
  transition: transform 0.22s ease;
}

.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-link {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-sm);
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-soft));
  box-shadow: 0 14px 28px rgba(74, 103, 214, 0.16);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--stroke-strong);
}

body[data-theme="dark"] .button-secondary {
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .theme-toggle {
  background: transparent;
}

body[data-theme="dark"] .theme-toggle:hover,
body[data-theme="dark"] .theme-toggle:focus-visible {
  background: transparent;
}

body[data-theme="dark"] .theme-toggle-track {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.14);
}

body[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(18px);
  background: linear-gradient(180deg, rgba(124, 150, 255, 0.95), rgba(96, 118, 214, 0.92));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .theme-toggle-icon-sun {
  color: rgba(148, 163, 184, 0.8);
}

body[data-theme="dark"] .theme-toggle-icon-moon {
  color: #eef3fb;
}

body[data-theme="dark"] .legal-fine-print-card {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.topbar-cta {
  white-space: nowrap;
}

.hero,
.page-hero {
  display: grid;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-lg);
}

body[data-theme="dark"] .hero,
body[data-theme="dark"] .page-hero,
body[data-theme="dark"] .section-shell,
body[data-theme="dark"] .mode-detail,
body[data-theme="dark"] .intro-card,
body[data-theme="dark"] .mode-card,
body[data-theme="dark"] .category-card,
body[data-theme="dark"] .trust-card,
body[data-theme="dark"] .support-topic-card,
body[data-theme="dark"] .support-checklist-card,
body[data-theme="dark"] .privacy-summary-card,
body[data-theme="dark"] .policy-card,
body[data-theme="dark"] .policy-detail-card,
body[data-theme="dark"] .faq-card,
body[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .cta-panel,
body[data-theme="dark"] .mode-pill {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(17, 24, 35, 0.78);
}

.hero,
.page-hero,
.mode-detail,
.section-shell,
.footer,
#overview,
#modes,
#communication-coach,
#features,
#pricing,
#mode-coach,
#mode-aria,
#mode-touch-up {
  scroll-margin-top: var(--sticky-offset);
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow,
.section-kicker,
.mode-card-label,
.pricing-tier,
.pricing-badge,
.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  padding: 8px 12px;
  border: 1px solid rgba(74, 103, 214, 0.12);
  background: rgba(74, 103, 214, 0.07);
  color: var(--accent);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 11ch;
}

.lead,
.page-hero p {
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-point,
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-soft);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-visual,
.mode-visual {
  display: flex;
  justify-content: center;
}

.hero-device {
  display: grid;
  justify-items: center;
  width: min(100%, 540px);
  padding: 12px 20px 8px;
}

.hero-device-stage {
  position: relative;
  width: min(100%, 460px);
  padding: 10px 0 42px;
}

.iphone-shot {
  position: relative;
  margin: 0;
}

.iphone-shell {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1520 / 3068;
  border-radius: 62px;
  background: url("assets/iphone-17-pro-max-silver-frame.png") center / contain no-repeat;
  box-shadow: 0 30px 85px rgba(17, 24, 39, 0.18);
}

.iphone-island {
  display: none;
}

.iphone-screen {
  position: absolute;
  z-index: 1;
  inset: 3.26% 6.58%;
  overflow: hidden;
  border-radius: 46px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-shot .iphone-shell {
  width: min(100%, 402px);
  margin: 0 auto;
  transform: rotate(2deg);
}

.hero-shot .iphone-screen {
  background:
    radial-gradient(circle at top, rgba(74, 103, 214, 0.14), transparent 28%),
    #f4f6fb;
}

.iphone-shot-compact .iphone-shell {
  width: min(100%, 320px);
}

.shot-caption {
  max-width: 320px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.device-frame {
  width: min(100%, 380px);
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, #141721, #23293d);
  box-shadow: 0 26px 58px rgba(17, 24, 39, 0.18);
}

.hero-device .device-frame {
  margin: 0 auto;
}

.device-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.device-screen {
  min-height: 640px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(74, 103, 214, 0.16), transparent 32%),
    linear-gradient(180deg, #fbfcfe, #eef2f9);
}

.device-screen-header,
.conversation-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}

.device-screen-header strong,
.conversation-title strong {
  display: block;
  font-size: 16px;
}

.device-screen-header span,
.conversation-title span {
  color: var(--text-muted);
  font-size: 13px;
}

.pill-label {
  min-height: 32px;
  padding: 0 12px;
  background: rgba(74, 103, 214, 0.1);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.chat-thread {
  display: grid;
  gap: 12px;
}

.bubble {
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.bubble-incoming {
  background: #fff;
  color: var(--text);
  border-bottom-left-radius: 8px;
}

.bubble-outgoing {
  margin-left: auto;
  background: linear-gradient(140deg, var(--accent), var(--accent-soft));
  color: #fff;
  border-bottom-right-radius: 8px;
}

.bubble-system,
.bubble-aria {
  max-width: 100%;
  display: grid;
  gap: 6px;
  background: rgba(74, 103, 214, 0.08);
  border: 1px solid rgba(74, 103, 214, 0.12);
  color: var(--text);
}

.bubble-aria {
  background: rgba(31, 136, 167, 0.09);
  border-color: rgba(31, 136, 167, 0.16);
}

.bubble-system strong,
.bubble-aria strong {
  font-size: 13px;
}

.bubble-system span,
.bubble-aria span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.device-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.device-composer span {
  font-size: 14px;
  color: var(--text-muted);
}

.device-composer button {
  border: 0;
  border-radius: 999px;
  background: rgba(74, 103, 214, 0.14);
  color: var(--accent);
  padding: 9px 14px;
  font: inherit;
  font-weight: 700;
}

.hero-signal-card {
  position: absolute;
  right: -4px;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(100%, 300px);
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

body[data-theme="dark"] .hero-signal-card {
  background: rgba(12, 18, 28, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.hero-signal-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-signal-copy span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.hero-signal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-signal-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(74, 103, 214, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.hero-signal-pills a:hover,
.hero-signal-pills a:focus-visible {
  transform: translateY(-1px);
  background: rgba(74, 103, 214, 0.12);
}

.section {
  margin-top: 30px;
}

.section-shell {
  padding: 32px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-lg);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 16px;
}

.intro-grid,
.mode-card-grid,
.category-grid,
.trust-grid,
.pricing-grid,
.support-topic-grid,
.support-checklist-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

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

.intro-card,
.mode-card,
.category-card,
.trust-card,
.support-topic-card,
.support-checklist-card,
.privacy-summary-card,
.policy-card,
.policy-detail-card,
.faq-card,
.pricing-card,
.cta-panel,
.mode-pill {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.intro-card,
.category-card,
.trust-card,
.support-topic-card,
.support-checklist-card,
.policy-card,
.policy-detail-card,
.faq-card,
.pricing-card {
  padding: 22px;
  border-radius: 26px;
}

.intro-card strong,
.category-card h3,
.trust-card h3,
.support-topic-card h3,
.support-checklist-card h3,
.policy-card h3,
.policy-detail-card h3,
.faq-card h3,
.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.intro-card p,
.category-card p,
.trust-card p,
.support-topic-card p,
.support-checklist-card p,
.policy-card p,
.policy-detail-card p,
.faq-card p,
.pricing-copy,
.pricing-note,
.cta-panel p,
.privacy-summary-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.mode-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
}

.mode-pill span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}

.mode-pill strong {
  font-size: 14px;
}

.mode-pill.is-active {
  background: rgba(74, 103, 214, 0.08);
  border-color: rgba(74, 103, 214, 0.14);
}

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

.mode-card {
  display: block;
  padding: 24px;
  border-radius: 30px;
  text-decoration: none;
}

.mode-card-label,
.pricing-tier {
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  background: rgba(74, 103, 214, 0.08);
  color: var(--accent);
}

.mode-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mode-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.mode-card-coach {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(114, 100, 200, 0.08));
}

.mode-card-aria {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(31, 136, 167, 0.08));
}

.mode-card-touch {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(74, 103, 214, 0.08));
}

body[data-theme="dark"] .mode-card-coach {
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.92), rgba(86, 74, 148, 0.16));
}

body[data-theme="dark"] .mode-card-aria {
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.92), rgba(27, 107, 131, 0.18));
}

body[data-theme="dark"] .mode-card-touch {
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.92), rgba(74, 103, 214, 0.18));
}

.mode-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

#mode-coach {
  background:
    radial-gradient(circle at top right, rgba(111, 100, 200, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

#mode-aria {
  background:
    radial-gradient(circle at top right, rgba(31, 136, 167, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

#mode-touch-up {
  background:
    radial-gradient(circle at top right, rgba(74, 103, 214, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

body[data-theme="dark"] #mode-coach {
  background:
    radial-gradient(circle at top right, rgba(111, 100, 200, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 35, 0.94), rgba(18, 24, 35, 0.82));
}

body[data-theme="dark"] #mode-aria {
  background:
    radial-gradient(circle at top right, rgba(31, 136, 167, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 35, 0.94), rgba(18, 24, 35, 0.82));
}

body[data-theme="dark"] #mode-touch-up {
  background:
    radial-gradient(circle at top right, rgba(74, 103, 214, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 35, 0.94), rgba(18, 24, 35, 0.82));
}

.mode-copy h2 {
  margin: 12px 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.mode-copy,
.mode-visual,
.example-showcase,
.example-carousel-viewport,
.example-carousel-track,
.example-card,
.example-slide,
.example-block {
  min-width: 0;
}

.mode-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
  max-width: 60ch;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.85;
}

.feature-list strong {
  color: var(--text);
}

.example-showcase {
  margin-top: 28px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(247, 249, 253, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body[data-theme="dark"] .example-showcase,
body[data-theme="dark"] .feature-showcase {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.example-showcase-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.example-showcase-header strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.example-showcase-header span {
  color: var(--text-soft);
  line-height: 1.7;
}

.example-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.example-carousel-button {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  font: inherit;
  font-size: 0;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

body[data-theme="dark"] .example-carousel-button {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.example-carousel-button:hover,
.example-carousel-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 24, 39, 0.12);
}

body[data-theme="dark"] .example-carousel-button:hover,
body[data-theme="dark"] .example-carousel-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.example-carousel-button span {
  position: absolute;
  inset: 0;
  color: transparent;
}

.example-carousel-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  color: var(--text-soft);
}

.example-carousel-button[data-carousel-next] span::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.example-carousel-button[data-carousel-prev] span::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.example-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.example-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.example-card,
.example-slide {
  flex: 0 0 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

body[data-theme="dark"] .example-card,
body[data-theme="dark"] .example-slide,
body[data-theme="dark"] .example-block,
body[data-theme="dark"] .example-card-aria .example-note-answer,
body[data-theme="dark"] .compare-card,
body[data-theme="dark"] .coach-note {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .example-block-draft {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.1), rgba(148, 163, 184, 0.05));
  border-color: rgba(148, 163, 184, 0.18);
}

body[data-theme="dark"] .example-block-prompt {
  background: linear-gradient(180deg, rgba(182, 138, 166, 0.16), rgba(122, 132, 160, 0.1));
  border-color: rgba(182, 138, 166, 0.22);
}

body[data-theme="dark"] .example-block-result {
  background: linear-gradient(180deg, rgba(124, 150, 255, 0.18), rgba(124, 150, 255, 0.1));
  border-color: rgba(124, 150, 255, 0.24);
}

.example-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.example-context,
.example-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.example-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(74, 103, 214, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-block {
  padding: 14px;
  border-radius: 18px;
  background: rgba(244, 247, 252, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.example-block-draft {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.028));
  border-color: rgba(17, 24, 39, 0.09);
}

.example-block-prompt {
  background: linear-gradient(180deg, rgba(160, 126, 150, 0.12), rgba(108, 114, 137, 0.08));
  border-color: rgba(160, 126, 150, 0.16);
}

.example-block small {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-block p,
.example-note-answer {
  margin: 0;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.example-block-result {
  background: linear-gradient(180deg, rgba(74, 103, 214, 0.11), rgba(74, 103, 214, 0.08));
  border-color: rgba(74, 103, 214, 0.18);
}

.example-card-coach {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(111, 100, 200, 0.05));
}

.example-card-aria {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(31, 136, 167, 0.05));
}

.example-card-touch {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(74, 103, 214, 0.05));
}

.example-card-aria .example-note-answer {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(111, 100, 200, 0.1), rgba(74, 103, 214, 0.08));
  border: 1px solid rgba(111, 100, 200, 0.16);
  color: var(--text);
}

.example-card-aria .example-note-answer,
.example-card-touch .example-note,
.example-card-coach .example-note {
  margin-top: auto;
}

.example-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.example-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.16);
  transition: width 0.22s ease, background-color 0.22s ease;
}

.example-carousel-dot.is-active {
  width: 28px;
  background: rgba(74, 103, 214, 0.85);
}

.device-section-title {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compare-card,
.coach-note {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: var(--shadow-sm);
}

.compare-card + .compare-card,
.compare-card + .coach-note {
  margin-top: 12px;
}

.compare-card small,
.coach-note strong {
  display: block;
  margin-bottom: 8px;
}

.compare-card small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 700;
}

.compare-card p,
.coach-note span {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.compare-card-refined {
  background: rgba(74, 103, 214, 0.08);
  border-color: rgba(74, 103, 214, 0.12);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 32px;
  background: rgba(244, 247, 252, 0.8);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.feature-showcase-copy h3 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.feature-showcase-copy p {
  margin: 0;
  max-width: 54ch;
  color: var(--text-soft);
  line-height: 1.8;
}

.mini-chip {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  color: var(--teal);
  background: rgba(31, 136, 167, 0.08);
  border-color: rgba(31, 136, 167, 0.12);
}

.category-grid,
.support-topic-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid,
.support-checklist-grid,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  display: block;
  text-decoration: none;
}

.trust-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card {
  position: relative;
  min-height: 100%;
}

.pricing-card-premium {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(74, 103, 214, 0.08));
}

.pricing-card-free {
  background: rgba(255, 255, 255, 0.84);
}

.pricing-card-free,
.pricing-card-premium {
  display: flex;
  flex-direction: column;
}

.pricing-badge {
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  background: rgba(74, 103, 214, 0.12);
  color: var(--accent);
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.price-stack strong {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-stack span {
  color: var(--text-muted);
  font-size: 14px;
}

.price-stack-secondary {
  margin-top: 8px;
}

.price-stack-secondary strong {
  font-size: 28px;
}

.pricing-value-hint {
  display: inline-flex;
  align-items: center;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.pricing-copy {
  margin-top: 18px;
}

.pricing-copy strong {
  color: var(--text);
}

.footnote-mark {
  margin-left: 2px;
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
}

.pricing-inline-cta {
  margin-top: auto;
  padding-top: 18px;
}

.pricing-trial-button {
  position: relative;
}

.pricing-trial-star {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  color: var(--purple);
}

.pricing-trial-note {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.4;
}

.pricing-note {
  margin-top: 16px;
  color: var(--text-muted);
}

.pricing-footnotes {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 9.5px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  opacity: 0.82;
}

.pricing-footnotes p {
  margin: 0;
}

.pricing-footnotes p + p {
  margin-top: 6px;
}

.page-hero {
  padding: 34px;
}

.page-hero h1 {
  max-width: 13ch;
}

.privacy-summary-card,
.cta-panel {
  padding: 28px;
  border-radius: 30px;
}

.privacy-summary-card strong,
.cta-panel h2 {
  display: block;
}

.privacy-summary-card strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.support-mail-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.policy-stack,
.faq-stack,
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(74, 103, 214, 0.1);
  color: var(--accent);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-item a {
  color: var(--accent);
  font-weight: 700;
}

body[data-theme="dark"] .faq-item p {
  border-top-color: rgba(148, 163, 184, 0.14);
}

.legal-fine-print {
  gap: 22px;
}

.legal-fine-print-header h2 {
  max-width: 14ch;
}

.legal-fine-print-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-fine-print-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
}

.legal-fine-print-card h3 {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-fine-print-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.62;
  color: var(--text-muted);
}

.legal-fine-print-card p + p {
  margin-top: 10px;
}

.legal-fine-print-card strong {
  color: var(--text);
}

.cta-panel {
  display: grid;
  gap: 18px;
  align-items: center;
}

.cta-panel-inline {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

.cta-panel p {
  margin-top: 12px;
  max-width: 58ch;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.footer span {
  display: block;
}

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

.footer-links a {
  text-decoration: none;
}

body[data-theme="dark"] .nav-link:hover,
body[data-theme="dark"] .nav-link:focus-visible,
body[data-theme="dark"] .nav-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .mode-detail,
  .section-header,
  .cta-panel-inline,
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .mode-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .topbar-menu {
    display: none;
    grid-column: 1 / -1;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .topbar.is-open .topbar-menu {
    display: grid;
  }

  .nav-links,
  .mobile-nav-extra {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-nav-extra {
    display: grid;
  }

  .nav-link {
    justify-content: flex-start;
    min-height: 44px;
  }

  .brand-subtitle {
    display: none;
  }

  .example-showcase-header {
    align-items: start;
    flex-direction: column;
  }

  .hero-device-stage {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-signal-card {
    position: static;
    width: min(100%, 360px);
    margin: 18px auto 0;
  }

  .topbar-cta {
    width: 100%;
  }

  .topbar-actions {
    display: grid;
    gap: 12px;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-shell,
  .site-shell-narrow {
    width: min(100% - 20px, var(--content-width));
    padding-top: 14px;
  }

  .hero,
  .page-hero,
  .mode-detail,
  .section-shell,
  .intro-card,
  .category-card,
  .trust-card,
  .support-topic-card,
  .support-checklist-card,
  .policy-card,
  .policy-detail-card,
  .faq-card,
  .pricing-card,
  .privacy-summary-card,
  .cta-panel {
    padding: 20px;
  }

  .hero h1,
  .page-hero h1,
  .section-header h2,
  .mode-copy h2,
  .cta-panel h2 {
    max-width: none;
  }

  .intro-grid,
  .mode-card-grid,
  .category-grid,
  .trust-grid,
  .pricing-grid,
  .support-topic-grid,
  .support-checklist-grid,
  .policy-grid,
  .legal-fine-print-grid {
    grid-template-columns: 1fr;
  }

  .device-frame {
    width: 100%;
  }

  .device-screen {
    min-height: 560px;
  }

  .iphone-shell {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .hero-device {
    padding-inline: 0;
  }

  .hero-device-stage {
    width: 100%;
  }

  .hero-signal-card {
    width: 100%;
  }

  .nav-links,
  .mobile-nav-extra {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .mode-detail {
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
  }

  .mode-copy p,
  .feature-list {
    font-size: 15px;
    line-height: 1.72;
  }

  .feature-list {
    padding-left: 16px;
  }

  .example-showcase {
    margin-top: 22px;
    padding: 16px;
    border-radius: 22px;
  }

  .example-showcase-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .example-showcase-header strong {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .example-showcase-header span {
    font-size: 14px;
    line-height: 1.6;
  }

  .example-carousel-controls {
    align-self: flex-end;
    gap: 8px;
  }

  .example-carousel-button {
    width: 32px;
    height: 32px;
  }

  .example-carousel-viewport {
    border-radius: 20px;
  }

  .example-card,
  .example-slide {
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .example-card h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  .example-badge {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .example-context,
  .example-note,
  .example-block p,
  .example-note-answer {
    font-size: 14px;
    line-height: 1.6;
  }

  .example-block {
    padding: 12px;
    border-radius: 16px;
  }

  .example-block small {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .example-card-aria .example-note-answer {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .example-carousel-dots {
    gap: 8px;
    margin-top: 14px;
  }

  .example-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .example-carousel-dot.is-active {
    width: 22px;
  }
}

@media (max-width: 420px) {
  .mode-detail,
  .section-shell,
  .page-hero,
  .cta-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .example-showcase {
    padding: 14px;
    border-radius: 20px;
  }

  .example-card,
  .example-slide {
    padding: 14px;
    border-radius: 18px;
  }

  .example-block {
    padding: 11px;
    border-radius: 14px;
  }

  .example-showcase-header span,
  .example-context,
  .example-note,
  .example-block p,
  .example-note-answer {
    font-size: 13.5px;
    line-height: 1.58;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-link,
  .button,
  .menu-toggle,
  .example-carousel-button,
  .example-carousel-dot,
  .hero-signal-pills a {
    transition: none;
  }

  .example-carousel-track {
    transition: none;
  }
}
