/* Hearya — Landing Page Styles
   Soft & romantic editorial aesthetic
   Palette: warm rose-pink on off-white */

:root {
  --bg: #FDF7F6;
  --ink: #1A1A1A;
  --sub: #6B6B6B;
  --pinkDeep: #E8536A;
  --pink: #F37A8E;
  --pinkSoft: #FBD9DC;
  --pinkSofter: #FCE9EC;
  --pinkPale: #FEF3F4;
  --white: #FFFFFF;
  --border: rgba(243, 122, 142, 0.18);
  --shadow-card: 0 1px 3px rgba(232, 83, 106, 0.06), 0 8px 24px rgba(232, 83, 106, 0.05);
  --shadow-elevated: 0 2px 6px rgba(232, 83, 106, 0.08), 0 24px 60px rgba(232, 83, 106, 0.10);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* ── Type ───────────────────────────────────────────── */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.serif-it { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pinkDeep);
}

h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ── Layout ─────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: backdrop-filter .3s ease, background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(253, 247, 246, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.logo {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 80px; height: 80px;
  flex-shrink: 0;
  background-image: url("/assets/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.logo-mark.lg {
  width: 44px; height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  color: var(--sub);
}
.nav-links a {
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--pinkDeep);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 1px 2px rgba(232,83,106,0.15), 0 6px 16px rgba(232,83,106,0.18);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(232,83,106,0.18), 0 10px 24px rgba(232,83,106,0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: white;
  box-shadow: var(--shadow-card);
}
.btn-large {
  padding: 16px 28px;
  font-size: 15px;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-bg::before {
  width: 520px; height: 520px;
  background: var(--pinkSoft);
  top: -100px; left: -160px;
}
.hero-bg::after {
  width: 420px; height: 420px;
  background: var(--pinkSofter);
  bottom: -120px; right: -100px;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pinkDeep);
  display: inline-block;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.hero p.lead {
  font-size: 19px;
  color: var(--sub);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  transition: transform .2s ease;
}
.app-store-btn:hover { transform: translateY(-1px); }
.app-store-btn .apple {
  width: 24px; height: 24px;
}
.app-store-btn .copy small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.02em;
}
.app-store-btn .copy strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 1px;
}

.hero-microproof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--sub);
}
.stars { color: var(--pinkDeep); letter-spacing: 1px; font-size: 14px; }

/* Phone column */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
}
.phone-stage .glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pinkSoft) 0%, transparent 65%);
  opacity: 0.6;
  z-index: 0;
}
.phone-wrap {
  position: relative;
  z-index: 1;
  transform: scale(0.78);
  transform-origin: center;
  border-radius: 56px;
  padding: 8px;
  background: linear-gradient(160deg, #2a2a2e 0%, #18181a 50%, #2a2a2e 100%);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.22),
    0 16px 40px rgba(232,83,106,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.4);
}
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 55px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 35%, transparent 65%, rgba(255,255,255,0.04) 100%);
  z-index: 2;
}
.phone-wrap::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(180deg, #1a1a1c, #2c2c2e);
  pointer-events: none;
}
/* side buttons */
.phone-side-btn {
  position: absolute;
  background: linear-gradient(180deg, #1a1a1c 0%, #2c2c2e 50%, #1a1a1c 100%);
  border-radius: 1.5px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-side-btn.power { right: -2px; top: 200px; width: 4px; height: 100px; }
.phone-side-btn.vol-up { left: -2px; top: 170px; width: 4px; height: 60px; }
.phone-side-btn.vol-down { left: -2px; top: 240px; width: 4px; height: 60px; }
.phone-side-btn.mute { left: -2px; top: 110px; width: 4px; height: 36px; }

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-elevated);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  z-index: 2;
  max-width: 220px;
  border: 1px solid var(--border);
}
.float-card .label {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pinkDeep);
  margin-bottom: 6px;
  font-weight: 500;
}
.float-card.fc-1 { top: 80px; left: -20px; transform: rotate(-4deg); }
.float-card.fc-2 { top: 320px; right: -10px; transform: rotate(3deg); }
.float-card.fc-3 { bottom: 100px; left: 10px; transform: rotate(-2deg); }

/* ── Section base ───────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}
.section.tinted { background: var(--pinkPale); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--pink);
}
.section-header p {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.55;
}

/* ── Problem ────────────────────────────────────────── */
.problem {
  text-align: center;
  padding: 140px 0;
}
.problem-quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
}
.problem-quote em {
  font-style: italic;
  color: var(--pink);
}
.problem-quote .strike {
  position: relative;
  display: inline-block;
  color: var(--sub);
}
.problem-quote .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 2px;
  background: var(--pinkDeep);
  transform: rotate(-2deg);
}
.problem-attr {
  margin-top: 40px;
  font-size: 14px;
  color: var(--sub);
  letter-spacing: 0.04em;
}

/* ── How it works ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 32px 40px;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0.85;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.6;
}
.step-visual {
  height: 140px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--pinkPale);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── Features ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature.f-large { grid-column: span 4; min-height: 420px; }
.feature.f-small { grid-column: span 2; min-height: 420px; }
.feature.f-wide { grid-column: span 3; min-height: 320px; }
.feature.f-third { grid-column: span 3; min-height: 320px; }

.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.feature h3 em { font-style: italic; color: var(--pink); }
.feature p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.55;
  max-width: 360px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pinkDeep);
  background: var(--pinkSofter);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.feature-visual {
  margin-top: 28px;
  background: var(--pinkPale);
  border-radius: 16px;
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* ── Categories ─────────────────────────────────────── */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  transition: all .25s ease;
}
.category:hover {
  background: var(--pinkSofter);
  border-color: var(--pink);
  transform: translateY(-2px);
}
.category .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pinkDeep);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
}
.testimonial blockquote::before {
  content: "\201C";
  font-size: 56px;
  line-height: 0;
  color: var(--pink);
  margin-right: 4px;
  vertical-align: -18px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pinkSoft), var(--pink));
  font-family: var(--serif);
  font-style: italic;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-attr .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-attr .meta {
  font-size: 12px;
  color: var(--sub);
}

/* ── Privacy ────────────────────────────────────────── */
.privacy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 64px;
}
.privacy-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.privacy-block h2 em { font-style: italic; color: var(--pink); }
.privacy-block p {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy-point {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--pinkPale);
  border-radius: 16px;
  align-items: flex-start;
}
.privacy-point .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pinkDeep);
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.privacy-point strong { font-weight: 500; color: var(--ink); display: block; margin-bottom: 2px; font-size: 15px; }
.privacy-point span { color: var(--sub); font-size: 14px; line-height: 1.5; }

/* ── FAQ ────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-trigger {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pinkSofter);
  color: var(--pinkDeep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.45s ease, background 0.45s ease, color 0.45s ease;
}
.faq-item .icon.open {
  transform: rotate(45deg);
  background: var(--pinkDeep);
  color: white;
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.faq-body.open {
  max-height: 400px;
}
.faq-body p {
  margin-top: 16px;
  padding-bottom: 4px;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

/* ── Final CTA ──────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--pinkSofter), transparent 70%);
  z-index: 0;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--pink); }
.final-cta p {
  font-size: 19px;
  color: var(--sub);
  max-width: 540px;
  margin: 0 auto 40px;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: 14px;
  color: var(--sub);
  transition: color .2s;
}
.footer-col li a:hover { color: var(--pinkDeep); }

.footer-brand p {
  font-size: 14px;
  color: var(--sub);
  margin: 16px 0 24px;
  max-width: 320px;
  line-height: 1.55;
}
.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pinkPale);
  color: var(--pinkDeep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.social:hover {
  background: var(--pinkDeep);
  color: white;
  transform: translateY(-2px);
}
.social svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--sub);
}
.footer-bottom .ornex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ornex-mark {
  width: 16px; height: 16px;
  border-radius: 3px;
  background: var(--ink);
  display: inline-block;
}

/* ── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-stage { min-height: 600px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature.f-large, .feature.f-small, .feature.f-wide, .feature.f-third { grid-column: span 2; min-height: auto; }
  .steps { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .privacy-block { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { gap: 18px; }
  .nav-links .hide-sm { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature.f-large, .feature.f-small, .feature.f-wide, .feature.f-third { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 80px 0; }
  .float-card { display: none; }
}

/* Legal pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 32px 100px;
}
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.legal-page .updated {
  font-size: 13px;
  color: var(--sub);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.legal-page h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin: 32px 0 12px;
  color: var(--ink);
}
.legal-page p, .legal-page li {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-page ul { padding-left: 22px; margin: 14px 0; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--pinkDeep); border-bottom: 1px solid transparent; transition: border-color .2s; }
.legal-page a:hover { border-bottom-color: var(--pinkDeep); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--sub);
  margin-bottom: 32px;
  transition: color .2s;
}
.back-link:hover { color: var(--pinkDeep); }
