:root {
  --ink: #171717;
  --ink-2: #22252c;
  --muted: #666d7a;
  --paper: #ffffff;
  --field: #fbf5f8;
  --field-2: #f3eef8;
  --line: #eadfe8;
  --brand-primary: #dc1e37;
  --brand-primary-hot: #f8204e;
  --brand-secondary: #2953ea;
  --brand-secondary-deep: #143ccc;
  --brand-secondary-soft: #e7edff;
  --brand-plum: #4a325a;
  --navy: #171717;
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow-soft: 0 22px 70px rgba(23, 23, 23, 0.12);
  --shadow-hard: 0 30px 90px rgba(23, 23, 23, 0.22);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

#trust,
#team,
#story,
#start { scroll-margin-top: 118px; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(220, 30, 55, 0.038) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(41, 83, 234, 0.032) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 64px 64px, 64px 64px, auto;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(220, 30, 55, 0.11), transparent 30%),
    radial-gradient(circle at 18% 24%, rgba(41, 83, 234, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76));
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 94px;
  display: grid;
  grid-template-columns: 164px 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  padding: 0 clamp(20px, 5vw, 78px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: grid;
  align-items: center;
  width: 150px;
  height: 72px;
}

.brand-link img { width: 146px; height: auto; }

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.primary-nav a,
.login-link {
  position: relative;
  color: var(--ink-2);
}

.primary-nav a::after,
.login-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.login-link:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.035em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--brand-primary);
  box-shadow: 0 16px 34px rgba(220, 30, 55, 0.24);
}
.button-primary:hover { background: var(--brand-primary-hot); box-shadow: 0 20px 44px rgba(248, 32, 78, 0.26); }

.button-secondary,
.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: rgba(23, 23, 23, 0.12);
}
.button-secondary:hover,
.button-outline:hover { border-color: rgba(220, 30, 55, 0.36); box-shadow: 0 14px 30px rgba(14, 21, 38, 0.08); }

.button-light { color: var(--ink); background: #fff; }
.button-dark-outline { color: #fff; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); }

.top-video-hero {
  padding: 24px clamp(16px, 5vw, 76px) 10px;
}

.top-video-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: transparent;
  box-shadow: none;
}

.top-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 820;
  border: 0;
  border-radius: 24px;
  background: #071022;
  object-fit: cover;
}

.top-video::-webkit-media-controls,
.top-video::-webkit-media-controls-enclosure,
.top-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-section { padding: 38px clamp(16px, 5vw, 76px) 30px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: 660px;
  padding: clamp(42px, 6vw, 80px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(50% - 18px);
  border: 1px solid rgba(220, 30, 55, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(220, 30, 55, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(41, 83, 234, 0.038) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fff7fa 0%, #f7f2ff 100%);
  background-size: 58px 58px, 58px 58px, auto;
  box-shadow: 0 26px 90px rgba(14, 21, 38, 0.08);
  pointer-events: none;
}


.hero-copy,
.hero-media,
.section-copy,
.app-shot-card,
.story-copy,
.story-note,
.final-grid { position: relative; z-index: 1; }


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

h1,
h2 {
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

h1 { letter-spacing: -0.058em; }
.section-copy h2,
.final-cta h2 { letter-spacing: -0.052em; }

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 5vw, 5.35rem);
  line-height: 0.94;
}

.hero-lede,
.section-copy > p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.hero-lede { max-width: 660px; color: #4f3f58; }
.app-context-copy [data-app-copy-title],
.app-context-copy [data-app-copy-body] {
  transition:
    opacity 320ms cubic-bezier(.22, 1, .36, 1),
    transform 320ms cubic-bezier(.22, 1, .36, 1),
    filter 320ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform, filter;
}

/* Reserve the tallest app-state headline so the CTA below does not jump as copy changes. */
.app-context-copy [data-app-copy-title] { min-height: 3.88em; }
.app-context-copy [data-app-copy-body] { min-height: 4.5em; }

.app-context-copy.is-copy-changing [data-app-copy-title],
.app-context-copy.is-copy-changing [data-app-copy-body] {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(7px);
}

.app-context-copy.is-copy-changing [data-app-copy-body] {
  transition-delay: 24ms;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-media {
  min-height: 615px;
  display: grid;
  place-items: center;
}

.faux-app-stage {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.faux-app-stage::before {
  display: none;
  content: none;
}

.faux-app-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(410px, calc(44vw + 28px));
  min-width: 356px;
  height: 680px;
  border: 1px solid rgba(20, 135, 98, 0.24);
  border-radius: 82px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(20, 135, 98, 0);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.982);
  will-change: opacity, transform, box-shadow;
}

.faux-app-stage.is-awaiting-interaction::after {
  opacity: 1;
  animation: phone-idle-halo 3.6s cubic-bezier(.45, 0, .2, 1) infinite;
}

.faux-app-stage.is-awaiting-interaction:not(.is-phone-prompted) .altored-app-phone {
  animation: phone-idle-vibration 3.2s cubic-bezier(.36, 0, .22, 1) infinite;
}

@keyframes phone-idle-halo {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.982);
    box-shadow: 0 0 0 0 rgba(20, 135, 98, 0);
  }
  18% {
    opacity: 0.78;
  }
  48% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.038);
    box-shadow: 0 0 0 16px rgba(20, 135, 98, 0.055);
  }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.052);
    box-shadow: 0 0 0 22px rgba(20, 135, 98, 0);
  }
}

@keyframes phone-idle-vibration {
  0%, 72%, 100% { transform: translateZ(0); }
  4% { transform: translate3d(-3px, 0, 0) rotate(-0.24deg); }
  8% { transform: translate3d(3px, 0, 0) rotate(0.24deg); }
  12% { transform: translate3d(-2px, 0, 0) rotate(-0.16deg); }
  16% { transform: translate3d(2px, 0, 0) rotate(0.16deg); }
  20% { transform: translateZ(0); }
}

.faux-app-stage.is-phone-prompted .altored-app-phone {
  animation: phone-attention 820ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes phone-attention {
  0%, 100% { transform: translateZ(0); }
  34% { transform: translate3d(0, -7px, 0) scale(1.012); }
  66% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .faux-app-stage.is-phone-prompted .altored-app-phone,
  .faux-app-stage.is-awaiting-interaction:not(.is-phone-prompted) .altored-app-phone,
  .faux-app-stage.is-awaiting-interaction::after {
    animation: none;
  }

  .faux-app-stage.is-awaiting-interaction::after {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
  }
}

.altored-app-phone {
  position: relative;
  z-index: 1;
  width: min(382px, 44vw);
  min-width: 330px;
  height: 650px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 12px solid #0b0d12;
  border-radius: 66px;
  background: #0b0d12;
  box-shadow: none;
  filter:
    drop-shadow(0 18px 26px rgba(11, 13, 18, 0.20))
    drop-shadow(0 42px 44px rgba(74, 50, 90, 0.10));
  transform: translateZ(0);
}

.altored-app-phone::before {
  display: none;
  content: "";
}

.app-phone-island {
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 4;
  width: 92px;
  height: 27px;
  border-radius: 999px;
  background: #08090c;
  transform: translateX(-50%);
  box-shadow: inset 10px 0 18px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.18);
}

.app-interaction-cue {
  position: absolute;
  top: 318px;
  left: calc(50% + 214px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a325a;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  line-height: 1.1;
  text-transform: uppercase;
  pointer-events: none;
}

.app-interaction-cue::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 50, 90, 0), rgba(74, 50, 90, 0.34));
}

.app-cue-track {
  position: relative;
  display: block;
  width: 7px;
  height: 82px;
  border-radius: 999px;
  background: rgba(74, 50, 90, 0.14);
  box-shadow: inset 0 0 0 1px rgba(74, 50, 90, 0.14);
}

.app-cue-track span {
  position: absolute;
  top: 8px;
  left: 50%;
  display: block;
  width: 5px;
  height: 24px;
  border-radius: inherit;
  background: linear-gradient(180deg, #25b681, #087657);
  box-shadow: 0 8px 14px rgba(8, 118, 87, 0.22);
  transform: translateX(-50%);
  animation: cue-scroll-thumb 2.6s cubic-bezier(.45, 0, .2, 1) infinite;
}

@keyframes cue-scroll-thumb {
  0%, 100% { top: 8px; opacity: 0.62; }
  42% { top: 50px; opacity: 1; }
  70% { top: 50px; opacity: 0.82; }
}


.mockapp4-phone-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
  border-radius: 54px;
  clip-path: inset(0 round 54px);
  background: #f3f4f7;
}

.mockapp4-phone-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: #f3f4f7;
}

.app-phone-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.app-scroll-shell {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.18);
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  padding-bottom: 22px;
  border-radius: 0 0 42px 42px;
}

.app-scroll-shell.is-dragging,
.app-scroll-shell.is-dragging * {
  cursor: grabbing;
}

.app-results-scroll {
  background: linear-gradient(180deg, rgba(247,242,246,0.44), rgba(247,242,246,0.92) 24%);
}

.app-results-scroll::before {
  content: "";
  position: sticky;
  z-index: 4;
  top: 0;
  display: block;
  height: 1px;
  margin-bottom: -1px;
  background: linear-gradient(90deg, transparent, rgba(14,21,38,0.10), transparent);
}

.app-scroll-shell:focus-visible {
  outline: 3px solid rgba(41, 83, 234, 0.68);
  outline-offset: -7px;
}

.app-scroll-shell::-webkit-scrollbar { width: 7px; }
.app-scroll-shell::-webkit-scrollbar-track { background: rgba(255,255,255,0.18); border-radius: 999px; }
.app-scroll-shell::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.72); border-radius: 999px; }

.app-topbar,
.app-brand-bar,
.app-screen-header,
.app-dashboard-card,
.app-provider-stack {
  position: relative;
  z-index: 2;
}

.app-topbar {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 18px 30px 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 900;
}

.app-signal {
  letter-spacing: 0.14em;
}

.app-brand-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.app-brand-logo {
  width: 104px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(57, 7, 31, 0.22));
}

.app-screen-header {
  flex: 0 0 auto;
  padding: 16px 24px 10px;
  color: #fff;
}

.app-screen-header p {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-screen-header h2 {
  margin: 0 0 12px;
  max-width: 280px;
  color: #fff;
  font-size: 1.42rem;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.app-search-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 13px;
  border-radius: 999px;
  color: #3b263f;
  background: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 26px rgba(69, 16, 39, 0.16);
}

.app-dashboard-card {
  margin: 8px 18px 0;
  padding: 14px;
  border: 1px solid rgba(14, 21, 38, 0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 32px rgba(14, 21, 38, 0.10);
}

.app-reviewed-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-dashboard-card span {
  display: block;
  color: #76808e;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.app-provider-row span {
  display: block;
  margin-top: 4px;
  color: #687282;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.app-dashboard-card strong,
.app-provider-row strong {
  display: block;
  margin-top: 5px;
  color: #201b26;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.app-reviewed-card .app-verified-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: #12866b;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
  box-shadow: 0 8px 16px rgba(18, 134, 107, 0.18);
}

.app-price-count-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 10px;
  align-items: end;
}

.app-estimate-card strong {
  margin-top: 3px;
  color: var(--brand-primary);
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.76rem;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.app-estimate-card em {
  display: block;
  margin-top: 6px;
  color: #5d6572;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.app-mini-chart-wrap {
  display: grid;
  gap: 6px;
  align-self: stretch;
}

.app-mini-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 48px;
  margin-top: 1px;
  padding: 0 3px;
  border-bottom: 1px dashed rgba(14, 21, 38, 0.16);
}

.app-mini-chart i {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #d94767, var(--brand-primary));
  box-shadow: 0 8px 16px rgba(220, 30, 55, 0.14);
}

.app-mini-chart .app-chart-low {
  background: linear-gradient(180deg, #22b08f, #12866b);
  box-shadow: 0 8px 16px rgba(18, 134, 107, 0.14);
}

.app-chart-range {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #697484;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.app-provider-stack {
  display: grid;
  gap: 8px;
  margin: 10px 18px 0;
}

.app-provider-stack-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px 2px;
}

.app-provider-stack-heading span {
  color: #3b4250;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: none;
}

.app-provider-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid rgba(14, 21, 38, 0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
}

.app-provider-best {
  border-color: rgba(18, 134, 107, 0.25);
  background: #f2fbf8;
}

.app-provider-details { min-width: 0; }

.app-provider-details i {
  display: block;
  width: min(var(--price-width), 100%);
  height: 4px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18,134,107,0.8), rgba(220,30,55,0.72));
  opacity: 0.58;
}

.app-provider-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 58px;
}

.app-provider-price small {
  color: #12866b;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.app-provider-price b {
  color: #12866b;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}


.app-results-view {
  display: grid;
  gap: 0;
}

.app-results-view[hidden] { display: none; }

.app-detail-view {
  display: grid;
  gap: 9px;
  padding: 9px 18px 24px;
}

.app-detail-view[hidden] { display: none; }

.app-provider-detail-button {
  appearance: none;
  width: max-content;
  justify-self: end;
  margin-top: 4px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-primary);
  font: inherit;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 14px rgba(220, 30, 55, 0.18);
}

.app-provider-detail-button:hover,
.app-provider-detail-button:focus-visible {
  background: #bd173f;
}

.app-detail-back {
  appearance: none;
  justify-self: start;
  margin: 0 0 1px;
  padding: 0;
  border: 0;
  color: #5f2a44;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.app-detail-card {
  border: 1px solid rgba(14, 21, 38, 0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 30px rgba(14,21,38,0.09);
}

.app-detail-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 13px;
}

.app-detail-overline {
  margin: 0 0 5px;
  color: #7a6274;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-detail-hero-card h3 {
  margin: 0;
  color: #201b26;
  font-size: 0.96rem;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.app-detail-hero-card p:not(.app-detail-overline) {
  margin: 6px 0 0;
  color: #687282;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.22;
}

.app-detail-distance {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 999px;
  color: #12866b;
  background: rgba(18,134,107,0.1);
  font-size: 0.58rem;
  font-weight: 900;
  white-space: nowrap;
}

.app-detail-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.app-detail-tab {
  appearance: none;
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid rgba(14,21,38,0.08);
  border-radius: 12px;
  color: #5d6572;
  background: rgba(255,255,255,0.82);
  font: inherit;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.app-detail-tab[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(220,30,55,0.28);
  background: var(--brand-primary);
  box-shadow: 0 10px 20px rgba(220,30,55,0.16);
}

.app-pricing-summary-card {
  padding: 14px;
}

.app-pricing-summary-card > strong {
  display: block;
  color: var(--brand-primary);
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.app-pricing-summary-card > span {
  display: block;
  margin-top: 5px;
  color: #687282;
  font-size: 0.68rem;
  font-weight: 850;
}

.app-detail-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.app-detail-price-grid div {
  min-width: 0;
  padding: 8px 7px;
  border-radius: 13px;
  background: #f7f2f6;
}

.app-detail-price-grid span {
  display: block;
  color: #76808e;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-detail-price-grid b {
  display: block;
  margin-top: 4px;
  color: #201b26;
  font-size: 0.67rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.app-detail-lines-card {
  padding: 13px;
}

.app-detail-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 8px 0;
  border-top: 1px solid rgba(14,21,38,0.07);
  color: #201b26;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
}

.app-detail-line b {
  color: #687282;
  font-size: 0.62rem;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.app-detail-note {
  margin: 8px 0 0;
  color: #6e7684;
  font-size: 0.58rem;
  font-weight: 750;
  line-height: 1.25;
}

.app-detail-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.app-detail-actions a,
.app-detail-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  text-decoration: none;
}

.app-detail-actions a {
  color: #3b263f;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(14,21,38,0.08);
}

.app-detail-schedule {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hot));
  box-shadow: 0 14px 26px rgba(220,30,55,0.20);
}


/* Mockapp4 compact clinic deck inside the landing-page phone */
.app-clinic-deck-view {
  display: grid;
  gap: 10px;
  padding: 8px 15px 24px;
}

.app-clinic-answer-card,
.app-clinic-comparison,
.app-provider-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(14, 21, 38, 0.08);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 30px rgba(14, 21, 38, 0.09);
}

.app-clinic-answer-card {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 22px;
}

.app-answer-topline,
.app-result-title,
.app-result-subtitle,
.app-answer-price-block,
.app-provider-copy {
  min-width: 0;
}

.app-result-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #201b26;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.app-result-title .app-verified-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: #148762;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(20, 135, 98, 0.18);
}

.app-result-subtitle {
  margin: -2px 0 0;
  color: #687282;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.25;
}

.app-answer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f7f2f6 100%);
  box-shadow: inset 0 0 0 1px rgba(14,21,38,0.06);
}

.app-answer-price-block > span {
  display: block;
  color: #7a6274;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-answer-price-block strong {
  display: block;
  margin-top: 3px;
  color: #148762;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.86rem;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.app-answer-price-block p {
  display: block;
  margin: 6px 0 0;
  color: #557168;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.18;
}

.app-answer-price-block b,
.app-answer-price-block small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-answer-price-block b { color: #201b26; }
.app-answer-price-block small { margin-top: 2px; color: #557168; }

.app-primary-detail-action {
  appearance: none;
  align-self: end;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #171717;
  font: inherit;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.app-primary-detail-action:hover,
.app-primary-detail-action:focus-visible {
  background: #dc1e37;
  outline: 0;
}

.app-decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.app-decision-strip div {
  min-width: 0;
  padding: 8px 7px;
  border-radius: 15px;
  background: #f7f2f6;
}

.app-decision-strip span {
  display: block;
  color: #817283;
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-decision-strip b {
  display: block;
  margin-top: 3px;
  color: #201b26;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.app-clinic-comparison {
  display: grid;
  gap: 8px;
  padding: 11px;
  border-radius: 22px;
}

.app-clinic-comparison .app-provider-stack-heading {
  padding: 0 3px;
}

.app-clinic-comparison .app-provider-stack-heading span {
  color: #3b4250;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-transform: none;
}

.app-provider-list {
  display: grid;
  gap: 7px;
}

.app-provider-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 11px;
  border-radius: 17px;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.app-provider-card:hover,
.app-provider-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(220, 30, 55, 0.22);
  box-shadow: 0 16px 34px rgba(14, 21, 38, 0.12);
  outline: 0;
}

.app-provider-card:focus-visible {
  outline: 3px solid rgba(20,135,98,0.20);
  outline-offset: 2px;
}

.app-provider-best {
  border-color: rgba(20,135,98,0.28);
  background: #f2fbf8;
}

.app-provider-copy strong {
  display: block;
  color: #201b26;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.app-provider-copy span {
  display: block;
  margin-top: 3px;
  color: #687282;
  font-size: 0.62rem;
  font-weight: 850;
}

.app-provider-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-provider-price {
  min-width: 58px;
  text-align: right;
}

.app-provider-price b {
  display: block;
  color: #201b26;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: -0.052em;
}

.app-provider-delta {
  display: block;
  margin-top: 3px;
  color: #148762;
  font-size: 0.55rem;
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
}

.app-provider-delta.is-above { color: #dc1e37; }

.app-provider-chevron {
  color: #8a7888;
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1;
}


.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto;
  border-radius: var(--radius-xl);
}

.section-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.section-copy > p { max-width: 560px; }

.section-copy .button { margin-top: 22px; }



.trust-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(220, 30, 55, 0.11);
  background:
    radial-gradient(circle at 8% 10%, rgba(220, 30, 55, 0.09), transparent 29%),
    radial-gradient(circle at 90% 12%, rgba(74, 50, 90, 0.08), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 252, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.trust-copy h2 {
  max-width: 610px;
  margin-bottom: 16px;
  font-size: clamp(2.28rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.trust-copy > p {
  max-width: 520px;
  margin-bottom: clamp(20px, 2.8vw, 30px);
  color: #5e5266;
  font-size: clamp(1.03rem, 1.45vw, 1.18rem);
  font-weight: 650;
  line-height: 1.54;
  letter-spacing: -0.03em;
}

.trust-points {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.trust-point {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(74, 50, 90, 0.12);
}

.trust-point:first-child { border-top: 0; padding-top: 0; }

.trust-point span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  background: #148762;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(20, 135, 98, 0.20);
}

.trust-point strong {
  display: block;
  margin-bottom: 3px;
  color: #2b2033;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.trust-point p {
  margin: 0;
  color: #776b7f;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.trust-visual-card {
  position: relative;
  margin: 0;
  padding: clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(220, 30, 55, 0.10);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(74, 50, 90, 0.12);
}

.trust-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -18px 12%;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 50, 90, 0.14);
  filter: blur(18px);
  z-index: -1;
}

.trust-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(30px, 4.6vw, 58px);
  border: 1px solid rgba(74, 50, 90, 0.12);
  background:
    linear-gradient(90deg, rgba(220, 30, 55, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(74, 50, 90, 0.032) 0 1px, transparent 1px 100%),
    rgba(255, 255, 255, 0.92);
  background-size: 52px 52px, 52px 52px, auto;
  box-shadow: 0 18px 62px rgba(14, 21, 38, 0.08);
}

.team-intro {
  position: sticky;
  top: 128px;
}

.team-intro h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.1vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.team-intro p {
  max-width: 440px;
  margin: 0;
  color: #625468;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(74, 50, 90, 0.11);
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(14, 21, 38, 0.07);
}

.team-card img {
  width: 104px;
  height: 104px;
  min-height: 0;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(14, 21, 38, 0.10);
}

.team-card > div {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.team-card h3 {
  margin: 0 0 5px;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.45vw, 1.34rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.team-role {
  margin: 0 0 9px;
  color: var(--brand-primary);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.team-bio {
  max-width: 310px;
  margin: 0;
  color: #6d6174;
  font-size: 0.80rem;
  font-weight: 650;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.team-card-featured { min-height: 178px; }
.team-card-featured img { min-height: 0; }

.team-card-placeholder {
  background:
    radial-gradient(circle at 88% 12%, rgba(220, 30, 55, 0.10), transparent 34%),
    rgba(255,255,255,0.94);
}

.team-card-placeholder img {
  background: #4a325a;
  object-fit: cover;
}

.story-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(220, 30, 55, 0.10);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(14, 21, 38, 0.08);
}

.story-copy h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.story-copy p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.story-note {
  padding: 26px;
  border: 1px solid rgba(220, 30, 55, 0.18);
  border-left: 6px solid var(--brand-primary);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(14, 21, 38, 0.08);
}

.story-note p {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Archivo", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.story-note a {
  color: var(--brand-secondary-deep);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: underline;
  text-decoration-color: rgba(220, 30, 55, 0.35);
  text-underline-offset: 5px;
}

.story-note a:hover { color: var(--brand-primary); }

.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 52px auto 90px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 8%, rgba(220, 30, 55, 0.28), transparent 26%),
    radial-gradient(circle at 8% 18%, rgba(41, 83, 234, 0.20), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #171717 0%, #2b2033 58%, var(--brand-plum) 100%);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
  box-shadow: var(--shadow-hard);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.94;
}
.final-cta p { max-width: 610px; margin-bottom: 0; color: rgba(255,255,255,0.72); }
.final-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1fr;
  gap: 42px;
  padding: 60px clamp(22px, 6vw, 90px) 42px;
  color: #fff;
  background: #101216;
}
.footer-brand img { width: 176px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,0.66); line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px 30px; font-weight: 850; }
.footer-links a { color: rgba(255,255,255,0.72); }
.legal { grid-column: 1 / -1; max-width: 880px; margin: 12px 0 0; color: rgba(255,255,255,0.45); font-size: 0.78rem; line-height: 1.55; }

.reveal { opacity: 1; transform: translateY(0); }
.top-video-hero.reveal,
.hero-section.reveal { animation: hero-rise 680ms cubic-bezier(.2,.9,.2,1) both; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-media { min-height: 640px; }
  .faux-app-stage { max-width: 620px; }
  .trust-section,
  .team-section,
  .story-strip { grid-template-columns: 1fr; }
  .team-intro { position: static; }
  .story-note { justify-self: stretch; width: 100%; }
}

@media (max-width: 960px) {
  .trust-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 92px; }
  #app-demo,
  #trust,
  #team,
  #story,
  #start { scroll-margin-top: 92px; }

  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 9px 14px;
  }
  .brand-link { width: 108px; height: 44px; }
  .brand-link img { width: 108px; }
  .primary-nav { display: none; }
  .header-actions { gap: 10px; font-size: 0.84rem; }
  .header-actions .button { min-height: 38px; padding: 0 14px; }

  .top-video-hero { padding: 14px 12px 8px; }
  .top-video-card { border-radius: 30px; }
  .top-video { border-radius: 30px; }
  .hero-section { padding: 18px 12px 22px; }
  .hero-grid { min-height: 0; padding: 34px 18px 0; border-radius: 0; }
  .hero-grid::before {
    inset: 0 0 auto 0;
    height: min(398px, 42%);
    border-radius: 30px;
  }
  h1 { font-size: clamp(2.42rem, 10.7vw, 3.45rem); line-height: 0.96; letter-spacing: -0.048em; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { margin-top: 24px; }
  .button { min-height: 44px; padding: 0 18px; }
  .hero-media { min-height: 548px; overflow: visible; }
  .faux-app-stage { min-height: 548px; transform: translateY(2px); }
  .faux-app-stage::before { top: -5px; bottom: -6px; width: min(336px, calc(100% + 8px)); border-radius: 62px; }
  .faux-app-stage::after {
    width: 340px;
    min-width: 0;
    height: 558px;
    border-radius: 66px;
  }
  .altored-app-phone {
    width: 316px;
    min-width: 316px;
    height: 538px;
    border-radius: 54px;
    border-width: 10px;
    filter:
      drop-shadow(0 12px 18px rgba(11, 13, 18, 0.16))
      drop-shadow(0 28px 26px rgba(74, 50, 90, 0.08));
  }
  .altored-app-phone::before { display: none; }
  .mockapp4-phone-shell { border-radius: 44px; clip-path: inset(0 round 44px); }
  .app-phone-island { top: 14px; width: 76px; height: 23px; }
  .app-interaction-cue { display: none; }
  .app-topbar { padding: 16px 26px 0; }
  .app-brand-bar { margin-top: 18px; }
  .app-brand-logo { width: 92px; height: auto; }
  .app-screen-header { padding: 16px 20px 10px; }
  .app-screen-header h2 { font-size: 1.32rem; }
  .app-search-pill { padding: 8px 12px; font-size: 0.76rem; }
  .app-dashboard-card { margin: 8px 14px 0; padding: 13px; border-radius: 18px; }
  .app-dashboard-card strong, .app-provider-row strong { font-size: 0.8rem; }
  .app-price-count-card { grid-template-columns: minmax(0, 1fr) 82px; gap: 8px; }
  .app-estimate-card strong { font-size: 1.46rem; }
  .app-estimate-card em { font-size: 0.68rem; }
  .app-mini-chart { height: 42px; margin-top: 0; gap: 5px; }
  .app-chart-range { font-size: 0.48rem; }
  .app-provider-stack { gap: 8px; margin: 9px 14px 0; }
  .app-provider-row { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 9px; }
  .app-provider-stack-heading span { font-size: 0.68rem; }
  .app-provider-price b { font-size: 0.88rem; }
  .app-provider-price small { font-size: 0.52rem; }
  .app-clinic-deck-view { gap: 8px; padding: 8px 13px 22px; }
  .app-clinic-answer-card { gap: 8px; padding: 13px; border-radius: 20px; }
  .app-result-title { font-size: 1.12rem; }
  .app-result-title .app-verified-check { width: 20px; height: 20px; font-size: 0.66rem; }
  .app-result-subtitle { font-size: 0.64rem; }
  .app-answer-main { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 9px; }
  .app-answer-price-block strong { font-size: 1.58rem; }
  .app-answer-price-block p { font-size: 0.62rem; }
  .app-primary-detail-action { min-height: 31px; padding: 0 9px; font-size: 0.54rem; }
  .app-decision-strip { gap: 6px; }
  .app-decision-strip div { padding: 7px 6px; border-radius: 13px; }
  .app-decision-strip span { font-size: 0.48rem; }
  .app-decision-strip b { font-size: 0.74rem; }
  .app-clinic-comparison { gap: 7px; padding: 10px; border-radius: 20px; }
  .app-provider-list { gap: 6px; }
  .app-provider-card { gap: 8px; padding: 9px; border-radius: 15px; }
  .app-provider-copy strong { font-size: 0.72rem; }
  .app-provider-copy span { font-size: 0.58rem; }
  .app-provider-delta { color: #148762; font-size: 0.50rem; }
  .app-provider-delta.is-above { color: #dc1e37; }
  .app-provider-chevron { font-size: 1.12rem; }
  .section-shell,
  .final-cta { width: calc(100% - 24px); margin-top: 24px; margin-bottom: 24px; border-radius: 30px; }
  .trust-section { padding: 30px 18px 24px; }
  .trust-copy > p { margin-bottom: 20px; }
  .trust-points { gap: 2px; }
  .trust-point { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 12px 0; }
  .trust-point span { width: 25px; height: 25px; font-size: 0.76rem; }
  .trust-visual-card { border-radius: 28px; padding: 8px; }
  .trust-visual-card img { border-radius: 22px; }
  .team-section { gap: 22px; padding: 30px 18px; }
  .team-intro h2 { font-size: clamp(2.05rem, 8.7vw, 2.85rem); line-height: 1.04; letter-spacing: -0.038em; }
  .team-intro p { font-size: 1rem; }
  .team-roster { grid-template-columns: 1fr; gap: 10px; }
  .team-card,
  .team-card-featured {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }
  .team-card img,
  .team-card-featured img {
    width: 86px;
    height: 86px;
    min-height: 0;
    border-radius: 22px;
  }
  .team-card h3 { font-size: 1.16rem; }
  .team-role { font-size: 0.62rem; margin-bottom: 6px; }
  .team-bio { font-size: 0.74rem; line-height: 1.34; }

  .section-copy h2,
  .trust-copy h2 { font-size: clamp(2.05rem, 8.7vw, 2.85rem); line-height: 1.04; letter-spacing: -0.038em; }
  .section-copy > p, .trust-copy > p, .final-cta p { font-size: 1rem; }

  .story-strip { gap: 24px; padding: 30px 18px; }
  .story-copy h2 { font-size: clamp(2.05rem, 8.7vw, 2.85rem); line-height: 1.04; letter-spacing: -0.038em; }
  .story-copy p { font-size: 1rem; }
  .story-note { padding: 22px; border-radius: 24px; }
  .story-note p { font-size: 1.45rem; }

  .final-cta { padding: 34px 20px; }
  .final-grid { grid-template-columns: 1fr; align-items: start; }
  .final-actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 46px 22px 34px; }
  .footer-links { justify-content: flex-start; }
}


@media (max-width: 420px) {
}

@media (max-width: 420px) {
  .login-link { display: none; }
  .hero-actions .button { width: 100%; }
  .final-actions .button { width: 100%; }
}

