:root {
  color-scheme: light;
  --blue: #0066cc;
  --blue-dark: #004f9f;
  --blue-soft: #eaf4ff;
  --blue-mist: #f4f9ff;
  --ink: #101114;
  --muted: #5f636b;
  --subtle: #656c75;
  --line: #dfe3e8;
  --surface: #ffffff;
  --canvas: #f5f7fa;
  --success: #147d49;
  --success-soft: #e9f7ef;
  --warning: #a45512;
  --warning-soft: #fff5e8;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --watermelon: #ec4b5f;
  --leaf: #2e775c;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 18px 55px rgba(27, 39, 51, 0.09);
  --shadow-soft: 0 8px 30px rgba(27, 39, 51, 0.07);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 2%, rgba(0, 102, 204, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0, #fff 36rem, var(--canvas) 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body[data-page="reset"] { background: #f4f7fb; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 227, 232, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand span { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 590;
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); }

.mobile-menu-button { display: none; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.narrow { width: min(calc(100% - 32px), 820px); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section.compact { padding: clamp(48px, 6vw, 82px) 0; }
.section.white { background: #fff; }
.section.soft { background: var(--blue-mist); }
.section.dark { background: #101419; color: #fff; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dark .eyebrow { color: #7ec0ff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: -0.045em; }
h1 { margin-bottom: 22px; font-size: clamp(46px, 7.2vw, 92px); font-weight: 750; line-height: 0.98; }
h2 { margin-bottom: 20px; font-size: clamp(36px, 5vw, 64px); font-weight: 720; line-height: 1.02; }
h3 { margin-bottom: 10px; font-size: clamp(22px, 3vw, 32px); line-height: 1.08; }
h4 { margin-bottom: 8px; font-size: 18px; line-height: 1.2; }
p { color: var(--muted); }
.dark p { color: rgba(255,255,255,0.7); }
.dark .card p { color: var(--muted); }
.dark .card h3, .dark .card strong { color: var(--ink); }
.lede { max-width: 680px; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.45; }
.fine-print { color: var(--subtle); font-size: 12px; line-height: 1.5; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 clamp(80px, 10vw, 148px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: clamp(36px, 6vw, 86px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 10ch; }
.hero-copy .lede { max-width: 620px; }
.hero-note { margin: 18px 0 0; max-width: 610px; color: var(--subtle); font-size: 13px; }

.watermelon-orbit {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.watermelon-orbit::before {
  content: "";
  position: absolute;
  inset: 3%;
  z-index: -2;
  border: 1px solid rgba(0, 102, 204, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(0, 102, 204, 0.035), 0 0 0 96px rgba(0, 102, 204, 0.02);
}
.watermelon-orbit::after {
  content: "3";
  position: absolute;
  z-index: -1;
  color: rgba(0, 102, 204, 0.055);
  font-size: clamp(150px, 24vw, 330px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
}
.orbit-card {
  width: min(82%, 410px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 42px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 32px 90px rgba(26, 56, 87, 0.16);
  backdrop-filter: blur(18px);
}
.orbit-card strong { display: block; font-size: clamp(54px, 8vw, 92px); line-height: 0.9; letter-spacing: -0.07em; }
.orbit-card span { display: block; margin-top: 12px; color: var(--muted); font-weight: 650; }
.orbit-line { height: 7px; margin-top: 28px; overflow: hidden; border-radius: 999px; background: #e6eaf0; }
.orbit-line i { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--watermelon), var(--blue)); }

.form-card {
  max-width: 640px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.form-card input {
  min-width: 0;
  min-height: 54px;
  border: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--ink);
  outline: none;
}
.form-status { min-height: 22px; margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,102,204,0.2); }
.button.secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.button.secondary:hover { background: #f7f9fb; box-shadow: var(--shadow-soft); }
.button.dark-button { background: #fff; color: #101419; }
.button.ghost { background: transparent; color: var(--blue); }
.button[aria-disabled="true"], .button:disabled { cursor: not-allowed; opacity: 0.58; transform: none; box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.trust-row { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-item { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,0.7); }
.trust-item strong { display: block; font-size: 18px; letter-spacing: -0.03em; }
.trust-item span { color: var(--muted); font-size: 13px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}
.card.flat { box-shadow: none; }
.card.blue { border-color: #cfe6ff; background: var(--blue-mist); }
.card.danger { border-color: #ffd2cc; background: var(--danger-soft); }
.card.warning { border-color: #f5d8b6; background: var(--warning-soft); }
.card.success { border-color: #c5ead5; background: var(--success-soft); }
.card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.number-card { position: relative; overflow: hidden; min-height: 260px; }
.number-card::after {
  content: attr(data-number);
  position: absolute;
  right: 16px;
  bottom: -30px;
  color: rgba(0,102,204,0.06);
  font-size: 150px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.08em;
}

.proof-placeholder {
  padding: 28px;
  border: 1px dashed #b8c1cc;
  border-radius: var(--radius);
  background: #fafbfc;
}
.proof-placeholder strong { display: block; margin-bottom: 8px; }

.comparison { width: 100%; border-collapse: collapse; border-spacing: 0; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.comparison th, .comparison td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { color: var(--subtle); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison td:first-child { font-weight: 680; }

.feature-list, .check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.feature-list li, .check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.feature-list li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 800; }
.danger-list li::before { content: "!"; color: var(--danger); }

.product-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #f9fbfd, #e7f2ff);
  box-shadow: var(--shadow);
}
.product-preview::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto;
  height: 54px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
}
.preview-panel { position: absolute; top: 102px; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; }
.preview-main, .preview-side { border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; background: rgba(255,255,255,0.9); padding: 22px; }
.preview-ring { width: 148px; height: 148px; margin: 34px auto; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 68%, #e8edf2 68%); }
.preview-ring::after { content: "68%"; width: 108px; height: 108px; display: grid; place-items: center; border-radius: 50%; background: #fff; font-size: 31px; font-weight: 760; }
.preview-bar { height: 10px; margin: 14px 0; border-radius: 999px; background: #e7ebf0; }
.preview-bar i { display: block; height: 100%; border-radius: inherit; background: var(--blue); }

.price-card { padding: clamp(28px, 4vw, 48px); border: 1px solid #cfe6ff; border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #eef7ff); box-shadow: var(--shadow); }
.offer-cover { width: 100%; height: auto; max-height: 520px; margin: 0 0 28px; border: 1px solid #d9e3ec; border-radius: 22px; object-fit: cover; box-shadow: 0 18px 55px rgba(27,39,51,0.12); }
.product-cover-figure { margin: 0; padding: 18px; border: 1px solid #d7e2ec; border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #edf6ff); box-shadow: var(--shadow); }
.product-cover-figure img { width: 100%; height: auto; display: block; border-radius: 22px; }
.product-cover-figure figcaption { padding: 13px 4px 0; color: var(--muted); font-size: 12px; text-align: center; }
.price { margin: 18px 0; font-size: clamp(54px, 8vw, 84px); font-weight: 760; line-height: 1; letter-spacing: -0.07em; }
.price small { font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--muted); }
.price-note { margin: -8px 0 20px; color: var(--muted); }

.video-shell {
  position: relative;
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0f141b, #25364a);
  color: #fff;
  box-shadow: var(--shadow);
}
.video-shell::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(75,160,255,.32), transparent 30%); }
.video-placeholder { position: relative; z-index: 1; max-width: 520px; padding: 30px; text-align: center; }
.play { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--blue); font-size: 26px; box-shadow: 0 10px 40px rgba(0,0,0,.22); }

.notice { padding: 16px 18px; border-left: 4px solid var(--blue); border-radius: 10px; background: var(--blue-mist); color: var(--muted); }
.notice strong { color: var(--ink); }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq summary { cursor: pointer; padding: 20px 22px; font-weight: 680; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 22px 20px; margin-bottom: 0; }

.cta-panel { padding: clamp(34px, 5vw, 64px); border-radius: var(--radius-lg); background: linear-gradient(135deg, #0066cc, #00488f); color: #fff; box-shadow: 0 28px 80px rgba(0, 78, 158, 0.24); }
.cta-panel p { color: rgba(255,255,255,0.76); }
.cta-panel h2 { max-width: 12ch; }

.site-footer { padding: 44px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }

/* Reset experience */
.reset-app { width: min(100%, 880px); margin: 0 auto; padding: 24px 16px 120px; }
.reset-topbar { position: sticky; top: 0; z-index: 80; margin: -24px -16px 24px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(223,227,232,.86); background: rgba(244,247,251,.84); backdrop-filter: blur(18px); }
.reset-brand { font-weight: 760; letter-spacing: -0.03em; }
.reset-brand span { color: var(--blue); }
.progress-pill { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 12px; font-weight: 700; }
.readiness { display: grid; gap: 14px; }
.readiness label, .quiz-option {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.readiness input, .quiz-option input { width: 20px; height: 20px; accent-color: var(--blue); }
.screen-result { display: none; margin-top: 18px; }
.screen-result.show { display: block; }
.reset-dashboard { display: none; }
.reset-dashboard.show { display: block; }
.reset-hero { padding: 34px; border-radius: 28px; background: linear-gradient(145deg, #fff, #eaf4ff); box-shadow: var(--shadow-soft); }
.reset-hero h1 { font-size: clamp(42px, 10vw, 72px); }
.reset-meter { position: relative; width: 170px; height: 170px; margin: 24px 0; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) var(--progress, 0%), #e8edf3 0); }
.reset-meter::after { content: attr(data-label); width: 132px; height: 132px; display: grid; place-items: center; border-radius: 50%; background: #fff; font-size: 28px; font-weight: 760; }
.phase-tabs { margin: 20px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.phase-tab { min-height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--muted); cursor: pointer; font-weight: 680; }
.phase-tab.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.phase-panel { display: none; }
.phase-panel.active { display: block; animation: rise 220ms ease both; }
.task-list { display: grid; gap: 10px; }
.task {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}
.task input { width: 22px; height: 22px; accent-color: var(--blue); }
.task strong { display: block; }
.task span { display: block; margin-top: 2px; color: var(--muted); font-size: 14px; }
.stop-banner { margin-top: 22px; padding: 22px; border: 1px solid #ffd2cc; border-radius: 18px; background: var(--danger-soft); }
.stop-banner h3 { color: var(--danger); }
.sticky-cta { position: fixed; left: 50%; bottom: 16px; z-index: 90; width: min(calc(100% - 24px), 820px); transform: translateX(-50%); padding: 10px; display: flex; gap: 10px; align-items: center; justify-content: space-between; border: 1px solid rgba(223,227,232,.9); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: 0 18px 50px rgba(27,39,51,.18); backdrop-filter: blur(18px); }
.sticky-cta p { margin: 0 0 0 8px; color: var(--ink); font-size: 13px; font-weight: 680; }

/* Quiz */
.quiz { display: grid; gap: 18px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: rise 220ms ease both; }
.quiz-options { display: grid; gap: 10px; margin: 20px 0; }
.quiz-option:has(input:checked) { border-color: var(--blue); background: var(--blue-mist); color: var(--ink); }
.quiz-result { display: none; }
.quiz-result.show { display: block; }

.checkout-notice { position: fixed; inset: auto 16px 16px; z-index: 500; max-width: 520px; margin: auto; padding: 18px; border: 1px solid #f0cfaa; border-radius: 16px; background: #fff8ed; box-shadow: var(--shadow); color: #74450c; }
.checkout-notice button { float: right; border: 0; background: transparent; cursor: pointer; font-weight: 800; }

.kit-shell { padding: 42px 0 96px; }
.kit-header { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.kit-header h1 { max-width: 12ch; margin-bottom: 10px; font-size: clamp(38px, 5.5vw, 72px); }
.kit-progress-card { min-width: 250px; padding: 20px; border-radius: var(--radius); background: var(--blue-soft); }
.kit-progress-copy { display: flex; justify-content: space-between; gap: 20px; color: var(--ink); font-weight: 700; }
.kit-progress-track { height: 9px; margin-top: 12px; overflow: hidden; border-radius: 999px; background: #d6e6f7; }
.kit-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--blue); transition: width .25s ease; }
.kit-layout { margin-top: 24px; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; align-items: start; }
.kit-days { position: sticky; top: 94px; display: grid; gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.kit-day { min-height: 48px; padding: 0 15px; border: 0; border-radius: 12px; background: transparent; color: var(--muted); cursor: pointer; text-align: left; font-weight: 680; }
.kit-day:hover { background: var(--canvas); color: var(--ink); }
.kit-day.active, .kit-day[aria-selected="true"] { background: var(--blue); color: #fff; }
.kit-panel { display: none; }
.kit-panel[hidden] { display: none; }
.kit-panel.active { display: block; }
.kit-panel > header { margin-bottom: 20px; }
.kit-panel > header h2 { margin-bottom: 10px; font-size: clamp(34px, 4.5vw, 56px); }
.kit-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.kit-panel .card { box-shadow: none; }
.kit-panel .card.wide { grid-column: 1 / -1; }
.kit-checks { display: grid; gap: 10px; margin-top: 14px; }
.kit-check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 11px; align-items: start; color: var(--muted); cursor: pointer; }
.kit-check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--blue); }
.meal-formula { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.meal-formula div { padding: 14px; border-radius: 13px; background: var(--canvas); }
.meal-formula strong { display: block; margin-bottom: 4px; }
.safety-note { padding: 18px; border: 1px solid #f0cfaa; border-radius: 15px; background: var(--warning-soft); color: #70400a; }
.safety-note p { margin: 6px 0 0; color: #70400a; }
.kit-tools { margin-top: 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.text-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; text-decoration: underline; }
.consent-copy { max-width: 620px; margin: 10px 0 0; }
.consent-copy a, .consent-check a { color: var(--blue-dark); }
.application-form { display: grid; gap: 24px; }
.application-form fieldset { margin: 0; padding: 0; border: 0; }
.application-form legend { margin-bottom: 10px; color: var(--ink); font-weight: 720; }
.application-form textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field > span { color: var(--ink); font-size: 14px; font-weight: 700; line-height: 1.35; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #cbd4de;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  box-shadow: 0 1px 0 rgba(19, 35, 51, .02);
}
.field textarea { min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #778492; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.button:focus-visible,
button:focus-visible,
a:focus-visible { outline: 3px solid rgba(0, 102, 204, .28); outline-offset: 3px; }
.consent-check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; align-items: start; color: var(--muted); }
.consent-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); }
.comparison { width: 100%; table-layout: fixed; }
.comparison th, .comparison td { overflow-wrap: anywhere; }

.kit-workbench { margin-top: 26px; display: grid; gap: 18px; }
.workbench-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.workbench-grid .wide { grid-column: 1 / -1; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-grid label { display: grid; gap: 5px; }
.choice-grid select, .kit-notes, .shopping-input {
  width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); font: inherit;
}
.kit-notes { min-height: 130px; resize: vertical; }
.shopping-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.shopping-list { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.shopping-list li { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 11px; background: var(--canvas); }
.shopping-list button { border: 0; background: transparent; color: var(--danger); cursor: pointer; }
.template-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.template-card { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.template-card h4 { margin-bottom: 8px; }
.template-card ol { margin: 0; padding-left: 20px; color: var(--muted); }

@media (max-width: 760px) {
  .kit-header { grid-template-columns: 1fr; padding: 24px; }
  .kit-progress-card { min-width: 0; }
  .kit-layout { grid-template-columns: 1fr; }
  .kit-days { position: sticky; top: 70px; z-index: 40; grid-template-columns: repeat(7, minmax(54px, 1fr)); overflow-x: auto; }
  .kit-day { min-width: 54px; padding: 0 9px; text-align: center; }
  .kit-day span { display: none; }
  .kit-panel-grid, .meal-formula { grid-template-columns: 1fr; }
  .kit-tools { flex-direction: column; align-items: stretch; }
  .kit-tools .text-button { align-self: flex-start; }
}

@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .watermelon-orbit { width: min(100%, 560px); margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-preview { min-height: 460px; }
}

@media (max-width: 700px) {
  body { background: linear-gradient(180deg, #fff 0, #fff 30rem, var(--canvas) 100%); }
  .nav-shell { min-height: 62px; }
  .site-nav { display: none; position: absolute; top: 62px; left: 0; right: 0; padding: 18px 16px 24px; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
  .site-nav.open { display: flex; }
  .mobile-menu-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .form-card { grid-template-columns: 1fr; border-radius: 18px; }
  .form-card .button { width: 100%; }
  .trust-row, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { gap: 14px; }
  .section { padding: 68px 0; }
  .watermelon-orbit { margin-top: 26px; }
  .orbit-card { border-radius: 28px; }
  .comparison { display: block; overflow-x: auto; }
  .form-grid, .workbench-grid, .choice-grid, .template-grid { grid-template-columns: 1fr; }
  .workbench-grid .wide { grid-column: auto; }
  .shopping-row { grid-template-columns: 1fr; }
  .preview-panel { grid-template-columns: 1fr; }
  .preview-side { display: none; }
  .button-row .button { width: 100%; }
  .footer-grid { flex-direction: column; }
  .sticky-cta p { display: none; }
  .sticky-cta .button { width: 100%; }
  .reset-hero { padding: 24px; }
  .phase-tabs { position: sticky; top: 70px; z-index: 40; padding: 8px; border-radius: 16px; background: rgba(244,247,251,.9); backdrop-filter: blur(14px); }
}

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