:root {
  --cream: #fff8e8;
  --cream-deep: #f8edce;
  --paper: #fffdf7;
  --coral: #ff5c62;
  --coral-dark: #e94750;
  --rose: #ff8fa0;
  --plum: #35223f;
  --plum-soft: #594861;
  --violet: #8f7cff;
  --yellow: #ffd84d;
  --mint: #aee7d2;
  --line: #06c755;
  --line-button: #047d39;
  --line-dark: #03652f;
  --white: #fff;
  --border: rgba(53, 34, 63, .14);
  --shadow: 0 24px 70px rgba(53, 34, 63, .14);
  --radius-lg: 36px;
  --radius-md: 24px;
  --page: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--plum);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 8px 14px;
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(53, 34, 63, .08);
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: var(--page);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.06em;
}

.brand-mark {
  width: 35px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 11px 11px 14px 11px;
  font-size: 18px;
  transform: rotate(-5deg);
}

.brand-mark + span { color: var(--plum); }

.nav-wrap nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.nav-wrap nav a { transition: color .2s ease; }
.nav-wrap nav a:hover { color: var(--coral); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 10px;
  color: var(--white);
  background: var(--line-button);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(6, 199, 85, .25);
  transition: transform .2s ease, background .2s ease;
}

.nav-cta span {
  width: 31px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--line-button);
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
}

.nav-cta:hover { background: var(--line-dark); transform: translateY(-2px); }

.hero {
  min-height: calc(100svh - 72px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 248, 232, .98) 0%, rgba(255, 248, 232, .93) 32%, rgba(255, 248, 232, .36) 55%, rgba(255, 248, 232, 0) 72%);
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 64px 0 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-copy { width: min(550px, 52%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 92, 98, .28);
  border-radius: 999px;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow span { color: var(--yellow); }

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 4.5vw, 70px);
  line-height: 1.2;
  letter-spacing: -.065em;
  font-weight: 900;
}

.hero h1 em {
  position: relative;
  color: var(--coral);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -6px;
  bottom: -5px;
  height: 12px;
  border-top: 4px solid var(--yellow);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-lead {
  margin: 22px 0 26px;
  color: var(--plum-soft);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 600;
  line-height: 1.9;
}

.primary-button {
  width: min(410px, 100%);
  min-height: 82px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 62px 10px 13px;
  color: var(--white);
  background: var(--line-button);
  border: 2px solid var(--line-button);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(6, 199, 85, .26), inset 0 -4px 0 rgba(0, 92, 39, .14);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.primary-button:hover {
  color: var(--white);
  background: var(--line-dark);
  border-color: var(--line-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(6, 199, 85, .32), inset 0 -4px 0 rgba(0, 92, 39, .14);
}

.line-icon {
  width: 52px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--line-button);
  background: var(--white);
}

.line-icon i { font-family: Arial, sans-serif; font-size: 10px; font-style: normal; font-weight: 900; letter-spacing: -.04em; }
.line-copy { display: flex; flex: 1; flex-direction: column; justify-content: center; line-height: 1.4; }
.line-copy small { font-size: 10px; font-weight: 700; opacity: .9; }
.line-copy strong { font-size: 18px; letter-spacing: .02em; }

.button-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--line);
  background: var(--white);
  font-size: 20px;
  transform: translateY(-50%);
}

.hero-actions > p { margin: 10px 0 0; color: var(--plum-soft); font-size: 11px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
}

.trust-list span { color: var(--coral); }

.free-stamp {
  width: 142px;
  aspect-ratio: 1;
  position: absolute;
  right: 42%;
  bottom: 11%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #cc3d47;
  box-shadow: 0 18px 45px rgba(53, 34, 63, .22);
  line-height: 1;
  transform: rotate(-8deg);
}

.free-stamp small { font-size: 12px; font-weight: 900; }
.free-stamp strong { margin: 2px 0; font-family: Arial, sans-serif; font-size: 50px; letter-spacing: -.08em; }
.free-stamp strong span { margin-left: 2px; font-size: 17px; letter-spacing: 0; }
.free-stamp b { padding: 5px 9px; border-radius: 999px; color: var(--plum); background: var(--yellow); font-size: 11px; }

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--plum-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  transform: translateX(-50%);
}

.scroll-hint i { width: 1px; height: 28px; background: var(--plum); animation: scrollLine 1.5s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(.3); opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }

.section { padding: 110px 0; }
.section-inner { width: var(--page); margin: 0 auto; }
.section-label { margin: 0 0 14px; color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: .2em; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: center; }
.intro-heading h2, .section-title h2, .safety-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.35;
  letter-spacing: -.055em;
  font-weight: 900;
}
.intro-heading h2 span, .section-title h2 span, .safety-copy h2 span { color: var(--coral); }
.intro-copy > p { margin: 0 0 18px; color: var(--plum-soft); font-size: 17px; font-weight: 600; }
.mini-statement { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; padding: 12px 16px; border-radius: 14px; background: var(--cream); font-size: 13px; font-weight: 800; }
.mini-statement span { color: var(--coral); }

.features { position: relative; overflow: hidden; background: var(--cream); }
.features::before, .features::after { content: ""; position: absolute; border: 2px solid rgba(255,92,98,.12); border-radius: 50%; }
.features::before { width: 330px; height: 330px; left: -230px; top: 90px; }
.features::after { width: 180px; height: 180px; right: -110px; bottom: 60px; }
.section-title { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section-title > p:last-child { margin: 14px 0 0; color: var(--plum-soft); }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 1; }
.feature-card { position: relative; min-height: 420px; padding: 32px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 15px 45px rgba(53, 34, 63, .07); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 160px; height: 160px; border-radius: 50%; opacity: .13; background: currentColor; }
.feature-card.coral { color: var(--coral); }
.feature-card.violet { color: var(--violet); transform: translateY(22px); }
.feature-card.yellow { color: #e6ad00; }
.card-number { font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.feature-icon { width: 96px; height: 96px; margin: 38px auto 30px; padding: 19px; border-radius: 31px; background: currentColor; transform: rotate(-5deg); }
.feature-icon svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: var(--white); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; transform: rotate(5deg); }
.feature-card h3 { margin: 0 0 14px; color: var(--plum); font-size: 24px; line-height: 1.5; letter-spacing: -.03em; }
.feature-card h3 span { color: currentColor; }
.feature-card p { margin: 0; color: var(--plum-soft); font-size: 14px; }

.howto { position: relative; overflow: hidden; color: var(--white); background: var(--plum); }
.howto::before { content: "SOKULOVE"; position: absolute; left: -18px; bottom: -48px; color: rgba(255,255,255,.035); font-size: clamp(120px, 18vw, 270px); font-weight: 900; line-height: 1; letter-spacing: -.08em; white-space: nowrap; }
.section-title.light .section-label { color: var(--yellow); }
.section-title.light > p:last-child { color: rgba(255,255,255,.65); }
.steps-layout { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 100px; position: relative; z-index: 1; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.14); }
.steps-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.step-number { width: 64px; aspect-ratio: 1; display: grid; place-items: center; color: var(--plum); background: var(--yellow); border-radius: 50%; font-size: 26px; font-weight: 900; }
.steps-list small { color: var(--rose); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.steps-list h3 { margin: 1px 0 5px; font-size: 21px; }
.steps-list p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; }

.phone-demo { width: min(330px, 100%); min-height: 610px; position: relative; justify-self: center; padding: 17px 17px 24px; border: 9px solid #1c1420; border-radius: 46px; color: var(--plum); background: var(--paper); box-shadow: 0 35px 80px rgba(0,0,0,.34); transform: rotate(3deg); }
.phone-demo::before { content: ""; position: absolute; top: 8px; left: 50%; width: 90px; height: 22px; border-radius: 0 0 14px 14px; background: #1c1420; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; padding: 4px 4px 10px; font-size: 8px; font-weight: 800; }
.phone-brand { padding: 10px 0 14px; font-size: 18px; font-weight: 900; text-align: center; }
.phone-brand span { color: var(--coral); }
.profile-preview { position: relative; overflow: hidden; border-radius: 25px; background: #f3d7ca; box-shadow: 0 10px 25px rgba(53,34,63,.13); }
.profile-art { height: 330px; position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(155deg, #ffe5d7, #f4b9b7 65%, #8f7cff); }
.profile-art::before { content: ""; width: 190px; height: 235px; position: absolute; bottom: -50px; border-radius: 46% 46% 20% 20%; background: #fff0e9; box-shadow: inset 0 0 0 13px rgba(255,255,255,.32); }
.profile-art::after { content: ""; width: 115px; height: 145px; position: absolute; top: 55px; border-radius: 48% 48% 44% 44%; background: #533b3a; box-shadow: 0 0 0 16px #3e2e2f; }
.profile-art span { position: relative; z-index: 2; margin-top: 25px; color: #fff; font-size: 47px; transform: rotate(90deg); }
.profile-art i, .profile-art b { position: absolute; z-index: 3; bottom: 26px; width: 80px; height: 120px; background: #ff6e73; }
.profile-art i { left: 47px; border-radius: 70px 0 18px 18px; transform: rotate(8deg); }
.profile-art b { right: 47px; border-radius: 0 70px 18px 18px; transform: rotate(-8deg); }
.online-dot { position: absolute; top: 14px; left: 14px; padding: 5px 9px; color: #24795b; background: rgba(255,255,255,.9); border-radius: 999px; font-size: 8px; font-weight: 900; }
.online-dot::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #41c987; }
.profile-info { padding: 14px 17px 16px; background: var(--white); }
.profile-info h3 { margin: 0; font-size: 18px; }
.profile-info h3 small { font-size: 12px; font-weight: 600; }
.profile-info p { margin: 2px 0 0; color: var(--plum-soft); font-size: 9px; }
.phone-actions { display: flex; justify-content: center; gap: 17px; padding-top: 18px; }
.phone-actions button { width: 42px; aspect-ratio: 1; border: 0; border-radius: 50%; color: var(--plum-soft); background: var(--white); box-shadow: 0 6px 18px rgba(53,34,63,.15); font-size: 20px; text-align: center; }
.phone-actions .like { width: 55px; color: var(--white); background: var(--coral); font-size: 24px; }
.reaction-pop { position: absolute; top: 235px; left: -55px; width: 155px; display: flex; flex-direction: column; padding: 15px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.22); transform: rotate(-5deg); }
.reaction-pop span { color: var(--coral); }
.reaction-pop strong { font-size: 15px; }
.reaction-pop small { color: var(--plum-soft); font-size: 8px; }

.safety { background: var(--paper); }
.safety-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.safety-copy > p:not(.section-label) { margin: 25px 0 0; color: var(--plum-soft); font-weight: 600; }
.safety-list { display: grid; gap: 13px; }
.safety-list article { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; padding: 22px; border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 12px 35px rgba(53,34,63,.06); }
.safety-icon { width: 66px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 21px; color: var(--coral); background: var(--cream); font-size: 14px; font-weight: 900; }
.safety-list article:nth-child(2) .safety-icon { color: var(--violet); background: #efedff; }
.safety-list article:nth-child(3) .safety-icon { color: #5e9e86; background: #e8f7f1; }
.safety-list article:nth-child(3) .safety-icon::after { content: "✓"; margin-left: -7px; font-size: 24px; }
.safety-list h3 { margin: 0; font-size: 17px; }
.safety-list p { margin: 2px 0 0; color: var(--plum-soft); font-size: 12px; }

.values { padding-top: 20px; overflow: hidden; }
.values .section-title { margin-bottom: 35px; }
.value-marquee { width: 100vw; margin-left: calc((100% - 100vw) / 2); overflow: hidden; transform: rotate(-1.5deg); background: var(--yellow); border-block: 2px solid var(--plum); }
.marquee-track { width: max-content; display: flex; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 14px 24px; font-size: 18px; font-weight: 900; white-space: nowrap; }
.marquee-track i { color: var(--coral); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.faq { background: var(--cream); }
.faq-inner { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); border-radius: 20px; background: var(--white); overflow: hidden; }
.faq-list summary { display: flex; align-items: center; gap: 14px; padding: 21px 60px 21px 22px; position: relative; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 23px; color: var(--coral); font-size: 24px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary span, .answer > span { color: var(--coral); font-family: Arial, sans-serif; font-size: 18px; font-weight: 900; }
.answer { display: flex; gap: 14px; padding: 0 22px 22px; }
.answer > span { color: var(--violet); }
.answer p { margin: 0; color: var(--plum-soft); font-size: 13px; }

.final-cta { position: relative; padding: 105px 0; overflow: hidden; color: var(--white); background: var(--coral); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 300px; height: 300px; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; }
.final-cta::before { left: -180px; top: -130px; }
.final-cta::after { right: -170px; bottom: -170px; }
.final-cta .section-inner { position: relative; z-index: 2; }
.final-cta .section-label { color: var(--yellow); }
.final-cta h2 { margin: 0; font-size: clamp(36px, 4.5vw, 62px); line-height: 1.32; letter-spacing: -.06em; }
.final-cta .section-inner > p:not(.section-label):not(.eligibility) { margin: 14px 0 28px; }
.light-button { margin: 0 auto; color: var(--white); background: var(--line-button); border-color: var(--white); box-shadow: 0 15px 35px rgba(50,25,54,.25); }
.light-button:hover { color: var(--white); background: var(--line-dark); border-color: var(--white); }
.light-button .button-arrow { color: var(--line-button); background: var(--white); }
.eligibility { max-width: 600px; margin: 16px auto 0; font-size: 10px; opacity: .82; }
.cta-hearts span { position: absolute; color: rgba(255,255,255,.14); font-size: 80px; transform: rotate(-12deg); }
.cta-hearts span:nth-child(1) { left: 8%; top: 25%; }
.cta-hearts span:nth-child(2) { right: 12%; top: 15%; font-size: 46px; transform: rotate(14deg); }
.cta-hearts span:nth-child(3) { right: 19%; bottom: 10%; font-size: 95px; }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.68); background: #25192b; }
.footer-inner { width: var(--page); margin: 0 auto; text-align: center; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark + span { color: var(--white); }
.footer-inner > p { margin: 10px 0 35px; font-size: 12px; }
.footer-inner nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 26px; font-size: 12px; }
.footer-inner nav a:hover { color: var(--white); }
.footer-inner small { display: block; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; letter-spacing: .08em; }

.sticky-cta { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.sp-only { display: none; }

.legal-page { min-height: 100vh; background: var(--cream); }
.legal-header { padding: 26px 0; border-bottom: 1px solid var(--border); background: var(--paper); }
.legal-header .section-inner { display: flex; align-items: center; justify-content: space-between; }
.back-link { font-size: 12px; font-weight: 800; }
.back-link:hover { color: var(--coral); }
.legal-main { width: min(800px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }
.legal-main h1 { margin: 0 0 12px; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.05em; }
.legal-main .updated { margin: 0 0 50px; color: var(--plum-soft); font-size: 11px; }
.legal-main section { margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--border); }
.legal-main h2 { margin: 0 0 10px; font-size: 19px; }
.legal-main p, .legal-main li, .legal-main dd, .legal-main dt { color: var(--plum-soft); font-size: 13px; }
.legal-main ul { padding-left: 1.3em; }
.legal-main dt { margin-top: 18px; color: var(--plum); font-weight: 800; }
.legal-main dd { margin: 4px 0 0; }
@media (max-width: 900px) {
  .nav-wrap nav { display: none; }
  .nav-wrap { height: 66px; }
  .nav-cta { margin-left: auto; }
  .hero { min-height: 740px; }
  .hero-inner { padding: 54px 0 82px; text-align: left; }
  .hero-copy { width: 58%; position: relative; z-index: 3; }
  .hero-actions .primary-button { margin-inline: auto; }
  .free-stamp { right: 35%; bottom: 7%; }
  .intro-grid, .safety-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-grid { text-align: center; }
  .feature-cards { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .feature-card { min-height: auto; }
  .feature-card.violet { transform: none; }
  .steps-layout { grid-template-columns: 1fr; gap: 70px; }
  .phone-demo { order: -1; }
  .safety-copy { text-align: center; }
}

@media (max-width: 600px) {
  :root { --page: min(100% - 28px, 520px); --radius-lg: 28px; }
  body { font-size: 14px; padding-bottom: 68px; }
  .site-header { top: 0; }
  .nav-wrap { height: 58px; }
  .brand { font-size: 22px; }
  .brand-mark { width: 31px; border-radius: 10px 10px 12px 10px; font-size: 15px; }
  .nav-cta { display: none; }
  .hero { min-height: 880px; align-items: start; }
  .hero::before { background: linear-gradient(180deg, rgba(255,248,232,1) 0%, rgba(255,248,232,.98) 47%, rgba(255,248,232,.82) 57%, rgba(255,248,232,.04) 80%); }
  .hero-media { inset: auto 0 0; height: 52%; }
  .hero-media img { object-position: 67% center; }
  .hero-inner { min-height: 880px; display: block; padding: 42px 0 455px; text-align: center; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 14px; padding: 5px 10px; font-size: 10px; }
  .hero h1 { font-size: clamp(38px, 11.6vw, 50px); line-height: 1.2; }
  .hero-lead { margin: 17px 0 22px; font-size: 14px; line-height: 1.8; }
  .sp-only { display: initial; }
  .primary-button { min-height: 74px; gap: 10px; padding-left: 10px; border-radius: 19px; }
  .line-icon { width: 44px; }
  .line-icon i { font-size: 8px; }
  .line-copy { text-align: left; }
  .line-copy small { font-size: 8px; }
  .line-copy strong { font-size: 15px; }
  .hero-actions > p { font-size: 9px; }
  .trust-list { gap: 5px; margin-top: 17px; }
  .trust-list li { padding: 5px 7px; font-size: 9px; }
  .free-stamp { width: 106px; right: 12px; bottom: 20px; border-width: 4px; }
  .free-stamp small { font-size: 9px; }
  .free-stamp strong { font-size: 38px; }
  .free-stamp strong span { font-size: 13px; }
  .free-stamp b { font-size: 8px; }
  .scroll-hint { display: none; }
  .section { padding: 78px 0; }
  .intro-grid { gap: 30px; }
  .intro-heading h2, .section-title h2, .safety-copy h2 { font-size: 34px; }
  .intro-copy > p { font-size: 14px; }
  .section-title { margin-bottom: 38px; }
  .section-title > p:last-child { font-size: 12px; }
  .feature-cards { gap: 14px; }
  .feature-card { padding: 25px; }
  .feature-icon { width: 78px; height: 78px; margin: 25px auto 22px; border-radius: 25px; }
  .feature-card h3 { font-size: 21px; }
  .steps-layout { gap: 55px; }
  .steps-list li { grid-template-columns: 52px 1fr; gap: 14px; padding: 22px 0; }
  .step-number { width: 48px; font-size: 20px; }
  .steps-list h3 { font-size: 17px; }
  .steps-list p { font-size: 11px; }
  .phone-demo { width: 295px; min-height: 560px; transform: rotate(1.5deg); }
  .profile-art { height: 290px; }
  .profile-art::after { top: 45px; }
  .reaction-pop { left: -23px; top: 220px; }
  .safety-grid { gap: 35px; }
  .safety-list article { grid-template-columns: 62px 1fr; gap: 13px; padding: 17px; }
  .safety-icon { width: 56px; border-radius: 18px; }
  .safety-list h3 { font-size: 15px; }
  .safety-list p { font-size: 10px; }
  .values { padding-top: 8px; }
  .marquee-track span { padding: 11px 18px; font-size: 14px; }
  .faq-list summary { padding: 17px 48px 17px 17px; gap: 10px; font-size: 13px; }
  .answer { padding: 0 17px 17px; gap: 10px; }
  .answer p { font-size: 11px; }
  .final-cta { padding: 78px 0; }
  .final-cta h2 { font-size: 35px; }
  .final-cta .section-inner > p:not(.section-label):not(.eligibility) { font-size: 12px; }
  .cta-hearts span:nth-child(1), .cta-hearts span:nth-child(3) { display: none; }
  .site-footer { padding-top: 55px; }
  .footer-inner nav { flex-direction: column; gap: 9px; }
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 22; display: block; padding: 8px 12px max(8px, env(safe-area-inset-bottom)); background: rgba(255,253,247,.92); border-top: 1px solid var(--border); backdrop-filter: blur(14px); }
  .sticky-cta a { height: 51px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 0 15px; border-radius: 15px; color: var(--white); background: var(--line-button); box-shadow: 0 8px 25px rgba(6,199,85,.25); }
  .sticky-cta small { width: 31px; aspect-ratio: 1; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--line-button); background: var(--white); font-family: Arial, sans-serif; font-size: 7px; font-weight: 900; }
  .sticky-cta strong { font-size: 14px; text-align: center; }
  .sticky-cta span { width: 28px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--line-button); background: var(--white); }
  .legal-header { padding: 18px 0; }
  .legal-main { padding: 55px 0 85px; }
}

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