:root {
  color-scheme: light;
  --bg: #fffdfd;
  --bg-soft: #fff4f6;
  --bg-rose: #ffe9ed;
  --panel: #ffffff;
  --text: #2d1520;
  --muted: #755963;
  --line: #edd9df;
  --accent: #c60036;
  --accent-dark: #910128;
  --accent-soft: #ff637e;
  --plum: #613246;
  --sage: #39736b;
  --shadow: 0 18px 50px rgba(103, 21, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--accent-dark); }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(198, 0, 54, 0.1);
  background: rgba(255, 253, 253, 0.9);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--text); font-size: 20px; font-weight: 850; text-decoration: none; }
.brand:hover { color: var(--text); }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 7px 18px rgba(198, 0, 54, 0.2); }
.nav-links, .footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.nav-links a, .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-rose); color: var(--accent-dark); }

.hero { display: grid; align-items: center; min-height: 570px; padding: 58px 0 66px; background: var(--bg-soft); text-align: center; }
.hero-inner { display: flex; align-items: center; flex-direction: column; }
.hero-icon { width: 126px; height: 126px; margin-bottom: 25px; border-radius: 28px; box-shadow: 0 24px 54px rgba(198, 0, 54, 0.2); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
h1, h2, h3, p, li, span { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--text); line-height: 1.08; letter-spacing: 0; }
.hero h1 { margin: 0; font-size: clamp(60px, 9vw, 108px); font-weight: 900; }
.hero-subtitle { margin: 9px 0 0; color: var(--plum); font-size: clamp(22px, 3vw, 32px); font-weight: 750; }
.hero-text { max-width: 720px; margin: 18px auto 28px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(198, 0, 54, 0.18);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { background: var(--accent-dark); color: #ffffff; transform: translateY(-1px); }
.button.secondary { background: transparent; box-shadow: none; color: var(--accent-dark); }
.button.secondary:hover { background: var(--bg-rose); color: var(--accent-dark); }

.section { padding: 72px 0; }
.intro-band, .privacy-band { border-block: 1px solid var(--line); background: #ffffff; }
.split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); align-items: start; gap: clamp(30px, 7vw, 90px); }
.split > p { margin: 29px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2, .split h2, .notice h2 { margin: 0; font-size: clamp(32px, 4.5vw, 51px); font-weight: 850; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 8px 26px rgba(103, 21, 48, 0.05); }
.card > span { display: block; margin-bottom: 34px; color: var(--accent-soft); font-size: 12px; font-weight: 850; }
.card h3 { margin: 0 0 10px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); }

.routine-band { background: var(--plum); color: #ffffff; }
.routine-band .eyebrow { color: #ff9dad; }
.routine-band h2 { color: #ffffff; }
.routine-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 34px 0 0; padding: 0; list-style: none; counter-reset: routine; }
.routine-steps li { display: flex; flex-direction: column; min-height: 168px; padding: 24px; border-left: 1px solid rgba(255, 255, 255, 0.2); counter-increment: routine; }
.routine-steps li::before { margin-bottom: 34px; color: #ff9dad; font-size: 13px; font-weight: 850; content: "0" counter(routine); }
.routine-steps strong { margin-bottom: 8px; font-size: 20px; }
.routine-steps span { color: #ecdde3; }

.privacy-band { background: var(--bg-rose); }
.intro-band .eyebrow, .privacy-band .eyebrow { color: var(--sage); }
.disclaimer-section { background: #ffffff; }
.notice { padding: clamp(26px, 5vw, 50px); border: 1px solid #e9c9d2; border-left: 5px solid var(--accent); border-radius: 8px; background: var(--bg-soft); }
.notice p:last-child { max-width: 900px; margin: 16px 0 0; color: var(--muted); }
.support-band { background: var(--accent); color: #ffffff; }
.support-band .eyebrow { color: #ffd2db; }
.support-band h2, .support-band a { color: #ffffff; }
.support-band .split > p { color: #fff1f4; }

.page { min-height: 66vh; padding: 76px 0 90px; }
.page > .eyebrow { margin-bottom: 14px; }
.page > h1, .legal-page > h1:first-child { margin: 0 0 28px; font-size: clamp(42px, 7vw, 68px); font-weight: 900; }
.legal-page { max-width: 860px; }
.legal-page h2 { margin: 52px 0 16px; font-size: clamp(25px, 3.4vw, 34px); }
.legal-page h3 { margin: 31px 0 12px; font-size: 21px; }
.legal-page p, .legal-page li, .support-page > p { color: #5f4650; }
.legal-page p { margin: 0 0 18px; }
.legal-page ul { margin: 0 0 24px; padding-left: 23px; }
.legal-page li { margin-bottom: 9px; }
.legal-page hr { margin: 48px 0; border: 0; border-top: 1px solid var(--line); }
.legal-page .notice { margin-top: 42px; }
.compact-notice h2 { margin-top: 0; }
.support-page { max-width: 900px; }
.support-page > h1 { margin: 0 0 18px; font-size: clamp(42px, 7vw, 68px); font-weight: 900; }
.support-page > p { max-width: 700px; font-size: 18px; }
.large-link { margin: 24px 0 40px; font-size: clamp(23px, 4vw, 38px) !important; font-weight: 800; }
.info-list { border-top: 1px solid var(--line); }
.info-list p { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; margin: 0; padding: 17px 0; border-bottom: 1px solid var(--line); }
.info-list strong { color: var(--text); }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #ffffff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 10px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand span { color: var(--muted); font-size: 12px; }
.footer-links { justify-content: flex-end; }
.footer-links a { font-size: 12px; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 10px; padding: 13px 0; }
  .nav-links { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
  .nav-links a { flex: 0 0 auto; }
  .hero { min-height: 530px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; gap: 14px; }
  .split > p { margin-top: 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1120px); }
  .site-header { position: static; }
  .brand img { width: 40px; height: 40px; }
  .hero { min-height: auto; padding: 44px 0 52px; }
  .hero-icon { width: 104px; height: 104px; border-radius: 24px; }
  .hero h1 { font-size: 60px; }
  .hero-subtitle { font-size: 22px; }
  .actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 52px 0; }
  .feature-grid, .routine-steps { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card > span { margin-bottom: 22px; }
  .routine-steps li { min-height: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .routine-steps li::before { margin-bottom: 22px; }
  .page { padding: 50px 0 68px; }
  .page > h1, .legal-page > h1:first-child, .support-page > h1 { font-size: 42px; }
  .info-list p { grid-template-columns: 1fr; gap: 2px; }
  .footer-links { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 20px, 1120px); }
  .hero h1 { font-size: 52px; }
  .nav-links a { padding-inline: 9px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
