/* ============================================
   DeepRead – Marketing Site Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette – matches extension */
  --color-primary: #2f2f2f;
  --color-primary-hover: #444444;
  --color-primary-dark: #1f1f1f;
  --color-navy-dark: #111111;
  --color-navy-mid: #1a1a1a;
  --color-navy-deep: #232323;
  --color-success: #22c55e;
  --color-success-dark: #16a34a;
  --color-text-light: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-text-dark: rgb(55, 53, 47);
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-hover: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.18);
  --color-warning: #ffc107;
  --color-error: #f21e1e;
  --color-popular: #f59e0b;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 30px rgba(160, 160, 160, 0.2);
}

body[data-theme='dark'] {
  --color-navy-dark: #111111;
  --color-navy-mid: #1a1a1a;
  --color-navy-deep: #232323;
  --color-text-light: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-hover: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.18);
}

body[data-theme='light'] {
  --color-navy-dark: #fafafa;
  --color-navy-mid: #f0f0f0;
  --color-navy-deep: #e6e6e6;
  --color-text-light: #1f2937;
  --color-text-muted: rgba(31, 41, 55, 0.72);
  --color-surface: rgba(15, 23, 42, 0.05);
  --color-surface-hover: rgba(15, 23, 42, 0.08);
  --color-border: rgba(15, 23, 42, 0.14);
  --color-border-strong: rgba(15, 23, 42, 0.22);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-light);
  background: var(--color-navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

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

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
}

.navbar-logo img {
  width: 32px;
  height: 32px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: var(--color-text-light);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: #fff !important;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background 0.2s ease, transform 0.2s ease;
}

.navbar-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   1. HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 50%, var(--color-navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 160, 160, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-text .hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  padding: 16px 32px;
  font-size: var(--font-size-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(160, 160, 160, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(160, 160, 160, 0.4);
  color: #fff;
}

.btn-secondary {
  padding: 16px 32px;
  font-size: var(--font-size-lg);
  background: var(--color-surface);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-hover);
  color: var(--color-text-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
}

/* Trust badges */
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.badge svg { flex-shrink: 0; }

.badge-stars {
  color: var(--color-warning);
  letter-spacing: 1px;
}

/* Hero mockup */
.hero-mockup {
  position: relative;
}

.mockup-window {
  background: #1e1e2e;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--color-border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 320px;
}

.mockup-page {
  padding: 24px;
}

.mockup-page-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 10px;
}

.mockup-page-line:nth-child(2) { width: 85%; }
.mockup-page-line:nth-child(3) { width: 92%; }
.mockup-page-line:nth-child(4) { width: 70%; }
.mockup-page-line:nth-child(5) { width: 88%; }
.mockup-page-line:nth-child(6) { width: 60%; margin-bottom: 20px; }

.mockup-highlight {
  background: rgba(160, 160, 160, 0.2);
  border-left: 3px solid var(--color-primary);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 12px;
}

.mockup-highlight-line {
  height: 8px;
  background: rgba(160, 160, 160, 0.35);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mockup-highlight-line:last-child { width: 65%; margin-bottom: 0; }

.mockup-sidebar {
  background: rgba(0, 0, 0, 0.2);
  border-left: 1px solid var(--color-border);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.mockup-sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 12px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.mockup-chat-msg {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mockup-chat-user {
  background: rgba(160, 160, 160, 0.12);
  color: var(--color-text-light);
  align-self: flex-end;
}

.mockup-chat-ai {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
}

.mockup-chat-input {
  margin-top: auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ============================================
   2. FEATURES SECTION
   ============================================ */
#features {
  background: var(--color-navy-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.feature-mode-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.feature-mode-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 24px;
}

.feature-mode-icon.research { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.feature-mode-icon.legal { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.feature-mode-icon.student { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.feature-mode-icon.engineer { background: rgba(160, 160, 160, 0.15); color: var(--color-primary); }

.feature-mode-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-mode-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Additional features grid */
.features-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.feature-extra-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.feature-extra-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(160, 160, 160, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.feature-extra-card h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-extra-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Model badges */
.models-showcase {
  text-align: center;
  margin-bottom: 80px;
}

.models-showcase h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 24px;
}

.model-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.model-badge {
  padding: 8px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.model-badge.highlight {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Theme showcase */
.theme-showcase {
  text-align: center;
}

.theme-showcase h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 24px;
}

.theme-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.theme-card {
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.theme-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.theme-card:hover {
  transform: translateY(-2px);
}

.theme-card.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(160, 160, 160, 0.25), 0 10px 28px rgba(0, 0, 0, 0.25);
}

.theme-card-preview {
  height: 120px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.theme-card-preview.light {
  background: #ffffff;
}

.theme-card-preview.dark {
  background: #191919;
}

.theme-line {
  height: 6px;
  border-radius: 3px;
}

.theme-card-preview.light .theme-line { background: rgba(55, 53, 47, 0.12); }
.theme-card-preview.dark .theme-line { background: rgba(255, 255, 255, 0.08); }

.theme-line:nth-child(2) { width: 75%; }
.theme-line:nth-child(3) { width: 60%; }

.theme-card-label {
  padding: 10px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  background: var(--color-surface);
}

/* ============================================
   3. HOW IT WORKS
   ============================================ */
#how-it-works {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.step h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Connector between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.3;
}

/* Workflow demos */
.workflow-showcase {
  margin-top: 12px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-demo-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  min-height: 390px;
}

.workflow-demo-header {
  margin-bottom: 20px;
}

.workflow-demo-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.15;
}

.workflow-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #ebfaff;
  background: rgba(160, 160, 160, 0.24);
  border: 1px solid rgba(160, 160, 160, 0.75);
  box-shadow: 0 0 0 1px rgba(160, 160, 160, 0.12) inset;
}

.workflow-pill.reply {
  color: #ebfff2;
  background: rgba(34, 197, 94, 0.24);
  border-color: rgba(34, 197, 94, 0.7);
}

.workflow-lane {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 260px;
}

.reply-visualization {
  min-height: 260px;
}

.reply-visual-window {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(18, 25, 43, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(5, 10, 20, 0.35), 0 0 36px rgba(160, 160, 160, 0.08);
}

.reply-visual-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reply-visual-app {
  margin-left: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.reply-visual-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 290px;
}

.reply-thread-panel,
.reply-ai-panel {
  padding: 22px;
}

.reply-thread-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(160, 160, 160, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.reply-thread-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.thread-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(160, 160, 160, 0.95), rgba(200, 200, 200, 0.7));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(160, 160, 160, 0.25);
}

.reply-thread-header strong,
.reply-thread-header span {
  display: block;
}

.reply-thread-header strong {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.95);
}

.reply-thread-header span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.reply-thread-bubble {
  max-width: 92%;
  padding: 16px 18px;
  border-radius: 18px 18px 18px 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reply-thread-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.reply-thread-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(220, 220, 220, 0.95);
  background: rgba(160, 160, 160, 0.12);
  border: 1px solid rgba(160, 160, 160, 0.24);
}

.reply-ai-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.03);
}

.reply-ai-header,
.reply-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reply-ai-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(220, 220, 220, 0.98);
}

.reply-ai-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(187, 247, 208, 0.95);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
}

.reply-tone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reply-tone-chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.reply-tone-chip.active {
  background: rgba(160, 160, 160, 0.18);
  border-color: rgba(160, 160, 160, 0.38);
  color: rgba(225, 248, 255, 0.96);
  box-shadow: 0 0 20px rgba(160, 160, 160, 0.12);
}

.reply-suggestion-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reply-suggestion-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.reply-suggestion-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
  line-height: 1.75;
}

.reply-compose-box {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11, 18, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reply-compose-box.has-text .reply-compose-line {
  display: none;
}

.reply-compose-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(160, 160, 160, 0.95), rgba(160, 160, 160, 0.28));
  margin-bottom: 10px;
  animation: summary-type 2.8s ease-in-out infinite;
}

.reply-compose-line.short {
  width: 68%;
  margin-bottom: 0;
  animation-name: summary-type-short;
}

.reply-compose-preview {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.7;
}

.reply-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.reply-action:hover:not(:disabled) {
  transform: translateY(-1px);
}

.reply-action:disabled {
  cursor: wait;
  opacity: 0.7;
}

.reply-action.primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(21, 128, 61, 0.92));
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
}

.reply-action.ghost {
  color: rgba(255, 255, 255, 0.72);
}

.reply-demo-status {
  min-height: 1.4em;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.reply-demo-status.error {
  color: #fda4af;
}

.reply-demo-status.success {
  color: #86efac;
}

/* Simplified reply workflow layout */
.reply-visualization {
  display: flex;
  align-items: stretch;
}

.reply-lane {
  width: 100%;
  min-height: 260px;
}

.reply-context,
.reply-output {
  min-height: 0;
}

.reply-context {
  background: rgba(99, 102, 241, 0.16);
  border-color: rgba(99, 102, 241, 0.5);
}

.reply-output {
  background: rgba(34, 197, 94, 0.13);
  border-color: rgba(34, 197, 94, 0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reply-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.reply-context-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
}

.reply-context-chip.active {
  background: rgba(160, 160, 160, 0.2);
  border-color: rgba(160, 160, 160, 0.45);
  color: rgba(225, 248, 255, 0.98);
}

.workflow-node {
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.workflow-node.source {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.55);
}

.workflow-node.process {
  background: rgba(160, 160, 160, 0.18);
  border-color: rgba(160, 160, 160, 0.55);
}

.workflow-node.output {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.55);
  min-width: 0;
}

.node-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
}

.node-detail {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.workflow-arrow {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, rgba(220, 220, 220, 0.95), rgba(160, 160, 160, 0.25));
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(220, 220, 220, 0.24);
}

.workflow-arrow::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -5px;
  border-left: 10px solid #5fcfff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.workflow-dot {
  position: absolute;
  left: 0;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #dff9ff 0%, #93e7ff 55%, #39bff3 100%);
  box-shadow: 0 0 18px rgba(220, 220, 220, 1);
}

.format-chips,
.tone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.format-chips span,
.tone-tags span {
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.typing-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  margin-bottom: 12px;
  width: 100%;
}

.typing-line.short {
  width: 68%;
  margin-bottom: 0;
}

.reply-bubble {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ============================================
   4. USE CASES
   ============================================ */
#use-cases {
  background: var(--color-navy-dark);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.persona-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.persona-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.persona-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 22px;
}

.persona-icon.students { background: rgba(34, 197, 94, 0.15); }
.persona-icon.researchers { background: rgba(99, 102, 241, 0.15); }
.persona-icon.lawyers { background: rgba(245, 158, 11, 0.15); }
.persona-icon.engineers { background: rgba(160, 160, 160, 0.15); }

.persona-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.persona-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.persona-card li {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.persona-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* ============================================
   5. SOCIAL PROOF
   ============================================ */
#social-proof {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 100%);
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-stars {
  color: var(--color-warning);
  font-size: var(--font-size-lg);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-light);
}

.review-role {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ============================================
   6. PRICING
   ============================================ */
#pricing {
  background: var(--color-navy-dark);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.billing-label {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.billing-label.active {
  color: var(--color-text-light);
}

.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.toggle-track.yearly {
  background: rgba(160, 160, 160, 0.2);
  border-color: var(--color-primary);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-track.yearly .toggle-knob {
  transform: translateX(24px);
}

.save-badge {
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--color-primary);
  background: rgba(160, 160, 160, 0.06);
  box-shadow: var(--shadow-glow);
}

.popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-amount {
  margin-bottom: 8px;
}

.pricing-amount .price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1;
}

.pricing-amount .period {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pricing-yearly-note {
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  margin-bottom: 20px;
  min-height: 18px;
}

.pricing-credits {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-success);
}

.pricing-features li.disabled {
  opacity: 0.45;
}

.pricing-features li.disabled::before {
  content: '✗';
  color: var(--color-text-muted);
}

.pricing-card .btn {
  width: 100%;
}

/* FAQ */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
}

.faq-section h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-light);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  line-height: 1;
}

.faq-answer {
  padding: 0 0;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   7. SECURITY
   ============================================ */
#security {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.security-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.security-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-success);
}

.security-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 8px;
}

.security-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.security-statement {
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.security-statement a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   8. FOOTER
   ============================================ */
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
}

.footer-logo img {
  width: 28px;
  height: 28px;
}

.footer-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  width: fit-content;
}

.footer-col h4 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-text-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.footer-social a {
  color: var(--color-text-muted);
}

.footer-social a:hover {
  color: var(--color-primary);
}

/* ============================================
   CTA SECTION (before footer)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-deep) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: var(--font-size-4xl); }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { border-left: none; border-top: 1px solid var(--color-border); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-showcase { grid-template-columns: 1fr; }
  .workflow-demo-card { min-height: auto; }
  .workflow-demo-header h3 { font-size: 1.65rem; }
  .workflow-lane { flex-direction: column; align-items: stretch; min-height: auto; }
  .workflow-node { min-height: 0; }
  .workflow-arrow { width: 2px; height: 24px; margin: 0 auto; }
  .workflow-arrow::after {
    right: -3px;
    top: 20px;
    border-top: 7px solid var(--color-primary);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
  }
  .workflow-dot {
    left: -7px;
    top: 0;
  }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
  }

  .navbar-links { display: none; }
  .navbar-toggle { display: block; }

  /* Mobile nav */
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .features-extra { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .workflow-demo-card { padding: 22px; }
  .workflow-demo-header h3 { font-size: 1.45rem; }
  .reply-action-row { flex-wrap: wrap; }

  .personas-grid { grid-template-columns: 1fr; }
  .social-stats { flex-direction: column; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; overflow-x: auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .theme-cards { flex-direction: column; align-items: center; }

  .model-badges { gap: 8px; }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
  }

  .container { padding: 0 16px; }
  .hero-text h1 { font-size: var(--font-size-4xl); }
  .workflow-demo-card { padding: 18px; }
  .workflow-demo-header h3 { font-size: 1.25rem; }
  .workflow-pill { font-size: 0.78rem; padding: 7px 12px; }
  .node-title { font-size: 1rem; }
  .node-detail, .format-chips span, .tone-tags span { font-size: 0.85rem; }
  .reply-context-chip { font-size: 0.8rem; }
  .reply-action { width: 100%; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6ba3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Privacy / Terms pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.legal-page h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
