:root {
  --ink: #0d3140;
  --text: #16343d;
  --muted: #667b82;
  --teal: #176a77;
  --teal-dark: #0d5662;
  --teal-soft: #e3f1f1;
  --primary-soft: #e9eff0;
  --paper: #ffffff;
  --canvas: #f5f8f7;
  --line: #dbe7e5;
  --warm: #fff2de;
  --orange: #be761c;
  --coral: #b9473f;
  --success: #1f7a57;
  --success-soft: #e6f3ec;
  --info: #326c91;
  --danger: #b53734;
  --danger-soft: #fbe9e8;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 20px 55px rgba(13, 49, 64, 0.11);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--teal-dark); }
a:hover { color: var(--ink); }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid #69c1cb;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 229, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.header-inner,
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand img { width: 45px; height: 45px; object-fit: contain; }
.brand span { font-size: 1.3rem; font-weight: 850; letter-spacing: -.025em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 750;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--teal); }

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-cta,
.button.primary { background: var(--teal); color: white !important; }
.nav-cta:hover,
.button.primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(23, 106, 119, .2); }
.button.secondary { border-color: var(--line); background: white; color: var(--ink); }
.button.secondary:hover { border-color: var(--teal); transform: translateY(-2px); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 12% 20%, rgba(23, 106, 119, .11), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(190, 118, 28, .10), transparent 29%),
    var(--canvas);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 290px;
  height: 290px;
  border: 38px solid rgba(23, 106, 119, .055);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--teal); }

h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin-bottom: 10px; font-size: 1.28rem; }
p { margin: 0 0 18px; }

.hero-copy { max-width: 620px; font-size: 1.16rem; color: #4d666e; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: .91rem; }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 160px 34px 34px 34px;
  box-shadow: var(--shadow);
}

.photo-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(270px, 72%);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(13,49,64,.18);
  backdrop-filter: blur(10px);
}
.photo-card strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 1.05rem; }
.photo-card .photo-card-label { display: block; margin-bottom: 2px; color: var(--teal); font-size: .73rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.photo-card-row { display: flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px solid var(--line); color: var(--muted); }
.photo-card-row + .photo-card-row { margin-top: 8px; }
.photo-card-row svg { width: 18px; height: 18px; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.photo-card-row span { font-size: .8rem; font-weight: 700; }

.hero-benefits { display: grid; gap: 9px; margin-top: 24px; }
.hero-benefits span { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: .94rem; font-weight: 750; }
.hero-benefits svg { width: 21px; height: 21px; flex: 0 0 21px; color: var(--success); fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.trust-strip { background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid-four { grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.02rem; }
.trust-item span { color: #c6d8dc; font-size: .88rem; }

.section { padding: 96px 0; }
.section.white { background: white; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-heading-wide { max-width: 870px; }

.daily-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.daily-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--canvas); }
.daily-card::after { content: ""; position: absolute; right: -34px; bottom: -45px; width: 100px; height: 100px; border: 18px solid rgba(23,106,119,.05); border-radius: 50%; }
.daily-card .icon-tile { margin-bottom: 22px; }
.daily-card h3 { font-size: 1.18rem; }
.daily-card p { position: relative; z-index: 1; color: var(--muted); font-size: .94rem; }
.daily-time { display: block; min-height: 40px; margin-bottom: 16px; color: var(--teal); font-size: .76rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.need-solution { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; gap: 25px; align-items: center; padding: 30px; margin-top: 22px; border: 1px solid #bcd9dc; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--teal-soft), white); box-shadow: 0 14px 36px rgba(13,49,64,.06); }
.need-solution-icon { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 24px; background: white; box-shadow: 0 10px 24px rgba(13,49,64,.08); }
.need-solution-icon img { width: 62px; height: 62px; object-fit: contain; }
.need-solution span { display: block; margin-bottom: 5px; color: var(--teal); font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.need-solution h3 { max-width: 700px; margin-bottom: 7px; font-size: 1.35rem; }
.need-solution p { max-width: 720px; margin: 0; color: var(--muted); font-size: .92rem; }
.need-solution .button { white-space: nowrap; }

.app-showcase-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #092934 0%, var(--ink) 55%, #145e69 100%);
  color: white;
}
.app-showcase-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: -230px;
  border: 65px solid rgba(255,255,255,.035);
  border-radius: 50%;
}
.app-showcase-layout { position: relative; display: grid; grid-template-columns: minmax(275px, .78fr) minmax(680px, 1.72fr); align-items: center; gap: 44px; }
.app-showcase-copy { margin: 0; }
.app-showcase-copy .eyebrow { color: #83d2d7; }
.app-showcase-copy .eyebrow::before { background: #83d2d7; }
.app-showcase-copy h2 { color: white; }
.app-showcase-copy > p { color: #c1d6da; }
.app-benefit-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 0; list-style: none; }
.app-benefit-list li { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: start; color: #dce9eb; font-size: .91rem; }
.app-benefit-list svg { width: 34px; height: 34px; padding: 7px; border-radius: 11px; background: rgba(255,255,255,.1); color: #83d2d7; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.app-benefit-list strong { color: white; }

.phone-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; align-items: end; }
.phone-figure { min-width: 0; margin: 0; }
.phone-figure-health { transform: translateY(-24px); }
.phone-figure figcaption { display: grid; gap: 2px; margin-top: 15px; text-align: center; }
.phone-figure figcaption strong { color: white; font-size: .82rem; }
.phone-figure figcaption span { color: #aec7cc; font-size: .69rem; line-height: 1.4; }
.iphone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  padding: 8px;
  border: 1px solid #405157;
  border-radius: 42px;
  background: #081216;
  box-shadow: 0 28px 55px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.08);
}
.iphone::after { content: ""; position: absolute; right: -3px; top: 112px; width: 3px; height: 62px; border-radius: 0 3px 3px 0; background: #1c2a2f; }
.iphone-screen { position: relative; height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 34px; background: var(--canvas); color: var(--text); }
.iphone-notch { position: absolute; z-index: 4; top: 6px; left: 50%; width: 34%; height: 21px; transform: translateX(-50%); border-radius: 14px; background: #081216; }
.phone-status { height: 31px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 14px 3px; color: var(--ink); font-size: 7px; font-weight: 900; }
.phone-status-icons { letter-spacing: 1px; }
.app-topbar { min-height: 38px; display: flex; align-items: center; gap: 6px; padding: 5px 10px 7px; border-bottom: 1px solid var(--line); background: white; }
.app-topbar img { width: 21px; height: 21px; object-fit: contain; }
.app-topbar strong { color: var(--ink); font-size: 10px; letter-spacing: -.02em; }
.app-avatar { width: 20px; height: 20px; display: grid; place-items: center; margin-left: auto; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: 8px; font-weight: 900; }
.app-topbar-title { justify-content: space-between; }
.mock-back { color: var(--teal); font-size: 21px; line-height: 1; }
.care-header-icon { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: #e8f1f7; color: var(--info); }
.care-header-icon svg { width: 13px; height: 13px; }
.app-screen-body { flex: 1; min-height: 0; padding: 11px 10px 8px; overflow: hidden; }
.app-screen-body h3 { margin: 0 0 9px; color: var(--ink); font-size: 14px; line-height: 1.15; }
.app-kicker { margin: 0 0 2px; color: var(--teal); font-size: 7px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.mock-dog-card { display: grid; grid-template-columns: 42px 1fr; gap: 8px; align-items: center; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 5px 12px rgba(13,49,64,.05); }
.mock-dog-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); }
.mock-dog-avatar img { width: 34px; height: 34px; object-fit: contain; }
.mock-dog-avatar.large { width: 50px; height: 50px; }
.mock-dog-avatar.large img { width: 40px; height: 40px; }
.mock-title-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.mock-title-row strong { color: var(--ink); font-size: 11px; }
.mock-title-row span, .mock-private-pill { padding: 2px 5px; border-radius: 99px; background: var(--success-soft); color: var(--success); font-size: 5.7px; font-weight: 900; }
.mock-dog-card small, .mock-profile-head p { display: block; margin: 0; color: var(--muted); font-size: 6.7px; line-height: 1.35; }
.mock-progress { height: 3px; margin: 5px 0 2px; overflow: hidden; border-radius: 99px; background: var(--line); }
.mock-progress i { display: block; width: 92%; height: 100%; border-radius: inherit; background: var(--teal); }
.mock-progress-label { color: var(--teal) !important; font-weight: 800; }
.mock-section-title { margin: 11px 0 6px; color: var(--ink); font-size: 7px; font-weight: 900; text-transform: uppercase; letter-spacing: .055em; }
.mock-action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-action-grid > div { min-height: 55px; display: grid; grid-template-columns: 19px 1fr; column-gap: 5px; align-content: center; padding: 6px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.mock-action-grid svg { grid-row: 1 / 3; width: 19px; height: 19px; padding: 3px; border-radius: 6px; background: var(--teal-soft); color: var(--teal); }
.mock-action-grid strong { align-self: end; color: var(--ink); font-size: 7px; line-height: 1.1; }
.mock-action-grid small { color: var(--muted); font-size: 5.4px; line-height: 1.25; }
.mock-notice { display: grid; grid-template-columns: 23px 1fr; gap: 7px; align-items: center; padding: 8px; margin-top: 8px; border: 1px solid #cee4d8; border-radius: 10px; background: var(--success-soft); }
.mock-notice svg { width: 23px; height: 23px; padding: 5px; border-radius: 7px; background: white; color: var(--success); }
.mock-notice strong, .mock-notice small { display: block; line-height: 1.25; }
.mock-notice strong { color: var(--success); font-size: 7px; }
.mock-notice small { color: #567068; font-size: 5.7px; }
.mock-tabbar { min-height: 42px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px 6px 7px; border-top: 1px solid var(--line); background: white; }
.mock-tabbar span { display: grid; justify-items: center; align-content: center; gap: 1px; color: #7c8e93; font-size: 5.8px; font-weight: 750; }
.mock-tabbar svg { width: 14px; height: 14px; }
.mock-tabbar .active { color: var(--teal); }

.mock-profile-head { display: grid; grid-template-columns: 50px 1fr; gap: 9px; align-items: center; padding: 2px 2px 6px; }
.mock-profile-head h3 { margin-bottom: 2px; font-size: 15px; }
.mock-private-pill { display: inline-flex; margin-top: 5px; background: var(--primary-soft); color: var(--info); }
.mock-list-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: white; }
.mock-list-card > div { display: grid; grid-template-columns: 27px 1fr auto; gap: 7px; align-items: center; min-height: 49px; padding: 7px 8px; }
.mock-list-card > div + div { border-top: 1px solid var(--line); }
.mock-list-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; }
.mock-list-icon svg { width: 16px; height: 16px; }
.mock-list-icon.warning { background: var(--warm); color: var(--orange); }
.mock-list-icon.info { background: #e8f1f7; color: var(--info); }
.mock-list-icon.danger { background: var(--danger-soft); color: var(--danger); }
.mock-list-card p { margin: 0; line-height: 1.2; }
.mock-list-card strong, .mock-list-card small { display: block; }
.mock-list-card strong { color: var(--ink); font-size: 7.4px; }
.mock-list-card small { margin-top: 2px; color: var(--muted); font-size: 5.8px; }
.mock-list-card b { color: #8ba0a6; font-size: 12px; }
.mock-appointment { display: grid; grid-template-columns: 30px 1fr auto; gap: 7px; align-items: center; padding: 9px 8px; border: 1px solid #cfe0e8; border-radius: 11px; background: #e8f1f7; }
.mock-appointment > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: white; color: var(--info); }
.mock-appointment svg { width: 17px; height: 17px; }
.mock-appointment strong, .mock-appointment small { display: block; }
.mock-appointment strong { color: var(--ink); font-size: 7.4px; }
.mock-appointment small { color: var(--muted); font-size: 5.5px; }
.mock-appointment b { padding: 3px 5px; border-radius: 99px; background: white; color: var(--info); font-size: 5.4px; }
.mock-health-footer { display: flex; align-items: center; gap: 6px; margin-top: 10px; color: var(--teal); font-size: 6.4px; font-weight: 800; }
.mock-health-footer svg { width: 16px; height: 16px; }

.care-screen-body { background: linear-gradient(180deg, #f4f8f9, white); }
.mock-boundary { display: grid; gap: 1px; padding: 7px 8px; margin-bottom: 8px; border-left: 3px solid var(--info); border-radius: 0 7px 7px 0; background: #e8f1f7; }
.mock-boundary strong { color: var(--info); font-size: 6.7px; }
.mock-boundary span { color: #587381; font-size: 5.5px; }
.mock-chat { width: 84%; padding: 7px 8px; margin-bottom: 6px; border-radius: 10px 10px 10px 3px; background: white; box-shadow: 0 3px 9px rgba(13,49,64,.07); }
.mock-chat.owner { margin-left: auto; border-radius: 10px 10px 3px 10px; background: var(--teal); color: white; }
.mock-chat small { display: block; margin-bottom: 2px; color: var(--info); font-size: 5.4px; font-weight: 900; text-transform: uppercase; }
.mock-chat.owner small { color: #cce8eb; }
.mock-chat p { margin: 0; color: var(--text); font-size: 6.8px; line-height: 1.35; }
.mock-chat.owner p { color: white; }
.mock-choice-row { display: flex; gap: 5px; margin: 0 0 7px 16%; }
.mock-choice-row span { padding: 3px 6px; border: 1px solid #b9d3d8; border-radius: 99px; background: white; color: var(--teal); font-size: 5.8px; font-weight: 850; }
.mock-summary-card { display: grid; gap: 4px; padding: 8px; border: 1px solid #cfe0e8; border-radius: 10px; background: #f5fafc; }
.mock-summary-label { color: var(--info); font-size: 5.3px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.mock-summary-card > strong { color: var(--ink); font-size: 7.3px; }
.mock-summary-card > div { display: flex; justify-content: space-between; padding-top: 3px; border-top: 1px solid #dce9ee; font-size: 5.7px; }
.mock-summary-card > div span { color: var(--muted); }
.mock-summary-card > div b { color: var(--ink); }
.mock-summary-card > small { color: var(--muted); font-size: 5.3px; line-height: 1.3; }
.mock-primary-button { padding: 7px; margin-top: 7px; border-radius: 99px; background: var(--teal); color: white; text-align: center; font-size: 6.4px; font-weight: 900; }

.phone-showcase svg,
.app-benefit-list svg { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.icon-tile svg,
.capability-card svg,
.care-safety svg,
.privacy-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.capability-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 12px 34px rgba(13,49,64,.045); }
.capability-card h3 { max-width: 620px; font-size: 1.42rem; }
.capability-card > p { color: var(--muted); }
.capability-card-large { background: linear-gradient(145deg, white, var(--teal-soft)); }
.capability-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.capability-top .icon-tile { flex: 0 0 52px; margin: 0; }
.capability-tag { padding: 6px 10px; border-radius: 999px; background: var(--canvas); color: var(--muted); font-size: .74rem; font-weight: 850; }
.check-list { display: grid; gap: 8px; padding: 0; margin: 22px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #4f656c; font-size: .94rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.alert-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; }
.alert-tags span { padding: 7px 10px; border: 1px solid #ecd9bb; border-radius: 999px; background: #fffaf1; color: #8a5a19; font-size: .76rem; font-weight: 800; }
.capability-card .capability-note { margin-bottom: 0; color: #7b5b2d; font-size: .87rem; }
.availability-note { max-width: 850px; margin: 26px auto 0; color: var(--muted); text-align: center; font-size: .86rem; }

.tone-blue .icon-tile { background: var(--primary-soft); color: var(--info); }
.tone-green .icon-tile { background: var(--success-soft); color: var(--success); }
.tone-amber .icon-tile { background: var(--warm); color: var(--orange); }
.tone-coral .icon-tile { background: var(--danger-soft); color: var(--danger); }
.tone-purple .icon-tile { background: #eeeafb; color: #6250a4; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  min-height: 315px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 34px rgba(13,49,64,.055);
}
.feature-card:nth-child(2) { transform: translateY(22px); }
.feature-card p { color: var(--muted); }
.icon-tile {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 900;
}
.feature-card:nth-child(2) .icon-tile { background: var(--warm); color: var(--orange); }
.feature-card:nth-child(3) .icon-tile { background: #fbe9e8; color: var(--coral); }
.status-pill {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--canvas);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
}

.care-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #e8f2f3;
  box-shadow: var(--shadow);
}
.care-copy { padding: 58px; }
.care-copy h2 { color: white; }
.care-copy p { color: #c9dade; }
.care-list { display: grid; gap: 12px; margin-top: 26px; }
.care-list span { display: flex; align-items: flex-start; gap: 10px; }
.care-list span::before { content: "✓"; flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #d9eee5; color: var(--success); font-weight: 900; }
.care-limit { padding: 58px; display: grid; place-items: center; background: var(--warm); color: var(--text); }
.care-limit-inner { max-width: 430px; }
.care-limit .mini-label { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.care-limit h3 { margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.55rem); }
.care-panel-expanded { grid-template-columns: 1.07fr .93fr; }
.care-steps { display: grid; gap: 11px; margin-top: 28px; }
.care-steps div { display: grid; grid-template-columns: 29px 1fr; gap: 10px; align-items: start; }
.care-steps div > span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; font-size: .78rem; font-weight: 900; }
.care-steps p { margin: 2px 0 0; color: #c9dade; font-size: .93rem; }
.care-steps strong { color: white; }
.care-safety { display: flex; align-items: flex-start; gap: 11px; padding: 15px; margin-top: 24px; border: 1px solid #e7ca99; border-radius: var(--radius-sm); background: rgba(255,255,255,.52); color: #7c4e11; }
.care-safety svg { flex: 0 0 24px; }
.care-safety span { font-size: .88rem; font-weight: 750; }

.roles-section { background: var(--ink); }
.roles-section .eyebrow { color: #77c8d0; }
.roles-section .eyebrow::before { background: #77c8d0; }
.roles-section h2 { color: white; }
.roles-section .section-heading p { color: #bad0d5; }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card { padding: 31px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.055); color: #d8e5e7; }
.role-card h3 { color: white; }
.role-card p, .role-card li { color: #bcd0d4; }
.role-card ul { padding-left: 20px; margin: 22px 0 0; }
.role-card li + li { margin-top: 8px; }
.role-owner { background: var(--teal); border-color: transparent; }
.role-owner p, .role-owner li { color: #e0f0f1; }
.role-label { display: inline-flex; margin-bottom: 38px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: white; font-size: .75rem; font-weight: 900; }

.privacy-section { padding-block: 72px; }
.privacy-panel { display: grid; grid-template-columns: 82px minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.privacy-panel h2 { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.55rem); }
.privacy-panel p { max-width: 700px; margin-bottom: 0; color: var(--muted); }
.privacy-icon { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 25px; background: var(--teal-soft); color: var(--teal); }
.privacy-icon svg { width: 38px; height: 38px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.audience-item { padding: 33px; background: var(--canvas); }
.audience-number { display: block; margin-bottom: 42px; color: var(--teal); font-size: .82rem; font-weight: 900; }
.audience-item p { color: var(--muted); }

.cta-band {
  padding: 70px 0;
  background: linear-gradient(125deg, #145f6c, var(--teal));
  color: white;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { color: white; margin-bottom: 12px; }
.cta-inner p { max-width: 650px; margin: 0; color: #d5e7e9; }
.cta-inner .button { flex: 0 0 auto; background: white; color: var(--ink); }

.page-hero { padding: 72px 0 56px; background: linear-gradient(145deg, var(--teal-soft), var(--canvas) 62%); }
.page-hero .wrap { max-width: 900px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.1rem; }

.content-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 54px; padding-block: 68px 96px; }
.toc { position: sticky; top: 104px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.toc strong { display: block; margin-bottom: 12px; color: var(--ink); }
.toc a { display: block; padding: 6px 0; color: var(--muted); text-decoration: none; font-size: .9rem; }
.toc a:hover { color: var(--teal); }

.legal-content { max-width: 790px; }
.legal-content section { scroll-margin-top: 110px; padding-bottom: 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: 1.75rem; }
.legal-content h3 { margin-top: 28px; font-size: 1.12rem; }
.legal-content p, .legal-content li { color: #4c6269; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.updated { margin: 0 0 30px; color: var(--muted); font-size: .9rem; }
.notice { padding: 20px 22px; margin-bottom: 34px; border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--teal-soft); }
.warning-notice { border-left-color: var(--orange); background: var(--warm); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.support-card a { font-weight: 850; }
.steps { counter-reset: steps; display: grid; gap: 14px; padding: 0; list-style: none; }
.steps li { counter-increment: steps; position: relative; min-height: 54px; padding: 13px 16px 13px 64px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.steps li::before { content: counter(steps); position: absolute; left: 16px; top: 12px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: white; font-weight: 900; }

.site-footer { padding: 62px 0 28px; background: #092934; color: #d3e0e3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 55px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: white; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand span { font-size: 1.4rem; font-weight: 850; letter-spacing: -.025em; }
.footer-intro { max-width: 390px; color: #a9c0c5; }
.footer-title { margin-bottom: 14px; color: white; font-weight: 900; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { width: fit-content; color: #c5d5d8; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); color: #8faab0; font-size: .85rem; }

@media (max-width: 1050px) {
  .app-showcase-layout { grid-template-columns: 1fr; }
  .app-showcase-copy { max-width: 780px; }
  .phone-showcase { width: min(100%, 740px); margin-inline: auto; }
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 70px; display: none; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 8px; }
  .site-nav a { padding: 9px 5px; }
  .nav-cta { width: 100%; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-visual { min-height: 500px; }
  .hero-photo { height: 500px; }
  .photo-card { left: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(2) { min-height: auto; transform: none; }
  .care-panel { grid-template-columns: 1fr; }
  .care-copy, .care-limit { padding: 42px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-number { margin-bottom: 18px; }
  .content-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .support-grid { grid-template-columns: 1fr; }
  .trust-grid-four { grid-template-columns: repeat(2, 1fr); }
  .trust-grid-four .trust-item:nth-child(2) { border-right: 0; }
  .daily-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
  .care-panel-expanded { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .need-solution { grid-template-columns: 70px 1fr; }
  .need-solution-icon { width: 70px; height: 70px; }
  .need-solution-icon img { width: 56px; height: 56px; }
  .need-solution .button { grid-column: 2; width: fit-content; }
  .privacy-panel { grid-template-columns: 70px 1fr; }
  .privacy-panel .button { grid-column: 2; width: fit-content; }
}

@media (max-width: 660px) {
  .header-inner, .wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 1.15rem; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 400px; }
  .hero-photo { height: 400px; border-radius: 100px 26px 26px 26px; }
  .photo-card { bottom: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .section { padding: 70px 0; }
  .care-copy, .care-limit { padding: 30px 24px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .daily-grid { grid-template-columns: 1fr; }
  .daily-time { min-height: auto; }
  .capability-card { padding: 25px 22px; }
  .privacy-panel { grid-template-columns: 1fr; }
  .privacy-panel .button { grid-column: auto; width: 100%; }
  .privacy-icon { width: 68px; height: 68px; border-radius: 20px; }
  .phone-showcase { width: calc(100% + 14px); display: flex; gap: 16px; margin-right: -14px; overflow-x: auto; padding: 24px 32px 24px 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .phone-showcase::-webkit-scrollbar { display: none; }
  .phone-figure { flex: 0 0 min(72vw, 250px); scroll-snap-align: start; }
  .phone-figure-health { transform: none; }
  .need-solution { grid-template-columns: 1fr; padding: 25px 22px; }
  .need-solution .button { grid-column: auto; width: 100%; white-space: normal; }
}

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