:root {
  color-scheme: light;
  --green-950: #10271a;
  --green-900: #173a27;
  --green-800: #21482d;
  --green-700: #2e5732;
  --green-600: #3d6a43;
  --green-100: #e8f1e9;
  --green-50: #f4f8f4;
  --lime: #c8ef79;
  --lime-strong: #b6df62;
  --cream: #fbfaf5;
  --white: #ffffff;
  --ink: #14241a;
  --muted: #536158;
  --line: #d8e2da;
  --danger: #8f2f2b;
  --shadow-sm: 0 12px 30px rgba(23, 58, 39, 0.08);
  --shadow-lg: 0 28px 70px rgba(23, 58, 39, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1200px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-size: 1rem;
  overflow-x: hidden;
}

body, button, input, textarea, select { font: inherit; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #286bce;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell,
.header-shell,
.hero-shell,
.footer-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(46, 87, 50, 0.14);
  backdrop-filter: blur(16px);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-950);
  text-decoration: none;
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img { width: 44px; height: 44px; }

.wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.wordmark-name { color: currentColor; }
.wordmark-domain { color: var(--green-700); font-weight: 680; }

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.main-navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 12px;
  color: #415047;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 720;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-navigation a:hover {
  color: var(--green-900);
  background: var(--green-100);
}

.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid #a8bdac;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
}

.menu-icon { width: 20px; display: grid; gap: 4px; }
.menu-icon span { width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform 160ms ease, opacity 160ms ease; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(200, 239, 121, 0.26) 0, rgba(200, 239, 121, 0) 28%),
    radial-gradient(circle at 5% 86%, rgba(46, 87, 50, 0.1) 0, rgba(46, 87, 50, 0) 25%),
    linear-gradient(145deg, #fbfaf5 0%, #f5f9f4 62%, #eef6ee 100%);
}

.hero-shell {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: 84px 90px;
}

.hero-copy-block { position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  content: "";
  background: var(--lime-strong);
  border: 3px solid rgba(46, 87, 50, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(182, 223, 98, 0.16);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3rem, 5.1vw, 4.9rem);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span { display: block; color: var(--green-600); }

.hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 790;
  line-height: 1.25;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 24px rgba(33, 72, 45, 0.18);
}

.button-primary:hover { background: var(--green-950); box-shadow: 0 16px 30px rgba(33, 72, 45, 0.22); }

.button-secondary { color: var(--green-950); background: rgba(255, 255, 255, 0.66); border-color: #abc0af; }
.button-secondary:hover { background: var(--white); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: #435148;
  font-size: 0.89rem;
  font-weight: 650;
}

.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts li::before { content: "✓"; color: var(--green-700); font-weight: 900; }

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(46, 87, 50, 0.16);
  border-radius: 50%;
}

.visual-orbit-one { width: 520px; height: 520px; }
.visual-orbit-two { width: 410px; height: 410px; border-color: rgba(182, 223, 98, 0.42); }

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(326px, 78vw);
  padding: 12px;
  background: #0e1f16;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 46px;
  box-shadow: var(--shadow-lg), 0 0 0 9px rgba(255, 255, 255, 0.7);
  transform: rotate(2.5deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 76px;
  height: 20px;
  background: #0e1f16;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 555px;
  padding: 36px 19px 22px;
  background: #f7faf7;
  border-radius: 35px;
  overflow: hidden;
}

.app-bar { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid #dce6de; }
.app-bar img { width: 34px; height: 34px; border-radius: 9px; }
.app-bar div { display: grid; line-height: 1.25; }
.app-bar strong { color: var(--green-950); font-size: 0.95rem; }
.app-bar strong .app-name-domain { color: var(--green-700); font-size: inherit; font-weight: 680; }
.app-bar span { color: #5f6f65; font-size: 0.7rem; }

.profile-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0;
  padding: 9px 11px;
  color: var(--green-800);
  background: #e9f3ea;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 750;
}

.status-dot { width: 7px; height: 7px; background: #53a95d; border-radius: 50%; box-shadow: 0 0 0 3px rgba(83, 169, 93, 0.13); }

.screen-heading { display: grid; margin: 18px 2px 12px; }
.screen-heading strong { color: var(--green-950); font-size: 1rem; }
.screen-heading span { color: #5f6f65; font-size: 0.7rem; }

.module-preview {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 13px;
  background: var(--white);
  border: 1px solid #dbe4dc;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(31, 61, 41, 0.06);
}

.module-preview div { display: grid; line-height: 1.35; }
.module-preview strong { color: var(--green-950); font-size: 0.79rem; }
.module-preview div span { color: #5f6f65; font-size: 0.64rem; }
.module-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--green-800); background: #edf4ee; border-radius: 10px; font-size: 1rem; font-weight: 900; }
.module-blood-sugar .module-icon { color: #8a4b38; background: #f8eeea; }
.module-peak-flow .module-icon { color: #386a7a; background: #eaf3f6; font-size: 1.35rem; }
.measurement-symbol { display: block; width: auto; max-width: 1em; height: 1em; }
.module-arrow { color: #5f6f65; font-size: 1.35rem; }

.local-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 20px; color: #5d6d63; font-size: 0.68rem; font-weight: 700; }
.local-note span { color: var(--green-700); }

.assurance-strip { color: var(--white); background: var(--green-900); }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.assurance-grid > div { min-height: 118px; display: grid; align-content: center; gap: 3px; padding: 24px 30px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.assurance-grid > div:first-child { padding-left: 0; }
.assurance-grid > div:last-child { padding-right: 0; border-right: 0; }
.assurance-grid strong { font-size: 1rem; }
.assurance-grid span { color: #ccdad0; font-size: 0.87rem; }

.section { padding-block: clamp(82px, 9vw, 128px); }
.section-soft { background: var(--green-50); }

.section-heading { max-width: 720px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.narrow { max-width: 680px; }

.section-heading h2,
.privacy-panel h2,
.medical-layout h2,
.closing-card h2,
.legal-hero h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  font-weight: 860;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.module-card {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 25px; color: var(--green-800); background: var(--green-100); border-radius: 16px; font-size: 1.4rem; font-weight: 900; }
.card-icon-drop { color: #8a4b38; background: #f8eeea; }
.card-icon-wind { color: #386a7a; background: #eaf3f6; font-size: 1.8rem; }

.card-kicker { margin: 0 0 8px; color: var(--green-700); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.module-card h3 { margin: 0; color: var(--green-950); font-size: 1.42rem; line-height: 1.25; letter-spacing: -0.025em; }
.module-card > p:last-child { margin: 18px 0 0; color: var(--muted); line-height: 1.72; }

.workflow-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.workflow-list { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.workflow-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.workflow-list li:first-child { padding-top: 0; }
.workflow-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.workflow-list li > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-900); background: var(--lime); border-radius: 14px; font-weight: 850; }
.workflow-list strong { color: var(--green-950); font-size: 1.15rem; }
.workflow-list p { margin: 7px 0 0; color: var(--muted); line-height: 1.65; }

.privacy-section { color: var(--white); background: var(--green-900); }
.privacy-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.privacy-panel { position: sticky; top: calc(var(--header-height) + 36px); }
.eyebrow-light { color: var(--lime); }
.eyebrow-light::before { border-color: rgba(255, 255, 255, 0.16); }
.privacy-panel h2 { color: var(--white); text-wrap: balance; }
.privacy-panel > p:not(.eyebrow) { margin: 24px 0 0; color: #d1ded4; font-size: 1.08rem; line-height: 1.75; }
.text-link { min-height: 44px; display: inline-flex; gap: 8px; align-items: center; margin-top: 25px; color: var(--green-700); font-weight: 800; text-underline-offset: 4px; }
.text-link-light { color: var(--lime); }

.privacy-points { display: grid; }
.privacy-points article { display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.privacy-points article:first-child { padding-top: 0; }
.privacy-points article:last-child { padding-bottom: 0; border-bottom: 0; }
.privacy-points article > span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--lime); background: rgba(216, 242, 138, 0.1); border: 1px solid rgba(216, 242, 138, 0.25); border-radius: 50%; font-size: 0.85rem; font-weight: 900; line-height: 1; }
.privacy-points h3 { margin: 0; color: var(--white); font-size: 1.15rem; }
.privacy-points p { margin: 7px 0 0; color: #c8d6cb; line-height: 1.65; }

.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 960px; margin: 52px auto 0; }
.plan-card { position: relative; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.plan-card-pro { color: var(--white); background: var(--green-900); border-color: var(--green-900); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: 24px; right: 24px; padding: 7px 11px; color: var(--green-950); background: var(--lime); border-radius: 999px; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.plan-heading p { margin: 0 0 10px; color: var(--green-700); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.plan-card-pro .plan-heading p { color: var(--lime); }
.plan-heading h3 { margin: 0; color: var(--green-950); font-size: 1.8rem; line-height: 1.2; }
.plan-card-pro .plan-heading h3 { max-width: 60%; color: var(--white); }
.plan-heading span { display: block; margin-top: 8px; color: var(--muted); }
.plan-card-pro .plan-heading span { color: #c8d6cb; }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-card-pro .check-list { border-color: rgba(255, 255, 255, 0.16); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--green-700); font-weight: 900; }
.plan-card-pro .check-list li::before { color: var(--lime); }
.store-note { max-width: 760px; margin: 26px auto 0; color: var(--muted); font-size: 0.88rem; text-align: center; }

.medical-note { padding-block: 60px; background: #f7efe6; border-block: 1px solid #eadaca; }
.medical-layout { display: grid; grid-template-columns: 86px 1fr; gap: 28px; align-items: start; }
.medical-symbol { width: 76px; height: 76px; display: grid; place-items: center; color: var(--white); background: #9a5b3e; border-radius: 22px; font-size: 2.3rem; font-weight: 400; }
.medical-layout h2 { max-width: 900px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.medical-layout > div:last-child > p:last-child { max-width: 960px; margin: 18px 0 0; color: #64564e; line-height: 1.75; }

.faq-layout { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-list summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; color: var(--green-950); cursor: pointer; font-weight: 790; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; color: var(--green-800); background: var(--green-100); border-radius: 8px; font-size: 1.2rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); line-height: 1.7; }

.closing-section { padding: 30px 0 90px; background: var(--green-50); }
.closing-card { min-height: 270px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px 54px; color: var(--white); background: linear-gradient(135deg, var(--green-900), #28583a); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.closing-card h2 { max-width: 760px; color: var(--white); font-size: clamp(2rem, 3.5vw, 3.4rem); }
.closing-card p:last-child { margin: 18px 0 0; color: #d0ddd3; font-size: 1.06rem; }
.button-accent { flex: 0 0 auto; color: var(--green-950); background: var(--lime); }
.button-accent:hover { background: var(--lime-strong); }

.site-footer { color: #d2ded5; background: var(--green-950); }
.footer-shell { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; padding-block: 64px; }
.footer-brand { color: var(--white); }
.footer-brand .wordmark-domain { color: var(--lime); }
.footer-identity > p { max-width: 350px; margin: 18px 0 0; color: #aebdb2; }
.footer-navigation { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer-navigation div { display: grid; align-content: start; gap: 0; }
.footer-navigation strong { margin-bottom: 4px; color: var(--white); }
.footer-navigation a { min-height: 44px; width: fit-content; display: inline-flex; align-items: center; color: #b9c7bd; text-decoration: none; }
.footer-navigation a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom .section-shell { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #95a79a; font-size: 0.83rem; }

@media (max-width: 1080px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr); gap: 35px; }
  .hero h1 { font-size: clamp(3rem, 6.3vw, 4.5rem); }
  .visual-orbit-one { width: 440px; height: 440px; }
  .visual-orbit-two { width: 350px; height: 350px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { display: grid; grid-template-columns: 64px 1fr; column-gap: 22px; }
  .card-icon { grid-row: 1 / span 3; }
  .module-card > p, .module-card h3 { grid-column: 2; }
  .module-card > p:last-child { margin-top: 12px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout .section-heading { max-width: 700px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .menu-toggle { display: inline-flex; }
  .menu-label { display: none; }
  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-lg);
  }
  .main-navigation.is-open { display: grid; }
  .main-navigation a { padding-inline: 14px; }
  .hero-shell { grid-template-columns: 1fr; padding-block: 72px 84px; }
  .hero-copy-block { max-width: 760px; }
  .hero h1 { font-size: clamp(3.2rem, 9.5vw, 5rem); }
  .hero-visual { min-height: 530px; }
  .phone-frame { width: 310px; transform: rotate(1.5deg); }
  .assurance-grid { grid-template-columns: 1fr; padding-block: 9px; }
  .assurance-grid > div, .assurance-grid > div:first-child, .assurance-grid > div:last-child { min-height: auto; padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .assurance-grid > div:last-child { border-bottom: 0; }
  .workflow-layout, .privacy-layout { grid-template-columns: 1fr; }
  .privacy-panel { position: static; }
  .plans-grid { grid-template-columns: 1fr; max-width: 650px; }
  .footer-shell { grid-template-columns: 1fr; gap: 45px; }
  .footer-navigation { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .section-shell, .header-shell, .hero-shell, .footer-shell { width: min(100% - 28px, var(--shell)); }
  .section-heading.centered { margin-inline: 0; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .brand img { width: 40px; height: 40px; }
  .brand { font-size: 1.14rem; }
  .hero-shell { min-height: auto; padding-block: 60px 72px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.8rem); line-height: 1.01; overflow-wrap: anywhere; }
  .hero-copy { margin-top: 22px; font-size: 1.04rem; line-height: 1.65; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero-facts { display: grid; gap: 10px; }
  .hero-visual { min-height: 490px; margin-top: 12px; }
  .phone-frame { width: min(292px, 84vw); }
  .phone-screen { min-height: 525px; }
  .visual-orbit-one { width: 390px; height: 390px; }
  .visual-orbit-two { width: 310px; height: 310px; }
  .section { padding-block: 76px; }
  .section-heading h2, .privacy-panel h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .privacy-panel h2 { font-size: clamp(1.65rem, 8vw, 2.35rem); letter-spacing: -0.04em; }
  .section-heading > p:last-child { font-size: 1rem; }
  .module-grid { margin-top: 36px; }
  .module-card { display: block; padding: 24px; }
  .module-card > p, .module-card h3 { grid-column: auto; }
  .workflow-layout, .privacy-layout, .faq-layout { gap: 40px; }
  .workflow-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .privacy-points article { grid-template-columns: 34px 1fr; gap: 14px; }
  .workflow-list li > span { width: 42px; height: 42px; }
  .plans-grid { margin-top: 36px; }
  .plan-card { padding: 26px 22px; }
  .plan-badge { position: static; width: fit-content; margin-bottom: 22px; }
  .plan-card-pro .plan-heading h3 { max-width: none; }
  .medical-layout { grid-template-columns: 1fr; }
  .medical-symbol { width: 60px; height: 60px; border-radius: 17px; }
  .closing-section { padding-bottom: 70px; }
  .closing-card { min-height: 0; display: grid; padding: 34px 25px; border-radius: var(--radius-md); }
  .closing-card .button { width: 100%; }
  .footer-navigation { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-bottom .section-shell { min-height: 90px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
}

@media (max-width: 390px) {
  .main-navigation { right: 14px; left: 14px; }
  .phone-frame { width: 278px; }
  .phone-screen { padding-inline: 16px; }
  .module-preview { padding: 11px; }
  .footer-navigation { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .button-row, .closing-section, .site-footer { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 24px; }
}
