:root {
  /* System stack only — avoids remote stylesheets (Sonar Web: S5725 / SRI on third-party CSS). */
        --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  /* Product icon palette (Documents/icon.png — sky / peach / navy) */
        --brand-blue: #5fb3e6;
  --brand-peach: #f0a35c;
  --brand-mint: #3bbca7;
  --brand-coral: #eb6f63;
  --ink: var(--color-navy-950);
  --navy: var(--color-navy-900);
  --text: var(--color-text);
  --muted: var(--color-text-muted);
  --bg: var(--color-bg);
  --card: var(--color-surface);
  --border: var(--color-border);
  --primary: var(--color-navy-900);
  --primary-hover: var(--color-navy-950);
  --secondary: #247a97;
  --secondary-soft: var(--soft-blue-bg);
  --accent-warm: #b96d42;
  --radius: var(--radius-lg);
  --shadow: 0 12px 34px rgba(16, 34, 63, 0.1);
  --shadow-lg: 0 20px 56px rgba(16, 34, 63, 0.14);
  --shadow-card-hover: 0 12px 30px rgba(16, 34, 63, 0.1);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 0.25s;
  --hero-grad: linear-gradient(135deg, #fffdf8 0%, #f2fbfc 45%, #fff3e8 100%);
  --hero-ink: #14233c;
  --body-bg-mesh: linear-gradient(180deg, #fffdf8 0%, #f8f4ed 52%, #edf7f3 100%);
  --color-navy-950: #0d1b35;
  --color-navy-900: #10233f;
  --color-navy-700: #1f3b63;
  --color-blue-600: #2f80ed;
  --color-blue-100: #e8f3ff;
  --color-aqua-400: #72d6e8;
  --color-aqua-100: #e8fbff;
  --color-peach-300: #ffd7ba;
  --color-peach-100: #fff3ea;
  --color-green-600: #2eb67d;
  --color-green-100: #e8f8f0;
  --color-red-600: #d64545;
  --color-yellow-500: #f5b942;
  --color-bg: #f8f4ed;
  --color-surface: #fffdf8;
  --color-surface-soft: #fbf7ef;
  --color-border: #e2d9cc;
  --color-border-strong: #cbbda9;
  --color-text: #10233f;
  --color-text-muted: #647084;
  --color-text-soft: #7a8aa0;
  --warm-bg: #fff4eb;
  --warm-border: #ffd8bd;
  --soft-blue-bg: #eef8fc;
  --mint-bg: #e8f8f0;
  --shadow-card: 0 10px 26px rgba(37, 31, 24, 0.08);
  --shadow-soft: 0 8px 20px rgba(37, 31, 24, 0.06);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1160px;
  --type-display: clamp(1.75rem, 2.5vw, 2rem);
  --type-section: clamp(1.45rem, 2vw, 1.75rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(248, 244, 237, 0.98) 56%, rgba(239, 248, 244, 0.92)),
          var(--color-bg);
  letter-spacing: 0;
}
img,
      svg,
      video,
      canvas {
  max-width: 100%;
}
p,
      li,
      a,
      h1,
      h2,
      h3,
      h4,
      button {
  overflow-wrap: anywhere;
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 4px;
  background: rgba(216, 228, 232, 0.5);
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--secondary), var(--brand-mint), var(--brand-peach));
  box-shadow: 0 0 16px rgba(36, 126, 168, 0.28);
  transform-origin: left center;
  transition: width 0.08s linear;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 8px 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a {
  color: var(--secondary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.nav {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease-out), background 0.3s var(--ease-out);
  width: min(calc(100% - 28px), 1180px);
  margin: 10px auto 0;
  border: 1px solid rgba(203, 189, 169, 0.76);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 31, 24, 0.08);
}
.nav--scrolled {
  box-shadow: 0 14px 34px rgba(37, 31, 24, 0.11);
  background: rgba(255, 253, 248, 0.96);
  border-bottom-color: rgba(207, 232, 243, 0.85);
}
@media (min-width: 901px) {
  .nav-links a.nav-toplink,
        .nav-links .nav-dropdown-btn {
    position: relative;
    text-decoration: none !important;
  }
  .nav-links a.nav-toplink::after,
        .nav-links .nav-dropdown-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--brand-blue));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s var(--ease-out);
  }
  .nav-links a.nav-toplink:hover::after,
        .nav-links .nav-dropdown-btn:hover::after,
        .nav-links a.nav-toplink:focus-visible::after,
        .nav-links .nav-dropdown-btn:focus-visible::after {
    transform: scaleX(1);
  }
  .nav-dropdown-panel a[href] {
    position: relative;
    text-decoration: none;
  }
  .nav-dropdown-panel a[href]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s var(--ease-out);
  }
  .nav-dropdown-panel a[href]:hover::after,
        .nav-dropdown-panel a[href]:focus-visible::after {
    transform: scaleX(1);
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  opacity: 0.9;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(16, 35, 63, 0.12);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.nav-toggle:hover {
  background: var(--secondary-soft);
}
.nav-toggle:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  color: var(--text);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
  border-radius: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.2s var(--ease-out);
  font-family: inherit;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-navy-900);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.16);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.2);
  text-decoration: none;
}
.btn-warm {
  background: var(--accent-warm);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 110, 50, 0.2);
}
.btn-warm:hover {
  background: #d9783a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 90, 40, 0.28), 0 0 0 1px rgba(255, 200, 150, 0.45);
  text-decoration: none;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.65);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(61, 138, 191, 0.12);
  text-decoration: none;
}
.launch-announcement {
  display: block;
  position: relative;
  z-index: 2;
  padding: 11px 24px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.launch-announcement p {
  margin: 0;
}
.launch-access-section .launch-access-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand-mint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}
.hero-wrap {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(238, 248, 252, 0.94) 48%, rgba(255, 244, 235, 0.98));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -64px;
  padding-top: 64px;
}
.hero-wrap::before,
      .hero-wrap::after {
  content: "";
  position: absolute;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-wrap::before {
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.75) 0 20%, transparent 20% 100%),
          linear-gradient(145deg, transparent 0 48%, rgba(59, 188, 167, 0.1) 48% 56%, transparent 56% 100%),
          linear-gradient(24deg, transparent 0 55%, rgba(235, 111, 99, 0.09) 55% 63%, transparent 63% 100%);
}
.hero-wrap::after {
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82));
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: linear-gradient(rgba(16, 34, 63, 0.055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(16, 34, 63, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}
.hero-beam {
  display: none;
}
.hero-beam--1 {
  width: 42vw;
  height: 2px;
  left: -7vw;
  top: 23%;
  background: linear-gradient(90deg, transparent, rgba(36, 126, 168, 0.32), transparent);
  transform: rotate(-13deg);
}
.hero-beam--2 {
  width: 48vw;
  height: 2px;
  right: -9vw;
  bottom: 25%;
  background: linear-gradient(90deg, transparent, rgba(200, 109, 61, 0.26), transparent);
  transform: rotate(-13deg);
}
@keyframes dailyok-hero-drift {
  0%,
        100% {
    transform: translateY(0) rotate(-13deg);
  }
  50% {
    transform: translateY(-8px) rotate(-13deg);
  }
}
.hero-beam--1,
      .hero-beam--2 {
  animation: dailyok-hero-drift 11s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-beam--1,
        .hero-beam--2 {
    animation: none;
  }
}
@keyframes dailyok-float-gentle {
  0%,
        100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes dailyok-hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-anim-1 {
    animation: dailyok-hero-fade-up 0.8s var(--ease-out) both 0.05s;
  }
  .hero-anim-2 {
    animation: dailyok-hero-fade-up 0.8s var(--ease-out) both 0.18s;
  }
  .hero-anim-3 {
    animation: dailyok-hero-fade-up 0.8s var(--ease-out) both 0.3s;
  }
  .hero-anim-4 {
    animation: dailyok-hero-fade-up 0.8s var(--ease-out) both 0.42s;
  }
  .hero-anim-5 {
    animation: dailyok-hero-fade-up 0.8s var(--ease-out) both 0.54s;
  }
  .hero-visual-float {
    animation: dailyok-float-gentle 6s ease-in-out infinite 0.3s;
  }
  .phone-mock.hero-visual-float {
    animation: dailyok-float-gentle 5.5s ease-in-out infinite;
  }
}
.hero {
  padding: 72px 24px 54px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
  }
}
@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 12px 18px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }
  .nav > .btn-primary {
    order: 3;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-basis: 100%;
    order: 5;
    padding: 10px 0 2px;
    margin-top: 2px;
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .nav.is-open .nav-links {
    display: flex;
  }
}
.hero h1 {
  font-size: var(--type-display);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: 0;
  color: var(--hero-ink);
  max-width: 18ch;
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #374963;
  opacity: 0.9;
  margin: 0 0 22px;
  max-width: 610px;
  line-height: 1.62;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-icon-block {
  margin-bottom: 16px;
  display: none;
}
.hero-app-icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(16, 34, 63, 0.16);
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 18px;
}
.hero-proof {
  border: 1px solid rgba(216, 228, 232, 0.95);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}
.hero-proof span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.hero-card {
  background: rgba(255, 253, 248, 0.9);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: 0 18px 44px rgba(37, 31, 24, 0.12);
  border: 1px solid rgba(203, 189, 169, 0.72);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.hero-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.hero-product-stage {
  position: relative;
  min-height: 382px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 244, 235, 0.78)),
          linear-gradient(135deg, rgba(114, 214, 232, 0.18), rgba(46, 182, 125, 0.12));
  overflow: hidden;
  padding: 18px;
}
.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  pointer-events: none;
}
.hero-dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: 18px;
  border: 1px solid rgba(216, 228, 232, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(16, 34, 63, 0.18);
  overflow: hidden;
  border-color: rgba(203, 189, 169, 0.72);
}
.hero-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: linear-gradient(90deg, #17243d, #25476c);
  color: #fff;
}
.hero-window-dots {
  display: inline-flex;
  gap: 6px;
}
.hero-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}
.hero-live-badge {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  color: #dffbf6;
}
.hero-dashboard-body {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
  padding: 14px;
}
.hero-phone {
  align-self: stretch;
  border: 8px solid #101827;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf8, #f1fbf6);
  min-height: 292px;
  padding: 12px;
  box-shadow: 0 20px 34px rgba(16, 34, 63, 0.2);
}
.hero-phone-notch {
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: #1c2433;
  margin: 0 auto 16px;
}
.hero-check-card {
  border-radius: 18px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(180deg, #173b62, #246f67);
  box-shadow: 0 16px 30px rgba(36, 126, 168, 0.24);
}
.hero-check-card p {
  margin: 0;
}
.hero-check-card strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.15;
  margin-top: 8px;
}
.hero-check-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.hero-check-actions span,
      .hero-mini-pill {
  border: 1px solid rgba(216, 228, 232, 0.9);
  background: #fff;
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 800;
}
.hero-check-actions span:first-child {
  background: #dff8ef;
  border-color: #b7eadb;
  color: #146454;
}
.hero-mini-pill {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
}
.hero-timeline {
  display: grid;
  gap: 11px;
}
.hero-timeline h3 {
  margin: 2px 0 3px;
  font-size: 1.04rem;
}
.hero-timeline-step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 12px 11px 42px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 34, 63, 0.06);
}
.hero-timeline-step::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 0 6px rgba(59, 188, 167, 0.12);
}
.hero-timeline-step[data-state="watch"]::before {
  background: var(--brand-peach);
  box-shadow: 0 0 0 6px rgba(240, 163, 92, 0.14);
}
.hero-timeline-step[data-state="alert"]::before {
  background: var(--brand-coral);
  box-shadow: 0 0 0 6px rgba(235, 111, 99, 0.13);
}
.hero-timeline-step strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}
.hero-timeline-step span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.hero-family-panel {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 18px;
  width: min(300px, 45%);
  border-radius: 10px;
  border: 1px solid rgba(216, 228, 232, 0.94);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(16, 34, 63, 0.18);
  padding: 12px;
}
.hero-family-panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.hero-family-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding: 10px 0 0;
  margin-top: 10px;
  font-size: 13px;
}
.hero-family-row strong {
  color: var(--ink);
}
.hero-status {
  border-radius: 999px;
  padding: 4px 8px;
  background: #e5f8f0;
  color: #146454;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.hero-status--warn {
  background: #fff1dc;
  color: #8f4f1c;
}
.hero-ambient-line {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 92px;
  height: 72px;
  border: 1px solid rgba(36, 126, 168, 0.2);
  border-top: none;
  border-radius: 0 0 28px 28px;
}
.hero-ambient-line::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 0 8px rgba(59, 188, 167, 0.14);
  animation: dailyok-pulse 2.6s ease-in-out infinite;
}
@keyframes dailyok-pulse {
  0%,
        100% {
    box-shadow: 0 0 0 8px rgba(59, 188, 167, 0.14);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(59, 188, 167, 0.02);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-timeline-step {
    animation: dailyok-hero-fade-up 0.7s var(--ease-out) both;
  }
  .hero-timeline-step:nth-of-type(2) {
    animation-delay: 0.14s;
  }
  .hero-timeline-step:nth-of-type(3) {
    animation-delay: 0.28s;
  }
  [data-aos] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
    transition-delay: var(--aos-delay, 0ms);
  }
}
@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
  .hero h1 {
    max-width: 22ch;
  }
}
@media (max-width: 720px) {
  .hero {
    padding: 28px 18px 34px;
  }
  .hero h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.12rem);
    line-height: 1.1;
  }
  .hero p.lead {
    font-size: 1rem;
  }
  .hero-proof-row {
    grid-template-columns: 1fr;
  }
  .hero-product-stage {
    min-height: auto;
    padding: 12px;
  }
  .hero-dashboard-body {
    grid-template-columns: 1fr;
  }
  .hero-phone {
    min-height: 0;
  }
  .hero-family-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }
  .hero-ambient-line {
    display: none;
  }
}
.hero-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--navy);
}
.step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-soft) 0%, rgba(249, 192, 132, 0.35) 100%);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.trust-strip {
  list-style: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  padding: 0 24px;
  max-width: var(--container);
  background: transparent;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(22px);
  border: 0;
}
.trust-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  min-height: 52px;
  background: #fffdf8;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  color: var(--color-navy-900);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.trust-strip li span.ic {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-blue-bg);
  color: var(--secondary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.trust-strip li::after {
  content: "";
  margin: 0;
}
.trust-strip li:last-child::after {
  content: "";
  margin: 0;
}
@media (max-width: 640px) {
  .trust-strip {
    gap: 10px;
  }
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.persona-card {
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fff 0%, #f7fbfd 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 43, 75, 0.1);
  border-color: rgba(61, 138, 191, 0.3);
}
.persona-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-peach));
  opacity: 0.85;
}
.persona-card h3 {
  margin-top: 6px;
}
.persona-card p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--muted);
}
.persona-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.at-a-glance {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(137, 207, 240, 0.18) 0%, rgba(249, 192, 132, 0.15) 100%);
  padding: 22px 24px;
  margin-top: 20px;
}
.at-a-glance h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.at-a-glance p {
  margin: 0;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.65;
}
section {
  padding: 58px 24px;
}
section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 251, 0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
h2 {
  font-size: var(--type-section);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.sub {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 22px;
  align-items: start;
}
.grid-2.grid-2-equal {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-2.grid-2-equal > .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.grid-2.grid-2-equal > .card p {
  flex: 1;
  margin-bottom: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(30, 43, 77, 0.06);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61, 138, 191, 0.38);
}
.card h3 {
  margin-top: 0;
  font-size: 1.12rem;
  color: var(--navy);
}
.icon-feature {
  position: relative;
}
.icon-feature::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: var(--warm-bg);
  border: 1px solid var(--warm-border);
  box-shadow: 0 10px 24px rgba(26, 43, 75, 0.08);
  position: relative;
  top: auto;
  left: auto;
  border-color: var(--warm-border);
}
.icon-feature::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 20px;
  height: 20px;
  background: #9a5a34;
  -webkit-mask: var(--feature-icon) center / contain no-repeat;
  mask: var(--feature-icon) center / contain no-repeat;
  pointer-events: none;
}
.icon-feature[data-icon="check"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.icon-feature[data-icon="heart"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 21s-7-4.4-9.4-8.3C.5 9.1 2.6 5 6.5 5c2 0 3.5 1.1 4.4 2.3C11.8 6.1 13.3 5 15.4 5c3.8 0 5.9 4.1 3.8 7.7C17 16.6 12 21 12 21z'/%3E%3C/svg%3E");
}
.icon-feature[data-icon="alert"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 2 21h20L12 3z'/%3E%3Cpath d='M12 9v5'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}
.icon-feature[data-icon="hub"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Ccircle cx='5' cy='6' r='2.5'/%3E%3Ccircle cx='19' cy='6' r='2.5'/%3E%3Ccircle cx='12' cy='20' r='2.5'/%3E%3Cpath d='m7 8 3 2.5M17 8l-3 2.5M12 15v2.5'/%3E%3C/svg%3E");
}
.icon-feature[data-icon="readable"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M4 12h11M4 17h7'/%3E%3Cpath d='M18 14v6M15 17h6'/%3E%3C/svg%3E");
}
.icon-feature[data-icon="grow"] {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19c7 0 12-5 14-14'/%3E%3Cpath d='M14 5h4v4'/%3E%3Cpath d='M5 13c3 0 5 2 5 5'/%3E%3C/svg%3E");
}
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.internal-links a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}
.quote-card {
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61, 138, 191, 0.3);
}
.quote-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.research-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fafcfe 100%);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.2s;
}
.research-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 43, 75, 0.08);
  border-color: rgba(61, 138, 191, 0.28);
}
.research-card h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.research-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}
.research-card a {
  font-weight: 800;
  font-size: 14px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.kpi-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  background: #fff;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 43, 75, 0.07);
}
.kpi-card strong {
  display: block;
  font-size: 1.25rem;
  color: var(--navy);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: #fffdf8;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s;
  border-width: 1px;
}
.price-card h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61, 138, 191, 0.45);
}
.price-card.featured {
  border-color: rgba(46, 182, 125, 0.38);
  box-shadow: 0 18px 48px rgba(36, 126, 168, 0.16);
  background: linear-gradient(180deg, #fffdf8, #f0fbf5);
}
.price-card.featured:hover {
  box-shadow: 0 22px 56px rgba(61, 138, 191, 0.18);
}
.price-card.featured::before {
  content: "Best for wider family circles";
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(36, 126, 168, 0.1);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
}
.price-card .amt {
  margin: 12px 0 6px;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-navy-900);
}
.price-card ul {
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.price-card ul.price-features {
  margin-top: 12px;
  margin-bottom: 16px;
  flex: 1 1 auto;
}
.price-card .btn {
  margin-top: auto;
  flex-shrink: 0;
  align-self: stretch;
  text-align: center;
}
.price-delta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--secondary-soft) 0%, rgba(249, 192, 132, 0.18) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  line-height: 1.5;
}
.price-delta strong {
  color: var(--navy);
}
.price-delta--first {
  background: #fff;
}
ul.price-features li.feature-new {
  list-style-type: disc;
}
.feature-new-badge {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
  background: rgba(61, 138, 191, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(61, 138, 191, 0.35);
}
.feature-new-badge--inline {
  margin-right: 0;
  font-size: 9px;
  padding: 1px 6px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  border-bottom-color: rgba(226, 217, 204, 0.9);
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  border-radius: 8px;
  margin: 0;
  padding: 8px 0;
  transition: color 0.2s, background 0.2s;
  list-style: none;
  min-height: 48px;
}
.faq-item button:hover {
  color: var(--secondary);
}
.faq-item button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.faq-item button span[aria-hidden="true"] {
  margin-left: 10px;
  font-weight: 800;
  color: var(--secondary);
  transition: transform 0.35s var(--ease-out);
  display: inline-block;
  min-width: 1.2em;
  text-align: center;
}
.faq-item.open button span[aria-hidden="true"] {
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item button span[aria-hidden="true"] {
    transition: none;
  }
}
.faq-body {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  padding-top: 0;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), padding-top 0.35s var(--ease-out), opacity 0.3s ease;
}
.faq-item.open .faq-body {
  max-height: 2400px;
  padding-top: 12px;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body {
    transition: none;
  }
  .faq-item .faq-body {
    display: none;
  }
  .faq-item.open .faq-body {
    display: block;
  }
}
#cta-final {
  position: relative;
  overflow: hidden;
  padding-bottom: 84px;
}
#cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 65% at 50% 0%, rgba(137, 207, 240, 0.22) 0%, transparent 55%),
          radial-gradient(ellipse 55% 45% at 85% 95%, rgba(249, 192, 132, 0.14) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: dailyok-cta-breathe 14s ease-in-out infinite;
}
#cta-final .section-inner {
  position: relative;
  z-index: 1;
}
#cta-final .btn {
  margin-top: 18px;
}
@keyframes dailyok-cta-breathe {
  0%,
        100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  #cta-final::before {
    animation: none;
  }
}
.dailyok-prefers-reduced-motion [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
footer {
  background: #112642;
  color: #eaf4ff;
  padding: 40px 24px 24px;
  font-size: 14px;
  margin-top: 0;
}
footer strong {
  color: #ffffff;
}
footer p {
  color: #dceaf7;
  line-height: 1.65;
}
footer a {
  color: #e5f4ff;
  font-weight: 600;
  text-decoration-color: rgba(229, 244, 255, 0.46);
  text-underline-offset: 0.18em;
}
footer a:hover {
  color: #ffffff;
  text-decoration-color: #f8bf73;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-brand img {
  border-radius: 8px;
  object-fit: cover;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(130px, 1fr));
  gap: 18px 28px;
  align-items: start;
}
.footer-col p {
  margin: 0.35em 0 0;
  line-height: 1.55;
}
.footer-col-brand p {
  margin-top: 0.5em;
}
.footer-seo-panel {
  max-width: 1120px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}
.footer-seo-copy {
  border: 1px solid rgba(229, 244, 255, 0.24);
  border-radius: 12px;
  background: rgba(12, 31, 54, 0.38);
  padding: 20px;
}
.footer-seo-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}
.footer-seo-copy p {
  margin: 0;
  color: #dceaf7;
}
.footer-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.footer-topic {
  border: 1px solid rgba(229, 244, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  min-width: 0;
}
.footer-topic strong {
  display: block;
  margin-bottom: 6px;
}
.footer-topic p {
  margin: 0;
  font-size: 13px;
}
.footer-grid > div {
  min-width: 0;
}
.footer-disclaimer {
  text-align: center;
  margin: 16px auto 0;
  color: #d7e8f7;
  font-size: 13px;
  max-width: 760px;
  margin-top: 20px;
}
.footer-copyright {
  text-align: center;
  margin-top: 12px;
  color: #a9bdd1;
  font-size: 13px;
}
.back-to-top {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 36px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(207, 232, 243, 0.9);
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72) 45%, rgba(232, 245, 247, 0.94) 100%);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(26, 43, 75, 0.14);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.back-to-top span {
  position: relative;
  width: 18px;
  height: 22px;
  display: block;
}
.back-to-top span::before,
      .back-to-top span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.back-to-top span::before {
  top: 2px;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}
.back-to-top span::after {
  top: 5px;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26, 43, 75, 0.18);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .back-to-top {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  footer {
    padding: 72px 20px 38px;
  }
  .footer-seo-panel {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }
  .footer-topic-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.lead-form input {
  width: 100%;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  box-sizing: border-box;
}
.lead-form-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: flex-start;
  margin-top: 10px;
}
.lead-form-dial,
      .country-dial-trigger {
  flex: 0 0 96px;
  max-width: 120px;
  margin-top: 0 !important;
}
.country-dial-picker {
  position: relative;
  flex: 0 0 108px;
  max-width: 128px;
}
.country-dial-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}
.country-dial-trigger-code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-dial-trigger-chevron {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
}
.country-dial-picker.is-open .country-dial-trigger-chevron {
  transform: rotate(180deg);
}
.country-dial-picker.lead-form-input--error .country-dial-trigger,
      .country-dial-trigger.lead-form-input--error {
  border-color: #dc2626;
}
.country-dial-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  width: min(320px, 78vw);
  max-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.country-dial-panel[hidden] {
  display: none !important;
}
.country-dial-search {
  width: 100%;
  margin: 0 !important;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  box-sizing: border-box;
}
.country-dial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  max-height: 210px;
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
}
.country-dial-list option {
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
}
.country-dial-list option:hover,
      .country-dial-list option.is-active {
  background: var(--secondary-soft);
}
.country-dial-list option:checked {
  font-weight: 800;
}
.lead-form-phone-national {
  flex: 1 1 200px;
  min-width: 0;
}
.lead-form-phone-national input {
  margin-top: 0;
}
.field-error {
  font-size: 13px;
  color: #b91c1c;
  margin: 2px 0 0;
  line-height: 1.35;
}
.field-error[hidden] {
  display: none;
}
.lead-form-input--error,
      .lead-form input.lead-form-input--error {
  border-color: #dc2626;
}
.lead-form button {
  margin-top: 14px;
  width: 100%;
}
.lead-form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.lead-form-status[hidden] {
  display: none;
}
.lead-form-status--success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}
.lead-form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.lead-form-status--info {
  background: #eff6ff;
  color: #1e3a5f;
  border-color: #bfdbfe;
}
#leadOut {
  margin-top: 12px;
  font-size: 13px;
  background: var(--navy);
  color: #e2e8f0;
  padding: 12px;
  border-radius: 10px;
  overflow: auto;
  max-height: 160px;
}
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(26, 43, 75, 0.1);
}
.legal-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 720px;
  margin-top: 28px;
  line-height: 1.55;
}
.use-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.use-list li {
  margin-bottom: 12px;
}
ul.checks {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
ul.checks li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
}
ul.checks li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.42em;
  width: 7px;
  height: 12px;
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
  align-items: stretch;
}
.compare-col {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.compare-col h3 {
  margin-top: 0;
  font-size: 1.05rem;
}
.compare-col.bad {
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.compare-col.good {
  border-color: rgba(61, 138, 191, 0.45);
  background: linear-gradient(180deg, #f3f9fc 0%, #fff 100%);
}
.compare-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.compare-col li {
  margin-bottom: 8px;
}
.faq-mini {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.faq-mini h3 {
  margin-top: 0;
}
.faq-mini .faq-item:first-of-type {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.product-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
}
.product-demo-tab {
  border: 1px solid rgba(26, 43, 75, 0.16);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.product-demo-tab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.product-demo-panel {
  border: 1px solid rgba(216, 228, 232, 0.92);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7fbfd);
  padding: 18px 20px;
}
.product-demo-panel[hidden] {
  display: none !important;
}
.product-demo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.product-demo-steps li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 228, 232, 0.8);
}
.product-demo-steps strong {
  color: var(--navy);
  font-size: 14px;
}
.product-demo-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.home-situations-grid {
  align-items: stretch;
}
.home-situation-card {
  display: flex;
  flex-direction: column;
}
.home-situation-card .btn {
  margin-top: auto;
}
.feedback-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}
.feedback-form textarea,
      .feedback-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--navy);
  outline: none;
}
.feedback-form textarea {
  resize: vertical;
  min-height: 140px;
}
.feedback-rating-field {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  box-sizing: border-box;
}
.feedback-rating-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.feedback-rating-range {
  width: 100%;
  margin: 0;
  accent-color: var(--secondary);
}
.feedback-star-picker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 4px;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  border-radius: 10px;
  cursor: pointer;
  line-height: 1;
  outline: none;
}
.feedback-star-picker-legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.feedback-star-picker:focus-visible {
  box-shadow: 0 0 0 3px rgba(95, 179, 230, 0.3);
}
.feedback-star {
  position: relative;
  display: inline-block;
  width: 1em;
  color: #cbd5e1;
  font-size: 1.55rem;
  line-height: 1;
}
.feedback-star::before {
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  overflow: hidden;
  color: var(--secondary);
  content: "\2605";
  pointer-events: none;
}
.feedback-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.feedback-rating-value {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}
.feedback-rating-clear {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 6px 10px;
}
.lead-form .feedback-rating-clear {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.feedback-rating-clear:hover,
      .feedback-rating-clear:focus-visible {
  border-color: rgba(95, 179, 230, 0.8);
  outline: none;
}
.feedback-list-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: var(--warm-bg);
  padding: 18px;
}
.feedback-public-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.feedback-public-head h3 {
  margin: 0;
  color: var(--navy);
}
.feedback-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-stars {
  display: flex;
  gap: 2px;
  align-items: center;
  color: #cbd5e1;
  letter-spacing: 0;
  margin-bottom: 10px;
  min-height: 24px;
}
@media (max-width: 840px) {
  .feedback-layout {
    grid-template-columns: 1fr;
  }
  .feedback-public-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
.home-flow-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 252, 0.94)),
          linear-gradient(135deg, rgba(95, 179, 230, 0.1), rgba(240, 163, 92, 0.12));
  border-top: 1px solid rgba(216, 228, 232, 0.76);
  border-bottom: 1px solid rgba(216, 228, 232, 0.76);
}
.home-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 26px;
  align-items: center;
}
.product-action-demo {
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(180px, 0.88fr) minmax(240px, 1.12fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(216, 228, 232, 0.92);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 248, 252, 0.9)),
          linear-gradient(135deg, rgba(255, 216, 189, 0.3), rgba(232, 248, 240, 0.25));
  box-shadow: 0 18px 44px rgba(16, 34, 63, 0.1);
  padding: 22px;
  overflow: hidden;
}
.product-action-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 43, 75, 0.038) 1px, transparent 1px),
          linear-gradient(rgba(26, 43, 75, 0.03) 1px, transparent 1px);
  opacity: 0.55;
  pointer-events: none;
}
.product-action-phone,
      .product-action-hub {
  position: relative;
  z-index: 1;
}
.product-action-phone {
  width: min(100%, 214px);
  justify-self: center;
  border: 8px solid #111b31;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #eafbf5);
  padding: 18px 14px 16px;
  box-shadow: 0 22px 42px rgba(16, 34, 63, 0.18);
}
.product-action-phone-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.product-action-phone-top em {
  font-style: normal;
}
.product-action-prompt {
  margin-top: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #205e7e, #187065);
  color: #fff;
  padding: 18px 14px;
  min-height: 132px;
}
.product-action-prompt span,
      .product-action-prompt small {
  display: block;
  font-weight: 700;
}
.product-action-prompt strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 1.55rem;
  line-height: 1.1;
}
.product-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.product-action-buttons span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(216, 228, 232, 0.95);
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  text-align: center;
}
.product-action-buttons .product-action-ok {
  background: #dff8ee;
  border-color: rgba(59, 188, 167, 0.32);
  color: #146454;
}
.product-action-hub {
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(16, 34, 63, 0.1);
  padding: 16px;
}
.product-action-hub-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.product-action-hub-head strong {
  color: var(--navy);
}
.product-action-hub-head span {
  border-radius: 999px;
  background: rgba(59, 188, 167, 0.13);
  color: #053028;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 9px;
}
.product-action-states {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-action-states li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  opacity: 0.74;
}
.product-action-states strong,
      .product-action-states small {
  display: block;
}
.product-action-states strong {
  color: var(--navy);
  line-height: 1.28;
}
.product-action-states small {
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}
.product-action-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--brand-mint);
  box-shadow: 0 0 0 7px rgba(59, 188, 167, 0.12);
}
.product-action-dot--alert {
  background: var(--brand-coral);
  box-shadow: 0 0 0 7px rgba(235, 111, 99, 0.12);
}
@keyframes product-action-state {
  0%,
        22% {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(36, 126, 168, 0.38);
    box-shadow: 0 10px 24px rgba(16, 34, 63, 0.1);
  }
  28%,
        100% {
    opacity: 0.54;
    transform: translateX(0);
    border-color: rgba(216, 228, 232, 0.95);
    box-shadow: none;
  }
}
@keyframes product-ok-tap {
  0%,
        24%,
        52%,
        100% {
    transform: scale(1);
  }
  30%,
        40% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(59, 188, 167, 0.12);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .product-action-states li {
    animation: product-action-state 12s ease-in-out infinite;
    animation-delay: calc(var(--step) * 3s);
  }
  .product-action-ok {
    animation: product-ok-tap 12s ease-in-out infinite;
    animation-delay: 3s;
  }
}
.home-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.home-flow-card {
  position: relative;
  min-height: 170px;
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(16, 34, 63, 0.08);
}
.home-flow-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(95, 179, 230, 0.18), rgba(59, 188, 167, 0.2));
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 14px;
}
.home-flow-card:nth-child(2) .home-flow-number {
  background: linear-gradient(135deg, rgba(59, 188, 167, 0.18), rgba(240, 163, 92, 0.2));
}
.home-flow-card:nth-child(3) .home-flow-number {
  background: linear-gradient(135deg, rgba(240, 163, 92, 0.2), rgba(235, 111, 99, 0.16));
}
.home-flow-card h3 {
  margin: 0 0 8px;
}
.home-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.home-flow-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  border: 1px solid rgba(36, 126, 168, 0.2);
  border-left: 4px solid var(--brand-mint);
  border-radius: var(--radius);
  background: #f8fcfb;
  padding: 14px 16px;
  color: var(--text);
}
.home-flow-note span {
  color: var(--muted);
}
.trust-story-band,
      .inner-story-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96)),
          linear-gradient(135deg, rgba(59, 188, 167, 0.08), rgba(240, 163, 92, 0.1));
  border-top: 1px solid rgba(216, 228, 232, 0.76);
  border-bottom: 1px solid rgba(216, 228, 232, 0.76);
}
.trust-story-grid,
      .inner-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
}
.trust-story-card,
      .inner-story-card {
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-left: 4px solid var(--brand-mint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(16, 34, 63, 0.08);
  padding: 22px;
}
.trust-story-card h3,
      .inner-story-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}
.inner-story-card p {
  margin: 0;
  color: var(--muted);
}
.inner-story-note--safety .inner-story-card {
  border-left-color: var(--brand-coral);
}
.inner-story-note--pricing .inner-story-card {
  border-left-color: var(--secondary);
}
.problem-support-column {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}
.problem-signal-panel {
  border: 1px solid rgba(36, 126, 168, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.94)),
          linear-gradient(135deg, rgba(95, 179, 230, 0.1), rgba(240, 163, 92, 0.12));
  box-shadow: 0 12px 30px rgba(16, 34, 63, 0.08);
  padding: 18px;
  overflow: hidden;
}
.problem-signal-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(59, 188, 167, 0.3);
  border-radius: 999px;
  background: rgba(59, 188, 167, 0.11);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  padding: 3px 10px;
}
.problem-signal-panel h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.3;
}
.problem-signal-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.problem-signal-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(216, 228, 232, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 11px 12px;
}
.problem-signal-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(95, 179, 230, 0.15);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.problem-signal-list li:nth-child(2) .problem-signal-time {
  background: rgba(59, 188, 167, 0.16);
}
.problem-signal-list li:nth-child(3) .problem-signal-time {
  background: rgba(235, 111, 99, 0.13);
}
.problem-signal-copy strong,
      .problem-signal-footer strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}
.problem-signal-copy span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 3px;
}
.problem-signal-footer {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  border: 1px solid rgba(59, 188, 167, 0.22);
  border-left: 4px solid var(--brand-mint);
  border-radius: var(--radius);
  background: #f7fcfb;
  padding: 12px 12px 12px 14px;
}
.problem-signal-footer span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}
.hero > *,
      .hero-card,
      .hero-product-stage,
      .hero-dashboard {
  min-width: 0;
}
.inner-page-band {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(238, 248, 252, 0.88) 56%, rgba(255, 244, 235, 0.96));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.inner-page-band-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.52;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 44%),
          linear-gradient(90deg, rgba(26, 43, 75, 0.045) 1px, transparent 1px),
          linear-gradient(rgba(26, 43, 75, 0.035) 1px, transparent 1px);
}
.inner-page-band-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px 26px;
}
.inner-page-band-glass {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(203, 189, 169, 0.72);
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(37, 31, 24, 0.08);
  overflow: hidden;
}
.inner-page-band-glass-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
  gap: 24px 34px;
  align-items: start;
  padding: 20px 24px;
}
.inner-page-band-figure {
  margin: 0;
  position: relative;
  align-self: start;
  min-height: 174px;
}
.inner-page-band-figure::before {
  content: "";
  position: absolute;
  inset: 18px 2px 10px 40px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 50%),
          linear-gradient(135deg, rgba(137, 207, 240, 0.34), rgba(59, 188, 167, 0.2) 48%, rgba(249, 192, 132, 0.32));
  filter: blur(0.2px);
  opacity: 0.9;
}
@keyframes subtle-float-y {
  0%,
        100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.inner-page-visual {
  position: relative;
  min-height: 210px;
  border-radius: 16px;
  background: radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.86), transparent 32%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 252, 0.7)),
          linear-gradient(135deg, rgba(36, 126, 168, 0.12), rgba(59, 188, 167, 0.11) 48%, rgba(240, 163, 92, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(26, 43, 75, 0.12);
  overflow: hidden;
  animation: subtle-float-y 5.5s ease-in-out infinite;
}
.inner-page-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 43, 75, 0.045) 1px, transparent 1px),
          linear-gradient(rgba(26, 43, 75, 0.035) 1px, transparent 1px);
  opacity: 0.5;
}
.inner-page-band[data-band="for-seniors"] {
  background: linear-gradient(180deg, rgba(247, 252, 251, 0.98), rgba(255, 250, 242, 0.88)),
          linear-gradient(135deg, rgba(59, 188, 167, 0.1), rgba(240, 163, 92, 0.11));
}
.inner-page-band[data-band="for-families"],
      .inner-page-band[data-band="family-hub"] {
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(244, 249, 252, 0.9)),
          linear-gradient(135deg, rgba(95, 179, 230, 0.11), rgba(59, 188, 167, 0.08));
}
.inner-page-band[data-band="reminders"] {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 252, 251, 0.9)),
          linear-gradient(135deg, rgba(240, 163, 92, 0.12), rgba(59, 188, 167, 0.08));
}
.inner-page-band[data-band="reminders"] .inner-page-deco-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
  gap: 10px 12px;
}
.inner-page-band[data-band="for-seniors"] .inner-page-deco-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
  gap: 10px 12px;
}
.inner-page-band[data-band="safety"] {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 246, 244, 0.88)),
          linear-gradient(135deg, rgba(36, 126, 168, 0.09), rgba(235, 111, 99, 0.1));
}
.inner-page-band[data-band="pricing"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.92)),
          linear-gradient(135deg, rgba(36, 126, 168, 0.1), rgba(240, 163, 92, 0.1));
}
.inner-page-band[data-band="pricing"] .inner-page-deco-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
  gap: 10px 12px;
}
.inner-page-visual--seniors,
      .inner-page-visual--families,
      .inner-page-visual--hub,
      .inner-page-visual--reminders,
      .inner-page-visual--safety,
      .inner-page-visual--pricing {
  display: grid;
  place-items: center;
  padding: 18px;
}
.inner-visual-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 204px);
  border: 8px solid #111b31;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #e9faf3);
  box-shadow: 0 18px 36px rgba(16, 34, 63, 0.18);
  padding: 18px 14px 16px;
}
.inner-visual-phone-top,
      .inner-visual-dashboard-head,
      .inner-visual-hub-row,
      .inner-visual-family-card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.inner-visual-phone-top {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.inner-visual-phone-top em,
      .inner-visual-reminder-card em,
      .inner-visual-plan em {
  font-style: normal;
}
.inner-visual-check {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.inner-visual-big-action {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin-top: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1f6d88, #166d62);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
}
.inner-visual-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.inner-visual-action-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(216, 228, 232, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.inner-visual-caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
  border: 1px solid rgba(59, 188, 167, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #146454;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  padding: 8px 10px;
}
.inner-page-visual--seniors {
  gap: 12px;
}
.inner-page-visual--seniors .inner-visual-caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(100%, 276px);
}
.inner-visual-dashboard,
      .inner-visual-hub-board,
      .inner-visual-reminder-stack,
      .inner-visual-safety-timeline {
  position: relative;
  z-index: 2;
  width: min(100%, 310px);
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(16, 34, 63, 0.13);
  padding: 14px;
}
.inner-visual-plan-row {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(16, 34, 63, 0.13);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.inner-visual-dashboard-head {
  margin-bottom: 10px;
  color: var(--navy);
}
.inner-visual-dashboard-head span,
      .inner-visual-hub-row span,
      .inner-visual-plan span {
  border-radius: 999px;
  background: rgba(95, 179, 230, 0.13);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  white-space: nowrap;
}
.inner-visual-family-card,
      .inner-visual-hub-row,
      .inner-visual-note-card,
      .inner-visual-reminder-card,
      .inner-visual-safety-timeline div,
      .inner-visual-plan {
  border: 1px solid rgba(216, 228, 232, 0.95);
  border-radius: var(--radius);
  background: #fff;
  padding: 11px 12px;
}
.inner-visual-family-card,
      .inner-visual-hub-row {
  margin-top: 9px;
}
.inner-visual-family-card strong,
      .inner-visual-hub-row strong,
      .inner-visual-note-card strong,
      .inner-visual-reminder-card strong,
      .inner-visual-safety-timeline strong,
      .inner-visual-plan strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}
.inner-visual-family-card span,
      .inner-visual-note-card span,
      .inner-visual-reminder-card em,
      .inner-visual-plan em {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}
.inner-visual-family-card.is-ok,
      .inner-visual-hub-row .ok {
  border-color: rgba(59, 188, 167, 0.28);
}
.inner-visual-family-card.is-alert,
      .inner-visual-hub-row .alert {
  border-color: rgba(235, 111, 99, 0.28);
}
.inner-visual-care-ring {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.inner-visual-care-ring span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 228, 232, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 9px;
}
.inner-visual-note-card {
  margin-top: 10px;
  border-left: 4px solid var(--brand-mint);
}
.inner-visual-reminder-stack {
  display: grid;
  gap: 10px;
}
.inner-visual-reminder-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.inner-visual-reminder-card span,
      .inner-visual-safety-timeline span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 10px;
  background: rgba(240, 163, 92, 0.16);
  color: #4a2a08;
  font-size: 11px;
  font-weight: 900;
}
.inner-visual-safety-timeline {
  display: grid;
  gap: 9px;
}
.inner-visual-safety-timeline div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.inner-visual-safety-timeline div:nth-child(4) span {
  background: rgba(235, 111, 99, 0.14);
  color: #4a100c;
}
.inner-visual-plan {
  min-height: 120px;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}
.inner-visual-plan.is-featured {
  border-color: rgba(36, 126, 168, 0.42);
  background: linear-gradient(180deg, #f6fbff, #fff);
  box-shadow: 0 12px 24px rgba(36, 126, 168, 0.14);
}
.inner-visual-plan strong {
  font-size: 0.95rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.inner-visual-plan em {
  overflow-wrap: anywhere;
}
.inner-page-care-scene {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  width: 156px;
  height: 156px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.22)),
          linear-gradient(135deg, rgba(95, 179, 230, 0.18), rgba(240, 163, 92, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(16, 34, 63, 0.14);
}
.inner-page-care-scene::before,
      .inner-page-care-scene::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(36, 126, 168, 0.2);
}
.inner-page-care-scene::before {
  inset: 24px;
}
.inner-page-care-scene::after {
  inset: 48px;
  border-color: rgba(240, 163, 92, 0.26);
}
.care-avatar {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: #f4c79f;
  border: 3px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(16, 34, 63, 0.16);
}
.care-avatar--senior {
  width: 70px;
  height: 70px;
  left: 42px;
  top: 18px;
  background: #f1c9a6;
}
.care-avatar--family {
  width: 54px;
  height: 54px;
  left: 18px;
  bottom: 22px;
  background: #dba078;
}
.care-avatar--helper {
  width: 54px;
  height: 54px;
  right: 18px;
  bottom: 22px;
  background: #c98f70;
}
.care-avatar::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: -9%;
  height: 42%;
  border-radius: 999px 999px 60% 60%;
  background: #fff7ee;
}
.care-avatar--family::before {
  background: #203856;
}
.care-avatar--helper::before {
  background: #4f657c;
}
.care-avatar-face {
  position: absolute;
  inset: 0;
}
.care-avatar-face::before,
      .care-avatar-face::after {
  content: "";
  position: absolute;
  top: 45%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #17243d;
}
.care-avatar-face::before {
  left: 34%;
}
.care-avatar-face::after {
  right: 34%;
}
.inner-page-visual-phone {
  position: absolute;
  z-index: 4;
  left: 126px;
  bottom: 18px;
  width: 70px;
  height: 102px;
  border: 6px solid #101827;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #e8fbf3);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 32px rgba(16, 34, 63, 0.2);
}
.inner-page-visual-phone span {
  position: absolute;
  top: 10px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #16233b;
}
.inner-page-visual-phone strong {
  margin-top: 8px;
  font-size: 1.15rem;
  color: #146454;
}
.inner-page-visual-phone em {
  margin-top: -22px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}
.inner-page-visual-panel {
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 24px;
  width: min(176px, 52%);
  border: 1px solid rgba(216, 228, 232, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(16, 34, 63, 0.14);
  padding: 14px;
}
.inner-page-visual-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 0 8px rgba(59, 188, 167, 0.14);
}
.inner-page-visual-line {
  display: block;
  height: 8px;
  width: 62%;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(26, 43, 75, 0.12);
}
.inner-page-visual-line--wide {
  width: 86%;
}
.inner-page-visual-pill {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e5f8f0;
  color: #146454;
  font-size: 11px;
  font-weight: 800;
}
.inner-page-visual-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(36, 126, 168, 0.22);
  z-index: 1;
}
.inner-page-visual-ring--one {
  left: 76px;
  top: 28px;
  width: 112px;
  height: 112px;
}
.inner-page-visual-ring--two {
  right: -30px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-color: rgba(240, 163, 92, 0.26);
}
@media (prefers-reduced-motion: reduce) {
  .inner-page-visual {
    animation: none;
  }
}
.inner-page-band-copy {
  min-width: 0;
  align-self: start;
}
.inner-page-band-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.3;
}
.inner-page-band-title {
  margin: 0 0 12px;
  font-size: var(--type-display);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.inner-page-band-lead {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.55;
  color: #4a5568;
  max-width: 690px;
}
.inner-page-deco-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: flex-start;
}
.inner-page-deco-strip li {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #70482f;
  background: rgba(255, 244, 235, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.98);
  padding: 8px 15px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26, 43, 75, 0.07);
  border-color: rgba(255, 216, 189, 0.78);
}
.inner-page-band[data-band="safety"] .inner-page-deco-strip li,
      .inner-page-band[data-band="faq"] .inner-page-deco-strip li {
  background: rgba(255, 255, 255, 0.97);
}
.inner-page-band[data-band="research"] .inner-page-band-mesh,
      .inner-page-band[data-band="resources"] .inner-page-band-mesh {
  opacity: 0.6;
}
.price-features {
  display: grid;
  gap: 7px;
}
.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-weight: 800;
}
.future-roadmap {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.future-roadmap--wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.future-roadmap-card {
  position: relative;
  border: 1px solid rgba(61, 138, 191, 0.24);
  border-top: 4px solid rgba(61, 138, 191, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 252, 0.94));
  padding: 16px 16px 14px 52px;
  box-shadow: 0 10px 28px rgba(26, 43, 75, 0.08);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.2s;
}
.future-roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61, 138, 191, 0.4);
}
.future-roadmap-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(61, 138, 191, 0.18), rgba(249, 192, 132, 0.22));
  border: 1px solid rgba(61, 138, 191, 0.24);
  box-shadow: 0 4px 12px rgba(26, 43, 75, 0.08);
}
.future-roadmap-card h3 {
  margin: 0 0 8px;
}
.future-roadmap-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.contact-callback-layout {
  display: grid;
  gap: 16px;
}
.contact-help-card {
  padding: 16px 18px;
}
.contact-help-card h3 {
  margin-bottom: 10px;
}
.contact-help-card .checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
}
.future-interest-box {
  margin: 8px 0 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  background: #fbfdff;
  overflow: hidden;
}
.future-interest-box summary {
  cursor: pointer;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  list-style-position: inside;
}
.future-interest-box[open] summary {
  border-bottom: 1px solid rgba(100, 116, 139, 0.16);
}
.future-interest-box:not([open]) .future-interest-grid {
  display: none;
}
.lead-form {
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(26, 43, 75, 0.07);
}
.lead-form--compact {
  padding: 18px;
}
.lead-form select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.lead-form-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.16);
}
.lead-form-head h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
  color: var(--navy);
}
.lead-form-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
  color: var(--muted);
}
.lead-form-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px 18px;
  align-items: start;
}
.lead-form-panel {
  margin-top: 2px;
}
.lead-form-panel--interest {
  margin-top: 2px;
}
.lead-form-panel--interest .lead-form-phone-row > input {
  flex: 1 1 200px;
  min-width: 0;
  margin-top: 0 !important;
}
.future-interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
  padding: 10px 12px 12px;
}
.future-interest-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 12px;
  color: var(--text);
  line-height: 1.32;
  background: #fff;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 9px;
  padding: 7px 8px;
}
.future-interest-box input[type="checkbox"] {
  margin: 0;
}
.lead-form-helper--label {
  display: block;
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--navy);
}
.lead-form-helper--small {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 12px;
  text-align: right;
  color: #64748b;
}
#leadMessage {
  width: 100%;
  min-height: 96px;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 12px;
  background: #fcfdff;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  resize: vertical;
}
#leadMessage:focus {
  outline: none;
  border-color: rgba(61, 138, 191, 0.62);
  box-shadow: 0 0 0 3px rgba(61, 138, 191, 0.14);
}
.lead-form-helper {
  margin: 6px 0;
  font-size: 13px;
  color: var(--muted);
}
main.has-inner-band > section:first-of-type {
  padding-top: 28px;
}
main.has-inner-band > section.alt:first-of-type {
  border-top: 0;
}
main.has-inner-band > section:first-of-type .section-inner > h1:first-child {
  margin-bottom: 20px;
}
main.has-inner-band > section:first-of-type .section-inner > h1:first-child + .grid-2,
      main.has-inner-band > section:first-of-type .section-inner > h1:first-child + .grid-3,
      main.has-inner-band > section:first-of-type .section-inner > h1:first-child + .grid-2-equal {
  margin-top: 0;
}
@media (max-width: 720px) {
  .nav {
    padding: 10px 14px;
    gap: 8px;
  }
  .brand {
    gap: 8px;
    font-size: 1.08rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .nav-toggle {
    margin-left: 0;
    padding: 10px 12px;
  }
  .nav > .btn-primary {
    order: 4;
    flex: 1 0 100%;
    width: auto;
    padding: 11px 14px;
  }
  .hero-card {
    width: 100%;
    overflow: hidden;
  }
  .hero-dashboard {
    width: 100%;
  }
  .hero-dashboard-top strong,
        .hero-live-badge,
        .hero-family-row strong {
    min-width: 0;
  }
  .home-flow-layout,
        .product-action-demo,
        .trust-story-grid,
        .inner-story-grid {
    grid-template-columns: 1fr;
  }
  .product-action-demo {
    min-height: 0;
    padding: 16px;
  }
  .product-action-phone {
    width: min(100%, 238px);
  }
  .home-flow-grid {
    grid-template-columns: 1fr;
  }
  .home-flow-card {
    min-height: 0;
  }
  .home-flow-note {
    grid-template-columns: 1fr;
  }
  .problem-signal-list li {
    grid-template-columns: 1fr;
  }
  .problem-signal-time {
    justify-self: start;
  }
  .inner-page-band-glass-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px 26px;
  }
  .inner-page-band-figure {
    width: min(100%, 320px);
  }
  .inner-visual-plan-row {
    grid-template-columns: 1fr;
  }
  .inner-visual-plan {
    min-height: 0;
  }
  .inner-visual-care-ring {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .inner-page-band-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .inner-page-deco-strip {
    justify-content: center;
  }
  .inner-page-band[data-band="reminders"] .inner-page-deco-strip {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .inner-page-band[data-band="for-seniors"] .inner-page-deco-strip {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .inner-page-band[data-band="pricing"] .inner-page-deco-strip {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .future-roadmap-card {
    padding: 16px 14px 14px 48px;
  }
  .future-interest-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-help-card .checks,
        .lead-form-body {
    grid-template-columns: 1fr;
  }
  .lead-form--compact {
    padding: 16px;
  }
  .lead-form-head {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .lead-form-head p {
    font-size: 13px;
    line-height: 1.32;
  }
  .lead-form input,
        .lead-form select {
    margin-top: 7px;
    padding: 10px 12px;
  }
  .lead-form-phone-row {
    gap: 7px 10px;
    margin-top: 7px;
  }
  .lead-form-helper {
    margin: 4px 0;
    font-size: 12px;
  }
  .lead-form-helper--label {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  #leadMessage {
    min-height: 72px;
    padding: 10px 11px;
  }
  .lead-form button {
    margin-top: 10px;
  }
  .lead-form-status {
    margin-top: 9px;
  }
}
.btn-secondary {
  background: var(--secondary-soft);
  color: var(--secondary);
  border: 1px solid rgba(61, 138, 191, 0.35);
}
.btn-secondary:hover {
  background: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 43, 75, 0.08);
}
.answer-summary {
  padding: 36px 24px 46px;
  background: #fff;
}
.answer-summary + section {
  padding-top: 42px;
}
.answer-summary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.answer-summary-list li {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fbfb);
  color: var(--muted);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
}
.answer-summary-list li strong {
  color: var(--navy);
}
.nav-dropdown fieldset.nav-dropdown-panel {
  border: none;
  margin: 0;
}
.nav-dropdown-legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-toplink {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 6px 4px;
  white-space: nowrap;
}
.nav-toplink:hover {
  text-decoration: none;
  color: var(--secondary);
}
.nav-toplink-muted {
  font-weight: 600;
  color: var(--muted);
}
.nav-dropdown {
  position: relative;
}
@media (min-width: 901px) {
  .nav-dropdown:hover,
        .nav-dropdown:focus-within {
    z-index: 90;
  }
}
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 6px;
  white-space: nowrap;
  border-radius: 8px;
}
.nav-dropdown-btn:hover {
  color: var(--secondary);
}
.nav-dropdown-btn::after {
  content: "▾";
  font-size: 10px;
  opacity: 0.55;
  line-height: 1;
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 232px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px 0 6px;
  z-index: 80;
}
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  bottom: 100%;
}
.nav-dropdown-panel a {
  display: block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.nav-dropdown-panel a:hover {
  background: var(--secondary-soft);
  text-decoration: none;
}
@media (min-width: 901px) {
  .nav-dropdown:hover .nav-dropdown-panel,
        .nav-dropdown:focus-within .nav-dropdown-panel {
    display: block;
  }
  .nav-dropdown-panel a {
    white-space: nowrap;
  }
}
@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown:last-of-type {
    border-bottom: none;
  }
  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }
  .nav-dropdown-panel {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 4px;
    min-width: 0;
  }
  .nav-dropdown fieldset.nav-dropdown-panel {
    min-width: 0;
  }
  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }
  .nav-toplink {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-toplink-muted {
    border-bottom: none;
  }
}
@media (max-width: 900px) {
  .home-flow-layout,
        .product-action-demo {
    grid-template-columns: 1fr;
  }
  .product-action-demo {
    min-height: 0;
  }
}
.sticky-mobile-cta {
  position: sticky;
  bottom: 0;
  z-index: 35;
  margin-top: 8px;
  padding: 16px 0 calc(18px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(246, 250, 252, 0) 0%, rgba(246, 250, 252, 0.94) 35%, #f6fafc 100%);
}
@media (min-width: 901px) {
  .sticky-mobile-cta {
    position: static;
    padding-bottom: 0;
    background: none;
  }
}
h1,
      h2,
      h3,
      .inner-page-band-title,
      .hero h1 {
  letter-spacing: 0 !important;
}
.nav-toplink,
      .nav-signin {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--color-navy-900);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.nav-toplink:hover,
      .nav-signin:hover,
      .nav-toplink[aria-current="page"],
      .nav-signin[aria-current="page"] {
  background: rgba(255, 216, 189, 0.28);
  color: var(--color-navy-950);
  text-decoration: none;
}
.nav-toplink[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(185, 109, 66, 0.2);
}
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.nav-actions .btn {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 13px;
}
.btn-warm,
      .btn-secondary,
      .btn-outline {
  border: 1px solid var(--color-border-strong);
  background: #fffdf8;
  color: var(--color-navy-900);
  box-shadow: 0 6px 16px rgba(37, 31, 24, 0.06);
}
.hero-wrap::before,
      .hero-wrap::after,
      .hero-mesh,
      .inner-page-band-mesh {
  opacity: 0.18;
}
.badge,
      .feature-chip,
      .persona-tag,
      .problem-signal-eyebrow,
      .inner-page-band-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 216, 189, 0.34);
  border: 1px solid rgba(255, 216, 189, 0.72);
  color: #7c4427;
  text-transform: none;
  letter-spacing: 0;
}
.hero-proof,
      .card,
      .persona-card,
      .research-card,
      .kpi-card,
      .home-flow-card,
      .trust-story-card,
      .inner-story-card,
      .price-card,
      .answer-summary-list li,
      .problem-signal-panel,
      .lead-form,
      .feedback-rating-field {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.card,
      .persona-card,
      .research-card,
      .price-card {
  padding: 22px;
}
.card:hover,
      .persona-card:hover,
      .research-card:hover,
      .price-card:hover,
      .home-flow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 31, 24, 0.11);
  border-color: var(--color-border-strong);
}
.hero-check-actions span:first-child,
      .hero-status,
      .inner-visual-family-card.is-ok,
      .inner-visual-hub-row .ok {
  background: var(--mint-bg);
  color: #16644c;
}
.hero-timeline-step,
      .hero-family-panel,
      .hero-mini-pill,
      .inner-visual-family-card,
      .inner-visual-hub-row,
      .inner-visual-note-card,
      .inner-visual-reminder-card,
      .inner-visual-plan,
      .inner-visual-safety-timeline div {
  border-radius: 14px;
  border-color: rgba(203, 189, 169, 0.72);
  background: rgba(255, 253, 248, 0.9);
}
section.alt,
      .home-flow-band,
      .trust-story-band,
      .inner-story-note,
      .answer-summary {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(251, 247, 239, 0.92));
  border-top: 1px solid rgba(226, 217, 204, 0.82);
  border-bottom: 1px solid rgba(226, 217, 204, 0.82);
}
main.has-inner-band .section-inner > h1,
      .section-inner > h1:first-child {
  font-size: var(--type-display);
  line-height: 1.12;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.grid-3,
      .persona-grid,
      .research-grid,
      .kpi-grid {
  gap: 16px;
}
.grid-3 .card:nth-child(1),
      .persona-grid .persona-card:nth-child(1) {
  background: linear-gradient(180deg, #fffdf8, #fff4eb);
}
.grid-3 .card:nth-child(2),
      .persona-grid .persona-card:nth-child(2) {
  background: linear-gradient(180deg, #fffdf8, #eef8fc);
}
.grid-3 .card:nth-child(3),
      .persona-grid .persona-card:nth-child(3) {
  background: linear-gradient(180deg, #fffdf8, #e8f8f0);
}
.page-for-seniors section,
      .page-for-seniors .sub,
      .page-for-seniors .card p {
  font-size: 1.06rem;
}
.pricing-page .inner-story-note,
      #cta-final {
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.95), rgba(255, 253, 248, 0.95));
}
.faq-group-label {
  margin: 28px 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.faq-group-label:first-of-type {
  margin-top: 8px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 16px 0;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.store-badge:hover {
  box-shadow: var(--shadow);
}
.store-badge:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.store-badge[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--primary);
}
.store-badge--google {
  background: linear-gradient(180deg, #fff 0%, #f6f6f6 100%);
}
.store-badge--apple {
  background: linear-gradient(180deg, #2b2b2b 0%, #111 100%);
  color: #fff;
  border-color: #111;
}
.store-coming-soon-notice {
  display: block;
  margin: 0 0 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--warm-bg);
  border: 1px solid var(--color-border-strong);
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}
.store-coming-soon-notice a {
  font-weight: 700;
}
.research-page .research-card,
      .page-resources .card {
  background: linear-gradient(180deg, #fffdf8, #f8fbfb);
}
.legal-page {
  background: #fffdf8;
}
.legal-page .inner-page-band {
  background: #fffdf8;
}
.legal-page .inner-page-band-figure,
      .legal-page .inner-page-deco-strip {
  display: none;
}
.legal-page .inner-page-band-glass {
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}
.legal-page .inner-page-band-glass-grid {
  grid-template-columns: 1fr;
  padding: 22px 0 8px;
}
.legal-page .inner-page-band-inner,
      .legal-page .section-inner {
  max-width: 860px;
}
.legal-page .grid-2 {
  grid-template-columns: 1fr;
}
.legal-page .card {
  box-shadow: none;
  background: var(--color-surface-soft);
}
.footer-col a {
  display: inline-block;
  margin: 2px 0;
}
@media (max-width: 1100px) {
  .nav {
    width: min(calc(100% - 20px), 1180px);
  }
  .nav-links {
    gap: 0;
  }
  .nav-toplink {
    padding-inline: 8px;
    font-size: 12.5px;
  }
}
@media (max-width: 900px) {
  .nav {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 10px 14px;
  }
  .nav-links {
    order: 5;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav.is-open .nav-links {
    display: flex;
  }
  .nav-toplink {
    width: 100%;
    min-height: 44px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    padding: 12px 2px;
    font-size: 14px;
  }
  .nav-actions {
    order: 3;
    margin-left: auto;
  }
  .nav-signin {
    display: none;
  }
  .nav-actions .btn {
    min-height: 42px;
    padding: 10px 14px;
  }
  .hero-wrap {
    margin-top: 0;
    padding-top: 0;
  }
  .hero,
        .grid-2,
        .home-flow-layout,
        .product-action-demo,
        .trust-story-grid,
        .inner-story-grid,
        .inner-page-band-glass-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 54px 18px 42px;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 5vw, 1.85rem);
  }
  .trust-strip {
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 18px 0;
  }
  section {
    padding: 48px 18px;
  }
  h2 {
    font-size: clamp(1.35rem, 4vw, 1.55rem);
  }
  .inner-page-band-title,
        main.has-inner-band .section-inner > h1,
        .section-inner > h1:first-child {
    font-size: clamp(1.55rem, 5vw, 1.85rem);
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.7rem);
  }
  .hero p.lead {
    font-size: 1.04rem;
  }
  .hero-proof-row,
        .home-flow-grid,
        .trust-strip,
        .pricing,
        .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip li {
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 11.5px;
  }
  .hero-card {
    padding: 8px;
  }
  .hero-product-stage {
    min-height: 0;
  }
  .inner-page-band-inner {
    padding: 22px 18px;
  }
  .inner-page-band-title,
        main.has-inner-band .section-inner > h1,
        .section-inner > h1:first-child {
    font-size: clamp(1.4rem, 6vw, 1.65rem);
  }
  h2 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  .price-card,
        .card,
        .persona-card {
    padding: 18px;
  }
}
.footer-grid--compact {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}
.site-footer .footer-shell {
  max-width: var(--container, 1120px);
  margin: 0 auto;
}
.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(229, 244, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36, 126, 168, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
}
.footer-cta-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.footer-cta-copy strong {
  font-size: 1.05rem;
  color: #fff;
}
.footer-cta-copy span {
  color: #c9dff2;
  font-size: 14px;
  line-height: 1.5;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid rgba(229, 244, 255, 0.42);
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-btn-ghost:hover {
  background: #243751;
  border-color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: #fff;
}
.footer-col-title {
  display: block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8eb4d4;
}
.footer-tagline {
  margin-top: 0.65em;
  max-width: 34ch;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer-links a {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  color: #e5f4ff;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
  text-decoration: none;
}
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 244, 255, 0.14);
  max-width: 720px;
}
.footer-secondary a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(229, 244, 255, 0.2);
  background: #1a3049;
  color: #dceaf7;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.footer-secondary a:hover {
  color: #fff;
  border-color: rgba(248, 191, 115, 0.55);
  background: #293c56;
  text-decoration: none;
}
.explore-band .explore-groups {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}
.explore-group-title {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.explore-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.explore-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.explore-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  flex: 1;
}
.social-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 24px;
  align-items: center;
}
.social-proof-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .footer-grid--compact {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta-actions {
    justify-content: flex-start;
  }
  .explore-group-grid {
    grid-template-columns: 1fr;
  }
  .social-proof-layout {
    grid-template-columns: 1fr;
  }
  .social-proof-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .footer-grid--compact {
    grid-template-columns: 1fr;
  }
}
.availability-heading {
  margin-top: 18px;
  font-size: 1.05rem;
}
.pricing-current {
  max-width: 760px;
  margin: 24px auto 0;
}
.pricing-current .price-card {
  min-height: 0;
}
.future-plans-heading {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}
.future-plans-heading .sub {
  margin-inline: auto;
}
.pricing--future {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .pricing--future {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
}
.feature-matrix-grid {
  align-items: stretch;
}
.product-proof-band {
  background: radial-gradient(circle at 10% 8%, rgba(160, 216, 239, 0.24), transparent 34%),
          linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}
.product-proof-intro {
  max-width: 780px;
}
.product-proof-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.product-proof-group {
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.product-proof-group[data-proof-audience="senior"] {
  border-top: 5px solid #4f9b77;
}
.product-proof-group[data-proof-audience="family"] {
  border-top: 5px solid var(--primary);
}
.product-proof-group-header {
  min-height: 168px;
}
.product-proof-eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-proof-group-header h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.product-proof-group-header > p:last-child {
  margin: 0;
  color: var(--muted);
}
.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.product-proof-card {
  margin: 0;
  display: grid;
  gap: 12px;
}
.product-proof-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(11, 44, 77, 0.1);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(11, 44, 77, 0.12);
}
.product-proof-card figcaption {
  display: grid;
  gap: 4px;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.35;
}
.product-proof-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}
.product-proof-feature-summary {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(30, 136, 229, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #eff9fd, #fff7ea);
}
.product-proof-feature-heading {
  max-width: 720px;
}
.product-proof-feature-heading h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}
.product-proof-feature-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}
.product-proof-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.product-proof-feature-list li {
  display: grid;
  gap: 5px;
  min-height: 112px;
  align-content: start;
  padding: 17px;
  border: 1px solid rgba(11, 44, 77, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}
.product-proof-feature-list strong {
  color: var(--navy);
}
.product-proof-feature-list span {
  color: var(--muted);
  font-size: 0.9rem;
}
.product-proof-feature-summary .legal-note {
  margin-top: 18px;
}
.product-proof-feature-summary .hero-cta {
  margin-top: 18px;
}
@media (max-width: 980px) {
  .product-proof-groups {
    grid-template-columns: 1fr;
  }
  .product-proof-group-header {
    min-height: 0;
  }
}
@media (max-width: 760px) {
  .product-proof-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .product-proof-group {
    padding: 18px 14px;
  }
  .product-proof-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .product-proof-card {
    max-width: 320px;
    margin-inline: auto;
  }
  .product-proof-feature-list {
    grid-template-columns: 1fr;
  }
  .product-proof-feature-list li {
    min-height: 0;
  }
}
.account-deletion-intro {
  max-width: 900px;
}
.account-deletion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}
.account-deletion-guidance {
  display: grid;
  gap: 18px;
}
.account-deletion-app-card {
  border-color: rgba(22, 126, 114, 0.35);
  background: linear-gradient(145deg, #ffffff, #f2fbf8);
}
.account-deletion-steps {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  color: var(--muted);
}
.account-deletion-form {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 92px;
}
.account-deletion-form label {
  margin-top: 4px;
  font-weight: 700;
  color: var(--navy);
}
.account-deletion-form input,
      .account-deletion-form select,
      .account-deletion-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--navy);
  background: #fff;
  outline: none;
}
.account-deletion-form input:focus,
      .account-deletion-form select:focus,
      .account-deletion-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.14);
}
.account-deletion-form textarea {
  resize: vertical;
}
.account-deletion-mobile-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.account-deletion-mobile-row > span {
  padding: 13px 12px 13px 14px;
  border-right: 1px solid var(--line);
  font-weight: 700;
  color: var(--navy);
}
.account-deletion-mobile-row input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.account-deletion-mobile-row:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.14);
}
.account-deletion-mobile-row:focus-within input {
  box-shadow: none;
}
.account-deletion-form .btn {
  justify-content: center;
  margin-top: 4px;
}
.account-deletion-security-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.account-deletion-help {
  margin-top: 22px;
}
.account-deletion-help p {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .account-deletion-layout {
    grid-template-columns: 1fr;
  }
  .account-deletion-form {
    position: static;
  }
}
