:root {
  --indigo: #5d5fef;
  --indigo-600: #4f46e5;
  --violet: #4338ca;
  --ink: #0e0e1a;
  --ink-2: #15152b;
  --surface: #f4f5fa;
  --surface-2: #eceefb;
  --text: #1b1b2b;
  --muted: #6a6a82;
  --green: #22c55e;
  --line: #e7e7f0;
  --white: #ffffff;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(20, 18, 60, 0.06);
  --shadow: 0 18px 48px rgba(67, 56, 202, 0.12);
  --shadow-lg: 0 30px 80px rgba(40, 30, 120, 0.28);
  --maxw: 1160px;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --spark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 6 5.4 11 11.4 12C17.4 13 12.6 18 12 24c-.6-6-5.4-11-11.4-12C6.6 11 11.4 6 12 0Z'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.01em; }

.grad {
  background: linear-gradient(100deg, var(--indigo) 0%, #8b5cf6 60%, #4338ca 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff; box-shadow: 0 10px 26px rgba(93, 95, 239, .38);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(93, 95, 239, .5); }
.btn--primary:active { transform: translateY(0); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--indigo-600);
  background: var(--surface-2); padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 0 4px rgba(93,95,239,.18); }
.eyebrow--light { color: #c9c9ff; background: rgba(124,124,255,.12); }

.notice { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.notice[hidden] { display: none; }
.notice__backdrop { position: absolute; inset: 0; background: rgba(14,14,26,.55); backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s ease; }
.notice__card {
  position: relative; width: 100%; max-width: 440px; background: #fff;
  border-radius: 24px; padding: 40px 32px 32px; text-align: center;
  box-shadow: var(--shadow-lg); transform: translateY(16px) scale(.96); opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.notice.is-open .notice__backdrop { opacity: 1; }
.notice.is-open .notice__card { transform: none; opacity: 1; }
.notice__x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); background: var(--surface); transition: background .15s, color .15s; }
.notice__x:hover { background: var(--surface-2); color: var(--ink); }
.notice__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; color: var(--indigo); background: var(--surface-2); }
.notice .eyebrow { margin-bottom: 14px; }
.notice__title { font-size: 26px; }
.notice__text { color: var(--muted); margin: 12px 0 26px; font-size: 16px; }
.notice__btn { width: 100%; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.brand__accent { background: linear-gradient(100deg, var(--indigo), #8b5cf6 60%, var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { padding: 11px 22px; font-size: 15px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; background: #fff;
  overflow: hidden; max-height: 0; opacity: 0;
  padding: 0 22px;
  transition: max-height .38s ease, opacity .3s ease, padding .38s ease;
}
.nav.is-open .nav__mobile { max-height: 88vh; opacity: 1; padding: 8px 22px 22px; border-top: 1px solid var(--line); }
.nav__mobile a:not(.nav__mobile-cta) { padding: 15px 6px; font-weight: 600; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--line); }
.nav__mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; padding: 17px 20px; border-radius: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em;
  color: #fff; background: linear-gradient(135deg, var(--indigo), var(--violet));
  box-shadow: 0 12px 26px rgba(93, 95, 239, .42);
}
.nav__mobile-cta svg { flex: 0 0 auto; }
.nav__mobile-cta:active { transform: translateY(1px); }

.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto auto; width: 720px; height: 720px;
  background: radial-gradient(circle at 70% 30%, rgba(124,124,255,.5), transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(139,92,246,.35), transparent 55%);
  filter: blur(20px); z-index: -1; pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.hero__title { font-size: clamp(44px, 7vw, 84px); font-weight: 900; margin: 18px 0 0; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 30ch; margin: 20px 0 30px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats { display: flex; gap: 30px; list-style: none; margin-top: 40px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink); }
.hero__stats span { font-size: 13px; color: var(--muted); font-weight: 600; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; padding: 11px 20px; border-radius: 14px;
  transition: transform .18s ease, box-shadow .18s ease; box-shadow: 0 8px 22px rgba(14,14,26,.22);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14,14,26,.32); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge small { font-size: 10.5px; opacity: .85; font-weight: 600; white-space: nowrap; }
.store-badge strong { font-size: 17px; font-weight: 700; font-family: var(--font-body); white-space: nowrap; }
.store-badge--lg { padding: 14px 26px; }
.store-badge--lg strong { font-size: 19px; }

.hero__phone { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: 290px; aspect-ratio: 290 / 600;
  background: var(--ink); border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg); animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: var(--ink); border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { position: relative; height: 100%; background: var(--surface); border-radius: 33px; overflow: hidden; display: flex; flex-direction: column; }

.appbar { display: flex; align-items: center; justify-content: space-between; padding: 26px 18px 10px; }
.appbar__logo { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); }
.appbar__icon { color: var(--muted); display: grid; place-items: center; }

.deck { position: relative; flex: 1; margin: 4px 14px 0; }
.dcard {
  position: absolute; inset: 0; border-radius: 22px; overflow: hidden;
  background-size: cover; background-position: center top; background-color: var(--violet);
  box-shadow: var(--shadow); transform-origin: bottom center;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  will-change: transform, opacity;
}
.dcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(10,8,30,.85)); }
.badge-match {
  position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 999px; box-shadow: 0 6px 14px rgba(34,197,94,.4);
}
.dcard__info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 14px 14px; color: #fff; }
.dcard__info h3 { color: #fff; font-size: 18px; display: flex; align-items: center; gap: 5px; }
.dcard__info p { font-size: 11.5px; opacity: .92; font-weight: 600; }

.swipe-actions { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 0 10px; }
.swipe-btn { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .15s; }
.swipe-btn:hover { transform: scale(1.08); }
.swipe-btn--no { color: #ef4444; }
.swipe-btn--yes { width: 60px; height: 60px; background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.swipe-btn--chat { color: var(--indigo); }

.tabbar { display: flex; justify-content: space-around; padding: 12px 0 16px; background: #fff; }
.tab { color: var(--muted); opacity: .45; display: grid; place-items: center; }
.tab--active { opacity: 1; color: var(--indigo); }

.ic { width: 18px; height: 18px; flex: 0 0 auto; }
.ic-sm { width: 15px; height: 15px; vertical-align: -2px; }

.float-chip {
  position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 10px 14px; border-radius: 14px; box-shadow: var(--shadow);
  font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.float-chip b { color: var(--green); }
.float-chip--match { top: 8%; left: -6%; animation: floatY 5s ease-in-out infinite .4s; }
.float-chip--verify { bottom: 12%; right: -8%; animation: floatY 5.5s ease-in-out infinite 1s; }
.float-chip--verify b { color: var(--indigo); }

.strip { border-block: 1px solid var(--line); background: var(--white); }
.strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 32px; padding: 22px 24px; }
.strip span { font-weight: 700; font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.strip span::before {
  content: ""; width: 14px; height: 14px; flex: 0 0 auto;
  background-color: var(--indigo);
  -webkit-mask: var(--spark) center / contain no-repeat;
  mask: var(--spark) center / contain no-repeat;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--surface); }

.section__head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head p { color: var(--muted); margin-top: 16px; font-size: 18px; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: #b7b7d6; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  color: var(--c); background: color-mix(in srgb, var(--c) 13%, white); margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; background: linear-gradient(135deg, var(--indigo), var(--violet)); width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step__visual { margin-top: 20px; }

.mini-goal { display: flex; flex-direction: column; gap: 8px; }
.mini-goal__row { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-weight: 600; font-size: 14px; }
.mini-goal__row.is-on { border-color: var(--indigo); color: var(--indigo-600); background: var(--surface-2); }
.mini-goal__row i { margin-left: auto; color: var(--indigo); font-style: normal; }

.mini-match { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.mini-match__ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #6d6df7, #3a2eae) center/cover no-repeat; flex: 0 0 auto; }
.mini-match b { font-size: 14px; display: block; }
.mini-match small { font-size: 12px; color: var(--muted); }
.mini-match__heart { margin-left: auto; color: var(--green); font-size: 20px; }

.mini-chat { display: flex; flex-direction: column; gap: 8px; }
.bubble { max-width: 80%; padding: 9px 13px; border-radius: 14px; font-size: 13.5px; font-weight: 600; }
.bubble--in { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: linear-gradient(135deg, var(--indigo), var(--violet)); color: #fff; border-bottom-right-radius: 4px; }

.goals { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.goals__copy p { color: var(--muted); margin: 16px 0 28px; font-size: 18px; }
.goals__list { display: flex; flex-direction: column; gap: 14px; }
.goal {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 18px 22px; font-weight: 700; font-size: 17px; color: var(--ink);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.goal:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.goal.is-active { border-color: var(--indigo); background: var(--surface-2); box-shadow: var(--shadow); }
.goal__ic { display: grid; place-items: center; width: 26px; height: 26px; color: var(--indigo); flex: 0 0 auto; }
.goal__ic svg { width: 26px; height: 26px; }

.safety { background: radial-gradient(circle at 20% 0%, #1c1640 0, var(--ink) 55%); color: #fff; padding: clamp(64px, 9vw, 120px) 0; }
.safety__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.safe { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s, background .2s; }
.safe:hover { transform: translateY(-6px); background: rgba(124,124,255,.08); }
.safe svg { margin-bottom: 16px; }
.safe h3 { color: #fff; margin-bottom: 8px; font-size: 18px; }
.safe p { color: #b0b0d0; font-size: 14.5px; }

.rating-row { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: var(--muted); }
.stars { color: #f5b301; letter-spacing: 2px; font-size: 16px; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.review blockquote { font-size: 17px; line-height: 1.6; margin: 14px 0 20px; color: var(--text); font-weight: 500; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.ava { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2) center/cover no-repeat; flex: 0 0 auto; }
.review figcaption b { display: block; font-size: 15px; }
.review figcaption small { color: var(--muted); font-size: 13px; }

.download { padding: clamp(64px, 8vw, 100px) 0; }
.download__inner {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  border-radius: 36px; padding: clamp(48px, 7vw, 80px) 24px; color: #fff;
}
.download__glow { position: absolute; inset: auto auto -40% -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 65%); }
.download h2 { color: #fff; font-size: clamp(30px, 4.5vw, 50px); }
.download h2 .grad { background: linear-gradient(100deg,#fff,#d9d9ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.download p { color: rgba(255,255,255,.9); margin: 14px auto 30px; font-size: 19px; max-width: 40ch; }
.download__badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; }
.download .store-badge { background: #fff; color: var(--ink); }
.download .store-badge small { opacity: .7; }
.download__note { display: block; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.85); font-weight: 600; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 22px; transition: box-shadow .2s, border-color .2s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 700; font-size: 17px; color: var(--ink); cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--indigo); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .22s ease; }
.faq__chev::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__chev::after { transform: translate(-50%,-50%) rotate(0); }
.faq__item p { color: var(--muted); padding: 0 0 20px; font-size: 16px; }

.footer { background: var(--ink); color: #c9c9e0; padding: 64px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 14px; color: #9a9ac0; max-width: 30ch; font-size: 15px; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.footer__col a { display: block; padding: 6px 0; color: #9a9ac0; font-size: 15px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 14px; color: #8585a8; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #c9c9e0; transition: background .18s, color .18s, transform .18s; }
.footer__social a:hover { background: var(--indigo); color: #fff; transform: translateY(-2px); }

.page-hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 90px) 0 clamp(36px, 4vw, 52px); background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero__glow { position: absolute; inset: -40% -10% auto auto; width: 560px; height: 560px; background: radial-gradient(circle at 70% 30%, rgba(124,124,255,.35), transparent 60%); filter: blur(10px); z-index: 0; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--indigo-600); margin-bottom: 18px; transition: gap .18s; }
.back-link:hover { gap: 11px; }
.back-link svg { flex: 0 0 auto; }
.page__title { font-size: clamp(32px, 5vw, 54px); }
.page__meta { margin-top: 14px; color: var(--muted); font-weight: 600; font-size: 14px; }

.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal__intro { font-size: 18px; color: var(--muted); margin-bottom: 12px; }
.legal__note { display: flex; gap: 12px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; margin-bottom: 36px; font-size: 14.5px; color: var(--text); }
.legal__note svg { flex: 0 0 auto; color: var(--indigo); margin-top: 1px; }
.legal h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 40px 0 14px; scroll-margin-top: 90px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; }
.legal p { color: var(--text); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.legal li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text); }
.legal li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 3px; background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.toc li { padding-left: 0; margin-bottom: 0; }
.toc li::before { content: none; }
.legal a { color: var(--indigo-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal__sep { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

.toc { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; margin-bottom: 40px; box-shadow: var(--shadow-sm); }
.toc h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: 8px; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; font-weight: 600; color: var(--text); text-decoration: none; transition: color .15s; }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--indigo); font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.toc a:hover { color: var(--indigo-600); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__lead { max-width: 46ch; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__phone { order: -1; }

  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .safety__grid { grid-template-columns: repeat(2, 1fr); }
  .goals, .faq { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .notice__card { padding: 34px 22px 26px; }
  .notice__title { font-size: 23px; }

  .nav__inner { height: 62px; gap: 14px; }
  .brand__name { font-size: 20px; }

  .hero { padding: 24px 0 52px; }
  .hero__title { margin-top: 14px; }
  .hero__lead { margin: 16px 0 24px; }
  .eyebrow { font-size: 12px; padding: 6px 12px; }

  .phone { width: min(280px, 80vw); }
  .float-chip { display: none; }

  .hero__cta { width: 100%; gap: 10px; }
  .store-badge { flex: 1 1 0; justify-content: center; min-width: 0; padding: 12px 12px; gap: 9px; }
  .store-badge svg { flex: 0 0 auto; }
  .store-badge strong { font-size: 15px; }
  .store-badge small { font-size: 9.5px; }

  .hero__stats { gap: 0; margin-top: 32px; width: 100%; justify-content: space-between; }
  .hero__stats li { flex: 1; align-items: center; text-align: center; }
  .hero__stats b { font-size: 24px; }
  .hero__stats span { font-size: 11.5px; }

  .section { padding: 56px 0; }
  .section--alt { padding: 56px 0; }
  .safety, .download { padding: 56px 0; }
  .section__head { margin-bottom: 34px; }
  .section__head p { font-size: 16px; }

  .cards, .steps, .reviews, .safety__grid { grid-template-columns: 1fr; gap: 16px; }
  .card, .step, .safe, .review { padding: 24px 22px; }

  .strip__inner { padding: 18px; gap: 12px 18px; }
  .strip span { font-size: 13px; width: calc(50% - 12px); }

  .goal { padding: 16px 18px; font-size: 16px; }
  .goal:hover { transform: none; }

  .review blockquote { font-size: 16px; }
  .download__inner { border-radius: 24px; padding: 44px 22px; }
  .download p { font-size: 17px; }
  .download__badges { gap: 12px; }
  .download .store-badge { flex: 1 1 0; }

  .faq__item { padding: 2px 18px; }
  .faq__item summary { font-size: 16px; padding: 16px 0; }

  .footer { padding: 48px 0 26px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 18px; }
}

@media (max-width: 380px) {
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stats li { flex: 1 0 30%; }
  .footer__inner { grid-template-columns: 1fr; }
  .store-badge strong { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
