:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0d211a;
  background: #f4f7f3;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --green: #0c8a5b;
  --green-dark: #075d3e;
  --ink: #0d211a;
  --muted: #5c6b64;
  --line: #dfe8e1;
  --paper: #fbfcfa;
  --mint: #e8f6ec;
  --blue: #eaf2fb;
  --amber: #fff3d9;
  --coral: #ffe8e1;
  --shadow: 0 28px 90px rgba(17, 46, 35, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: #f4f7f3; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

.site-shell { overflow: hidden; }
.site-header {
  width: min(1440px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.site-header nav { display: flex; gap: 30px; font-size: 14px; color: #42544c; }
.site-header nav button,
.logo-link,
.text-link {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.site-header nav button { transition: color .2s ease; }
.site-header nav button:hover { color: var(--green); }
.logo-link { display: inline-flex; }
.text-link { font-weight: 750; border-bottom: 1px solid #9eb2a7; padding-bottom: 4px; }
.header-cta, .hero-primary, .primary-button, .sheet-primary {
  border: 0;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(12,138,91,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.header-cta:hover, .hero-primary:hover, .primary-button:hover, .sheet-primary:hover { transform: translateY(-2px); background: #08784f; box-shadow: 0 16px 34px rgba(12,138,91,.24); }
.header-cta { padding: 12px 18px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 29px; height: 34px; position: relative; display: inline-flex; align-items: center; justify-content: center; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--green); border-radius: 99px; }
.brand-mark::before { width: 5px; height: 30px; }
.brand-mark::after { width: 24px; height: 5px; }
.brand-mark i, .brand-mark b { position: absolute; display: block; width: 7px; height: 7px; border: 2px solid var(--green); border-radius: 50%; background: #f4f7f3; }
.brand-mark i { top: 0; left: 0; }
.brand-mark b { right: 0; bottom: 0; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { letter-spacing: .08em; font-size: 16px; }
.brand-copy small { margin-top: 5px; color: #64736c; font-size: 8px; letter-spacing: .03em; }
.brand--compact .brand-mark { transform: scale(.72); transform-origin: left center; width: 22px; }
.brand--compact .brand-copy strong { font-size: 12px; }

.hero-section {
  min-height: calc(100vh - 82px);
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: center;
  gap: 44px;
  padding: 34px 0 96px;
}
.hero-copy { max-width: 770px; }
.hero-kicker, .section-eyebrow { display: block; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .13em; }
.hero-copy h1 { font-size: clamp(54px, 6.1vw, 96px); line-height: .96; letter-spacing: -.065em; margin: 22px 0 26px; max-width: 900px; }
.hero-copy > p { font-size: clamp(18px, 1.55vw, 23px); line-height: 1.5; color: #4f6058; max-width: 690px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-primary { padding: 16px 23px; }

.trust-line { margin-top: 58px; display: grid; grid-template-columns: 34px 1fr; max-width: 600px; border-top: 1px solid var(--line); }
.trust-line span, .trust-line p { padding: 13px 0; margin: 0; border-bottom: 1px solid var(--line); }
.trust-line span { color: var(--green); font-weight: 850; font-size: 12px; }
.trust-line p { color: #506158; font-size: 14px; }
.hero-product { position: relative; min-height: 770px; display: grid; place-items: center; }
.product-glow { position: absolute; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(163,226,190,.62), rgba(221,241,227,.12) 68%, transparent 70%); filter: blur(2px); }
.preview-switcher { position: absolute; bottom: 42px; display: flex; gap: 4px; background: rgba(255,255,255,.82); border: 1px solid rgba(208,222,211,.9); padding: 5px; border-radius: 999px; box-shadow: 0 16px 40px rgba(21,53,39,.12); backdrop-filter: blur(16px); }
.preview-switcher button { border: 0; background: transparent; padding: 9px 15px; color: #617168; border-radius: 999px; font-size: 12px; font-weight: 800; }
.preview-switcher button.is-active { background: #143c2c; color: white; }

.phone-shell {
  width: 365px;
  height: 724px;
  background: #fcfdfb;
  border: 10px solid #102019;
  border-radius: 54px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(16, 42, 31, .24), inset 0 0 0 1px rgba(255,255,255,.2);
  z-index: 2;
}
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 106px; height: 25px; background: #102019; border-radius: 0 0 18px 18px; z-index: 5; }
.phone-status { height: 40px; padding: 12px 22px 0; display: flex; justify-content: space-between; font-size: 10px; font-weight: 800; }
.phone-content { height: calc(100% - 114px); padding: 8px 17px 18px; overflow-y: auto; scrollbar-width: none; }
.phone-content::-webkit-scrollbar { display: none; }
.phone-header, .phone-actions, .greeting-row, .section-title-row, .screen-heading, .sheet-heading { display: flex; align-items: center; justify-content: space-between; }
.phone-actions { gap: 6px; }
.icon-button, .avatar { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #dde7df; background: white; display: grid; place-items: center; font-weight: 900; color: #1c4937; }
.icon-button--danger { color: #e35c47; border-color: #f3c9c0; }
.avatar { background: #183e30; color: white; border: none; }
.greeting-row { margin: 16px 0 11px; }
.greeting-row span { color: #738079; font-size: 11px; }
.greeting-row h3 { margin: 1px 0 0; font-size: 22px; letter-spacing: -.04em; }
.language-pill { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 7px 10px; font-size: 10px; color: #516158; }
.next-step-card { min-height: 216px; border-radius: 23px; padding: 18px; background: linear-gradient(135deg, #e9f8ec 0%, #f7fbf6 64%); border: 1px solid #d7ebda; display: grid; grid-template-columns: 1.25fr .75fr; position: relative; overflow: hidden; }
.next-step-copy { position: relative; z-index: 2; }
.eyebrow { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.next-step-card h2 { margin: 7px 0 7px; font-size: 24px; line-height: 1; letter-spacing: -.05em; }
.next-step-card p { font-size: 11px; line-height: 1.38; color: #516158; margin: 0 0 9px; }
.due-line { color: #d6634d; display: flex; gap: 5px; font-size: 10px; font-weight: 800; margin-bottom: 12px; }
.primary-button { padding: 10px 14px; font-size: 11px; }
.care-orbit { position: relative; min-width: 112px; display: grid; place-items: center; align-self: stretch; }
.orbit-ring { position: absolute; border: 1px solid rgba(12,138,91,.23); border-radius: 50%; animation: rotateOrbit 12s linear infinite; }
.orbit-ring--one { width: 108px; height: 108px; border-top-color: var(--green); }
.orbit-ring--two { width: 74px; height: 74px; border-right-color: var(--green); animation-direction: reverse; animation-duration: 9s; }
.orbit-center { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: white; display: grid; place-items: center; font-size: 26px; box-shadow: 0 13px 25px rgba(12,138,91,.28); }
.orbit-note { position: absolute; bottom: 10px; font-size: 7px; letter-spacing: .15em; color: var(--green); font-weight: 900; }
@keyframes rotateOrbit { to { transform: rotate(360deg); } }
.carousel-dots { display: flex; justify-content: center; gap: 5px; padding: 10px 0 11px; }
.carousel-dots button { border: 0; width: 5px; height: 5px; padding: 0; border-radius: 999px; background: #ccd8d0; }
.carousel-dots button.is-active { width: 18px; background: var(--green); }
.section-title-row { margin: 2px 0 9px; }
.section-title-row h4 { margin: 0; font-size: 14px; }
.section-title-row button { border: 0; background: none; color: var(--green); font-size: 9px; font-weight: 800; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-card { min-height: 98px; border: 0; border-radius: 17px; padding: 12px; position: relative; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.tone-mint { background: var(--mint); }
.tone-blue { background: var(--blue); }
.tone-amber { background: var(--amber); }
.tone-coral { background: var(--coral); }
.service-icon { font-size: 9px; font-weight: 900; width: 28px; height: 28px; border-radius: 9px; background: rgba(255,255,255,.72); display: grid; place-items: center; margin-bottom: 7px; }
.service-card strong { font-size: 12px; }
.service-card small { font-size: 8px; color: #607068; max-width: 95%; margin-top: 3px; line-height: 1.25; }
.service-card i { position: absolute; right: 11px; top: 11px; font-style: normal; font-size: 11px; }
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.mini-card { border: 0; border-radius: 16px; padding: 11px; text-align: left; min-height: 80px; display: flex; flex-direction: column; }
.mini-card span { font-size: 7px; color: #49806d; font-weight: 900; }
.mini-card strong { font-size: 11px; margin-top: 6px; }
.mini-card small { font-size: 8px; color: #65736c; margin-top: auto; }
.help-strip { width: 100%; margin: 9px 0 2px; border: 1px solid #dce8de; border-radius: 15px; padding: 9px; background: #f3faf4; display: grid; grid-template-columns: 31px 1fr 14px; align-items: center; text-align: left; }
.help-bubble { width: 27px; height: 27px; border-radius: 9px; background: var(--green); color: white; display: grid; place-items: center; }
.help-strip strong, .help-strip small { display: block; }
.help-strip strong { font-size: 10px; }
.help-strip small { font-size: 7px; color: #617168; margin-top: 2px; }
.phone-dock { position: absolute; left: 17px; right: 17px; bottom: 12px; height: 62px; border-radius: 22px; border: 1px solid #dce6df; background: rgba(255,255,255,.92); backdrop-filter: blur(15px); display: grid; grid-template-columns: repeat(3,1fr); padding: 5px; box-shadow: 0 11px 25px rgba(20,50,38,.08); }
.phone-dock button { border: 0; background: transparent; border-radius: 17px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #6c7a72; }
.phone-dock button span { font-size: 16px; }
.phone-dock button small { font-size: 8px; font-weight: 800; }
.phone-dock button.is-active { background: var(--green); color: white; box-shadow: 0 8px 16px rgba(12,138,91,.23); }

.screen-heading { align-items: flex-start; margin-bottom: 15px; }
.screen-heading span { color: var(--green); font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.screen-heading h2 { margin: 6px 0 0; font-size: 25px; line-height: 1.05; letter-spacing: -.05em; max-width: 235px; }
.segmented-control { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; background: #edf2ee; border-radius: 14px; padding: 4px; margin-bottom: 13px; }
.segmented-control button { border: 0; background: transparent; border-radius: 10px; padding: 9px 4px; font-size: 9px; color: #66756d; font-weight: 800; }
.segmented-control button.is-active { background: white; color: var(--ink); box-shadow: 0 4px 12px rgba(25,50,40,.08); }
.stack-list, .program-list { display: grid; gap: 9px; }
.action-row, .report-card, .program-card { border: 1px solid var(--line); background: white; border-radius: 17px; padding: 13px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; text-align: left; }
.action-row span b, .action-row span small, .report-card span b, .report-card span small, .program-card span b, .program-card span small { display: block; }
.action-row b, .report-card b, .program-card b { font-size: 11px; }
.action-row small, .report-card small, .program-card small { font-size: 8px; color: #6b7971; margin-top: 3px; line-height: 1.3; }
.action-row em, .report-card em, .program-card em { font-size: 8px; font-style: normal; font-weight: 850; color: var(--green); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; }
.status-dot.tone-coral { background: #e46a55; }
.status-dot.tone-amber { background: #e7a93e; }
.status-dot.tone-blue { background: #4386c4; }
.wide-secondary { border: 1px solid #cee0d2; background: #edf8ef; color: var(--green-dark); border-radius: 15px; padding: 12px; font-size: 10px; font-weight: 850; }
.report-file { width: 38px; height: 42px; border-radius: 10px; background: var(--blue); display: grid; place-items: center; font-size: 8px; font-weight: 900; color: #3972a8; }
.program-progress { --progress: 50%; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--green) var(--progress), #e8eee9 0); position: relative; }
.program-progress::after { content:""; width: 37px; height: 37px; border-radius: 50%; background: white; position: absolute; }
.program-progress span { position: relative; z-index: 1; font-size: 8px; font-weight: 900; }
.family-hero { background: linear-gradient(145deg, #e9f7ed, #f9fbf8); border: 1px solid #d8e9dc; border-radius: 22px; padding: 18px; }
.family-people { display: flex; margin-bottom: 14px; }
.family-people span { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; background: white; border: 3px solid #e9f7ed; margin-right: -9px; font-size: 12px; font-weight: 900; }
.family-people span:last-child { color: var(--green); font-size: 18px; }
.family-hero h3 { margin: 0 0 7px; font-size: 20px; letter-spacing: -.04em; }
.family-hero p { font-size: 10px; line-height: 1.45; color: #5f6f66; }
.family-list { display: grid; gap: 8px; }
.family-list button { border: 1px solid var(--line); background: white; border-radius: 16px; padding: 11px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; text-align: left; }
.family-list b, .family-list small { display: block; }
.family-list b { font-size: 11px; }
.family-list small { font-size: 8px; color: #69776f; margin-top: 3px; }
.family-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #173f30; color: white; font-size: 11px; font-weight: 900; }
.family-avatar--soft { background: #d8ecdc; color: #1d5c42; }
.privacy-card { margin-top: 12px; padding: 15px; border-radius: 17px; background: #f0f4f1; }
.privacy-card span { font-size: 7px; color: var(--green); font-weight: 900; letter-spacing: .1em; }
.privacy-card h4 { font-size: 14px; margin: 7px 0 5px; }
.privacy-card p { font-size: 9px; line-height: 1.4; color: #66746d; margin: 0; }

.editorial-section, .service-section, .continuity-section, .boundary-section { padding: 130px max(24px, calc((100vw - 1440px)/2)); }
.editorial-section { background: #fcfdfb; }
.editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; margin-top: 20px; align-items: end; }
.editorial-grid h2, .service-intro h2, .continuity-copy h2, .boundary-card h2 { font-size: clamp(45px, 5.3vw, 82px); line-height: .99; letter-spacing: -.06em; margin: 0; }
.editorial-copy p { font-size: 18px; line-height: 1.55; color: #56665e; max-width: 560px; }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 82px; }
.principle-grid article { border-top: 1px solid #cfdad2; padding: 20px 10px 10px 0; }
.principle-grid span { color: var(--green); font-weight: 900; font-size: 12px; }
.principle-grid h3 { font-size: 24px; letter-spacing: -.035em; margin: 45px 0 9px; }
.principle-grid p { color: #607067; line-height: 1.5; max-width: 360px; }

.service-section { background: #10251c; color: white; display: grid; grid-template-columns: .77fr 1.23fr; gap: 74px; }
.service-intro { position: sticky; top: 110px; align-self: start; }
.service-intro p { color: #b7c6bd; font-size: 18px; line-height: 1.55; max-width: 560px; }
.service-browser { background: #f9fbf8; color: var(--ink); border-radius: 30px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,.24); }
.browser-top { padding: 24px; display: flex; gap: 12px; border-bottom: 1px solid #e3eae4; }
.browser-top label { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.browser-top label span { font-size: 10px; color: #6d7a73; font-weight: 800; }
.browser-top input { width: 100%; border: 1px solid #d7e1d9; background: white; border-radius: 13px; padding: 13px 14px; outline: none; }
.browser-top input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(12,138,91,.09); }
.browser-top button { align-self: flex-end; border: 0; background: #f9e3de; color: #bf4a38; border-radius: 13px; padding: 13px 16px; font-weight: 850; }
.browser-results { padding: 8px 24px 24px; }
.browser-results button { width: 100%; border: 0; border-bottom: 1px solid #e5ece7; background: transparent; display: grid; grid-template-columns: 46px 1fr auto; gap: 14px; align-items: center; padding: 17px 0; text-align: left; }
.browser-results button:last-child { border-bottom: 0; }
.result-index { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; font-size: 10px; font-weight: 900; }
.browser-results b, .browser-results small { display: block; }
.browser-results b { font-size: 15px; }
.browser-results small { color: #6b7971; font-size: 11px; margin-top: 4px; }
.browser-results em { font-style: normal; color: var(--green); }

.continuity-section { background: #eef3ee; }
.continuity-copy { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.continuity-copy .section-eyebrow { padding-top: 8px; }
.continuity-copy p { grid-column: 2; font-size: 20px; line-height: 1.55; color: #5d6c64; max-width: 720px; }
.journey-track { margin-top: 72px; border-top: 1px solid #cad6cd; }
.journey-track article { display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid #cad6cd; padding: 25px 0; align-items: center; }
.journey-track article > span { color: var(--green); font-size: 12px; font-weight: 900; }
.journey-track article div { display: grid; grid-template-columns: .58fr 1.42fr; align-items: center; gap: 40px; }
.journey-track h3 { margin: 0; font-size: 31px; letter-spacing: -.04em; }
.journey-track p { margin: 0; color: #607067; }
.boundary-section { background: #f8faf7; }
.boundary-card { background: #dff2e4; border-radius: 38px; padding: clamp(34px, 6vw, 90px); }
.boundary-card h2 { max-width: 1180px; margin-top: 21px; font-size: clamp(40px, 4.7vw, 72px); }
.boundary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 72px; }
.boundary-grid div { border-top: 1px solid #add0b7; padding-top: 18px; }
.boundary-grid strong { font-size: 17px; }
.boundary-grid p { color: #567160; line-height: 1.5; }
.site-footer { width: min(1440px, calc(100% - 48px)); margin: 0 auto; min-height: 260px; padding: 60px 0; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: end; }
.site-footer p { max-width: 440px; color: #65736c; }
.site-footer > span { font-size: 12px; color: #77847d; }

.sheet-layer { position: fixed; inset: 0; z-index: 100; background: rgba(7,18,13,.43); backdrop-filter: blur(10px); display: flex; align-items: flex-end; justify-content: center; padding: 20px; animation: fadeIn .2s ease; }
.sheet { width: min(520px, 100%); max-height: 88vh; overflow-y: auto; background: #fcfdfb; border-radius: 28px 28px 20px 20px; padding: 14px 22px 22px; box-shadow: 0 32px 80px rgba(0,0,0,.26); animation: slideUp .28s cubic-bezier(.2,.8,.2,1); }
.sheet-handle { width: 46px; height: 5px; border-radius: 99px; background: #d5ddd7; margin: 0 auto 16px; }
.sheet-heading { align-items: flex-start; }
.sheet-heading span { font-size: 9px; color: var(--green); font-weight: 900; letter-spacing: .1em; }
.sheet-heading h3 { margin: 5px 0 18px; font-size: 28px; letter-spacing: -.04em; }
.sheet-close { width: 34px; height: 34px; border-radius: 50%; border: 0; background: #eef2ef; color: #506057; font-size: 20px; }
.sheet-primary, .sheet-secondary, .sheet-danger { width: 100%; border-radius: 14px; padding: 14px 16px; font-weight: 850; margin-top: 10px; }
.sheet-primary { border: 0; }
.sheet-secondary { border: 1px solid #cedbd1; background: white; color: var(--ink); }
.sheet-danger { border: 0; background: #dc5845; color: white; }
.sheet-copy { color: #617068; line-height: 1.55; }
.sheet-note { color: #7b8680; font-size: 11px; line-height: 1.45; }
.date-strip, .time-grid { display: grid; gap: 8px; }
.date-strip { grid-template-columns: repeat(4,1fr); }
.date-strip button, .time-grid button { border: 1px solid #dbe5dd; background: white; border-radius: 13px; padding: 13px 8px; color: #516158; }
.date-strip button.is-active { background: var(--green); color: white; border-color: var(--green); }
.time-grid { grid-template-columns: repeat(2,1fr); margin-top: 12px; }
.choice-list { display: grid; gap: 8px; }
.choice-list button { border: 1px solid #dce5de; background: white; border-radius: 14px; padding: 12px; display: grid; grid-template-columns: 35px 1fr auto; align-items: center; text-align: left; }
.choice-list button span { width: 31px; height: 31px; border-radius: 10px; background: var(--mint); color: var(--green); display: grid; place-items: center; font-weight: 900; }
.choice-list button b { font-size: 13px; }
.choice-list button em { font-style: normal; color: var(--green); }
.confirmation-orbit { width: 130px; height: 130px; margin: 10px auto 24px; border-radius: 50%; border: 1px solid #add8b9; display: grid; place-items: center; position: relative; }
.confirmation-orbit::before, .confirmation-orbit::after { content:""; position:absolute; border:1px solid #d4ead9; border-radius:50%; }
.confirmation-orbit::before { width:96px; height:96px; }
.confirmation-orbit::after { width:66px; height:66px; }
.confirmation-orbit span { width:48px; height:48px; border-radius:50%; background:var(--green); color:white; display:grid; place-items:center; font-size:24px; z-index:1; }
.emergency-card { border: 1px solid #f0c8bf; background: #fff0ec; border-radius: 16px; padding: 14px; display: flex; gap: 13px; align-items: center; }
.emergency-card > span { width: 42px; height: 42px; border-radius: 13px; background: #db5d49; color: white; display: grid; place-items: center; font-size: 22px; }
.emergency-card b, .emergency-card small { display: block; }
.emergency-card small { margin-top: 4px; color: #7b665f; }
.map-card { height: 210px; border-radius: 18px; background: #e8eee9; position: relative; overflow: hidden; }
.road { position: absolute; background: white; border: 1px solid #d3ddd5; width: 440px; height: 30px; transform: rotate(-17deg); left: -40px; top: 86px; }
.road-b { transform: rotate(58deg); left: 110px; top: 72px; }
.hospital-pin, .ambulance-pin { position: absolute; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: white; font-weight: 900; box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.hospital-pin { background: #173d2f; right: 65px; top: 42px; }
.ambulance-pin { background: #dc5a46; left: 95px; bottom: 38px; }
.driver-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 11px; align-items: center; padding: 15px 0 6px; }
.driver-row > span { width: 44px; height: 44px; border-radius: 50%; background: #163c2d; color: white; display: grid; place-items: center; }
.driver-row b, .driver-row small { display: block; }
.driver-row small { color: #6e7b74; margin-top: 3px; }
.driver-row button { border: 1px solid #cddbd0; background: white; border-radius: 999px; padding: 9px 13px; color: var(--green); font-weight: 850; }
.report-summary { background: var(--amber); border-radius: 17px; padding: 17px; }
.report-summary span { font-size: 9px; color: #9a6a19; font-weight: 900; }
.report-summary h4 { font-size: 19px; margin: 8px 0; }
.report-summary p { margin: 0; color: #71654e; line-height: 1.5; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } }

@media (max-width: 1040px) {
  .site-header nav { display: none; }
  .hero-section { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: none; }
  .hero-product { min-height: 820px; }
  .editorial-grid, .service-section, .continuity-copy { grid-template-columns: 1fr; }
  .service-intro { position: static; }
  .continuity-copy p { grid-column: auto; }
  .editorial-grid { gap: 26px; }
  .service-section { gap: 50px; }
}

@media (max-width: 740px) {
  .site-header { width: calc(100% - 28px); height: 68px; }
  .site-header .brand-copy small { display: none; }
  .header-cta { padding: 10px 14px; font-size: 12px; }
  .hero-section { width: calc(100% - 28px); padding: 46px 0 70px; }
  .hero-copy h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .trust-line { margin-top: 40px; }
  .hero-product { min-height: 720px; transform: scale(.92); margin: -20px -20px 0; }
  .phone-shell { width: 350px; height: 700px; }
  .product-glow { width: 430px; height: 430px; }
  .preview-switcher { bottom: -8px; }
  .editorial-section, .service-section, .continuity-section, .boundary-section { padding: 90px 20px; }
  .editorial-grid h2, .service-intro h2, .continuity-copy h2, .boundary-card h2 { font-size: 45px; }
  .principle-grid, .boundary-grid { grid-template-columns: 1fr; }
  .principle-grid { gap: 34px; margin-top: 55px; }
  .principle-grid h3 { margin-top: 22px; }
  .browser-top { flex-direction: column; }
  .browser-top button { align-self: stretch; }
  .journey-track article { grid-template-columns: 42px 1fr; }
  .journey-track article div { grid-template-columns: 1fr; gap: 7px; }
  .journey-track h3 { font-size: 24px; }
  .boundary-card { border-radius: 24px; }
  .site-footer { width: calc(100% - 40px); grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 410px) {
  .hero-product { transform: scale(.84); margin-left: -34px; margin-right: -34px; }
}
