/* ============================================
   InsuranceGLP1.com — Design Tokens & Styles
   ============================================ */

/* --- Type Scale --- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);

  /* Spacing — 4px grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
}

/* --- Light Mode (default) --- */
:root,
[data-theme='light'] {
  --color-bg: #f4f7f6;
  --color-surface: #ffffff;
  --color-surface-2: #f8fafa;
  --color-surface-offset: #eef2f1;
  --color-border: #d1dbd8;
  --color-divider: #dce5e3;
  --color-text: #1a2e2a;
  --color-text-muted: #5f7470;
  --color-text-faint: #9aada8;
  --color-text-inverse: #f4f7f6;
  --color-primary: #0d9488;
  --color-primary-hover: #0a7a70;
  --color-primary-active: #086058;
  --color-primary-highlight: #ccece9;
  --color-success: #16a34a;
  --color-success-bg: #dcfce7;
  --color-success-border: #bbf7d0;
  --color-warning: #ca8a04;
  --color-warning-bg: #fef9c3;
  --color-warning-border: #fde68a;
  --color-error: #dc2626;
  --color-error-bg: #fee2e2;
  --color-error-border: #fecaca;
  --color-blue: #2563eb;
  --color-blue-bg: #dbeafe;
  --color-blue-border: #bfdbfe;
  --shadow-sm: 0 1px 2px rgba(13, 40, 36, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 40, 36, 0.08);
  --shadow-lg: 0 12px 32px rgba(13, 40, 36, 0.12);
  --shadow-card: 0 1px 3px rgba(13, 40, 36, 0.06), 0 1px 2px rgba(13, 40, 36, 0.04);
}

/* --- Dark Mode --- */
[data-theme='dark'] {
  --color-bg: #0f1715;
  --color-surface: #182420;
  --color-surface-2: #1d2b27;
  --color-surface-offset: #162220;
  --color-border: #2d3f3a;
  --color-divider: #243530;
  --color-text: #c8d8d4;
  --color-text-muted: #7a948e;
  --color-text-faint: #4d635d;
  --color-text-inverse: #0f1715;
  --color-primary: #2dd4bf;
  --color-primary-hover: #5eead4;
  --color-primary-active: #99f6e4;
  --color-primary-highlight: #1a3a35;
  --color-success: #4ade80;
  --color-success-bg: #14532d;
  --color-success-border: #166534;
  --color-warning: #facc15;
  --color-warning-bg: #422006;
  --color-warning-border: #713f12;
  --color-error: #f87171;
  --color-error-bg: #450a0a;
  --color-error-border: #7f1d1d;
  --color-blue: #60a5fa;
  --color-blue-bg: #1e3a5f;
  --color-blue-border: #1e40af;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f1715;
    --color-surface: #182420;
    --color-surface-2: #1d2b27;
    --color-surface-offset: #162220;
    --color-border: #2d3f3a;
    --color-divider: #243530;
    --color-text: #c8d8d4;
    --color-text-muted: #7a948e;
    --color-text-faint: #4d635d;
    --color-text-inverse: #0f1715;
    --color-primary: #2dd4bf;
    --color-primary-hover: #5eead4;
    --color-primary-active: #99f6e4;
    --color-primary-highlight: #1a3a35;
    --color-success: #4ade80;
    --color-success-bg: #14532d;
    --color-success-border: #166534;
    --color-warning: #facc15;
    --color-warning-bg: #422006;
    --color-warning-border: #713f12;
    --color-error: #f87171;
    --color-error-bg: #450a0a;
    --color-error-border: #7f1d1d;
    --color-blue: #60a5fa;
    --color-blue-bg: #1e3a5f;
    --color-blue-border: #1e40af;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  }
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider);
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
}

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

.logo-link {
  display: flex;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-link:hover {
  opacity: 0.75;
}

.logo-svg {
  width: 290px;
  height: 56px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-primary);
}

[data-theme-toggle] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}

[data-theme-toggle]:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0 clamp(var(--space-8), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary-highlight) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  position: relative;
}

.hero-headline .highlight {
  color: var(--color-primary);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-4);
  position: relative;
}

.hero-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  position: relative;
  margin-bottom: var(--space-6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  position: relative;
}

.hero-cta:hover {
  background: var(--color-primary-hover);
}

.hero-cta svg {
  display: inline;
  width: 16px;
  height: 16px;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   Wizard Section
   ============================================ */

.wizard-section {
  padding: clamp(var(--space-8), 6vw, var(--space-16)) 0;
}

/* Progress Bar */
.progress-bar {
  margin-bottom: var(--space-8);
}

.progress-track {
  height: 4px;
  background: var(--color-divider);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}

.progress-step {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: color 300ms ease;
}

.progress-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-divider);
  font-weight: 600;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.progress-step.active {
  color: var(--color-primary);
}

.progress-step.active span {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.progress-step.completed span {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.progress-step.completed {
  color: var(--color-text-muted);
}

/* Steps */
.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(16px);
}

.wizard-step.active {
  display: block;
  animation: stepIn 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  text-align: center;
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: var(--space-4);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .cards-3,
  .cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }
}

/* Option Cards */
.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  position: relative;
  min-height: 44px;
  transition: all var(--transition-interactive);
}

.option-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.option-card:active {
  transform: translateY(0);
}

.option-card.selected {
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.card-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.card-sublabel {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Medication badges */
.med-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.badge-diabetes {
  background: var(--color-blue-bg);
  color: var(--color-blue);
  border: 1px solid var(--color-blue-border);
}

.badge-weight {
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
}

/* Provider dropdown */
.provider-select-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.provider-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235f7470' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.provider-select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.provider-btn {
  display: block;
  margin: var(--space-4) auto 0;
}

/* State selector grid */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--space-2);
  max-width: 600px;
  margin: 0 auto;
}

.state-btn {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-interactive);
}

.state-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
}

/* ============================================
   Results Section
   ============================================ */

.results-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: stepIn 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.results-header {
  padding: var(--space-6) var(--space-6) var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.results-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results-icon svg {
  width: 28px;
  height: 28px;
}

.results-icon.green {
  background: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid var(--color-success-border);
}
.results-icon.yellow {
  background: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning-border);
}
.results-icon.red {
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid var(--color-error-border);
}
.results-icon.blue {
  background: var(--color-blue-bg);
  color: var(--color-blue);
  border: 1px solid var(--color-blue-border);
}

.results-status {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.results-status.green { color: var(--color-success); }
.results-status.yellow { color: var(--color-warning); }
.results-status.red { color: var(--color-error); }
.results-status.blue { color: var(--color-blue); }

.results-detail {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.results-body {
  padding: 0 var(--space-6) var(--space-6);
}

.results-divider {
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-4) 0;
}

.results-section-title {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.results-list {
  list-style: none;
  padding: 0;
}

.results-list li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.results-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 8px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}

@media (max-width: 540px) {
  .cost-grid {
    grid-template-columns: 1fr;
  }
}

.cost-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
}

.cost-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.cost-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.savings-box {
  background: var(--color-primary-highlight);
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-4);
}

.savings-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

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

.savings-text a {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  transition: all var(--transition-interactive);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  transition: all var(--transition-interactive);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  justify-content: center;
}

/* ============================================
   Email Section
   ============================================ */

.email-section {
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
}

.email-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.email-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.email-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.email-form {
  display: flex;
  gap: var(--space-3);
  max-width: 440px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .email-form {
    flex-direction: column;
  }
}

.email-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
}

.email-input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.email-input::placeholder {
  color: var(--color-text-faint);
}

.email-btn {
  white-space: nowrap;
}

.email-success {
  font-size: var(--text-sm);
  color: var(--color-success);
  font-weight: 500;
  margin-top: var(--space-4);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-8);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-question {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-4) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: var(--space-3);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 0 var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  animation: fadeIn 200ms ease;
}

.faq-answer ul {
  margin-top: var(--space-2);
  padding-left: var(--space-5);
}

.faq-answer li {
  margin-bottom: var(--space-2);
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  padding: var(--space-10) 0 var(--space-8);
  border-top: 1px solid var(--color-divider);
  text-align: center;
}

.footer-credit {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

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

.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   Utilities
   ============================================ */

@media (max-width: 640px) {
  .progress-step {
    font-size: 0;
  }
  .progress-step span {
    font-size: 0.7rem;
  }
  .results-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5);
  }
  .results-body {
    padding: 0 var(--space-5) var(--space-5);
  }
  .email-card {
    padding: var(--space-5);
  }
}
