/* ============================================================
   ENQAZ Landing Page — Figma rebuild (2026-06)
   Source: figma.com/design/VkwuoqE21ZOXpnibGfih7o (page node 43:521, components node 43:1583)
   ============================================================ */

/* -------- Local Web Fonts -------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/Inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/Inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/Inter-800.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/PlayfairDisplay-400.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/PlayfairDisplay-500.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/PlayfairDisplay-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/PlayfairDisplay-700.ttf") format("truetype");
}

/* -------- Design Tokens (from Figma variables) -------- */
:root {
  /* Primary blues */
  --primary-blue-100: #ede7fe;
  --primary-blue-500: #470ff4;          /* purple/violet accent — buttons, links */

  /* Light Blues — the dominant color family */
  --lb-100: #eff5fe;
  --lb-150: #deeafc;
  --lb-200: #bdd4f9;
  --lb-500: #5994f0;                    /* primary brand blue */
  --lb-600: #4776c0;
  --lb-700: #355990;
  --lb-800: #243b60;
  --lb-900: #121e30;                    /* dark navy — body text */
  --lb-950: #090f18;

  /* Grays */
  --gray-50: #f8f8f8;
  --gray-100: #f1f1f1;
  --gray-150: #e8e9eb;
  --gray-200: #d1d3d8;
  --gray-400: #a3a7b1;
  --gray-500: #8c919d;
  --gray-600: #54575e;
  --gray-700: #6e6e6e;
  --gray-800: #4a4a4a;
  --gray-900: #1c1d1f;
  --gray-950: #0e0e10;

  /* Neutrals */
  --neutral-100: #fefeff;
  --neutral-300: #f8f8fa;
  --neutral-400: #f5f6f8;
  --neutral-500: #f3f4f6;
  --secondary-neutral-300: #f5f6f8;

  /* Surfaces */
  --bg: var(--secondary-neutral-300);
  --page-screen-bg:
    radial-gradient(120% 70% at 50% -18%, rgba(222, 234, 252, 0.86) 0%, rgba(239, 245, 254, 0.48) 42%, rgba(245, 246, 248, 0) 72%),
    linear-gradient(180deg, rgba(245, 246, 248, 0) 0%, rgba(239, 245, 254, 0.42) 48%, rgba(245, 246, 248, 0) 100%),
    var(--secondary-neutral-300);
  --bg-soft: var(--lb-100);
  --bg-section: var(--neutral-400);

  --text: var(--lb-900);
  --text-soft: var(--gray-600);
  --text-muted: var(--gray-500);
  --border: rgba(18, 30, 48, 0.08);

  /* Coral / pink for the problem section */
  --coral-50: #fff1ef;
  --coral-100: #ffd9d2;
  --coral-300: #ff9a85;
  --coral-500: #ff6b58;

  /* Fonts */
  --font-serif: "Flecha Test S", "Playfair Display", Georgia, serif;
  --font-sans: "Lay Grotesk - Trial", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(18, 30, 48, 0.04);
  --shadow-md: 0 14px 32px rgba(18, 30, 48, 0.08);
  --shadow-lg: 0 30px 60px rgba(18, 30, 48, 0.12);
  --shadow-blue: 0 24px 50px rgba(71, 118, 192, 0.22);
  --shadow-violet: 0 18px 40px rgba(71, 15, 244, 0.28);

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  background: var(--secondary-neutral-300);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--secondary-neutral-300);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  background: var(--page-screen-bg);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

.serif-accent {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 var(--gutter);
  transition: top 0.3s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(18, 30, 48, 0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(18, 30, 48, 0.08);
}
.nav-logo { display: flex; align-items: flex-end; gap: 6px; }
.logo-img { height: 28px; pointer-events: none; }
.nav-beta { font-size: 11px; font-weight: 500; color: var(--gray-500); padding-bottom: 4px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--gray-900);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--primary-blue-500); }
.nav-actions { margin-left: auto; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--lb-900); border-radius: 2px; }

/* ============================================================
   BUTTONS
   Canonical button styles live in the "BUTTONS (Figma)" block
   further down (geometry, hover-layer slide-in, color variants).
   The legacy block that used to live here (pill radius, hover
   translateY lift, box-shadow) was removed: Figma's CTA spec
   forbids lifting/translating/scaling the outer button.
   ============================================================ */

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section {
  padding: clamp(64px, 9vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--lb-900);
  margin: 0 0 16px;
}
.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 9vw, 130px) var(--gutter) clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero-glow-one {
  width: 540px; height: 540px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, var(--lb-150) 0%, transparent 70%);
}
.hero-glow-two {
  width: 520px; height: 520px;
  bottom: -100px; right: -120px;
  background: radial-gradient(circle, var(--primary-blue-100) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--lb-100);
  color: var(--lb-700);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lb-500);
  box-shadow: 0 0 0 4px rgba(89, 148, 240, 0.22);
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--lb-900);
  margin: 0 0 26px;
  position: relative;
  text-align: center;
}
.hero-sub {
  font-size: clamp(15px, 1.35vw, 18px);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: #fff;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.trust-stat { display: flex; align-items: center; gap: 12px; }
.trust-meta { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.trust-meta strong { font-size: 18px; color: var(--lb-900); font-weight: 700; }
.trust-meta span { font-size: 13px; color: var(--text-soft); }
.trust-divider { width: 1px; height: 28px; background: var(--gray-200); }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lb-500), var(--primary-blue-500));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid #fff;
}
.trust-avatars span + span { margin-left: -8px; }

.hero-visual {
  position: relative;
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 560px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
}
.hero-shape-left {
  width: 280px; height: 280px;
  background: var(--lb-150);
  top: 20px; left: -60px;
}
.hero-shape-right {
  width: 260px; height: 260px;
  background: var(--primary-blue-100);
  bottom: 20px; right: -50px;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(18, 30, 48, 0.18));
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.floating-card small { display: block; font-size: 11px; color: var(--text-soft); }
.floating-card strong { display: block; font-size: 13px; color: var(--lb-900); font-weight: 600; }
.floating-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  color: #fff;
}
.floating-icon.nfc { background: var(--lb-500); }
.floating-card-nfc { bottom: 30%; right: -20px; max-width: 220px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem .section-title .serif-accent { color: var(--lb-500); font-weight: 700; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--coral-50);
  border: 1px dashed var(--coral-300);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(255, 107, 88, 0.15);
}
.problem-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 18px;
  color: var(--coral-500);
}
.problem-icon svg { width: 32px; height: 32px; }
.problem-card p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps { padding-top: 0; }
.steps-card {
  background: linear-gradient(135deg, var(--lb-100) 0%, var(--lb-150) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.steps-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(60px);
}
.steps-copy { position: relative; z-index: 1; }
.steps-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--lb-900);
  margin: 0 0 4px;
  font-weight: 400;
}
.steps-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  margin: 0 0 32px;
  color: var(--primary-blue-500);
  font-weight: 600;
}
.steps-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  align-items: start;
  transition: all 0.3s ease;
}
.step.active {
  background: #fff;
  border-color: var(--primary-blue-500);
  box-shadow: 0 8px 24px rgba(71, 15, 244, 0.1);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-blue-500);
  line-height: 1;
}
.step:not(.active) .step-num { color: var(--lb-600); opacity: 0.5; }
.step p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--gray-700); }
.step p strong { color: var(--lb-900); font-weight: 600; }
.step:not(.active) p { color: var(--gray-500); }

/* ============================================================
   FIRST APP
   ============================================================ */
.firstapp.section {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1728px;
  padding: 82px 58px;
  --firstapp-title-size: clamp(80px, calc((100vw - 252px) / 5.755), 256.348px);
  --firstapp-sub-size: clamp(32px, 3.241vw, 56px);
}

.firstapp-shell {
  align-items: center;
  background: var(--neutral-400);
  border: 0;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  outline: 1px solid var(--primary-light-blue-500);
  outline-offset: -1px;
  padding: 24px;
  width: min(1612px, 100%);
}

.firstapp-hero-panel {
  align-items: stretch;
  background: #5994f0 url("../assets/firstapp-hero-panel-bg-figma.svg") center / 100% 100% no-repeat;
  border-radius: 53px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.firstapp-demo-panel::before {
  content: "";
  pointer-events: none;
  position: absolute;
}

.firstapp-title {
  color: var(--secondary-neutral-100);
  font-family: var(--font-serif);
  font-size: var(--firstapp-title-size);
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: calc(100% - 90px);
  z-index: 1;
}

.firstapp-hero-visual {
  aspect-ratio: 657 / 457;
  bottom: 0;
  height: auto;
  left: 44px;
  overflow: hidden;
  position: absolute;
  width: min(657px, calc((100% - 88px) * 0.44512));
  z-index: 1;
}

.firstapp-hero-visual::after {
  background: linear-gradient(180deg, rgba(89, 148, 240, 0) 26.143%, var(--primary-light-blue-500) 124.16%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.firstapp-hero-visual img,
.firstapp-demo-visual img,
.firstapp-fires-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.firstapp-hero-visual img {
  bottom: auto;
  height: 100%;
  inset: 0;
  left: 0;
  min-height: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.firstapp-hero-copy {
  align-items: flex-start;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 44px 0 auto;
  max-width: 750px;
  min-width: 0;
  padding: 0 0 30px;
  position: relative;
  width: calc((100% - 88px) * 0.50813);
  z-index: 3;
}

.firstapp-hero-copy-top {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: visible;
  position: relative;
  z-index: 3;
}

.firstapp-sub-wrap {
  display: block;
  line-height: 1.3;
  max-width: 100%;
  position: relative;
  width: min(750px, 100%);
}

.firstapp-sub {
  color: var(--secondary-neutral-100);
  font-family: var(--font-serif);
  font-size: var(--firstapp-sub-size);
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0 8px;
  max-width: calc(100% - 8px);
  position: relative;
  width: calc(100% - 8px);
  z-index: 1;
}

.firstapp-sub-highlight {
  -webkit-box-decoration-break: clone;
  background: var(--primary-light-blue-600);
  box-decoration-break: clone;
  display: inline-block;
  line-height: 1;
  padding: 0 4px 2px;
}

.firstapp .firstapp-download {
  width: 310px;
}

.firstapp-download-actions {
  overflow: visible;
  position: relative;
  width: auto;
  z-index: 5;
}

.firstapp-download-actions-primary {
  width: auto;
}

.firstapp-download-actions .store-badge,
.firstapp-download-actions .store-badge-kicker,
.firstapp-download-actions .store-badge-name {
  font-family: var(--ds-font-body, "Figtree", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  letter-spacing: var(--ds-letter-spacing, 0);
}

.firstapp-download-actions .store-badge-kicker {
  font-weight: var(--ds-font-medium, 500);
}

.firstapp-download-actions .store-badge-name {
  font-weight: var(--ds-font-semi-bold, 600);
}

.firstapp .firstapp-download-light {
  --btn-hover-fill: var(--primary-blue-500);
  --btn-hover-text: var(--primary-blue-100);
  background: var(--secondary-neutral-100);
  color: var(--primary-blue-500);
  width: 267px;
}

.firstapp .firstapp-download-light:hover,
.firstapp .firstapp-download-light:focus-visible,
.firstapp .firstapp-download-light:active {
  background: var(--secondary-neutral-100);
  color: var(--primary-blue-500);
}

.firstapp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.firstapp-list li {
  align-items: center;
  color: var(--secondary-neutral-100);
  display: flex;
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: 18px;
  font-weight: 500;
  gap: 8px;
  line-height: 1.3;
  white-space: nowrap;
}

.firstapp-list li::before {
  color: var(--secondary-neutral-100);
  content: "✓";
  flex: 0 0 16px;
  font-size: 14px;
  line-height: 1;
  width: 16px;
}

.firstapp-demo-panel {
  background: linear-gradient(17.96deg, #eff5fe 2.813%, #5994f0 151.92%);
  border-radius: 42px;
  display: grid;
  gap: 18px;
  grid-template-columns: 588px minmax(0, 1fr);
  height: 548px;
  overflow: hidden;
  padding: 23px 31px 23px 32px;
  position: relative;
  width: 100%;
}

.firstapp-demo-panel::before {
  background: url("../assets/firstapp-demo-bg-figma.svg") center / contain no-repeat;
  height: 1820px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1820px;
}

.firstapp-demo-card {
  background: #fff;
  border-radius: 48px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.firstapp-demo-visual {
  background: linear-gradient(36.13deg, #fff 33.995%, #5994f0 229.21%);
  border-radius: 28px;
  height: 317px;
  overflow: hidden;
  width: 100%;
}

.firstapp-demo-copy {
  padding: 16px 16px 30px;
}

.firstapp-demo-copy h3 {
  color: var(--lb-800);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 8px;
}

.firstapp-demo-copy p {
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  width: 100%;
}

.firstapp-fires-card {
  align-items: center;
  background: #fff;
  border-radius: 48px;
  display: flex;
  gap: clamp(24px, 2.951vw, 51px);
  min-height: 475px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}

.firstapp-fires-visual {
  aspect-ratio: 925 / 435;
  background: linear-gradient(36.13deg, #fff 33.995%, #5994f0 229.21%);
  border-radius: 28px;
  flex: 1 1 auto;
  height: auto;
  max-width: 925px;
  min-width: 0;
  overflow: hidden;
  width: min(925px, 100%);
}

.firstapp-fires-copy {
  align-items: flex-start;
  display: flex;
  flex: 0 1 522px;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  overflow: visible;
  position: relative;
  width: min(522px, 100%);
  z-index: 3;
}

.firstapp-fires-copy h3 {
  color: var(--lb-800);
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.704vw, 64px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  overflow-wrap: anywhere;
}

.firstapp-fires-copy p {
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  width: 100%;
}

.firstapp-fires-copy .firstapp-download {
  max-width: 100%;
}

.firstapp-fires-stats {
  align-items: center;
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  width: min(453px, 100%);
}

.firstapp-stat {
  align-items: flex-start;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  min-width: 0;
}

.firstapp-stat-waitlist {
  width: auto;
}

.firstapp-stat-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 88px;
}

.firstapp-stat-avatar {
  border-radius: 50%;
  height: 27px;
  width: 27px;
}

.firstapp-stat strong {
  color: var(--gray-950);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.firstapp-stat span {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

/* ============================================================
   DATABASE LOCALIZED
   ============================================================ */
.db.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1728px;
  overflow: hidden;
  padding: 82px 0;
  width: 100%;
}

.db-title {
  color: var(--primary-light-blue-900, var(--lb-900));
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: 1347px;
  text-align: center;
  width: min(1347px, calc(100% - 32px));
}

.db-pills {
  --db-scale: clamp(0.5, calc(100vw / 1728px), 1);
  --db-gap: calc(10px * var(--db-scale));
  --db-sequence-width: calc(2212px * var(--db-scale));
  --db-marquee-start: calc(-276px * var(--db-scale));
  display: block;
  height: calc(63px * var(--db-scale));
  overflow: hidden;
  position: relative;
  scrollbar-width: none;
  width: 100%;
}

.db-pills::-webkit-scrollbar {
  display: none;
}

.db-pills-track {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--db-gap);
  height: calc(63px * var(--db-scale));
  justify-content: flex-start;
  position: relative;
  width: max-content;
  will-change: transform;
  animation: db-pills-marquee 32s linear infinite;
  animation-delay: -4s;
}

.db-pills-group {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: var(--db-gap);
  height: calc(63px * var(--db-scale));
}

.db-pill {
  align-items: center;
  background: var(--primary-light-blue-color, #fff);
  border: 1px solid var(--secondary-neutral-600);
  border-radius: calc(50px * var(--db-scale));
  box-sizing: border-box;
  box-shadow: none;
  color: var(--primary-light-blue-900, var(--lb-900));
  display: flex;
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-size: calc(24px * var(--db-scale));
  font-weight: 400;
  height: calc(63px * var(--db-scale));
  justify-content: center;
  line-height: 1.3;
  padding: calc(16px * var(--db-scale)) calc(32px * var(--db-scale));
  text-align: center;
  white-space: nowrap;
}

.db-pills-group .db-pill:nth-child(1) {
  width: calc(422px * var(--db-scale));
}

.db-pills-group .db-pill:nth-child(2) {
  width: calc(353px * var(--db-scale));
}

.db-pills-group .db-pill:nth-child(3) {
  width: calc(403px * var(--db-scale));
}

.db-pills-group .db-pill:nth-child(4) {
  width: calc(200px * var(--db-scale));
}

.db-pills-group .db-pill:nth-child(5) {
  width: calc(306px * var(--db-scale));
}

.db-pills-group .db-pill:nth-child(6) {
  width: calc(468px * var(--db-scale));
}

.db-pill-more {
  background: var(--primary-light-blue-100, var(--lb-100));
  border: 2px dashed var(--primary-light-blue-500, var(--lb-500));
  color: var(--primary-light-blue-700, var(--lb-700));
}

@keyframes db-pills-marquee {
  from {
    transform: translateX(var(--db-marquee-start));
  }

  to {
    transform: translateX(calc(var(--db-marquee-start) - var(--db-sequence-width)));
  }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--bg-section);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.features > .section-head,
.features .features-grid,
.features .features-cta {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.features .section-title .serif-accent { font-style: italic; color: var(--lb-900); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px dashed var(--lb-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--lb-500);
  border-style: solid;
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--lb-100);
  color: var(--lb-500);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--lb-900);
  margin: 0 0 8px;
}
.feature-card p { font-size: 14px; color: var(--text-soft); line-height: 1.55; margin: 0; }
.features-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard .section-title .serif-accent { color: var(--lb-900); font-style: italic; }
.dashboard-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.dash-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
}
.dash-feature:hover { border-color: var(--lb-500); box-shadow: var(--shadow-sm); }
.dash-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lb-100);
  color: var(--lb-500);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.dash-icon svg { width: 22px; height: 22px; }
.dash-feature h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--lb-900);
  font-weight: 500;
}
.dash-feature p { margin: 0; font-size: 13px; color: var(--text-soft); line-height: 1.5; }

/* Dashboard mockup */
.dashboard-mockup {
  background: var(--lb-900);
  border-radius: var(--r-xl);
  padding: 18px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.dm-sidebar {
  background: var(--lb-950);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dm-logo {
  height: 24px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.dm-logo object { height: 100%; pointer-events: none; }
.dm-nav { display: flex; flex-direction: column; gap: 4px; }
.dm-nav span {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}
.dm-nav span.active { background: rgba(89, 148, 240, 0.18); color: #fff; }
.dm-nav span:not(.active):hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.dm-main {
  background: #fff;
  color: var(--lb-900);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dm-top { display: flex; justify-content: space-between; align-items: center; }
.dm-top strong { font-size: 16px; font-weight: 600; }
.dm-search {
  background: var(--neutral-400);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.dm-hero {
  background: linear-gradient(135deg, var(--lb-500) 0%, var(--primary-blue-500) 100%);
  border-radius: var(--r-md);
  padding: 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}
.dm-hero-copy small { opacity: 0.7; font-size: 12px; }
.dm-hero-copy strong { display: block; font-family: var(--font-serif); font-size: 26px; margin: 4px 0 8px; font-weight: 500; }
.dm-hero-copy span { display: block; font-size: 13px; opacity: 0.9; line-height: 1.5; }
.dm-hero-actions { display: flex; gap: 8px; margin-top: 14px; }
.dm-pill {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
}
.dm-pill.primary { background: #fff; color: var(--primary-blue-500); }
.dm-pill.ghost { background: rgba(255, 255, 255, 0.18); color: #fff; }
.dm-hero-meta { display: flex; align-items: flex-end; }
.dm-meta-card { background: rgba(255, 255, 255, 0.18); padding: 10px 14px; border-radius: 10px; }
.dm-meta-card small { font-size: 11px; opacity: 0.8; display: block; }
.dm-meta-card strong { font-size: 13px; }
.dm-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dm-stat-row span {
  background: var(--neutral-400);
  padding: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.dm-stat-row small { font-size: 11px; color: var(--text-muted); }
.dm-stat-row strong { font-size: 22px; font-weight: 600; color: var(--lb-900); }
.dm-patient-head { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.dm-patient {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 6px;
}
.dm-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lb-100);
  color: var(--lb-700);
  font-size: 12px;
  font-weight: 600;
  display: grid; place-items: center;
}
.dm-patient b { font-size: 13px; display: block; }
.dm-patient i { font-size: 11px; color: var(--text-muted); font-style: normal; }
.dm-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.dm-status.ok { background: #e8f8ec; color: #016704; }
.dm-status.warn { background: var(--coral-50); color: var(--coral-500); }

.dashboard-cta { text-align: center; margin-top: 48px; }
.dashboard-cta .btn { width: 310px; max-width: 100%; }

/* ============================================================
   PERSONA
   ============================================================ */
.persona.section {
  max-width: 1722px;
  padding: clamp(82px, 8.623vw, 149px) var(--gutter);
}

.persona-grid {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  width: 100%;
}

.persona-copy {
  align-items: flex-start;
  display: flex;
  flex: 0 1 770px;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.persona .section-title {
  color: var(--lb-900);
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: left;
  width: 100%;
  word-break: break-word;
}

.persona-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 512.273px;
}

.persona-list li {
  align-items: center;
  color: var(--lb-600);
  display: flex;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 18px;
  font-weight: 500;
  gap: 8px;
  line-height: 1.3;
  min-width: 0;
  white-space: nowrap;
}

.persona-check {
  flex-shrink: 0;
  height: 16px;
  max-width: none;
  width: 23.273px;
}

.persona-visual {
  background: #c2c3c5;
  border-radius: 24px;
  flex: 0 1 770px;
  height: 505px;
  overflow: hidden;
  position: relative;
}

.persona-visual img {
  height: calc(100% + 48px);
  left: 50%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 59px);
}

/* ============================================================
   TRUST
   ============================================================ */
.trust.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 59px;
  max-width: 1728px;
  overflow: hidden;
  padding: 82px 0;
}

.trust-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: min(1025px, calc(100% - 40px));
}

.trust .section-title {
  color: var(--lb-900);
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.trust-stats {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.trust-stat {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  text-align: left;
}

.trust-stat-waitlist {
  gap: 8px;
}

.trust-stat-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 48px;
  width: 48px;
}

.trust-stat strong {
  color: var(--gray-950);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

.trust-stat span {
  color: var(--gray-600);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.trust-stat-divider {
  align-self: stretch;
  background: #c2c3c5;
  flex: 0 0 1px;
  min-height: 76px;
}

.testimonials {
  align-items: center;
  display: flex;
  height: 420px;
  isolation: isolate;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials::before,
.testimonials::after {
  content: "";
  height: 420px;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(463px, calc((100% - 505px) / 2 + 120px));
  z-index: 3;
}

.testimonials::before {
  background: linear-gradient(90deg, #f8f8fa 0%, rgba(248, 248, 250, 0) 100%);
  left: 0;
}

.testimonials::after {
  background: linear-gradient(270deg, #f8f8fa 0%, rgba(248, 248, 250, 0) 100%);
  right: 0;
}

.testimonial-track {
  align-items: center;
  display: flex;
  gap: 11px;
  height: 420px;
  position: relative;
  width: max-content;
  z-index: 2;
}

.testimonial {
  align-items: flex-start;
  background: transparent;
  border: 1px solid #c2c3c5;
  border-radius: 24px;
  display: flex;
  flex: 0 0 505px;
  flex-direction: column;
  height: 420px;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.testimonial.side {
  opacity: 1;
  transform: none;
}

.testimonial.active {
  background: #fff;
  border-color: var(--lb-500);
  box-shadow: none;
  position: relative;
  z-index: 3;
}

.testimonial-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.quote-mark {
  flex-shrink: 0;
  height: 45.796px;
  max-width: none;
  width: 67.292px;
}

.testimonial p {
  color: #c2c3c5;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  width: 100%;
  word-break: break-word;
}

.testimonial.active p {
  color: #313131;
}

.testimonial footer {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 0;
}

.t-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 27px;
  width: 27px;
}

.testimonial footer div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  width: 141px;
}

.testimonial footer strong {
  color: #c2c3c5;
  display: block;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
}

.testimonial footer small {
  color: #c2c3c5;
  display: block;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
}

.testimonial.active footer strong {
  color: #313131;
}

.testimonial.active footer small {
  color: #929294;
}

.testimonial-nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  height: 58px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 160ms ease;
  width: 58px;
  z-index: 4;
}

.testimonial-nav img {
  height: 58px;
  pointer-events: none;
  width: 58px;
}

.testimonial-nav.prev {
  left: clamp(24px, calc(50% - 662px), 202px);
}

.testimonial-nav.next {
  right: clamp(24px, calc(50% - 662px), 202px);
}

.testimonial-nav:active {
  transform: translateY(-50%) scale(0.96);
}

/* ============================================================
   ZERO RISK
   ============================================================ */
.zero.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: none;
  padding: 82px var(--gutter);
  width: 100%;
}

.zero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(1564px, 100%);
}

.zero .section-head {
  margin: 0;
  max-width: none;
  width: 692px;
}

.zero .section-title {
  color: var(--lb-900);
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.zero-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.zero-pill-row {
  align-items: center;
  display: flex;
  gap: 16px;
  width: 100%;
}

.zero-pill {
  background: #fff;
  border: 1px solid #e8e9eb;
  border-radius: 243px;
  color: var(--lb-900);
  display: flex;
  flex: 1 1 0;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 24px;
  font-weight: 400;
  justify-content: center;
  line-height: 1.3;
  min-width: 0;
  padding: 16px 0;
  text-align: center;
  white-space: nowrap;
}

.zero-pill > span {
  display: block;
  font-size: clamp(18px, 1.39vw, 24px);
  max-width: 100%;
  min-width: 0;
  padding: 0 32px;
  white-space: nowrap;
}

.zero-pill-wide {
  flex: 0 0 auto;
  width: calc((100% - 16px) / 2);
}

.zero-card {
  background: #5994f0 url("../assets/zero-card-bg-figma.svg") center / 100% 100% no-repeat;
  border-radius: 53px;
  height: 477px;
  overflow: hidden;
  position: relative;
  width: min(1564px, 100%);
}

.zero-card p {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  left: 50%;
  line-height: 1.3;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 114px;
  transform: translateX(-50%);
  width: min(1238px, calc(100% - 96px));
  z-index: 1;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  width: min(509px, 100%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--lb-950) 0%, #000 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 7vw, 100px) var(--gutter) 30px;
  position: relative;
  overflow: hidden;
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.footer::before {
  width: 600px; height: 600px;
  background: rgba(71, 15, 244, 0.25);
  top: -200px; left: -150px;
}
.footer::after {
  width: 500px; height: 500px;
  background: rgba(89, 148, 240, 0.22);
  bottom: -150px; right: -100px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.footer-brand { display: flex; flex-direction: column; gap: 56px; }
.footer-logo-wrap { display: flex; flex-direction: column; }
.footer-logo {
  width: clamp(260px, 38vw, 520px);
  height: auto;
  color: var(--lb-500);
  pointer-events: none;
  filter: drop-shadow(0 6px 28px rgba(89, 148, 240, 0.35));
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 0;
  font-style: italic;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-columns div { display: flex; flex-direction: column; gap: 12px; }
.footer-columns strong {
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-columns a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer-columns a:hover { color: #fff; }

.footer-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
}
.footer-form h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 500;
}
.footer-form label { display: flex; flex-direction: column; gap: 6px; }
.footer-form label span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-form input,
.footer-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer-form input:focus,
.footer-form select:focus {
  border-color: var(--lb-500);
  background: rgba(255, 255, 255, 0.08);
}
.footer-form select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.footer-form .btn { margin-top: 8px; }
.footer-fineprint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
  text-align: center;
}
.footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
  .firstapp.section { padding: 64px var(--gutter); }
  .firstapp-shell { border-radius: 44px; }
  .firstapp-hero-panel { border-radius: 38px; padding: 0 32px 40px; }
  .firstapp-title { width: 100%; }
  .firstapp-hero-visual {
    aspect-ratio: 657 / 457;
    bottom: auto;
    left: auto;
    max-width: 657px;
    order: 3;
    position: relative;
    width: 100%;
  }
  .firstapp-hero-copy {
    align-self: center;
    margin: 0;
    max-width: 750px;
    order: 2;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
  }
  .firstapp-demo-panel {
    grid-template-columns: 1fr;
    height: auto;
  }
  .firstapp-fires-card {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .firstapp-fires-visual {
    height: auto;
    max-width: none;
    width: 100%;
  }
  .firstapp-fires-copy {
    flex-basis: auto;
    padding-top: 8px;
    width: 100%;
  }
  .steps-card { grid-template-columns: 1fr; text-align: center; }
  .steps-list { text-align: left; }
  .features-grid,
  .dashboard-features { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { flex-direction: column; }
  .persona .section-title { text-align: left; }
  .testimonial-track { grid-template-columns: 1fr; }
  .testimonial.side { display: none; }
  .dashboard-mockup { grid-template-columns: 1fr; }
  .dm-sidebar { flex-direction: row; overflow-x: auto; padding: 12px; }
  .dm-logo { margin-bottom: 0; margin-right: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { padding: 8px 14px; font-size: 13px; }
  .nav { top: 8px; }
  .nav-inner { padding: 10px 14px; gap: 12px; }

  .hero { padding-top: 64px; }
  .hero-trust { gap: 18px; padding: 14px 18px; }
  .trust-divider { display: none; }
  .floating-card-nfc { right: 8px; bottom: 12%; max-width: 180px; padding: 10px 12px; }

  .problem-grid,
  .features-grid,
  .dashboard-features,
  .trust-stats { grid-template-columns: 1fr; }

  .firstapp.section { padding: 56px var(--gutter); }
  .firstapp-shell {
    border-radius: 32px;
    gap: 20px;
    padding: 12px;
  }
  .firstapp-hero-panel {
    border-radius: 26px;
    gap: 20px;
    padding: 0 18px 28px;
  }
  .firstapp-sub-wrap {
    width: 100%;
  }
  .firstapp-sub {
    width: 100%;
  }
  .firstapp-list li {
    align-items: flex-start;
    white-space: normal;
  }
  .firstapp-demo-panel {
    border-radius: 28px;
    padding: 16px;
  }
  .firstapp-demo-card {
    border-radius: 28px;
    padding: 14px;
  }
  .firstapp-demo-visual {
    height: auto;
  }
  .firstapp-fires-card {
    border-radius: 28px;
    gap: 20px;
    padding: 14px;
  }
  .firstapp-fires-stats {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .dm-hero { grid-template-columns: 1fr; }
  .dm-stat-row { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .db-pills-track {
    animation: db-pills-marquee 32s linear infinite !important;
    animation-delay: -4s !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   FIGMA LANDING SYSTEM
   Source: figma.com/design/VkwuoqE21ZOXpnibGfih7o
   Page node: 43:521, component system node: 43:1583
   ============================================================ */
:root {
  --primary-blue-300: #916ff8;
  --secondary-gray-100: #f4f4f6;
  --secondary-gray-150: #e8e9eb;
  --secondary-gray-200: #d1d3d8;
  --secondary-gray-300: #babdc4;
  --secondary-gray-900: #1c1d1f;
  --secondary-neutral-100: #fefeff;
  --secondary-neutral-300: #f5f6f8;
  --secondary-neutral-400: #f5f6f8;
  --secondary-neutral-500: #f3f4f6;
  --secondary-neutral-600: #c2c3c5;
  --secondary-neutral-700: #929294;
  --secondary-neutral-800: #616262;
  --secondary-neutral-950: #181819;
  --container: 1564px;
  --gutter: clamp(16px, 4.75vw, 82px);
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 58px;
}

body {
  background: var(--secondary-neutral-300);
}

.section {
  max-width: var(--container);
  padding: 82px var(--gutter);
}

.section-title,
.hero-title,
.steps-title,
.firstapp-title,
.footer-form h3 {
  letter-spacing: 0;
}

.section-title {
  font-size: 64px;
  line-height: 1.3;
}

.section-sub {
  font-size: 18px;
  line-height: 1.3;
}

/* Design-system button component */
.btn {
  align-items: center;
  box-sizing: border-box;
  height: 53px;
  min-height: 53px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: none;
  display: inline-flex;
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  isolation: isolate;
  line-height: 1.3;
  overflow: hidden;
  padding: 16px 32px;
  position: relative;
  --btn-hover-duration: 300ms;
  transition:
    background-color 180ms ease,
    border-color 220ms ease,
    color 160ms ease 120ms,
    filter 160ms ease;
  width: var(--btn-default-width, auto);
}

.btn-hover-layer {
  align-items: center;
  background: var(--btn-hover-fill, transparent);
  border: var(--btn-hover-border, 0 solid transparent);
  border-radius: 14px;
  box-sizing: border-box;
  display: flex;
  height: 53px;
  justify-content: center;
  left: 4px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  padding: 0 32px;
  top: 0;
  transform: translate3d(var(--btn-hover-layer-start-x, -280px), 0, 0);
  transition:
    transform var(--btn-hover-duration, 600ms) cubic-bezier(0, 0.8, 0, 1.008),
    width var(--btn-hover-duration, 600ms) cubic-bezier(0, 0.8, 0, 1.008),
    height var(--btn-hover-duration, 600ms) cubic-bezier(0, 0.8, 0, 1.008),
    top var(--btn-hover-duration, 600ms) cubic-bezier(0, 0.8, 0, 1.008);
  width: var(--btn-hover-hidden-layer-width, calc(100% - 88px));
  will-change: transform, width, height, top;
  z-index: 2;
}

.btn-text {
  position: relative;
  white-space: nowrap;
}

.btn-text-default {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: clip-path var(--btn-hover-duration, 600ms) cubic-bezier(0, 0.8, 0, 1.008);
  will-change: clip-path;
  z-index: 1;
}

.btn-text-hover {
  color: var(--btn-hover-text, currentColor);
  z-index: 1;
}

.btn:hover,
.btn:focus-visible,
.btn:active,
.btn.is-pressed {
  box-shadow: none;
  transform: none;
  width: var(--btn-default-width, auto);
}

.btn:hover .btn-hover-layer,
.btn:focus-visible .btn-hover-layer,
.btn:active .btn-hover-layer,
.btn.is-pressed .btn-hover-layer {
  height: 47px;
  top: 3px;
  transform: translate3d(0, 0, 0);
  width: var(--btn-hover-layer-width, calc(100% - 36px));
}

.btn:hover .btn-text-default,
.btn:focus-visible .btn-text-default,
.btn:active .btn-text-default,
.btn.is-pressed .btn-text-default {
  clip-path: inset(0 0 0 100%);
  opacity: 1;
}

.btn:active .btn-hover-layer,
.btn.is-pressed .btn-hover-layer {
  height: 47px;
  top: 3px;
  transform: translate3d(0, 0, 0);
  width: var(--btn-hover-layer-width, calc(100% - 36px));
}

/* Figma defines no separate pressed style: pressed reuses the hover
   slide-in layer (handled above). No brightness/scale shift here. */

/* Hover fill = uniform inset frame (Figma: 4px left/right, 3px top/bottom,
   radius 14px), covering the button cleanly on both solid and outline buttons.
   Button width is pinned in JS, so it does not resize on hover. */
.btn-hover-layer {
  left: 4px;
  right: 30px;
  top: 3px;
  bottom: 3px;
  width: auto;
  height: auto;
  border-radius: 14px;
  padding: 0 12px;
  transform: translate3d(-110%, 0, 0);
}

.btn:hover .btn-hover-layer,
.btn:focus-visible .btn-hover-layer,
.btn:active .btn-hover-layer,
.btn.is-pressed .btn-hover-layer {
  top: 3px;
  width: auto;
  height: auto;
  transform: translate3d(0, 0, 0);
}

.btn-small {
  min-width: 310px;
  padding: 16px 32px;
  font-size: 16px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-blue-500);
  --btn-hover-fill: var(--secondary-gray-100);
  --btn-hover-text: var(--primary-blue-500);
  color: var(--primary-blue-100);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background: var(--primary-blue-500);
  color: var(--primary-blue-100);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-blue-500);
  --btn-hover-fill: var(--primary-blue-500);
  --btn-hover-text: var(--primary-blue-100);
  color: var(--primary-blue-500);
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-outline:active {
  background: transparent;
  border-color: var(--primary-blue-500);
  color: var(--primary-blue-500);
}

.btn-outline-neutral {
  border-color: var(--secondary-neutral-700);
  --btn-hover-border: 1px solid var(--secondary-neutral-600);
  --btn-hover-fill: var(--secondary-neutral-400);
  --btn-hover-text: var(--secondary-neutral-800);
  color: var(--secondary-neutral-700);
}

.btn-outline-neutral:hover,
.btn-outline-neutral:focus-visible,
.btn-outline-neutral:active {
  border-color: var(--secondary-gray-200);
  color: var(--secondary-neutral-800);
}

.figma-how-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--secondary-neutral-700);
  border-radius: 16px;
  box-sizing: border-box;
  color: var(--secondary-neutral-700);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  height: 53px;
  justify-content: center;
  line-height: 1.3;
  min-height: 53px;
  overflow: hidden;
  padding: 16px 32px;
  position: relative;
  text-decoration: none;
  transition:
    width 600ms cubic-bezier(0, 0.8, 0, 1.008),
    background-color 600ms cubic-bezier(0, 0.8, 0, 1.008),
    border-color 600ms cubic-bezier(0, 0.8, 0, 1.008),
    color 600ms cubic-bezier(0, 0.8, 0, 1.008);
  width: 192px;
}

.figma-how-button__label,
.figma-how-button__hover-label {
  letter-spacing: 0;
  white-space: nowrap;
}

.figma-how-button__label {
  clip-path: inset(0 0 0 0);
  position: relative;
  transition: clip-path 600ms cubic-bezier(0, 0.8, 0, 1.008);
  will-change: clip-path;
  z-index: 1;
}

.figma-how-button__hover {
  align-items: center;
  background: var(--secondary-neutral-700);
  border: 1px solid transparent;
  border-radius: 14px;
  box-sizing: border-box;
  color: var(--secondary-neutral-700);
  display: flex;
  height: 53px;
  justify-content: center;
  left: 4px;
  overflow: hidden;
  padding: 0 24px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(-290px, 0, 0);
  transition:
    transform 600ms cubic-bezier(0, 0.8, 0, 1.008),
    width 600ms cubic-bezier(0, 0.8, 0, 1.008),
    height 600ms cubic-bezier(0, 0.8, 0, 1.008),
    top 600ms cubic-bezier(0, 0.8, 0, 1.008),
    background-color 600ms cubic-bezier(0, 0.8, 0, 1.008),
    border-color 600ms cubic-bezier(0, 0.8, 0, 1.008),
    color 600ms cubic-bezier(0, 0.8, 0, 1.008);
  width: 223px;
  will-change: transform, width, height, top;
  z-index: 2;
}

.figma-how-button:hover,
.figma-how-button:focus-visible,
.figma-how-button:active {
  background: transparent;
  border-color: var(--secondary-gray-200);
  color: var(--secondary-neutral-800);
  outline: none;
  width: 232px;
}

.figma-how-button:hover .figma-how-button__label,
.figma-how-button:focus-visible .figma-how-button__label,
.figma-how-button:active .figma-how-button__label {
  clip-path: inset(0 0 0 100%);
}

.figma-how-button:hover .figma-how-button__hover,
.figma-how-button:focus-visible .figma-how-button__hover,
.figma-how-button:active .figma-how-button__hover {
  background: var(--secondary-neutral-400);
  border-color: var(--secondary-neutral-600);
  color: var(--secondary-neutral-800);
  height: 47px;
  top: 3px;
  transform: translate3d(0, 0, 0);
  width: calc(100% - 30px);
}

.figma-how-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(146, 146, 148, 0.22);
}

.patient-download-actions {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.patient-download-btn {
  --btn-default-width: auto;
  min-width: 0;
}

.store-badge {
  background: var(--neutral-100, #fefeff);
  border: 1px solid rgba(18, 30, 48, 0.16);
  border-radius: 12px;
  box-sizing: border-box;
  color: #202535;
  display: inline-block;
  height: 64px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  transition: border-color 180ms ease;
  width: 216px;
}

.store-badge:hover,
.store-badge:focus-visible {
  border-color: rgba(18, 30, 48, 0.16);
}

.store-badge:active {
  transform: none;
}

.store-badge.is-disabled,
.store-badge.is-disabled:hover,
.store-badge.is-disabled:focus-visible,
.store-badge.is-disabled:active {
  border-color: rgba(18, 30, 48, 0.16);
  box-shadow: none;
  cursor: not-allowed;
  overflow: visible;
  opacity: 1;
  transform: none;
  z-index: 1;
}

.store-badge.is-disabled .store-badge-icon,
.store-badge.is-disabled .store-badge-copy {
  opacity: 0.72;
}

.store-badge.is-disabled:hover,
.store-badge.is-disabled:focus-visible,
.store-badge.is-disabled:active {
  z-index: 60;
}

.store-badge.is-disabled::after {
  background: var(--secondary-neutral-950, #181819);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(9, 15, 24, 0.18);
  box-sizing: border-box;
  color: var(--neutral-100, #fefeff);
  content: attr(data-tooltip);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-body, "Figtree", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: 14px;
  font-weight: var(--ds-font-semi-bold, 600);
  height: 32px;
  left: 51px;
  letter-spacing: var(--ds-letter-spacing, 0);
  line-height: 1.3;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: -43px;
  transform: translate3d(0, 8px, 0);
  transition: opacity 180ms ease, transform 220ms ease;
  white-space: nowrap;
  width: 112px;
  z-index: 100;
}

.store-badge.is-disabled:hover::after,
.store-badge.is-disabled:focus-visible::after,
.store-badge.is-disabled:active::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.store-badge-icon {
  align-items: center;
  display: flex;
  height: 38px;
  justify-content: center;
  left: 17px;
  position: absolute;
  top: 12px;
  width: 36px;
}

.store-badge-icon svg {
  display: block;
  height: 38px;
  width: 36px;
}

.store-badge-icon-apple {
  width: 34px;
}

.store-badge-icon-apple svg {
  fill: #202535;
  width: 34px;
}

.store-badge-icon-play svg {
  width: 36px;
}

.play-blue {
  fill: #3bccff;
}

.play-green {
  fill: #48d781;
}

.play-yellow {
  fill: #ffd64a;
}

.play-red {
  fill: #ff6257;
}

.store-badge-copy {
  display: block;
  height: 50px;
  left: 69px;
  line-height: 1;
  position: absolute;
  top: 7px;
  width: 126px;
}

.store-badge-google .store-badge-copy {
  left: 67px;
  top: 8px;
  width: 144px;
}

.store-badge-kicker {
  color: #202535;
  display: block;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 12px;
  font-weight: 500;
  height: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

.store-badge-kicker-google {
  font-size: 9px;
  height: 12px;
  line-height: 1.1;
}

.store-badge-name {
  color: #202535;
  display: block;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: -2px;
  white-space: nowrap;
}

.store-badge-google .store-badge-name {
  font-size: 21px;
  line-height: 1.1;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .patient-download-actions {
    flex-wrap: wrap;
  }

  .cta-download-actions {
    justify-content: center;
  }

  .store-badge {
    width: min(216px, 100%);
  }
}

/* Figma nav component */
.nav {
  top: 0;
  padding: 40px var(--gutter);
  pointer-events: none;
}

.nav-inner {
  align-items: center;
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  background:
    linear-gradient(180deg, rgba(254, 254, 255, 0.72) 0%, rgba(245, 246, 248, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 200px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(18, 30, 48, 0.04),
    0 18px 48px rgba(18, 30, 48, 0.08);
  display: flex;
  height: 97px;
  justify-content: space-between;
  max-width: var(--container);
  overflow: hidden;
  padding: 13px 53px;
  pointer-events: auto;
  position: relative;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease,
    box-shadow 260ms ease;
  will-change: transform, opacity;
}

.nav.nav-hidden .nav-inner {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 56px), 0);
}

.nav.scrolled .nav-inner {
  background:
    linear-gradient(180deg, rgba(254, 254, 255, 0.82) 0%, rgba(245, 246, 248, 0.66) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(18, 30, 48, 0.05),
    0 20px 52px rgba(18, 30, 48, 0.12);
}

.logo-img {
  height: 44px;
}

.nav-beta {
  color: var(--lb-500);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 1px;
}

.nav-links {
  gap: 28px;
  margin-left: 0;
  margin-right: 0;
}

.nav-links a {
  border-radius: 12px;
  color: var(--gray-950);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  padding: 12px 16px;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(254, 254, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 8px 22px rgba(18, 30, 48, 0.06);
  color: var(--lb-500);
  outline: none;
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  background-color: var(--lb-150);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 8px 22px rgba(89, 148, 240, 0.08);
  color: var(--gray-950);
}

.nav-links a.is-active:hover,
.nav-links a[aria-current="page"]:hover,
.nav-links a.is-active:focus-visible,
.nav-links a[aria-current="page"]:focus-visible {
  background-color: var(--lb-150);
  color: var(--gray-950);
}

.nav-actions {
  margin-left: 0;
}

.nav-actions .btn {
  width: 310px;
}

/* Hero section */
.hero {
  max-width: 1728px;
  padding: 82px var(--gutter);
}

.hero-glow,
.hero-shape,
.floating-card {
  display: none;
}

.hero-inner {
  max-width: 1317px;
}

.hero-eyebrow {
  background: var(--primary-light-blue-100);
  border: 1px solid var(--primary-light-blue-500);
  border-radius: 61px;
  color: var(--primary-light-blue-500);
  font-family: var(--ds-font-headline, var(--font-sans));
  font-weight: var(--ds-font-semi-bold, 600);
  height: 53px;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
  padding: 10px;
  width: min(512px, 100%);
}

.hero-eyebrow span:last-child {
  font-weight: var(--ds-font-semi-bold, 600);
  white-space: nowrap;
}

.hero-eyebrow strong {
  font-weight: var(--ds-font-bold, 700);
}

.eyebrow-dot {
  display: none;
}

.hero-title {
  aspect-ratio: 1317 / 270;
  color: var(--primary-light-blue-900);
  font-family: var(--font-serif);
  font-size: 82px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 0 auto 8px;
  max-width: 1317px;
  overflow: visible;
  text-align: center;
  width: min(1317px, 100%);
}

@media (max-width: 1390px) {
  .hero-title {
    font-size: clamp(42px, 5.9vw, 82px);
  }
}

.hero-title-mark {
  background: var(--primary-light-blue-150);
  height: 20.7407%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-title-mark-1 {
  left: 45.71%;
  top: 5.9259%;
  width: 43.7358%;
}

.hero-title-mark-2 {
  left: 27.4867%;
  top: 72.5926%;
  width: 43.7358%;
}

.hero-title-mark-3 {
  left: 1.1389%;
  top: 37.7778%;
  width: 29.6887%;
}

.hero-title-mark-4 {
  left: 38.3447%;
  top: 37.7778%;
  width: 60.6682%;
}

.hero-title-text {
  display: block;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-title-line {
  display: block;
  height: 1.1em;
  white-space: nowrap;
}

.hero-sub {
  color: var(--secondary-gray-600);
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: 18px;
  font-weight: var(--ds-font-medium, 500);
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 730px;
}

.hero-cta {
  gap: 8px;
  margin-bottom: 24px;
}

.hero-cta .btn-primary {
  width: 310px;
}

.hero-trust {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  justify-content: space-between;
  max-width: none;
  padding: 0;
  width: 453px;
}

.hero-trust-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-trust-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.hero-trust-avatar {
  border-radius: 50%;
  height: 27px;
  width: 27px;
}

.hero-trust-item strong {
  color: var(--secondary-gray-950);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.hero-trust-item span {
  color: var(--secondary-gray-600);
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.trust-divider {
  display: none;
}

.trust-meta strong {
  color: var(--secondary-gray-950);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.trust-meta span {
  color: var(--secondary-gray-600);
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: 16px;
  line-height: 1.3;
}

.hero-visual {
  aspect-ratio: 1564 / 945;
  background: linear-gradient(180deg, rgba(221, 235, 255, 0) 32%, #ddebff 101%);
  border: 1px solid var(--lb-150);
  border-top-color: transparent;
  border-radius: 58px;
  margin-top: 82px;
  max-width: var(--container);
  overflow: hidden;
}

.hero-photo {
  border-radius: inherit;
  filter: none;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Problem cards */
.problem.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  max-width: 1728px;
  padding: 82px var(--gutter);
}

.problem .section-title {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: 1347px;
  text-align: center;
  width: min(1347px, 100%);
}

.problem .section-head {
  margin: 0;
  max-width: 1347px;
  text-align: center;
  width: min(1347px, 100%);
}

.problem .section-title .serif-accent {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-weight: 700;
}

.problem-grid {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.problem-card {
  background: var(--secondary-neutral-100);
  border: 1px solid var(--secondary-gray-150);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 376px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  text-align: left;
  transition: none;
}

.problem-card:hover {
  border-color: var(--secondary-gray-150);
  box-shadow: none;
  transform: none;
}

.problem-media {
  background: linear-gradient(208.49deg, rgb(255, 178, 178) 111.82%, rgba(255, 178, 178, 0) 54.513%);
  border-radius: 16px;
  height: 217px;
  margin: 0;
  max-width: 354px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.problem-media img {
  height: 254px;
  left: 50%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: calc(50% + 0.5px);
  transform: translate(-50%, -50%);
  width: 254px;
}

.problem-media-dose img {
  left: 10.56%;
  top: 0;
  transform: none;
}

.problem-card:nth-child(2) .problem-media img {
  left: 14.12%;
  transform: translateY(-50%);
}

.problem-card p {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  width: min(328px, 100%);
}

.features {
  background: transparent;
  max-width: 1728px;
  border-radius: 34px;
  overflow: hidden;
}

.features > .section-head,
.features .features-grid {
  padding-left: 0;
  padding-right: 0;
}

.features .section-head {
  margin-bottom: 32px;
  max-width: 100%;
}

.features .section-title {
  color: var(--lb-600);
  font-size: 100px;
  line-height: 1.3;
  margin: 0;
}

.features .section-title .serif-accent {
  color: var(--secondary-gray-300);
  display: inline;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
}

.features-grid {
  gap: 8px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--secondary-gray-150);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 8px;
}

.feature-card:hover {
  border-color: var(--secondary-gray-150);
  border-style: solid;
  box-shadow: none;
  transform: none;
}

.feature-media {
  align-items: center;
  background: var(--lb-100);
  border: 1px dashed var(--lb-500);
  border-radius: 20px;
  display: flex;
  height: 244px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.feature-media-tall {
  height: 261px;
}

.feature-media img,
.feature-media video {
  border-radius: 20px;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.feature-animation {
  display: block;
}

.feature-play {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--secondary-gray-150);
  border-radius: 999px;
  color: var(--secondary-gray-900);
  display: none;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 14px;
  font-weight: 600;
  inset: auto auto 16px 50%;
  line-height: 1;
  padding: 10px 14px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.feature-media.autoplay-blocked .feature-play {
  display: inline-flex;
}

.feature-icon {
  display: none;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  padding: 16px;
}

.feature-card h3 {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.feature-card p {
  color: var(--gray-600);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: 354px;
}

/* 3-step component */
.steps {
  max-width: 1728px;
  padding: 82px var(--gutter);
}

.steps-card {
  align-items: flex-start;
  background: linear-gradient(0deg, rgba(239, 245, 254, 0) 17.73%, #d9e8ff 115.84%);
  border: 1px solid var(--primary-light-blue-500);
  border-radius: 58px;
  box-shadow: none;
  display: flex;
  gap: 64px;
  height: 666px;
  justify-content: space-between;
  overflow: hidden;
  padding: 82px;
  position: relative;
  width: min(1564px, 100%);
}

.steps-card::before {
  content: none;
}

.steps-bg-vector {
  height: 842.27px;
  left: -227px;
  pointer-events: none;
  position: absolute;
  top: -194px;
  transform: rotate(161.31deg) scaleY(-1);
  width: 601.82px;
  z-index: 0;
}

.steps-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 360px;
  position: relative;
  z-index: 1;
}

.steps-eyebrow {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.steps-title {
  color: var(--primary-light-blue-500);
  font-family: var(--font-serif);
  font-size: 131.864px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.steps-copy .btn {
  width: 310px;
}

.steps-track {
  flex: 0 1 842px;
  height: 510px;
  position: relative;
  width: min(842px, 100%);
  z-index: 1;
}

.steps-list {
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  left: 66px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 66px);
}

.step {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--secondary-gray-400);
  display: flex;
  font-family: var(--font-serif);
  gap: 24px;
  line-height: 1.3;
  padding: 0;
  transition: color 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step.active {
  background: transparent;
  box-shadow: none;
  color: var(--secondary-gray-950);
}

.step.active .step-num {
  color: var(--primary-light-blue-500);
}

.steps-marker {
  height: 46px;
  left: 5px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(0, var(--steps-marker-y, 0px), 0) scale(var(--steps-marker-scale, 1));
  transform-origin: center;
  transition:
    filter 160ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 32px;
  will-change: transform;
}

.steps-marker.is-moving {
  --steps-marker-scale: 1.06;
  filter: drop-shadow(0 10px 14px rgba(89, 148, 240, 0.24));
}

.step-divider {
  background-image: url("../assets/steps-divider-figma.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  display: block;
  flex: 0 0 1px;
  height: 1px;
  margin: 0;
  width: 100%;
}

.step-num {
  color: currentColor;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  min-width: 49px;
  white-space: nowrap;
}

.step p,
.step p strong {
  color: currentColor;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.step:not(.active) .step-num,
.step:not(.active) p {
  color: var(--secondary-gray-400);
  opacity: 1;
}

/* FAQ components */
.faq.section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 82px;
  max-width: 1728px;
  padding: 82px var(--gutter);
  width: 100%;
}

.faq .section-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  margin: 0;
  max-width: none;
  text-align: center;
  width: 100%;
}

.faq .section-title {
  color: var(--lb-900);
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  min-width: 100%;
  text-align: center;
  width: min-content;
}

.faq-tabs {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin: 0;
  max-width: 1027px;
  position: relative;
}

.faq-tab-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.faq-tab {
  border: 1px solid var(--secondary-neutral-700);
  border-radius: 54px;
  color: var(--secondary-neutral-700);
  display: flex;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.3;
  padding: 16px 32px;
  position: relative;
  text-align: center;
  transition: border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
  white-space: nowrap;
  z-index: 1;
}

.faq-tab.active,
.faq-tab[aria-selected="true"] {
  background: var(--lb-100);
  border-color: var(--lb-500);
  color: var(--lb-600);
}

.faq-tabs.is-ready .faq-tab.active,
.faq-tabs.is-ready .faq-tab[aria-selected="true"] {
  background: var(--lb-100);
  border-color: var(--lb-500);
  color: var(--lb-600);
}

.faq-tab:hover,
.faq-tab:focus-visible {
  border-color: var(--lb-500);
  color: var(--lb-600);
}

.faq-tab:active {
  transform: scale(0.98);
}

.faq-tab-indicator {
  background: var(--lb-100);
  border: 1px solid var(--lb-500);
  border-radius: 54px;
  height: var(--faq-tab-indicator-h, 55px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(var(--faq-tab-indicator-x, 0), var(--faq-tab-indicator-y, 0), 0);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
  width: var(--faq-tab-indicator-w, 285px);
  z-index: 0;
}

.faq-tabs.is-ready .faq-tab-indicator {
  opacity: 1;
}

.faq-groups {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.faq-group {
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 32px;
  position: relative;
  scroll-margin-top: 120px;
  width: 100%;
}

.faq-group::after {
  background: url("../assets/faq-section-divider-figma.svg") center / 100% 1px no-repeat;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.faq-group:last-child {
  padding-bottom: 0;
}

.faq-group:last-child::after {
  display: none;
}

.faq-group h3 {
  color: var(--lb-600);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 28px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.faq-item {
  background: var(--secondary-neutral-500, #f3f4f6);
  border: 1px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  transition: background-color 0.28s ease, border-color 0.28s ease;
  width: 100%;
}

.faq-item[open] {
  background: var(--lb-100);
  border-color: var(--lb-500);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 48px;
}

.faq-item-wide {
  grid-column: 1 / -1;
}

.faq-item summary {
  align-items: center;
  color: var(--neutral-900, #313131);
  cursor: pointer;
  display: flex;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 24px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.3;
  list-style: none;
  min-height: 96px;
  padding: 28px 48px;
  text-align: left;
  white-space: normal;
}

.faq-item summary > * {
  min-width: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  align-items: center;
  background: url("../assets/faq-icon-collapsed-figma.svg") center / 40px 40px no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  border-radius: 50%;
  color: #fff;
  content: "";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 40px;
  justify-content: center;
  margin-left: 24px;
  width: 40px;
}

.faq-item[open] summary {
  color: var(--lb-600);
  min-height: 40px;
  padding: 0;
  width: 100%;
}

.faq-item[open] summary::after {
  background: url("../assets/faq-icon-expanded-figma.svg") center / 40px 40px no-repeat;
  border: 0;
  color: transparent;
}

.faq-item p {
  border-top: 0;
  color: var(--secondary-gray-900);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  padding: 24px 0 0;
  position: relative;
  width: 100%;
}

.faq-item p::before {
  background: url("../assets/faq-divider-figma.svg") center / 100% 1px no-repeat;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* CTA and footer */
.cta.section {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1728px;
  padding: 82px var(--gutter);
  width: 100%;
}

.cta .section-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  max-width: none;
  text-align: center;
  width: min(1564px, 100%);
}

.cta .section-title {
  color: var(--lb-800);
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  width: min(1510px, 100%);
}

.cta .section-sub {
  color: var(--lb-800);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: none;
  text-align: center;
  width: min(826px, 100%);
}

.cta-sub-strong {
  color: var(--lb-950);
}

.cta-actions .btn {
  border-radius: 16px;
  box-shadow: none;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  height: 53px;
  line-height: 1.3;
  min-width: 0;
  padding: 16px 32px;
}

.cta-actions .btn-primary,
.cta-actions .btn-outline {
  width: 310px;
}

.cta-download-actions {
  gap: 16px;
}

.footer {
  background: var(--secondary-neutral-300);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 var(--gutter) 82px;
}

.footer::before,
.footer::after {
  display: none;
}

.footer-grid {
  background: var(--secondary-neutral-950);
  border-radius: 44px;
  gap: 64px;
  grid-template-columns: 1.15fr 0.85fr;
  max-width: var(--container);
  min-height: 640px;
  overflow: hidden;
  padding: clamp(36px, 4vw, 60px);
}

.footer-logo {
  filter: none;
  width: min(70vw, 760px);
}

.footer-tagline {
  color: var(--lb-500);
  font-size: 24px;
  font-style: normal;
  margin-top: 16px;
}

.footer-columns strong {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.footer-columns a {
  color: var(--neutral-300);
  font-size: 16px;
  font-weight: 500;
}

.footer-form {
  align-self: end;
  background: var(--secondary-gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  max-width: 540px;
  padding: 32px;
}

.footer-form h3 {
  color: var(--neutral-300);
  font-family: var(--font-sans);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-form label span {
  color: var(--neutral-150, #fdfdfd);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.footer-form input,
.footer-form select {
  background: var(--secondary-neutral-950);
  border-color: var(--neutral-900, #313131);
  border-radius: 8px;
  color: var(--neutral-100);
  padding: 16px 24px;
}

.footer-form .btn {
  background: var(--neutral-100);
  color: var(--primary-blue-500);
  min-width: 227px;
}

.footer-fineprint {
  color: var(--secondary-neutral-700);
  font-size: 14px;
  text-align: left;
}

.footer-bottom {
  border-top: 0;
  color: var(--gray-800);
  margin-top: -70px;
  padding: 0 clamp(28px, 4vw, 60px);
}

/* Typography reconciliation from the Figma page export.
   Direct MCP node reads require editor access to the file, so these values
   come from the local Figma CSS export present in this landing folder. */
body {
  background: var(--secondary-neutral-300);
  font-weight: 400;
  line-height: 1.3;
}

.nav-beta,
.nav-links a {
  font-weight: 400;
  line-height: 1.3;
}

.btn {
  font-weight: 700;
  line-height: 1.3;
}

.hero-eyebrow {
  font-weight: var(--ds-font-semi-bold, 600);
}

.hero-title {
  font-weight: 400;
  line-height: 1.1;
}

.hero-sub,
.section-sub {
  font-weight: 500;
  line-height: 1.3;
}

.section-title {
  font-weight: 400;
  line-height: 1.3;
}

.trust-meta strong {
  font-weight: 400;
}

.trust-meta span {
  font-weight: 400;
}

.problem .section-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
}

.problem .section-title .serif-accent {
  font-weight: 700;
}

.problem-card p {
  font-weight: 400;
  line-height: 1.3;
}

.steps-eyebrow {
  font-weight: 400;
  line-height: 1.3;
}

.steps-title {
  font-size: clamp(64px, 7.631vw, 131.864px);
  font-weight: 700;
  line-height: 1;
}

.step-num {
  font-weight: 400;
}

.step p,
.step p strong {
  font-weight: 400;
  line-height: 1.3;
}

.firstapp-title {
  font-size: var(--firstapp-title-size);
  font-weight: 400;
  line-height: 1.3;
}

.firstapp-sub {
  font-size: var(--firstapp-sub-size);
  font-weight: 400;
  line-height: 1.3;
}

.firstapp-list li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.firstapp-demo-copy h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.firstapp-demo-copy p,
.firstapp-fires-copy p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.firstapp-fires-copy h3 {
  font-size: clamp(36px, 3.704vw, 64px);
  font-weight: 500;
  line-height: 1.3;
}

.db-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
}

.db-pill {
  font-family: var(--font-serif);
  font-size: calc(24px * var(--db-scale));
  font-weight: 400;
  line-height: 1.3;
}

.features .section-title,
.dashboard .section-title,
.cta .section-title {
  font-size: clamp(56px, 5.787vw, 100px);
  font-weight: 400;
  line-height: 1.3;
}

.features .section-title .serif-accent {
  font-weight: 400;
}

.feature-card h3,
.dash-feature h3,
.faq-group h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.feature-card p,
.dash-feature p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.dashboard .section-sub,
.cta .section-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.dashboard.section {
  max-width: 1728px;
}

.dashboard .section-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  line-height: 1.3;
  margin-bottom: 48px;
  max-width: 1476px;
  text-align: center;
  width: 100%;
}

.dashboard .section-title {
  background: linear-gradient(180deg, #164da3 0%, #e6ecf6 147.69%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--font-serif);
  font-size: clamp(56px, 5.787vw, 100px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: 1476px;
  text-align: center;
  width: min(1476px, 100%);
}

.dashboard .section-sub {
  color: var(--secondary-gray-500);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: 806px;
  text-align: center;
  width: min(806px, 100%);
}

.dashboard-showcase {
  align-items: center;
  background: linear-gradient(180deg, #f8f8fa 18.452%, #5994f0 178.76%);
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}

.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  width: min(1308px, 100%);
  z-index: 1;
}

.dashboard-feature-row {
  align-items: center;
  display: flex;
  gap: 8px;
  height: 171.891px;
  width: 100%;
}

.dash-feature {
  align-items: flex-start;
  background: var(--primary-light-blue-color, #fff);
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 32px;
}

.dash-feature-soft {
  background: linear-gradient(180deg, #fff 17.225%, #eff5fe 93.145%);
}

.dash-feature:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.dash-icon {
  display: none;
}

.dash-feature h3 {
  color: var(--secondary-gray-900);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  width: 100%;
}

.dash-feature p {
  color: var(--secondary-gray-600, var(--gray-600));
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  width: 100%;
}

.dashboard-image-shell {
  align-items: flex-start;
  background: var(--primary-light-blue-100, var(--lb-100));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}

.dashboard-image-frame {
  aspect-ratio: 1600 / 787;
  border-radius: 24.885px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.dashboard-image-frame img {
  border-radius: 24.885px;
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.persona .section-title,
.trust .section-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
}

.persona-list li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.platform-card strong {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}

.platform-card span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.testimonial footer strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.testimonial footer small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.zero .section-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
}

.zero-pill {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.faq .section-title {
  font-size: clamp(56px, 5.787vw, 100px);
  font-weight: 400;
  line-height: 1.3;
}

.faq-tab {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.faq-item summary,
.faq-item p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-tagline,
.footer-columns strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.footer-columns a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-form h3 {
  font-family: var(--font-sans);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-form label span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-form input,
.footer-form select {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-fineprint {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-bottom {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .firstapp.section {
    --firstapp-title-size: clamp(72px, calc((100vw - 252px) / 5.755), 148px);
    --firstapp-sub-size: clamp(30px, 5vw, 42px);
  }

  .section-title,
  .problem .section-title,
  .db-title,
  .features .section-title,
  .dashboard .section-title,
  .persona .section-title,
  .trust .section-title,
  .zero .section-title,
  .faq .section-title,
  .cta .section-title {
    font-size: 52px;
  }

  .firstapp-title {
    font-size: var(--firstapp-title-size);
  }

  .firstapp-sub {
    font-size: var(--firstapp-sub-size);
  }

  .zero-pill {
    font-size: 18px;
  }

  .nav-inner {
    padding: 13px 28px;
  }

  .nav {
    padding: 28px var(--gutter);
  }

  .nav-actions .btn {
    min-width: auto;
  }

  .steps-card {
    flex-direction: column;
    gap: 48px;
    grid-template-columns: 1fr;
    height: auto;
    padding: 56px;
  }

  .steps-copy {
    min-width: 0;
  }

  .steps-track {
    flex: none;
    height: 430px;
    width: 100%;
  }

  .steps-title {
    font-size: 92px;
  }

  .step p,
  .step p strong {
    font-size: 26px;
  }

  .step {
    padding: 0;
  }

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

  .faq.section {
    gap: 64px;
    padding: 64px var(--gutter);
  }

  .faq-tabs {
    max-width: 100%;
  }

  .faq-tab-row {
    flex-wrap: wrap;
  }

  .faq-item summary {
    white-space: normal;
  }

  .cta.section {
    padding: 64px var(--gutter);
  }

  .problem.section {
    padding: 64px var(--gutter);
  }

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

@media (max-width: 760px) {
  .section {
    padding: 64px var(--gutter);
  }

  .section-title,
  .problem .section-title,
  .db-title,
  .features .section-title,
  .dashboard .section-title,
  .persona .section-title,
  .trust .section-title,
  .zero .section-title,
  .faq .section-title,
  .cta .section-title {
    font-size: 38px;
  }

  .problem.section {
    gap: 24px;
    padding: 56px var(--gutter);
  }

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

  .problem-card {
    height: auto;
    min-height: 360px;
  }

  .firstapp-title {
    font-size: var(--firstapp-title-size);
  }

  .firstapp-sub {
    font-size: var(--firstapp-sub-size);
  }

  .firstapp-list li,
  .persona-list li {
    font-size: 16px;
  }

  .zero-pill,
  .faq-item summary,
  .faq-item p {
    font-size: 16px;
  }

  .platform-card strong,
  .firstapp-fires-copy h3 {
    font-size: 32px;
  }

  .platform-card span,
  .footer-bottom {
    font-size: 14px;
  }

  .feature-media,
  .feature-media-tall {
    height: 190px;
  }

  .nav {
    padding: 12px var(--gutter) 24px;
    top: 0;
  }

  .nav-inner {
    height: auto;
    min-height: 64px;
    padding: 10px 14px;
  }

  .logo-img {
    height: 30px;
  }

  .nav-beta {
    font-size: 12px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-eyebrow {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 16px;
    white-space: normal;
  }

  .hero-sub,
  .section-sub {
    font-size: 16px;
  }

  .hero-trust {
    gap: 18px;
    justify-content: center;
    max-width: 100%;
  }

  .trust-meta {
    text-align: center;
  }

  .hero-visual {
    border-radius: 28px;
    margin-top: 48px;
  }

  .problem-card p {
    font-size: 20px;
  }

  .steps-card {
    border-radius: 32px;
    gap: 36px;
    height: auto;
    min-height: auto;
    padding: 32px;
  }

  .steps-bg-vector {
    height: 620px;
    left: -260px;
    top: -170px;
    width: 443px;
  }

  .steps-eyebrow {
    font-size: 28px;
  }

  .steps-title {
    font-size: 64px;
  }

  .step {
    align-items: baseline;
    gap: 16px;
    grid-template-columns: 52px 1fr;
    padding: 0;
  }

  .steps-track {
    height: 400px;
  }

  .steps-list {
    left: 48px;
    width: calc(100% - 48px);
  }

  .step-num {
    font-size: 34px;
    min-width: 36px;
  }

  .step p,
  .step p strong {
    font-size: 20px;
  }

  .faq-tabs {
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    width: 100%;
  }

  .faq-tab-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: max-content;
  }

  .faq-tab {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 12px 18px;
  }

  .faq.section {
    gap: 48px;
    padding: 56px var(--gutter);
  }

  .faq .section-head {
    gap: 22px;
  }

  .faq-groups {
    gap: 24px;
  }

  .faq-group {
    gap: 20px;
    padding-bottom: 24px;
    scroll-margin-top: 88px;
  }

  .faq-item summary {
    font-size: 18px;
    padding: 20px;
    min-height: 78px;
  }

  .faq-item[open] {
    padding: 20px;
  }

  .faq-item[open] summary {
    min-height: 40px;
    padding: 0;
  }

  .faq-item p {
    font-size: 16px;
    padding: 18px 20px 22px;
  }

  .faq-item[open] p {
    padding: 18px 0 0;
  }

  .faq-item summary::after {
    height: 32px;
    width: 32px;
  }

  .cta.section {
    padding: 56px var(--gutter);
  }

  .cta .section-head {
    gap: 20px;
  }

  .cta-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .footer-grid {
    border-radius: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-tagline {
    font-size: 18px;
  }

  .footer-form {
    max-width: none;
  }

  .footer-form h3 {
    font-size: 36px;
  }

  .footer-bottom {
    margin-top: 18px;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .firstapp.section {
    --firstapp-title-size: clamp(42px, 6.842vw, 52px);
    --firstapp-sub-size: clamp(26px, 4.079vw, 31px);
  }

  .firstapp-title {
    font-size: var(--firstapp-title-size);
    line-height: 1.08;
    white-space: normal;
  }

  .firstapp-sub-wrap {
    display: block;
    line-height: 1.3;
    width: 100%;
  }

  .firstapp-sub {
    color: #fff;
    display: block;
    font-size: var(--firstapp-sub-size);
    line-height: 1.18;
    margin: 0;
    max-width: 100%;
    text-shadow: 0 1px 10px rgba(36, 59, 96, 0.28);
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .dashboard-showcase {
    border-radius: 34px;
  }

  .dashboard-feature-row {
    height: auto;
  }

  .dash-feature {
    min-height: 160px;
  }
}

@media (max-width: 760px) {
  .dashboard-showcase {
    border-radius: 28px;
    padding: 12px;
  }

  .dashboard-features {
    margin-bottom: 18px;
    width: 100%;
  }

  .dashboard-feature-row {
    flex-direction: column;
  }

  .dash-feature {
    flex: 0 0 auto;
    min-height: auto;
    padding: 22px;
    width: 100%;
  }

  .dashboard-image-shell {
    border-radius: 18px;
    padding: 12px;
  }

  .dashboard-image-frame,
  .dashboard-image-frame img {
    border-radius: 16px;
  }
}

@media (max-width: 1100px) {
  .persona.section {
    padding: 64px var(--gutter);
  }

  .persona-grid {
    align-items: flex-start;
    gap: 32px;
  }

  .persona-copy,
  .persona-visual {
    flex-basis: auto;
    width: 100%;
  }

  .persona .section-title {
    font-size: 52px;
    text-align: left;
  }

  .persona-list {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .persona.section {
    padding: 56px var(--gutter);
  }

  .persona-copy {
    gap: 24px;
  }

  .persona .section-title {
    font-size: 38px;
    line-height: 1.22;
  }

  .persona-list {
    gap: 18px;
  }

  .persona-list li {
    align-items: flex-start;
    font-size: 16px;
    white-space: normal;
  }

  .persona-visual {
    border-radius: 18px;
    height: clamp(260px, 65vw, 420px);
  }
}

@media (max-width: 1100px) {
  .trust.section {
    gap: 44px;
    padding: 64px 0;
  }

  .trust-head {
    width: calc(100% - 40px);
  }

  .trust .section-title {
    font-size: 52px;
  }

  .trust-stats {
    flex-wrap: wrap;
    gap: 22px 34px;
    justify-content: center;
  }

  .trust-stat-divider {
    display: none;
  }

  .testimonials {
    height: auto;
    overflow: visible;
    padding: 0 var(--gutter);
  }

  .testimonials::before,
  .testimonials::after {
    display: none;
  }

  .testimonial-track {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    height: auto;
    left: auto;
    position: static;
    transform: none;
    width: 100%;
  }

  .testimonial {
    flex-basis: auto;
    height: auto;
    min-height: 360px;
    width: 100%;
  }

  .testimonial.side {
    display: none;
  }

}

@media (max-width: 760px) {
  .trust.section {
    gap: 32px;
    padding: 56px 0;
  }

  .trust .section-title {
    font-size: 38px;
    line-height: 1.22;
  }

  .trust-stats {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .trust-stat {
    align-items: center;
    text-align: center;
  }

  .trust-stat span {
    white-space: normal;
  }

  .testimonial {
    min-height: auto;
    padding: 24px;
  }

  .testimonial p {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  .zero.section {
    gap: 48px;
    padding: 64px var(--gutter);
  }

  .zero .section-head {
    width: min(692px, 100%);
  }

  .zero .section-title {
    font-size: 52px;
  }

  .zero-card {
    border-radius: 42px;
    height: 390px;
  }

  .zero-card p {
    font-size: 46px;
    top: 88px;
    width: min(900px, calc(100% - 64px));
  }

  .zero-pill-row {
    flex-direction: column;
  }

  .zero-pill,
  .zero-pill-wide {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .zero.section {
    gap: 32px;
    padding: 56px var(--gutter);
  }

  .zero-content {
    gap: 24px;
  }

  .zero .section-title {
    font-size: 38px;
    line-height: 1.22;
  }

  .zero-pills {
    gap: 12px;
  }

  .zero-pill-row {
    gap: 12px;
  }

  .zero-pill {
    font-size: 16px;
    padding: 14px 18px;
    white-space: normal;
  }

  .zero-pill > span {
    font-size: 16px;
    padding: 0;
    white-space: normal;
  }

  .zero-card {
    border-radius: 30px;
    height: 300px;
  }

  .zero-card p {
    font-size: 30px;
    top: 62px;
    width: calc(100% - 40px);
  }
}

/* ============================================================
   FOOTER FIGMA NODE 86:1217
   ============================================================ */
.footer {
  background: var(--secondary-neutral-300);
  color: var(--secondary-neutral-600);
  isolation: isolate;
  margin-top: 21px;
  overflow: hidden;
  padding: 0 var(--gutter) 60px;
  position: relative;
}

.footer::before,
.footer::after {
  display: none;
}

.footer-grid {
  aspect-ratio: 1564 / 870;
  background: var(--secondary-neutral-950, #181819);
  border-radius: 44px;
  box-sizing: border-box;
  color: var(--secondary-neutral-600, #c2c3c5);
  display: block;
  isolation: isolate;
  height: auto;
  margin: 0 auto;
  max-width: var(--container);
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.footer-wordmark {
  height: 53.078%;
  left: 1.79%;
  overflow: hidden;
  position: absolute;
  top: 2.529%;
  width: 96.355%;
}

.footer-wordmark-img {
  display: block;
  height: 100%;
  left: 0;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.footer-tagline {
  color: var(--lb-500);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(18px, 1.389vw, 24px);
  font-style: normal;
  font-weight: 400;
  left: 0;
  line-height: 1.3;
  margin: 0;
  position: absolute;
  top: 89.436%;
  white-space: nowrap;
  width: 23.955%;
}

.footer-columns {
  align-items: flex-start;
  display: flex;
  gap: 0;
  justify-content: space-between;
  left: 2.941%;
  margin: 0;
  position: absolute;
  top: 61.724%;
  width: 34.591%;
}

.footer-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 128px;
}

.footer-column-social {
  width: 70px;
}

.footer-column-links {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.footer-columns strong {
  color: #fff;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(18px, 1.389vw, 24px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  text-transform: none;
  width: 100%;
}

.footer-columns a {
  color: var(--secondary-neutral-600, #c2c3c5);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(12px, 0.926vw, 16px);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition: color 180ms ease;
  width: 100%;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--neutral-100, #fefeff);
}

.footer-form {
  align-items: flex-start;
  align-self: auto;
  background: var(--secondary-gray-900, #1c1d1f);
  border: 1px solid #383a3f;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 52.069%;
  justify-content: space-between;
  left: 61.765%;
  max-width: none;
  padding: clamp(24px, 1.852vw, 32px);
  position: absolute;
  right: clamp(24px, 1.852vw, 32px);
  top: 41.609%;
  width: auto;
}

.footer-form h3 {
  color: var(--neutral-300, #f8f8fa);
  font-family: var(--ds-font-headline, var(--font-sans));
  font-size: clamp(38px, 3.356vw, 58px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  width: 88%;
}

.footer-form-body {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.footer-field {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.footer-form label span,
.footer-field span {
  color: var(--neutral-150, #fdfdfd);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(14px, 1.042vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.footer-form input,
.footer-field input {
  background: var(--secondary-neutral-950, #181819);
  border: 1px solid var(--neutral-900, #313131);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--secondary-neutral-700, #929294);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(12px, 0.926vw, 16px);
  font-weight: 500;
  height: 53px;
  line-height: 1.3;
  outline: none;
  padding: 16px 24px;
  transition: border-color 180ms ease;
  width: 100%;
}

.footer-form input::placeholder {
  color: var(--secondary-neutral-700, #929294);
  opacity: 1;
}

.footer-form input:focus {
  border-color: var(--lb-500);
}

.footer-submit-row {
  align-items: center;
  display: flex;
  gap: clamp(12px, 0.926vw, 16px);
  min-height: 53px;
  overflow: hidden;
  width: 100%;
}

.footer-submit {
  --btn-hover-fill: var(--primary-blue-500);
  --btn-hover-text: var(--primary-blue-100);
  background: var(--neutral-100, #fefeff);
  border: 0;
  border-radius: 16px;
  box-shadow: none;
  color: var(--primary-blue-500);
  flex: 0 0 auto;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(12px, 0.926vw, 16px);
  font-weight: 700;
  height: 53px;
  line-height: 1.3;
  min-width: 0;
  padding: 16px 32px;
  width: clamp(180px, 13.137vw, 227px) !important;
}

.footer-submit:hover,
.footer-submit:focus-visible,
.footer-submit:active {
  background: var(--neutral-100, #fefeff);
  color: var(--primary-blue-500);
}

.footer-fineprint {
  color: var(--secondary-neutral-700, #929294);
  flex: 0 0 clamp(233px, 15.625vw, 270px);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(8.5px, 0.72vw, 12px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  min-width: clamp(233px, 15.625vw, 270px);
  text-align: left;
  white-space: nowrap;
  width: clamp(233px, 15.625vw, 270px);
}

.footer-form-status {
  color: var(--secondary-neutral-700, #929294);
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  margin: -8px 0 0;
  min-height: 18px;
}

.footer-form-status[data-state="success"] {
  color: #9fd4ff;
}

.footer-form-status[data-state="error"] {
  color: #ffb4b4;
}

.footer-form-status[data-state="pending"] {
  color: var(--secondary-neutral-600, #a8a8aa);
}

.footer-bottom {
  border: 0;
  bottom: 23px;
  color: var(--secondary-neutral-800, #616262);
  display: block;
  font-family: var(--ds-font-body, var(--font-sans));
  font-size: clamp(14px, 1.042vw, 18px);
  font-weight: 500;
  left: 2.941%;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: left;
  top: auto;
  white-space: nowrap;
  width: max-content;
}

.footer-bottom-glow {
  height: 157.36%;
  left: 50%;
  margin: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  top: 25.84%;
  transform: translateX(-50%);
  width: 124.42vw;
  z-index: 0;
}

.footer-bottom-glow img {
  display: block;
  height: 199.78%;
  left: -31.77%;
  max-width: none;
  position: absolute;
  top: -49.89%;
  width: 163.54%;
}

@media (max-width: 1100px) {
  .footer {
    padding: 0 var(--gutter) 60px;
  }

  .footer-grid {
    aspect-ratio: auto;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 38px;
    height: auto;
    min-height: 0;
    padding: 32px;
  }

  .footer-wordmark {
    height: auto;
    left: auto;
    position: relative;
    top: auto;
    width: 100%;
  }

  .footer-wordmark-img {
    height: auto;
    left: auto;
    max-width: none;
    position: relative;
    top: auto;
    width: min(1120px, 140%);
  }

  .footer-tagline {
    font-size: 18px;
    margin-top: 18px;
    position: static;
    white-space: normal;
    width: 100%;
  }

  .footer-columns {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
    left: auto;
    position: static;
    top: auto;
    width: 100%;
  }

  .footer-column,
  .footer-column-social {
    width: auto;
  }

  .footer-form {
    gap: 40px;
    height: auto;
    left: auto;
    max-width: none;
    position: static;
    top: auto;
    width: 100%;
  }

  .footer-form h3 {
    font-size: clamp(36px, 5vw, 58px);
    width: min(427px, 100%);
  }

  .footer-submit-row {
    flex-wrap: wrap;
    height: auto;
  }

  .footer-bottom {
    font-size: 14px;
    position: static;
    width: 100%;
  }

}

@media (max-width: 760px) {
  .footer {
    --footer-glow-height: clamp(300px, 96vw, 560px);
  }

  .footer-grid {
    border-radius: 24px;
    gap: 28px;
    padding: 24px;
  }

  .footer-wordmark-img {
    margin-left: -5%;
    width: 150%;
  }

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

  .footer-columns strong {
    font-size: 20px;
  }

  .footer-columns a {
    font-size: 14px;
  }

  .footer-form {
    gap: 32px;
    padding: 24px;
  }

  .footer-form h3 {
    font-size: 34px;
    line-height: 1.15;
  }

  .footer-form label span,
  .footer-field span {
    font-size: 16px;
  }

  .footer-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .footer-submit {
    min-width: 0;
    width: 100% !important;
  }

  .footer-fineprint {
    white-space: normal;
  }

}

/* Let main own the full first-screen background, including behind the fixed nav. */
body > main {
  background: var(--page-screen-bg);
  min-height: 100vh;
}

.nav {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

body > main > .hero:first-child {
  padding-top: calc(40px + 97px + 40px + 82px);
}

@media (max-width: 1100px) {
  body > main > .hero:first-child {
    padding-top: calc(28px + 97px + 28px + 82px);
  }
}

@media (max-width: 760px) {
  body > main > .hero:first-child {
    padding-top: calc(12px + 64px + 24px + 52px);
  }

  .nav.nav-menu-open {
    z-index: 200;
  }

  .nav.nav-menu-open .nav-inner {
    overflow: visible;
  }

  .nav.nav-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.nav-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.nav-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav.nav-menu-open .nav-links {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(18, 30, 48, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 30, 48, 0.14);
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 0;
    margin: 0;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
  }

  .nav.nav-menu-open .nav-links a {
    border-radius: 12px;
    padding: 13px 14px;
    text-align: left;
  }

  body > main > .hero:first-child .hero-inner {
    max-width: 100%;
  }

  body > main > .hero:first-child .hero-eyebrow {
    height: auto;
    justify-content: center;
    line-height: 1.15;
    margin-bottom: 22px;
    min-height: 34px;
    overflow: hidden;
    padding: 8px 10px;
    width: min(344px, 100%);
  }

  body > main > .hero:first-child .hero-eyebrow span:last-child {
    font-size: clamp(9px, 2.65vw, 12px);
    white-space: nowrap;
  }

  body > main > .hero:first-child .hero-title {
    aspect-ratio: auto;
    font-size: clamp(32px, 10.5vw, 42px);
    line-height: 1.08;
    margin: 0 auto 18px;
    max-width: 100%;
    width: 100%;
  }

  body > main > .hero:first-child .hero-title-mark {
    display: none;
  }

  body > main > .hero:first-child .hero-title-text {
    display: block;
    inset: auto;
    position: relative;
  }

  body > main > .hero:first-child .hero-title-line {
    height: auto;
    white-space: normal;
  }

  body > main > .hero:first-child .hero-sub {
    font-size: 14px;
    line-height: 1.35;
    margin: 0 auto 24px;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .patient-download-actions,
  .firstapp-download-actions,
  .firstapp-download-actions-primary {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    max-width: 340px;
    width: 100%;
  }

  .store-badge,
  .store-badge.is-disabled,
  .store-badge.is-disabled:hover,
  .store-badge.is-disabled:focus-visible,
  .store-badge.is-disabled:active {
    border-radius: 10px;
    height: 52px;
    overflow: hidden;
    width: 100%;
  }

  .store-badge.is-disabled::after {
    display: none;
  }

  .store-badge-icon {
    height: 28px;
    left: 10px;
    top: 11px;
    width: 28px;
  }

  .store-badge-icon svg,
  .store-badge-icon-apple,
  .store-badge-icon-apple svg,
  .store-badge-icon-play svg {
    height: 28px;
    width: 28px;
  }

  .store-badge-copy,
  .store-badge-google .store-badge-copy {
    height: auto;
    left: 44px;
    top: 8px;
    width: calc(100% - 50px);
  }

  .store-badge-kicker {
    font-size: 8.5px;
    height: auto;
    line-height: 1.15;
  }

  .store-badge-kicker-google {
    font-size: 8px;
    height: auto;
    margin-bottom: 1px;
  }

  .store-badge-name {
    font-size: 16px;
    line-height: 1.15;
    margin-top: 1px;
  }

  .store-badge-google .store-badge-name {
    font-size: 13.5px;
    line-height: 1.15;
    margin-top: 2px;
  }

  .firstapp.section {
    padding: 44px var(--gutter);
  }

  .firstapp-shell {
    border-radius: 24px;
    gap: 14px;
    padding: 10px;
  }

  .firstapp-hero-panel {
    background: #5994f0 url("../assets/firstapp-hero-panel-bg-figma.svg") center top / cover no-repeat;
    border-radius: 22px;
    gap: 18px;
    padding: 20px 14px 18px;
  }

  .firstapp-title {
    font-size: clamp(38px, 13vw, 48px);
    line-height: 1;
    width: 100%;
  }

  .firstapp-hero-copy {
    align-items: stretch;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .firstapp-hero-copy-top {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .firstapp-sub {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.12;
    text-align: center;
    text-shadow: 0 1px 12px rgba(36, 59, 96, 0.24);
  }

  .firstapp-hero-visual {
    aspect-ratio: 657 / 457;
    border-radius: 18px;
    max-height: 250px;
    max-width: 100%;
    order: 3;
    width: 100%;
  }

  .firstapp-hero-visual img {
    object-fit: contain;
  }

  .firstapp-list {
    gap: 10px;
    margin-top: 4px;
  }

  .firstapp-list li {
    font-size: 14px;
    line-height: 1.25;
  }

  .firstapp-demo-panel {
    background: linear-gradient(17.96deg, #eff5fe 2.813%, #5994f0 151.92%);
    border-radius: 22px;
    gap: 14px;
    padding: 12px;
  }

  .firstapp-demo-panel::before {
    background-size: cover;
    height: 150%;
    width: 150%;
  }

  .firstapp-demo-card,
  .firstapp-fires-card {
    border-radius: 22px;
    padding: 12px;
  }

  .firstapp-demo-visual,
  .firstapp-fires-visual {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    height: auto;
  }

  .firstapp-demo-visual img,
  .firstapp-fires-visual img {
    object-fit: contain;
  }

  .firstapp-demo-copy {
    padding: 14px 6px 10px;
  }

  .firstapp-demo-copy h3,
  .firstapp-fires-copy h3 {
    font-size: 30px;
    line-height: 1.15;
  }

  .firstapp-demo-copy p,
  .firstapp-fires-copy p {
    font-size: 14px;
    line-height: 1.35;
  }

  .firstapp-fires-card {
    gap: 18px;
  }

  .firstapp-fires-copy {
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .firstapp-fires-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
  }

  .footer {
    padding: 0 14px 30px;
  }

  .footer-grid {
    border-radius: 20px;
    gap: 16px;
    padding: 18px 16px;
  }

  .footer-wordmark {
    height: auto;
    overflow: visible;
    text-align: center;
  }

  .footer-wordmark-img {
    height: auto;
    margin: 0 auto;
    max-height: 82px;
    max-width: 100%;
    object-fit: contain;
    width: min(100%, 300px);
  }

  .footer-tagline {
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
  }

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

  .footer-column-social {
    grid-column: 1 / -1;
  }

  .footer-column,
  .footer-column-social {
    gap: 6px;
  }

  .footer-column-links {
    gap: 5px;
  }

  .footer-columns strong {
    font-size: 15px;
  }

  .footer-columns a {
    font-size: 12px;
    line-height: 1.28;
  }

  .footer-form {
    border-radius: 14px;
    gap: 14px;
    padding: 14px;
  }

  .footer-form h3 {
    font-size: 23px;
    line-height: 1.1;
    width: 100%;
  }

  .footer-form-body {
    gap: 10px;
  }

  .footer-form label span,
  .footer-field span {
    font-size: 14px;
  }

  .footer-form input,
  .footer-field input {
    font-size: 12px;
    height: 44px;
    padding: 10px 12px;
  }

  .footer-submit-row {
    gap: 8px;
  }

  .footer-submit {
    height: 44px;
    width: 100% !important;
  }

  .footer-fineprint {
    font-size: 11px;
    min-width: 0;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .footer-bottom {
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .footer-bottom-glow {
    display: none;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    gap: 14px;
    padding: 16px 14px;
  }

  .footer-wordmark-img {
    max-height: 66px;
    width: min(100%, 250px);
  }

  .footer-tagline {
    font-size: 12px;
    margin-top: 6px;
  }

  .footer-form h3 {
    font-size: 21px;
  }

  .footer-columns {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 0 12px 24px;
  }

  .footer-grid {
    border-radius: 18px;
    gap: 10px;
    padding: 14px 12px;
  }

  .footer-wordmark-img {
    max-height: 48px;
    width: min(100%, 220px);
  }

  .footer-tagline {
    display: none;
  }

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

  .footer-column-social {
    grid-column: auto;
  }

  .footer-column,
  .footer-column-social,
  .footer-column-links {
    gap: 4px;
  }

  .footer-columns strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .footer-columns a {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .footer-form {
    gap: 8px;
    padding: 10px;
  }

  .footer-form h3 {
    font-size: 18px;
    line-height: 1;
  }

  .footer-field {
    gap: 0;
  }

  .footer-form label span,
  .footer-field span,
  .footer-fineprint {
    display: none;
  }

  .footer-form-body {
    gap: 8px;
  }

  .footer-form input,
  .footer-field input,
  .footer-submit {
    height: 38px;
  }

  .footer-submit-row {
    gap: 0;
  }

  .footer-bottom {
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .footer-wordmark-img {
    max-height: 40px;
    width: min(100%, 190px);
  }

  .footer-grid {
    padding: 12px 10px;
  }
}

@media (max-width: 760px) {
  .testimonial-nav,
  .testimonial-actions {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .footer-bottom-glow {
    bottom: -92px;
    display: block;
    height: 300px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 155vw;
  }

  .footer-bottom-glow img {
    height: 200%;
    left: -32%;
    top: -50%;
    width: 164%;
  }
}

@media (max-width: 420px) {
  .footer-bottom-glow {
    bottom: -82px;
    height: 260px;
    width: 175vw;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body > main,
  .hero,
  .section,
  .footer {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .faq-tabs {
    align-items: stretch;
    max-width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
    width: 100%;
  }

  .faq-tab-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    min-width: 0;
    width: 100%;
  }

  .faq-tab {
    flex: initial;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 12px 14px;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .faq-tab-indicator {
    display: none;
  }

  .faq .section-title {
    min-width: 0;
    overflow-wrap: anywhere;
    width: 100%;
  }

  .faq-groups,
  .faq-group,
  .faq-grid,
  .faq-item,
  .faq-item summary,
  .faq-item p {
    max-width: 100%;
    min-width: 0;
  }

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

  .faq-group h3,
  .faq-item summary,
  .faq-item p {
    overflow-wrap: anywhere;
    white-space: normal;
    width: 100%;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 12px;
    justify-content: space-between;
    min-height: auto;
    padding: 20px;
  }

  .faq-item[open] {
    padding: 20px;
  }

  .faq-item[open] summary {
    padding: 0;
  }

  .faq-item summary::after {
    flex: 0 0 32px;
    height: 32px;
    margin-left: 0;
    width: 32px;
  }

  .faq-item p,
  .faq-item[open] p {
    padding-top: 18px;
  }

  .zero-pill,
  .zero-pill span,
  .steps-eyebrow,
  .steps-title {
    min-width: 0;
    white-space: normal;
  }

  .steps-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps-copy {
    align-items: center;
    min-width: 0;
    text-align: center;
    width: 100%;
  }

  .steps-copy .btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: min(310px, 100%) !important;
  }

  .steps-track {
    flex: none;
    height: auto;
    min-height: 0;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    width: 100%;
  }

  .steps-list {
    bottom: auto;
    gap: 18px;
    left: 42px;
    position: relative;
    top: auto;
    width: calc(100% - 42px);
  }

  .step-divider {
    flex-basis: 1px;
  }

  .steps-marker {
    left: 4px;
  }
}

@media (max-width: 380px) {
  .steps-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .steps-copy .btn {
    font-size: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .steps-list {
    left: 34px;
    width: calc(100% - 34px);
  }
}

/* CTA action buttons: width + style matched to the nav CTA button
   (.btn-small, 310px). Same 47px inset-pill hover/press as every .btn.
   Two 310px buttons need ~636px, so the row wraps and centers when it
   can't fit side by side. */
.cta-actions {
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
  width: auto;
}

.cta-actions .btn {
  --btn-hover-duration: 300ms;
  border-radius: 16px;
  height: 53px;
  overflow: hidden;
  padding: 16px 32px;
}

.cta-actions .btn-primary,
.cta-actions .btn-outline {
  max-width: 100%;
  width: 310px;
}

@media (max-width: 760px) {
  .cta-actions {
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    max-width: 310px;
    width: min(100%, 310px);
  }
}

@media (max-width: 760px) {
  .hero-trust {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
    width: 100%;
  }

  .hero-trust-item {
    align-items: center;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .hero-trust-row {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  body > main > .hero:first-child .hero-eyebrow {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 18px;
    text-align: center;
    width: min(368px, 100%);
  }

  body > main > .hero:first-child .hero-eyebrow span:last-child {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 380px) {
  body > main > .hero:first-child .hero-eyebrow {
    padding-left: 18px;
    padding-right: 16px;
    width: min(356px, 100%);
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .nav {
    padding-left: clamp(20px, 3vw, 40px);
    padding-right: clamp(20px, 3vw, 40px);
  }

  .nav-inner {
    gap: clamp(10px, 1.2vw, 18px);
    padding-left: clamp(20px, 3.2vw, 42px);
    padding-right: clamp(20px, 3.2vw, 42px);
  }

  .logo-img {
    height: clamp(34px, 4vw, 44px);
  }

  .nav-beta {
    font-size: clamp(11px, 1.25vw, 16px);
  }

  .nav-links {
    flex: 1 1 auto;
    gap: clamp(4px, 0.9vw, 14px);
    justify-content: center;
    min-width: 0;
  }

  .nav-links a {
    flex: 0 1 auto;
    font-size: clamp(11px, 1.25vw, 15px);
    padding: 10px clamp(6px, 1vw, 12px);
    white-space: nowrap;
  }

  .nav-actions {
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-actions .btn {
    font-size: clamp(11px, 1.1vw, 14px);
    max-width: 240px;
    min-width: 0;
    padding-left: clamp(14px, 1.8vw, 24px);
    padding-right: clamp(14px, 1.8vw, 24px);
    width: clamp(204px, 22vw, 260px) !important;
  }
}

.hero-eyebrow {
  box-sizing: border-box;
  justify-content: center;
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  width: fit-content;
}

.hero-eyebrow span:last-child {
  display: block;
  text-align: center;
}

@media (max-width: 760px) {
  body > main > .hero:first-child .hero-eyebrow {
    padding-left: 20px;
    padding-right: 20px;
    width: fit-content;
  }
}

@media (max-width: 380px) {
  body > main > .hero:first-child .hero-eyebrow {
    padding-left: 18px;
    padding-right: 18px;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .firstapp-fires-stats {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    width: 100%;
  }

  .firstapp-stat,
  .firstapp-stat-waitlist {
    align-items: center;
    justify-self: center;
    max-width: 260px;
    text-align: center;
    width: 100%;
  }

  .firstapp-stat-row {
    gap: 8px;
    justify-content: center;
    width: auto;
  }

  .firstapp-stat span {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero-cta,
  .cta-actions,
  .patient-download-actions,
  .firstapp-download-actions,
  .cta-download-actions,
  .footer-submit-row {
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-cta,
  .cta-actions,
  .patient-download-actions,
  .firstapp-download-actions,
  .cta-download-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta .btn,
  .cta-actions .btn,
  .steps-copy .btn,
  .footer-submit {
    --btn-hover-hidden-layer-width: calc(100% - 88px) !important;
    --btn-hover-layer-start-x: calc(-100% - 16px) !important;
    --btn-hover-layer-width: calc(100% - 36px) !important;
    flex: 0 1 auto;
    min-width: 0;
    width: clamp(244px, 34vw, 310px) !important;
  }

  .hero-cta .figma-how-button {
    flex: 0 1 auto;
    min-width: 0;
    width: clamp(220px, 30vw, 256px);
  }

  .store-badge {
    flex: 0 0 216px;
  }

  .footer-submit-row {
    flex-wrap: wrap;
    overflow: visible;
  }

  .footer-submit {
    max-width: 310px;
  }
}

@media (max-width: 760px) {
  .hero-cta,
  .cta-actions,
  .patient-download-actions,
  .firstapp-download-actions,
  .cta-download-actions,
  .footer-submit-row {
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    overflow: visible;
  }

  .hero-cta,
  .cta-actions,
  .footer-submit-row {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn,
  .hero-cta .figma-how-button,
  .cta-actions .btn,
  .steps-copy .btn,
  .footer-submit {
    --btn-hover-hidden-layer-width: calc(100% - 72px) !important;
    --btn-hover-layer-start-x: calc(-100% - 16px) !important;
    --btn-hover-layer-width: calc(100% - 24px) !important;
    font-size: clamp(14px, 3.85vw, 16px);
    max-width: 310px;
    min-width: 0;
    padding-left: 22px;
    padding-right: 22px;
    width: min(100%, 310px) !important;
  }

  .hero-cta .figma-how-button {
    display: inline-flex;
  }

  .btn-hover-layer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .btn-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .patient-download-actions,
  .firstapp-download-actions,
  .firstapp-download-actions-primary,
  .cta-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100%, 448px);
  }

  .store-badge {
    flex: 0 1 216px;
    width: 216px;
  }
}

@media (max-width: 560px) {
  .patient-download-actions,
  .firstapp-download-actions,
  .firstapp-download-actions-primary,
  .cta-download-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    width: min(100%, 216px);
  }

  .store-badge,
  .store-badge.is-disabled,
  .store-badge.is-disabled:hover,
  .store-badge.is-disabled:focus-visible,
  .store-badge.is-disabled:active {
    flex-basis: auto;
    max-width: 216px;
    width: 216px;
  }
}

.firstapp-fires-copy .firstapp-fires-stats {
  align-self: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: min(453px, 100%);
}

.firstapp-fires-copy .firstapp-stat,
.firstapp-fires-copy .firstapp-stat-waitlist {
  align-items: center;
  text-align: center;
}

.firstapp-fires-copy .firstapp-stat-row {
  gap: 8px;
  justify-content: center;
  width: auto;
}

.firstapp-fires-copy .firstapp-stat span {
  display: block;
  text-align: center;
  width: 100%;
}

@media (max-width: 760px) {
  .firstapp-fires-copy .firstapp-fires-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    max-width: 280px;
    width: 100%;
  }

  .firstapp-fires-copy .firstapp-stat,
  .firstapp-fires-copy .firstapp-stat-waitlist {
    justify-self: center;
    max-width: 260px;
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .footer-grid {
    align-items: center;
  }

  .footer-wordmark {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: visible;
    text-align: center;
    width: 100%;
  }

  .footer-wordmark-img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-height: clamp(86px, 13vw, 132px);
    max-width: 100%;
    object-fit: contain;
    width: min(78vw, 760px);
  }

  .footer-tagline {
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .footer-wordmark {
    align-items: flex-start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    overflow: visible;
    padding-left: clamp(4px, 2vw, 18px);
    padding-right: clamp(4px, 2vw, 18px);
    text-align: left;
    width: 100%;
  }

  .footer-wordmark-img {
    flex: 0 0 auto;
    height: auto;
    margin: 0;
    max-height: none;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    width: 100%;
  }

  .footer-tagline {
    display: block;
    flex: 0 0 auto;
    margin: 0;
    position: static;
    text-align: left;
    white-space: normal;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .footer-wordmark {
    gap: 6px;
  }

  .footer-wordmark-img {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .footer-tagline {
    display: block;
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .footer-tagline {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  body > main > .hero:first-child .hero-title {
    overflow: visible;
  }

  body > main > .hero:first-child .hero-title-line {
    background: none;
    display: block;
    padding-left: 0;
    padding-right: 0;
    white-space: normal;
  }

  body > main > .hero:first-child .hero-title-line::after {
    content: none;
  }

  body > main > .hero:first-child .hero-title-highlight {
    -webkit-box-decoration-break: clone;
    background: linear-gradient(
      to bottom,
      transparent 0 32%,
      var(--primary-light-blue-150) 32% 76%,
      transparent 76% 100%
    );
    box-decoration-break: clone;
    padding-left: 0.04em;
    padding-right: 0.04em;
  }
}

@media (max-width: 760px) {
  .firstapp .firstapp-download-actions,
  .firstapp .firstapp-download-actions-primary {
    align-self: center;
    box-sizing: border-box;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: stretch;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw - 64px);
    min-width: 0;
    overflow: hidden;
    width: min(100%, 340px);
  }

  .firstapp .firstapp-download-actions .store-badge,
  .firstapp .firstapp-download-actions .store-badge.is-disabled,
  .firstapp .firstapp-download-actions .store-badge.is-disabled:hover,
  .firstapp .firstapp-download-actions .store-badge.is-disabled:focus-visible,
  .firstapp .firstapp-download-actions .store-badge.is-disabled:active {
    box-sizing: border-box;
    flex: none;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

  .firstapp .firstapp-download-actions .store-badge-copy,
  .firstapp .firstapp-download-actions .store-badge-google .store-badge-copy {
    left: 40px;
    width: calc(100% - 46px);
  }

  .firstapp .firstapp-download-actions .store-badge-name {
    font-size: clamp(14px, 4.1vw, 16px);
  }

  .firstapp .firstapp-download-actions .store-badge-google .store-badge-name {
    font-size: clamp(12px, 3.7vw, 13.5px);
  }
}
