:root {
  color-scheme: light;
  --ink: #242827;
  --muted: #68706f;
  --line: #e1e8e4;
  --paper: #f4f8f5;
  --grouped: #f2f4f3;
  --panel: #fffdfb;
  --white: #ffffff;
  --teal: #087a72;
  --teal-dark: #075c57;
  --teal-soft: #e3f5f1;
  --coral: #af423f;
  --coral-dark: #8d312f;
  --coral-soft: #ffe0dd;
  --blue: #345da8;
  --blue-soft: #e9f0fb;
  --green: #1d7547;
  --green-soft: #e8f6ef;
  --orange: #9a5609;
  --orange-soft: #fff0df;
  --purple: #6d4ca8;
  --purple-soft: #f1ebfb;
  --mint: #167868;
  --mint-soft: #e5f8f4;
  --yellow: #f5c766;
  --shadow: 0 22px 60px rgba(30, 54, 49, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(225, 232, 228, 0.78);
  background: rgba(246, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-proof,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(14, 146, 135, 0.2);
}

.nav-links {
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta,
.primary-button {
  background: var(--teal);
  color: #fff;
}

.nav-cta {
  padding: 0 16px;
  font-size: 14px;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: min(82vh, 780px);
  overflow: hidden;
  background: #30241f;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -8vw;
  height: 24vw;
  min-height: 160px;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(244, 119, 114, 0.78), rgba(248, 172, 162, 0.42) 52%, rgba(14, 146, 135, 0.12));
  transform: rotate(-5deg);
  transform-origin: left center;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(33, 39, 37, 0.94) 0%, rgba(33, 39, 37, 0.78) 38%, rgba(33, 39, 37, 0.4) 70%, rgba(33, 39, 37, 0.1) 100%),
    linear-gradient(0deg, rgba(244, 119, 114, 0.22), rgba(244, 119, 114, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px) 0 clamp(36px, 5vw, 54px);
  color: #fff;
}

.hero-message {
  max-width: 720px;
}

.hero-lockup {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: 10px;
}

.hero-app-icon {
  width: clamp(72px, 10vw, 118px);
  height: clamp(72px, 10vw, 118px);
  flex: 0 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd5ce;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.nowrap {
  white-space: nowrap;
}

p {
  color: var(--muted);
  line-height: 1.86;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-actions a {
  min-width: 176px;
  padding: 0 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 640px);
  gap: 12px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-preview {
  position: absolute;
  top: 50%;
  right: clamp(0px, 3vw, 24px);
  width: min(390px, 100%);
  transform: translateY(-50%) scale(0.86);
  transform-origin: right center;
}

.preview-phone,
.phone-frame {
  border: 10px solid #171d1c;
  border-radius: 34px;
  padding: 12px;
  background: #171d1c;
  box-shadow: var(--shadow);
}

.phone-frame {
  width: min(390px, 100%);
  justify-self: center;
}

.preview-phone {
  transform: none;
}

.phone-screen,
.app-surface {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 610px;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
  background: var(--grouped);
  color: var(--ink);
}

.phone-screen.compact {
  min-height: 0;
  gap: 10px;
  padding: 16px;
}

.phone-screen.compact .app-panel {
  padding: 14px;
}

.phone-screen.compact .metric-tile {
  min-height: 66px;
  padding: 10px;
}

.phone-screen.compact .metric-tile strong {
  font-size: 15px;
}

.phone-screen.compact .subsidy-card {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.device-status,
.app-nav,
.panel-row,
.subsidy-card,
.app-tabbar {
  display: flex;
  align-items: center;
}

.device-status {
  justify-content: space-between;
  padding: 0 4px 2px;
  color: #3a403f;
  font-size: 12px;
  font-weight: 800;
}

.app-nav {
  justify-content: space-between;
  padding: 2px 0 4px;
}

.app-nav strong {
  font-size: 25px;
  line-height: 1.1;
}

.nav-add {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.app-panel {
  border: 1px solid rgba(225, 232, 228, 0.92);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.panel-row {
  justify-content: space-between;
  gap: 14px;
}

.month-chip,
.app-panel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.month-chip {
  margin-bottom: 6px;
}

.amount-total {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(30px, 3.5vw, 38px);
  line-height: 1.05;
}

.medical-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(14, 146, 135, 0.12);
}

.medical-mark::before,
.medical-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 20px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.medical-mark::after {
  transform: rotate(90deg);
}

.app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.app-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.app-pill.blue,
.metric-tile.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.app-pill.green,
.metric-tile.green {
  background: var(--green-soft);
  color: var(--green);
}

.app-pill.orange,
.metric-tile.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.app-pill.mint,
.metric-tile.mint {
  background: var(--mint-soft);
  color: var(--mint);
}

.app-pill.teal,
.metric-tile.teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.metric-tile.purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.metric-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: 12px;
}

.metric-tile b {
  font-size: 12px;
}

.metric-tile strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.subsidy-card {
  justify-content: space-between;
  gap: 12px;
}

.subsidy-card strong {
  display: block;
  margin-bottom: 4px;
}

.app-tabbar {
  justify-content: space-between;
  gap: 2px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.app-tabbar span {
  min-width: 42px;
  text-align: center;
}

.app-tabbar .active {
  color: var(--teal);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.problem-band,
.metrics-band,
.feature-band,
.product-band,
.share-band,
.pricing-band,
.faq-band {
  padding: clamp(56px, 8vw, 104px) 0;
}

.problem-band,
.product-band,
.faq-band {
  background: var(--panel);
}

.split-copy,
.pricing-layout,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-copy > *,
.pricing-layout > *,
.product-layout > *,
.faq-layout > *,
.support-detail > * {
  min-width: 0;
}

.lead-stack {
  display: grid;
  gap: 14px;
}

.lead-stack p {
  margin-bottom: 0;
  font-size: 17px;
}

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

.metric-card,
.feature-card,
.story-grid article,
.price-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.metric-card {
  min-height: 178px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(30, 54, 49, 0.08);
}

.metric-card span,
.price-card span,
.story-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.metric-card p,
.feature-card p,
.story-grid p,
.price-card p,
.faq-list p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  font-size: 17px;
}

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

.feature-card {
  min-height: 246px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(30, 54, 49, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 900;
  box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.62);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-card:nth-child(2n) .feature-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-card:nth-child(3n) .feature-icon {
  background: var(--coral-soft);
  color: var(--coral);
}

.support-detail-band {
  padding: clamp(56px, 8vw, 104px) 0;
  background:
    linear-gradient(108deg, rgba(14, 146, 135, 0.08), rgba(244, 248, 245, 0.86) 46%, rgba(244, 119, 114, 0.09)),
    var(--paper);
}

.support-detail-stack {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.support-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(310px, 0.72fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 46px);
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 0 14px 34px rgba(30, 54, 49, 0.08);
}

.support-detail.reverse .support-copy {
  order: 2;
}

.support-detail.reverse .app-preview-shell {
  order: 1;
}

.support-copy h2 {
  max-width: 12ch;
}

.support-copy p {
  font-size: 17px;
}

.detail-points {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.detail-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.support-note {
  margin-bottom: 0;
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  color: var(--muted);
  font-size: 15px;
}

.app-preview-shell {
  width: min(390px, 100%);
  justify-self: center;
  border: 10px solid #171d1c;
  border-radius: 34px;
  padding: 12px;
  background: #171d1c;
  box-shadow: var(--shadow);
}

.document-shell {
  transform: rotate(-1.2deg);
}

.calendar-shell {
  transform: rotate(1deg);
}

.app-mini-screen {
  display: grid;
  gap: 12px;
  min-height: 590px;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
  background: var(--grouped);
  color: var(--ink);
}

.mini-status,
.mini-nav,
.mini-label,
.calendar-header,
.document-actions,
.filter-row,
.recommend-row,
.document-row,
.calendar-event {
  display: flex;
  align-items: center;
}

.mini-status {
  justify-content: space-between;
  padding: 0 4px 2px;
  color: #3a403f;
  font-size: 12px;
  font-weight: 800;
}

.mini-nav {
  justify-content: space-between;
  padding-bottom: 4px;
}

.mini-nav strong {
  font-size: 25px;
  line-height: 1.1;
}

.mini-panel {
  border: 1px solid rgba(225, 232, 228, 0.92);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
}

.mini-label {
  gap: 9px;
  margin-bottom: 12px;
}

.mini-label strong {
  font-size: 15px;
  line-height: 1.35;
}

.mini-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
}

.mini-symbol svg,
.document-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-symbol.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.mini-symbol.teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.mini-symbol.coral {
  background: var(--coral-soft);
  color: var(--coral);
}

.calendar-header {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.calendar-header small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.calendar-header strong {
  font-size: 17px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-grid span,
.calendar-grid b {
  min-width: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1;
}

.calendar-grid span {
  color: var(--muted);
  font-weight: 900;
}

.calendar-grid b {
  color: var(--ink);
  background: var(--grouped);
  font-weight: 800;
}

.calendar-grid b:empty {
  background: transparent;
}

.calendar-grid .has-event {
  position: relative;
  color: #fff;
}

.calendar-grid .has-event.teal {
  background: var(--teal);
}

.calendar-grid .has-event.coral {
  background: var(--coral);
}

.calendar-grid .has-event.orange {
  background: var(--orange);
}

.calendar-grid .has-event.blue {
  background: var(--blue);
}

.calendar-events {
  display: grid;
  gap: 9px;
}

.calendar-events .mini-label {
  margin-bottom: 2px;
}

.calendar-event {
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.calendar-event time {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.calendar-event div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.calendar-event b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.calendar-event small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.calendar-event.teal time {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.calendar-event.coral time {
  background: var(--coral-soft);
  color: var(--coral);
}

.calendar-event.orange time {
  background: var(--orange-soft);
  color: var(--orange);
}

.calendar-event.blue time {
  background: var(--blue-soft);
  color: var(--blue);
}

.flow-list {
  display: grid;
  gap: 8px;
}

.flow-step {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  border-radius: 8px;
  padding: 9px;
  background: rgba(244, 248, 245, 0.95);
}

.flow-step span {
  width: 24px;
  height: 24px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.flow-step b,
.recommend-row b,
.document-row b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.flow-step small,
.recommend-row small,
.document-row small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.mini-chips span,
.status-dot {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.mini-chips span {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.recommend-row {
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 10px 0 0;
}

.recommend-row + .recommend-row {
  margin-top: 10px;
}

.recommend-row div,
.document-row div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.status-dot.teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.status-dot.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.document-actions {
  gap: 8px;
}

.document-actions span {
  min-height: 42px;
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  padding: 0 8px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.document-actions span + span {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--teal-dark);
}

.filter-row {
  gap: 8px;
}

.filter-row span {
  flex: 1 1 0;
  border-radius: 8px;
  padding: 9px;
  background: var(--grouped);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.filter-row b {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 13px;
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-list .mini-label {
  margin-bottom: 2px;
}

.document-row {
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.doc-thumb {
  position: relative;
  width: 52px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
}

.doc-thumb::before,
.doc-thumb::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.62;
}

.doc-thumb::before {
  top: 20px;
}

.doc-thumb::after {
  top: 29px;
}

.doc-thumb.receipt {
  color: var(--coral);
  background: var(--coral-soft);
}

.doc-thumb.statement {
  color: var(--blue);
  background: var(--blue-soft);
}

.document-row em {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.phone-frame {
  width: min(390px, 100%);
  margin: 0 auto;
}

.product-band .phone-screen {
  min-height: 642px;
}

.product-copy p {
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.story-layout {
  display: grid;
  gap: 28px;
}

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

.story-grid article {
  min-height: 214px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(30, 54, 49, 0.05);
}

.story-grid span {
  color: var(--coral);
}

.pricing-band {
  background:
    linear-gradient(103deg, rgba(244, 119, 114, 0.16), rgba(244, 248, 245, 0.52) 48%, rgba(14, 146, 135, 0.14)),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f2 100%);
}

.pricing-layout p {
  font-size: 17px;
}

.price-card {
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(56px, 8vw, 86px);
  line-height: 1;
}

.full-width {
  width: 100%;
  margin-top: 22px;
  padding: 0 20px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding-top: 12px;
}

details a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  justify-content: space-between;
  min-height: 92px;
  gap: 16px;
}

.site-footer a {
  color: #c5f0e6;
  font-weight: 800;
}

.footer-brand {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: flex-end;
}

.legal-main {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    linear-gradient(112deg, rgba(244, 119, 114, 0.1), rgba(244, 248, 245, 0.58) 46%, rgba(14, 146, 135, 0.12)),
    var(--paper);
}

.legal-hero {
  max-width: 880px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(36px, 5.5vw, 64px);
}

.legal-hero p {
  font-size: 17px;
}

.legal-date {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-stack {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.legal-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(30, 54, 49, 0.05);
}

.legal-section h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.8;
}

.legal-section a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found-main {
  min-height: calc(100vh - 164px);
  display: grid;
  align-items: center;
}

.not-found-card {
  max-width: 760px;
}

.not-found-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 68px);
}

.not-found-card > p:not(.eyebrow) {
  max-width: 640px;
  font-size: 17px;
}

.not-found-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 28px;
}

.not-found-actions .primary-button {
  min-width: 180px;
  padding: 0 22px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 86px;
  }

  .hero-preview {
    display: none;
  }

  .split-copy,
  .pricing-layout,
  .faq-layout,
  .support-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-layout {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .product-layout > * {
    width: 100%;
    max-width: 100%;
  }

  .product-layout .phone-frame {
    max-width: 390px;
  }

  .support-detail.reverse .support-copy,
  .support-detail.reverse .app-preview-shell {
    order: initial;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .story-grid article,
  .metric-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(33, 39, 37, 0.94) 0%, rgba(33, 39, 37, 0.78) 62%, rgba(33, 39, 37, 0.46) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 66px 0 46px;
  }

  .hero-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .feature-grid,
  .story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-band,
  .metrics-band,
  .feature-band,
  .support-detail-band,
  .product-band,
  .share-band,
  .pricing-band,
  .faq-band {
    padding: 54px 0;
  }

  .phone-screen {
    min-height: 560px;
    padding: 14px;
  }

  .phone-frame {
    width: 100%;
    border-width: 8px;
    padding: 8px;
  }

  .phone-screen.compact {
    min-height: 0;
    padding: 14px;
  }

  .support-detail {
    padding: 22px;
  }

  .support-copy h2 {
    max-width: none;
  }

  .app-preview-shell {
    border-width: 8px;
    padding: 10px;
  }

  .document-shell {
    transform: none;
  }

  .calendar-shell {
    transform: none;
  }

  .app-mini-screen {
    min-height: 0;
    padding: 16px;
  }

  .document-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .app-nav strong {
    font-size: 22px;
  }

  .amount-total {
    font-size: 30px;
  }

  .metric-tile {
    min-height: 76px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
