/* ═══════════════════════════════════════════════════════
   Nuance — Landing Page
   Brand: Bloom Coral Pulse (dark-first)
   ═══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/instrument-serif-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/instrument-serif-italic.woff2') format('woff2');
}

:root {
  /* Surfaces */
  --background: #12101A;
  --surface: #1C1926;
  --surface-elevated: #262335;
  --surface-pressed: #302D3D;

  /* Borders */
  --border: #302D3D;
  --border-strong: #4A4660;

  /* Text */
  --text-primary: #EAE4EF;
  --text-secondary: #9890A8;
  --text-muted: #9890A8;
  --text-inverse: #12101A;

  /* Accent — coral / lavender / plum */
  --accent: #E08868;
  --accent-pressed: #B2706D;
  --accent-secondary: #B890C0;
  --accent-tertiary: #6B5A90;
  --accent-deep: #3A2060;

  /* Feedback */
  --feedback-success: #80B888;
  --feedback-error: #D87070;
  --feedback-warning: #DFA044;

  /* Categories */
  --category-noun: #C890B8;
  --category-verb: #7AB8A8;
  --category-adjective: #C8A060;
  --category-adverb: #7088C8;

  /* Type */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", "Fira Code", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(224, 136, 104, 0.35);
  color: var(--text-primary);
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container, .container-narrow { padding: 0 24px; }
  body { font-size: 16px; }
}

/* ── Typography ── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text-primary);
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.025em;
  line-height: 1;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
}

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
  text-wrap: pretty;
  max-width: 56ch;
}

p { text-wrap: pretty; }

em.in-coral {
  font-style: italic;
  color: var(--accent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-pressed));
  color: var(--text-inverse);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 18px 40px -16px rgba(224,136,104,0.55);
}
.btn-primary:hover { filter: brightness(1.06); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--text-secondary); }

/* ── Store badges (official) ── */
.store-badge { display: inline-block; transition: transform 0.15s ease, opacity 0.15s ease; }
.store-badge:hover { opacity: 0.88; }
.store-badge:active { transform: scale(0.97); }
.store-badge img { display: block; height: 48px; width: auto; }
.store-badge-hero img { height: 52px; }
@media (max-width: 600px) { .store-badge img { height: 44px; } }

/* ── Store buttons (legacy) ── */
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.store-btn:hover { background: var(--surface-elevated); border-color: var(--text-secondary); }

.store-btn-icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn-text small { font-size: 11px; color: var(--text-secondary); letter-spacing: 0.02em; }
.store-btn-text strong { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(18, 16, 26, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}
.nav-cta { font-size: 14px; padding: 10px 18px; }

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-logo { font-size: 22px; }
}

/* ── Hero ── */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background: radial-gradient(ellipse at center,
    rgba(224, 136, 104, 0.18) 0%,
    rgba(184, 144, 192, 0.10) 35%,
    rgba(58, 32, 96, 0.05) 60%,
    transparent 75%);
  pointer-events: none;
  filter: blur(60px);
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero-text { max-width: 600px; }
.hero-text h1 { margin: 20px 0 24px; }
.hero-text .lede { margin-bottom: 36px; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta-dot { color: var(--accent); }

/* ── Phone Frame ── */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 320px;
  aspect-ratio: 1320 / 2868;
  background: #000;
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1.5px rgba(255, 255, 255, 0.06),
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    0 30px 60px -20px rgba(224, 136, 104, 0.18);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: var(--background);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-tilt {
  transform: rotate(-3deg);
}

@media (max-width: 960px) {
  .phone { width: 280px; }
  .phone-tilt { transform: rotate(-2deg); }
}

/* ── Stakes section ── */
.stakes {
  text-align: center;
}

.stakes h2 em {
  color: var(--accent);
  font-style: italic;
}

.stakes-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

@media (max-width: 800px) {
  .stakes-list { grid-template-columns: 1fr; }
}

.stake-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.stake-card-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.stake-card-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.stake-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Value Prop / Guide ── */
.value {
  background: linear-gradient(180deg, transparent, rgba(107, 90, 144, 0.06), transparent);
}

.value-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.value h2 {
  margin: 24px 0 28px;
}

.value p {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.55;
  color: var(--text-secondary);
}
.value p + p { margin-top: 22px; }
.value strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Magic Moment / Etymology ── */
.magic {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.magic-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 144, 192, 0.10) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.magic-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

@media (max-width: 960px) {
  .magic-grid { grid-template-columns: 1fr; gap: 50px; }
}

.magic-intro h2 { margin: 24px 0 24px; }
.magic-intro .lede { margin-bottom: 0; }

.magic-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.magic-card-word {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.magic-card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.magic-card-meta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--category-adjective);
}

.magic-card-meaning {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.magic-card-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.magic-card-origin {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.magic-card-origin em {
  color: var(--text-primary);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05em;
}

.magic-card-quote {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.55;
  border-left: 2px solid var(--accent);
}

/* ── Plan ── */
.plan {
  text-align: center;
}

.plan h2 { margin: 24px auto 18px; max-width: 700px; }
.plan .lede { margin: 0 auto 70px; }

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  position: relative;
}

@media (max-width: 800px) {
  .plan-steps { grid-template-columns: 1fr; }
}

.plan-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.plan-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.plan-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.plan-step h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.plan-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.plan-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224, 136, 104, 0.18), rgba(184, 144, 192, 0.12));
  border: 1px solid rgba(224, 136, 104, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
}

/* ── Features ── */
.features { padding-bottom: 80px; }

.features-header {
  text-align: center;
  margin-bottom: 80px;
}
.features-header h2 { margin: 24px auto 18px; max-width: 720px; }
.features-header .lede { margin: 0 auto; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

@media (max-width: 960px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .feature-row.reverse { direction: ltr; }
  .feature-row { margin-bottom: 80px; }
}

.feature-text h3 { font-size: clamp(28px, 3vw, 40px); margin: 20px 0 18px; line-height: 1.1; }
.feature-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 48ch;
}
.feature-text p + p { margin-top: 14px; }

.feature-text .badge-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224, 136, 104, 0.12);
  border: 1px solid rgba(224, 136, 104, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  margin-top: 18px;
}
.feature-text .badge-coming-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 540px;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle at 50% 50%, rgba(224, 136, 104, 0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* ── Success vision ── */
.success {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(58, 32, 96, 0.12), transparent);
  position: relative;
}

.success-inner { max-width: 780px; margin: 0 auto; }
.success h2 { margin: 24px 0 36px; }

.success-list {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-top: 48px;
}

.success-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.success-item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(128, 184, 136, 0.15);
  border: 1px solid rgba(128, 184, 136, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feedback-success);
  margin-top: 2px;
}

.success-item-text {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.5;
}
.success-item-text small {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── Testimonials ── */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header h2 { margin: 24px auto 0; max-width: 700px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.testimonial {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.testimonial-quote::before {
  content: '«';
  color: var(--accent);
  margin-right: 4px;
}
.testimonial-quote::after {
  content: ' »';
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-primary);
  flex-shrink: 0;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.testimonial-author-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.placeholder-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-elevated);
  border: 1px dashed var(--border-strong);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ── FAQ (shared visuals — used on home and support) ──
   Subpage layout (centered narrow column, header/category) lives in subpage.css. */
.faq-home-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-home-header h2 {
  margin: 24px auto 0;
  max-width: 700px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-item[open] {
  border-color: rgba(224, 136, 104, 0.3);
  background: var(--surface-elevated);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.45;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-item-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: transform 0.25s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.faq-item[open] .faq-item-toggle {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(224, 136, 104, 0.1);
}

.faq-item-body {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-wrap: pretty;
}
.faq-item-body p { margin: 0; }
.faq-item-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 136, 104, 0.35);
  transition: border-color 0.15s ease;
}
.faq-item-body a:hover { border-bottom-color: var(--accent); }

@media (max-width: 600px) {
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item-body { padding: 0 18px 18px; font-size: 14.5px; }
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%,
      rgba(224, 136, 104, 0.18) 0%,
      rgba(184, 144, 192, 0.10) 40%,
      rgba(58, 32, 96, 0.08) 70%,
      transparent 90%);
  filter: blur(40px);
  pointer-events: none;
}

.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 { margin: 24px 0 24px; }
.final-cta .lede { margin: 0 auto 44px; }
.final-cta .store-buttons { justify-content: center; }

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--text-primary); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
