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

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --c-bg:          #0d0820;
  --c-surface:     #160d2e;
  --c-card:        #1c1438;
  --c-card-alt:    #170f32;
  --c-text:        #f0ede8;
  --c-text-muted:  #b8aed0;
  --c-text-dim:    #7a6d96;
  --c-accent:      #4ecdc4;
  --c-accent-dim:  rgba(78, 205, 196, 0.12);
  --c-border:      rgba(255, 255, 255, 0.08);
  --c-border-lit:  rgba(255, 255, 255, 0.15);

  --c-aurora-teal:   #7a1a5c;
  --c-aurora-indigo: #5c1a6b;
  --c-aurora-violet: #3d1562;

  --f-sans:  'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --f-serif: 'Times New Roman', Times, serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--f-sans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-text);
  background: linear-gradient(180deg, #2d0d42 0%, #130828 30%, #0d0820 100%) fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────── */
h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f0ece4;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ede8e0;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #e0dcd4;
}

p { color: var(--c-text); }

.serif {
  font-family: var(--f-serif);
  font-style: italic;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
}

.section-eyebrow,
.hero-brand-line {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 8, 32, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f0ece4;
  line-height: 1;
}

.nav-logo__tagline {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ── App Store Badge ─────────────────────────────────────── */
.badge-appstore {
  display: inline-block;
  flex-shrink: 0;
  transition: opacity 0.18s, transform 0.18s var(--ease-out);
}

.badge-appstore:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.badge-appstore img {
  display: block;
  height: 44px;
  width: auto;
}

.badge-appstore--sm img { height: 34px; }
.badge-appstore--lg img { height: 56px; }

/* ── Aurora Effects ──────────────────────────────────────── */
.aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.aurora-blob--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(ellipse, rgba(140, 30, 110, 0.60) 0%, transparent 70%);
  top: -10%;
  left: 0%;
  animation: aurora-1 22s ease-in-out infinite;
}

.aurora-blob--2 {
  width: clamp(260px, 44vw, 520px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(ellipse, rgba(90, 25, 150, 0.55) 0%, transparent 70%);
  top: 15%;
  right: -8%;
  animation: aurora-2 28s ease-in-out infinite;
}

.aurora-blob--3 {
  width: clamp(220px, 38vw, 440px);
  height: clamp(220px, 38vw, 440px);
  background: radial-gradient(ellipse, rgba(110, 20, 140, 0.48) 0%, transparent 70%);
  bottom: 0%;
  left: 25%;
  animation: aurora-3 19s ease-in-out infinite;
}

@keyframes aurora-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -50px) scale(1.08); }
  66%  { transform: translate(-25px, 30px) scale(0.94); }
}

@keyframes aurora-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-50px, 40px) scale(1.1); }
  70%  { transform: translate(30px, -25px) scale(0.92); }
}

@keyframes aurora-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(25px, -40px) scale(1.06); }
  60%  { transform: translate(-35px, 15px) scale(0.96); }
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  padding-block: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h1 span {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--c-text);
  max-width: 480px;
  line-height: 1.65;
}

/* ── Phone Mockup ────────────────────────────────────────── */
.device-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.iphone-frame {
  position: relative;
  width: 290px;
  flex-shrink: 0;
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 60px rgba(62, 18, 104, 0.2));
}

.iphone-bezel {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.iphone-screen-clip {
  position: absolute;
  top: 1.8%;
  left: 3.9%;
  width: 92.2%;
  bottom: 2.3%;
  border-radius: 12.5%;
  overflow: hidden;
  z-index: 1;
}

.iphone-screen-clip img {
  display: block;
  width: 100%;
}

.phone {
  position: relative;
  width: 260px;
  background: linear-gradient(160deg, #2a1050, #0d0820);
  border-radius: 50px;
  padding: 14px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.14),
    0 0 0 7px rgba(255, 255, 255, 0.04),
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(140, 30, 110, 0.35);
  flex-shrink: 0;
}

.phone::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-screen {
  background: #0f0820;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.app-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 52px 14px 14px;
  gap: 10px;
  font-size: 10px;
}

.app-header {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.app-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(240, 236, 228, 0.9);
  letter-spacing: -0.02em;
}

.app-date {
  font-size: 9px;
  color: rgba(106, 106, 132, 0.9);
  letter-spacing: 0.01em;
}

.app-pills {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 20px;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pill--sleep {
  background: rgba(90, 25, 150, 0.7);
  color: rgba(200, 170, 255, 0.95);
  border: 1px solid rgba(150, 80, 220, 0.3);
}

.pill--ready {
  background: rgba(20, 90, 85, 0.7);
  color: rgba(78, 205, 196, 0.95);
  border: 1px solid rgba(78, 205, 196, 0.25);
}

.today-card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 8px;
}

.today-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f4d68, #2c1062, #0d0930);
}

.today-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse at 40% 40%, rgba(78, 201, 218, 0.18) 0%, transparent 65%);
  animation: card-glow 5s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%       { transform: translate(8%, -8%) scale(1.15); opacity: 1; }
}

.today-card__label {
  position: relative;
  z-index: 1;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(78, 201, 218, 0.8);
}

.today-card__text {
  position: relative;
  z-index: 1;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(240, 236, 228, 0.95);
}

.app-week {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-week__label {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(106, 106, 132, 0.8);
}

.app-week__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.bar {
  flex: 1;
  border-radius: 2px;
  opacity: 0.65;
}

.bar--1 { height: 40%; background: #ff6b8a; }
.bar--2 { height: 70%; background: #4ecdc4; }
.bar--3 { height: 55%; background: #f5a623; }
.bar--4 { height: 90%; background: #4ecdc4; opacity: 0.9; }
.bar--5 { height: 65%; background: #f5a623; }
.bar--6 { height: 30%; background: #8870c0; }
.bar--7 { height: 50%; background: #4ecdc4; }

/* ── Problem Section ─────────────────────────────────────── */
#problem {
  border-top: 1px solid var(--c-border);
}

.problem-inner {
  max-width: 680px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}

.problem-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--c-text-muted);
  line-height: 1.6;
}

.problem-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 0.6em;
  opacity: 0.7;
}

.problem-quote {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid rgba(78, 201, 218, 0.35);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(228, 223, 215, 0.7);
  line-height: 1.55;
}

/* ── How It Works ────────────────────────────────────────── */
#how-it-works {
  border-top: 1px solid var(--c-border);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border-lit);
  color: var(--c-accent);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.step-content { display: flex; flex-direction: column; gap: 0.4rem; }

.step-content p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ── Daily Briefing ──────────────────────────────────────── */
#briefing {
  border-top: 1px solid var(--c-border);
  overflow: hidden;
}

.briefing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.briefing-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.briefing-text p:not(.section-eyebrow) {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 440px;
}

.sample-prescription {
  margin-top: 0.5rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(145deg, rgba(15, 77, 104, 0.22), rgba(36, 16, 94, 0.22));
  border: 1px solid rgba(78, 201, 218, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.sample-prescription::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 30% 20%, rgba(78, 201, 218, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.sample-prescription__label {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(78, 201, 218, 0.85);
}

.sample-prescription__quote {
  position: relative;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  color: rgba(240, 236, 228, 0.95);
}

.sample-prescription__meta {
  position: relative;
  font-size: 0.75rem;
  color: var(--c-text-dim);
  letter-spacing: 0.02em;
}

/* ── Plus & Personalities ────────────────────────────────── */
#plus {
  border-top: 1px solid var(--c-border);
}

.plus-header {
  max-width: 680px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-border);
}

.benefit {
  background: var(--c-surface);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.benefit__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Personality comparison */
.personality-compare {
  margin-top: 4rem;
}

.compare-eyebrow {
  margin-bottom: 2rem;
}


.compare-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--c-text);
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.voice-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.voice-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.voice-card--warm {
  background: linear-gradient(145deg, #0f1528, #0b0d20);
  border: 1px solid rgba(120, 80, 220, 0.2);
}

.voice-card--direct {
  background: linear-gradient(145deg, #0f1b18, #090e11);
  border: 1px solid rgba(62, 200, 120, 0.18);
}

.voice-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.voice-tag--warm {
  background: rgba(120, 80, 220, 0.15);
  color: rgba(170, 130, 255, 0.9);
  border: 1px solid rgba(120, 80, 220, 0.25);
}

.voice-tag--direct {
  background: rgba(62, 200, 120, 0.1);
  color: rgba(62, 200, 120, 0.9);
  border: 1px solid rgba(62, 200, 120, 0.2);
}

.voice-card__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  color: rgba(228, 223, 215, 0.9);
}

.voice-card__push {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.push-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.push-dot--easy    { background: rgba(120, 80, 220, 0.7); }
.push-dot--assertive { background: rgba(78, 201, 218, 0.7); }

/* Personalities list */
.personalities-list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  border: none;
  overflow: visible;
}

.personality-row {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 0 1 calc(33.333% - 0.75rem);
  min-width: 200px;
}

.personality-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.personality-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}

.personality-style {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

.push-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
}

.push-badge--easy {
  background: rgba(120, 80, 220, 0.12);
  color: rgba(170, 130, 255, 0.85);
  border: 1px solid rgba(120, 80, 220, 0.2);
}

.push-badge--moderate {
  background: rgba(78, 201, 218, 0.08);
  color: rgba(78, 201, 218, 0.75);
  border: 1px solid rgba(78, 201, 218, 0.15);
}

.push-badge--assertive {
  background: rgba(62, 200, 120, 0.08);
  color: rgba(62, 200, 120, 0.8);
  border: 1px solid rgba(62, 200, 120, 0.15);
}

.push-badge--balanced {
  background: rgba(200, 180, 100, 0.08);
  color: rgba(200, 180, 100, 0.8);
  border: 1px solid rgba(200, 180, 100, 0.15);
}

.plus-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.plus-cta-note {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ── Privacy Trust ───────────────────────────────────────── */
#privacy-trust {
  border-top: 1px solid var(--c-border);
}

.trust-inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-points li {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.trust-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-text-dim);
}

.trust-link {
  font-size: 0.9rem;
  color: var(--c-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.trust-link:hover { opacity: 1; }

/* ── Requirements ────────────────────────────────────────── */
#requirements {
  border-top: 1px solid var(--c-border);
}

.req-inner {
  max-width: 520px;
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

.req-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--c-card);
  border: 1px solid var(--c-border-lit);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.req-icon svg { width: 16px; height: 16px; }

.req-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

/* ── Final CTA ───────────────────────────────────────────── */
#cta-final {
  border-top: 1px solid var(--c-border);
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--c-text);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--c-border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--c-text); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* ── Responsive — Tablet / Desktop ──────────────────────── */
@media (min-width: 680px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .voice-cards {
    grid-template-columns: 1fr 1fr;
  }

  .personalities-list {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-block: 5rem;
  }

  .briefing-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .phone {
    width: 290px;
  }
}

@media (min-width: 1100px) {
  .phone {
    width: 310px;
  }

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

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob,
  .today-card-glow {
    animation: none;
  }
}
