:root {
  color-scheme: light;
  --bg: #f4f6f1;
  --surface: #ffffff;
  --surface-soft: #e8efeb;
  --surface-warm: #f7eee4;
  --ink: #17201d;
  --muted: #5e6c67;
  --green: #2f6758;
  --green-dark: #173f36;
  --orange: #c66d2a;
  --blue: #3f7195;
  --red: #983b35;
  --line: #d6ddd8;
  --shadow: 0 18px 44px rgba(23, 32, 29, 0.12);
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid #e69a5f; outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(214, 221, 216, 0.9);
  background: rgba(244, 246, 241, 0.94);
  backdrop-filter: blur(14px);
}
.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: url("ikonacd.png") center / cover no-repeat;
  box-shadow: 0 5px 14px rgba(15, 53, 47, 0.18);
}
.wordmark-mark::before,
.wordmark-mark::after {
  content: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.language-links {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.language-links a {
  min-width: 30px;
  padding: 5px 6px;
  border-radius: 4px;
  text-align: center;
}
.language-links a[aria-current="page"] { background: var(--green); color: #fff; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 23px; }
.nav-toggle::after { top: 31px; }
.nav-toggle[aria-expanded="true"]::before { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { top: 23px; transform: rotate(-45deg); }

.hero {
  min-height: 560px;
  height: calc(100svh - 112px);
  max-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 34, 30, 0.92) 0%, rgba(13, 34, 30, 0.72) 48%, rgba(13, 34, 30, 0.22) 100%),
    url("background_image.png") center 42% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(13, 34, 30, 0.3));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding-block: 60px; }
.hero-app-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin-bottom: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(5, 26, 23, 0.34);
}
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.hero .kicker { color: #f4b27f; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--green-dark); }
.button.secondary { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.12); }
.button.secondary:hover { background: rgba(255,255,255,0.22); }
.button.light { background: #fff; color: var(--green-dark); }
.button.blue { background: var(--blue); }
.button.danger { background: var(--red); }
.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.availability-dot { width: 9px; height: 9px; border-radius: 50%; background: #f0b040; }

/* User manual */
.language-pending {
  min-width: 30px;
  padding: 5px 6px;
  border-radius: 4px;
  text-align: center;
  color: #96a19c;
  cursor: help;
}
.manual-hero {
  padding: 92px 0 80px;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(13, 34, 30, 0.98) 0%, rgba(23, 63, 54, 0.95) 57%, rgba(41, 95, 78, 0.88) 100%),
    url("background_image.png") center / cover no-repeat;
}
.manual-hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr); gap: 64px; align-items: center; }
.manual-hero h1 { max-width: 760px; margin: 0; font-size: clamp(45px, 7vw, 76px); line-height: .98; letter-spacing: -1.5px; }
.manual-lead { max-width: 660px; margin: 24px 0 0; font-size: 20px; color: rgba(255,255,255,.84); }
.manual-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.manual-button-quiet { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.43); }
.manual-button-quiet:hover { background: rgba(255,255,255,.2); }
.manual-note { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.manual-hero-card { padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.09); box-shadow: 0 22px 50px rgba(2,15,12,.22); }
.manual-hero-card img { width: 84px; height: 84px; border-radius: 20px; margin-bottom: 24px; }
.manual-hero-card p { margin: 0 0 8px; color: #f5b987; font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.manual-hero-card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.85); }
.manual-hero-card li + li { margin-top: 7px; }
.premium-badge { display: inline-block; padding: 2px 7px; border-radius: 999px; background: #eab071; color: #542f11; font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }
.premium-badge.light { background: rgba(244,178,127,.2); color: #ffd2ac; border: 1px solid rgba(244,178,127,.45); }
.manual-overview { padding: 74px 0; background: var(--surface); }
.manual-heading { margin-bottom: 30px; }
.manual-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.manual-topic { min-height: 148px; padding: 21px; border: 1px solid var(--line); border-radius: 9px; background: #fff; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.manual-topic:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow); }
.manual-topic span { display: block; color: var(--orange); font-size: 12px; font-weight: 900; }
.manual-topic strong { display: block; margin-top: 18px; font-size: 19px; }
.manual-topic small { display: block; margin-top: 5px; color: var(--muted); font-size: 14px; }
.manual-section { padding: 92px 0; }
.manual-section-alt { background: #edf1ec; }
.manual-section-dark { color: #fff; background: #132620; }
.manual-section-warm { background: #f3e8dc; }
.manual-section-title { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 38px; }
.manual-section-title .kicker { margin: 4px 0 9px; }
.manual-section-title h2 { margin: 0; max-width: 780px; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.04; }
.manual-index { display: grid; width: 55px; height: 55px; flex: 0 0 55px; place-items: center; border-radius: 10px; background: var(--green); color: #fff; font-size: 18px; font-weight: 900; }
.manual-section-dark .manual-index { background: var(--orange); color: #4a2b14; }
.manual-section-dark .kicker { color: #f4b27f; }
.manual-split { display: grid; grid-template-columns: 1fr minmax(260px, .76fr); gap: 64px; align-items: center; }
.manual-split.reverse { grid-template-columns: minmax(260px, .65fr) 1fr; }
.manual-copy > :first-child { margin-top: 0; }
.manual-copy p { font-size: 17px; }
.manual-copy h3 { margin: 0 0 17px; font-size: 28px; }
.manual-muted { color: var(--muted); font-size: 14px !important; }
.manual-callout { display: grid; gap: 5px; margin-top: 15px; padding: 16px 18px; border-left: 5px solid var(--blue); border-radius: 5px; background: #edf3f7; }
.manual-callout.premium { border-left-color: var(--orange); background: #fff5eb; }
.manual-callout span { color: var(--muted); }
.manual-phone { width: min(100%, 310px); margin: 0 auto; padding: 9px; border: 8px solid #15231e; border-radius: 30px; background: #15231e; box-shadow: 0 28px 55px rgba(23,32,29,.24); }
.manual-phone img { width: 100%; border-radius: 18px; }
.manual-phone figcaption { padding: 11px 6px 3px; color: rgba(255,255,255,.72); font-size: 12px; text-align: center; }
.manual-phone-tall { max-height: 620px; overflow: hidden; }
.manual-list { margin: 0; padding-left: 24px; }
.manual-list li + li { margin-top: 9px; }
.manual-step-grid, .manual-feature-grid, .manual-triple-grid { display: grid; gap: 16px; margin-top: 46px; }
.manual-step-grid { grid-template-columns: repeat(3, 1fr); }
.manual-step-grid article { padding: 21px; border-left: 5px solid var(--green); background: #fff; border-radius: 7px; box-shadow: 0 12px 26px rgba(23,32,29,.08); }
.manual-step-grid article:nth-child(2) { border-left-color: var(--orange); }
.manual-step-grid article:nth-child(3) { border-left-color: var(--blue); }
.manual-step-grid h3 { margin: 18px 0 8px; font-size: 20px; }
.manual-step-grid p { margin: 0; color: var(--muted); }
.manual-feature-grid { grid-template-columns: repeat(3, 1fr); }
.manual-feature-grid article { padding: 22px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.78); }
.manual-icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 8px; background: var(--surface-soft); color: var(--green-dark); font-size: 22px; font-weight: 900; }
.manual-feature-grid h3 { margin: 18px 0 8px; font-size: 20px; }
.manual-feature-grid p { margin: 0; color: var(--muted); }
.manual-triple-grid { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.manual-panel { padding: 27px; border-top: 5px solid var(--green); border-radius: 9px; background: #fff; box-shadow: var(--shadow); }
.manual-panel:nth-child(2) { border-top-color: var(--orange); }
.manual-panel:nth-child(3) { border-top-color: var(--blue); }
.manual-panel .kicker { margin-bottom: 10px; }
.manual-panel h3 { margin: 0 0 12px; font-size: 25px; }
.manual-panel p, .manual-panel li { color: var(--muted); }
.manual-panel ul { margin: 15px 0 0; padding-left: 18px; }
.manual-tip { margin-top: 25px; padding: 18px 21px; border-radius: 8px; background: #e7efea; color: var(--green-dark); }
.manual-feature-grid-dark article { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
.manual-feature-grid-dark .manual-icon { background: rgba(244,178,127,.16); color: #ffc28e; }
.manual-feature-grid-dark p { color: rgba(255,255,255,.72); }
.manual-accordion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.manual-accordion-grid details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.manual-accordion-grid summary { cursor: pointer; font-weight: 850; }
.manual-accordion-grid p { margin: 14px 0 0; color: var(--muted); }
.manual-help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.manual-help-grid > div { padding: 28px; border-radius: 9px; background: rgba(255,255,255,.66); }
.manual-help-grid h3 { margin-top: 0; font-size: 25px; }
.manual-contact-card { color: #fff; background: var(--green-dark) !important; }
.manual-contact-card .kicker { color: #f5b987; }
.manual-contact-card p { color: rgba(255,255,255,.76); }
.manual-contact-card .button { background: #fff; color: var(--green-dark); }

.signal-strip { background: var(--green-dark); color: #fff; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal {
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.13);
}
.signal:last-child { border-right: 0; }
.signal strong { display: block; font-size: 18px; }
.signal span { color: rgba(255,255,255,0.7); font-size: 14px; }

.band { padding: 86px 0; }
.band.alt { background: #edf1ec; }
.band.dark { background: #132620; color: #fff; }
.band.warm { background: #f3e8dc; }
.section-heading { display: grid; grid-template-columns: 0.7fr 1fr; gap: 60px; align-items: end; margin-bottom: 34px; }
.section-heading h2 { margin: 0; max-width: 620px; font-size: 44px; line-height: 1.08; }
.section-heading p { margin: 0; max-width: 650px; color: var(--muted); font-size: 17px; }
.dark .section-heading p { color: rgba(255,255,255,0.72); }
.section-heading.one-column { display: block; }
.section-heading.one-column p { margin-top: 14px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  background: var(--surface);
}
.feature-card:nth-child(2n) { border-top-color: var(--orange); }
.feature-card:nth-child(3n) { border-top-color: var(--blue); }
.feature-number { color: var(--green); font-weight: 850; font-size: 13px; }
.feature-card h3 { margin: 26px 0 8px; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); }

.product-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.phone-stage {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone {
  width: min(330px, 86%);
  padding: 10px;
  border: 4px solid #11211d;
  border-radius: 28px;
  background: #11211d;
  box-shadow: 0 24px 60px rgba(23,32,29,0.24);
  transform: rotate(-2deg);
}
.phone img { border-radius: 18px; }
.product-copy h2 { margin: 0; font-size: 44px; line-height: 1.08; }
.product-copy > p { color: var(--muted); font-size: 17px; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.check-list li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: ""; position: absolute; left: 3px; top: 20px; width: 12px; height: 7px; border-left: 3px solid var(--green); border-bottom: 3px solid var(--green); transform: rotate(-45deg); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 28px 36px 0 0; position: relative; }
.step-index { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 850; }
.step h3 { margin: 20px 0 8px; }
.step p { margin: 0; color: var(--muted); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.plan-card.local { border-top: 6px solid var(--blue); }
.plan-card.premium { border-top: 6px solid var(--orange); box-shadow: var(--shadow); }
.plan-card.trial { border-top: 6px solid var(--green); }
.plan-label { color: var(--muted); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.plan-card h3 { margin: 10px 0 2px; font-size: 25px; }
.plan-price { min-height: 54px; margin: 14px 0; color: var(--green-dark); font-size: 18px; font-weight: 850; }
.plan-card p { color: var(--muted); }
.plan-card ul { flex: 1; margin: 12px 0 0; padding-left: 20px; color: var(--muted); }
.plan-card li + li { margin-top: 7px; }
.plan-note { margin: 24px 0 0; color: var(--muted); font-size: 14px; }

.coach-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.coach-copy h2 { margin: 0; font-size: 44px; line-height: 1.08; }
.coach-copy p { color: rgba(255,255,255,0.72); }
.coach-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.coach-metric { min-height: 150px; padding: 22px; border: 1px solid rgba(255,255,255,0.14); border-left: 5px solid #f09a57; border-radius: 8px; background: rgba(255,255,255,0.06); }
.coach-metric strong { display: block; margin-bottom: 8px; font-size: 20px; }
.coach-metric span { color: rgba(255,255,255,0.68); }

.faq-list { max-width: 880px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface-soft); color: var(--green); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 48px 22px 0; color: var(--muted); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-item { padding: 23px; border: 1px solid var(--line); border-left: 5px solid var(--green); border-radius: 8px; background: var(--surface); }
.support-item:nth-child(2) { border-left-color: var(--blue); }
.support-item:nth-child(3) { border-left-color: var(--red); }
.support-item h3 { margin: 0 0 8px; }
.support-item p { margin: 0 0 18px; color: var(--muted); }
.text-link { color: var(--green); font-weight: 850; text-underline-offset: 3px; }

.release-cta { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 38px; border-radius: 8px; background: var(--green); color: #fff; }
.release-cta h2 { margin: 0; font-size: 34px; }
.release-cta p { margin: 8px 0 0; color: rgba(255,255,255,0.76); }

.tester-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
  gap: 46px;
  align-items: center;
  padding: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), #285d4f);
  color: #fff;
  box-shadow: var(--shadow);
}
.tester-cta .kicker { color: #f5b987; }
.tester-cta h2 { max-width: 680px; margin: 0; font-size: 39px; line-height: 1.08; }
.tester-cta p { max-width: 720px; color: rgba(255,255,255,.78); }
.tester-points { margin: 20px 0 0; padding-left: 20px; color: rgba(255,255,255,.84); }
.tester-points li + li { margin-top: 7px; }
.tester-actions { display: grid; gap: 11px; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; background: rgba(255,255,255,.08); }
.tester-actions .button { width: 100%; }
.tester-facebook { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.42); border-radius: 6px; color: #fff; font-weight: 800; text-decoration: none; }
.tester-facebook:hover { background: rgba(255,255,255,.12); }
.tester-actions p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: 13px; text-align: center; }

.site-footer { padding: 48px 0; background: #0f1d19; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 48px; }
.footer-copy { max-width: 520px; color: rgba(255,255,255,0.64); }
.footer-title { margin: 0 0 12px; font-size: 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); font-size: 13px; }

.legal-hero { padding: 70px 0 48px; background: var(--green-dark); color: #fff; }
.legal-hero h1 { max-width: 820px; margin: 0; font-size: 52px; line-height: 1.06; }
.legal-hero p { max-width: 720px; margin: 16px 0 0; color: rgba(255,255,255,0.74); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; padding-block: 54px 80px; }
.legal-toc { align-self: start; position: sticky; top: 96px; }
.legal-toc strong { display: block; margin-bottom: 12px; }
.legal-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: 14px; text-decoration: none; }
.legal-toc a:hover { color: var(--green); }
.legal-content { max-width: 790px; }
.legal-section { padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin: 0 0 12px; font-size: 26px; }
.legal-section h3 { margin: 22px 0 8px; font-size: 18px; }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-section a { color: var(--green); font-weight: 750; }
.legal-callout { padding: 18px; border-left: 5px solid var(--blue); background: #e9f0f5; }
.legal-callout.danger { border-left-color: var(--red); background: #f5e8e7; }
.delete-steps { display: grid; gap: 14px; counter-reset: delete-step; }
.delete-step { position: relative; padding: 20px 20px 20px 70px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); counter-increment: delete-step; }
.delete-step::before { content: counter(delete-step); position: absolute; left: 20px; top: 20px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 850; }
.delete-step h2 { margin: 0 0 6px; font-size: 20px; }
.delete-step p { margin: 0; color: var(--muted); }

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

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 68px 0 auto;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    padding: 24px 20px 30px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; gap: 16px; }
  .language-links { padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-heading, .product-layout, .coach-layout { grid-template-columns: 1fr; gap: 32px; }
  .tester-cta { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.premium { grid-column: span 2; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal:nth-child(2) { border-right: 0; }
  .signal:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.13); }
  .support-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
  .manual-hero-grid, .manual-split, .manual-split.reverse, .manual-help-grid { grid-template-columns: 1fr; gap: 34px; }
  .manual-topic-grid, .manual-step-grid, .manual-feature-grid, .manual-triple-grid { grid-template-columns: repeat(2, 1fr); }
  .manual-hero { padding: 72px 0 62px; }
  .manual-hero-card { max-width: 520px; }
  .manual-phone-tall { max-height: 540px; }
  .manual-accordion-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--content)); }
  .hero { min-height: 500px; height: calc(100svh - 108px); max-height: 650px; background-position: 58% 42%; }
  .hero h1 { font-size: 46px; }
  .hero-app-icon { width: 70px; height: 70px; border-radius: 18px; margin-bottom: 18px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .signal-grid, .feature-grid, .plan-grid, .steps, .coach-metrics, .footer-grid { grid-template-columns: 1fr; }
  .signal { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .signal:last-child { border-bottom: 0; }
  .band { padding: 62px 0; }
  .section-heading h2, .product-copy h2, .coach-copy h2 { font-size: 34px; }
  .feature-card { min-height: 0; }
  .phone-stage { min-height: 0; padding: 10px 0 28px; }
  .steps { border-top: 0; }
  .step { padding: 22px 0; border-top: 1px solid var(--line); }
  .plan-card.premium { grid-column: auto; }
  .release-cta { grid-template-columns: 1fr; padding: 26px; }
  .release-cta .button { width: 100%; }
  .tester-cta { padding: 27px; }
  .tester-cta h2 { font-size: 32px; }
  .footer-grid > :first-child { grid-column: auto; }
  .legal-hero { padding: 52px 0 38px; }
  .legal-hero h1 { font-size: 38px; }
  .manual-hero { padding: 58px 0 52px; }
  .manual-hero h1 { font-size: 43px; letter-spacing: -1px; }
  .manual-lead { font-size: 17px; }
  .manual-actions .button { width: 100%; }
  .manual-topic-grid, .manual-step-grid, .manual-feature-grid, .manual-triple-grid { grid-template-columns: 1fr; }
  .manual-overview, .manual-section { padding: 62px 0; }
  .manual-section-title { gap: 14px; margin-bottom: 28px; }
  .manual-index { width: 45px; height: 45px; flex-basis: 45px; font-size: 15px; }
  .manual-section-title h2 { font-size: 33px; }
  .manual-phone { width: min(100%, 280px); }
  .manual-phone-tall { max-height: 490px; }
  .manual-help-grid > div { padding: 22px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1714;
    --surface: #14221e;
    --surface-soft: #21342e;
    --surface-warm: #34291f;
    --ink: #f3f5f2;
    --muted: #b2beb9;
    --green: #63a794;
    --green-dark: #173f36;
    --line: #2a3b35;
  }
  .site-header { background: rgba(13, 23, 20, 0.94); }
  .nav-links { background-color: var(--bg); }
  .band.alt { background: #101d19; }
  .band.warm { background: #261f19; }
  .plan-price { color: #8bc5b5; }
  .legal-callout { background: #172a32; }
  .legal-callout.danger { background: #301d1c; }
}
