:root {
  --brand-50: #eef3ff;
  --brand-100: #d9e6ff;
  --brand-200: #bfd3ff;
  --brand-400: #6e9bf8;
  --brand-500: #4c84f6;
  --brand-600: #3d6fe0;
  --brand-700: #2f57b4;
  --brand-800: #244593;

  --ink-900: #0b1530;
  --ink-800: #1a2547;
  --ink-700: #2f3a5c;
  --ink-600: #4a5578;
  --ink-500: #5f6a8a;
  --ink-400: #8390ad;
  --ink-300: #b8c0d4;
  --ink-200: #d8dde9;
  --ink-100: #ecf0f8;
  --ink-50: #f6f8fc;

  --slate-50: rgba(248, 250, 252, 0.8);
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: var(--ink-500);
  --slate-600: var(--ink-600);
  --slate-700: var(--ink-700);
  --slate-800: var(--ink-800);
  --slate-900: var(--ink-900);

  --success-500: #16a34a;
  --success-600: #15803d;
  --success-50: rgba(22, 163, 74, 0.10);

  --warn-500: #d97706;
  --warn-600: #b45309;
  --warn-50: rgba(245, 158, 11, 0.12);

  --danger-500: #dc2626;
  --danger-600: #b91c1c;
  --danger-50: rgba(239, 68, 68, 0.10);

  --body-bg: #ffffff;
  --surface-1: #ffffff;
  --surface-2: #f6f8fc;
  --surface-3: var(--brand-50);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -6px rgba(15, 23, 42, 0.10), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px -12px rgba(15, 23, 42, 0.16), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 60px -30px rgba(31, 55, 110, 0.40), 0 6px 14px -8px rgba(15, 23, 42, 0.10);
  --shadow-brand: 0 18px 40px -18px rgba(76, 132, 246, 0.55);
  --shadow-soft: var(--shadow-md);

  --hairline: 1px solid rgba(15, 23, 42, 0.07);
  --hairline-strong: 1px solid rgba(15, 23, 42, 0.10);

  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-brand: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  --gradient-brand-strong: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
}

* {
  box-sizing: border-box;
}

html {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface-1);
  color: var(--ink-700);
}

::selection {
  background: var(--brand-100);
  color: var(--brand-800);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

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

table {
  border-collapse: collapse;
}

.shell {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

@media (max-width: 480px) {
  .shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.brand-wordmark {
  font-size: clamp(1.05rem, 1.8vw + 0.5rem, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.nav-cta {
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  line-height: 1.1;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

@media (max-width: 380px) {
  .nav-cta {
    padding: 0.35rem 0.55rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 768px) {
  .nav-cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    line-height: normal;
  }
}

.bg-hero-glow {
  background:
    radial-gradient(60% 60% at 20% 0%, rgba(76, 132, 246, 0.16), transparent 60%),
    radial-gradient(50% 60% at 85% 10%, rgba(76, 132, 246, 0.14), transparent 60%),
    linear-gradient(180deg, var(--brand-50) 0%, #ffffff 70%);
}

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.site-header .shell {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.nav-list {
  display: none;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  color: var(--ink-600);
  font-size: 0.975rem;
  font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-list a:hover {
  color: var(--brand-700);
  background: var(--brand-50);
}

.nav-list a[aria-current="page"] {
  color: var(--brand-700);
}

.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-500);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-700);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.nav-toggle:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  background: var(--brand-50);
}

.nav-toggle-bars {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--t-base), top var(--t-base), opacity var(--t-base);
}

.nav-toggle-bars::before { top: -0.35rem; }
.nav-toggle-bars::after  { top:  0.35rem; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0; transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% - 0.25rem);
  padding: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu[data-open="true"] {
  display: block;
}

.mobile-menu ul {
  display: grid;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--brand-700);
  background: var(--brand-50);
}

@media (min-width: 768px) {
  .nav-list { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Breadcrumbs ---------- */
nav[aria-label="Breadcrumb"] {
  padding-top: 1.5rem;
  padding-bottom: 0.25rem;
}

nav[aria-label="Breadcrumb"] ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

nav[aria-label="Breadcrumb"] li {
  display: inline-flex;
  align-items: center;
  color: var(--ink-500);
}

nav[aria-label="Breadcrumb"] a {
  color: var(--ink-500);
  font-weight: 500;
  padding: 0.15rem 0;
  border-radius: 4px;
  transition: color var(--t-fast);
}

nav[aria-label="Breadcrumb"] a:hover {
  color: var(--brand-700);
}

nav[aria-label="Breadcrumb"] li[aria-current="page"] {
  color: var(--ink-800);
  font-weight: 600;
}

nav[aria-label="Breadcrumb"] li.text-slate-300 {
  color: var(--ink-300);
  user-select: none;
}

/* ---------- Section rhythm ---------- */
.section {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-tint {
  background: var(--surface-2);
}

.section-brand-tint {
  background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%);
}

.section-header {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header .section-title {
  margin-bottom: 0.75rem;
}

.section-header .summary {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

/* Original sections use .shell + .py-8; provide a tighter inline scale */
section.shell { padding-top: clamp(2.25rem, 4.5vw, 4rem); padding-bottom: clamp(2.25rem, 4.5vw, 4rem); }
section.shell.section-flush { padding-top: 0; }

/* Full-bleed tinted section background (works with .shell sections) */
.section-tint-wrap {
  position: relative;
  z-index: 0;
}

.section-tint-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--surface-2);
}

/* Problem list (4 simple bullet cards) */
.problem-list li {
  position: relative;
  padding: 1rem 1.1rem 1rem 2.75rem;
  border: var(--hairline);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.problem-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: var(--shadow-sm);
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.12);
  box-shadow: inset 0 0 0 2px rgba(220, 38, 38, 0.35);
}

.problem-list li::after {
  content: "!";
  position: absolute;
  left: 1.4rem;
  top: 1.05rem;
  color: var(--danger-600);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}

/* ---------- Solves-the-problem icon ---------- */
.solve-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid rgba(76, 132, 246, 0.18);
}

.solve-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* ---------- How it works step layout ---------- */
.how-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .how-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 2.5rem;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(76, 132, 246, 0.28) 0 6px, transparent 6px 14px);
    z-index: 0;
    pointer-events: none;
  }
}

.how-grid .panel-muted {
  position: relative;
  z-index: 1;
}

/* ---------- Final CTA branded ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  border: 0;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(80% 100% at 100% 100%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 60%, var(--brand-800) 100%);
  color: #fff;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.cta-final .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-final h2,
.cta-final .section-title {
  color: #fff;
}

.cta-final p,
.cta-final .summary {
  color: rgba(255, 255, 255, 0.85);
}

.cta-final .btn-primary {
  background: #fff;
  color: var(--brand-700);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-final .btn-primary:hover {
  background: var(--brand-50);
  color: var(--brand-800);
}

.cta-final .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.40);
  color: #fff;
}

.cta-final .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-brand), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), filter var(--t-base);
}

.btn-primary:hover {
  background: var(--gradient-brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 22px 44px -18px rgba(76, 132, 246, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.btn-secondary:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  background: var(--brand-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:active {
  transform: translateY(0);
}

.panel {
  padding: 2rem;
  border: var(--hairline);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
}

.hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
  align-self: start;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 38rem;
  justify-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px -28px -16px -12px;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(76, 132, 246, 0.28), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(76, 132, 246, 0.18), transparent 75%);
  filter: blur(8px);
  pointer-events: none;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.preview-tab {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}

.preview-tab:hover {
  border-color: rgba(76, 132, 246, 0.35);
  color: var(--brand-700);
  background: var(--brand-50);
}

.preview-tab-active {
  border-color: rgba(76, 132, 246, 0.45);
  background: var(--brand-50);
  color: var(--brand-700);
  box-shadow: 0 0 0 3px rgba(76, 132, 246, 0.10);
}

.preview-panel {
  display: none;
}

.preview-panel-active {
  display: block;
}

.panel-muted {
  padding: 1.75rem;
  border: var(--hairline);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.panel-muted:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 132, 246, 0.25);
  box-shadow: var(--shadow-md);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(76, 132, 246, 0.18);
}

.hero-title {
  margin: 0;
  max-width: 18ch;
  color: var(--ink-900);
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-title {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(1.625rem, 2.2vw + 0.75rem, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.summary {
  max-width: 40rem;
  color: var(--ink-500);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.body-copy {
  max-width: 56rem;
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.link-card,
.list-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: var(--hairline);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.list-card:hover,
.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 132, 246, 0.30);
  box-shadow: var(--shadow-md);
}

.list-card h3,
.link-card h3 {
  color: var(--ink-900);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
}

.pricing-card-featured {
  border-color: var(--brand-500);
  background: linear-gradient(180deg, rgba(76, 132, 246, 0.04), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 60px -20px rgba(76, 132, 246, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 1.25rem;
}

.pricing-plan-name {
  margin: 0;
  color: var(--slate-800);
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-price {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.pricing-amount {
  color: var(--slate-900);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-period {
  color: var(--slate-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-description {
  margin: 0.75rem 0 0;
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.4;
}

.pricing-check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: #16a34a;
  margin-top: 0.0625rem;
}

.pricing-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brand-200);
  border-radius: 0.5rem;
  background: rgba(76, 132, 246, 0.06);
  color: var(--brand-600);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pricing-cta:hover {
  background: rgba(76, 132, 246, 0.12);
  border-color: var(--brand-500);
}

.pricing-cta-featured {
  border-color: transparent;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  color: #fff;
}

.pricing-cta-featured:hover {
  background: linear-gradient(90deg, var(--brand-600), var(--brand-700));
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(76, 132, 246, 0.20);
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-600);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
}

.logo-pill:hover {
  color: var(--brand-700);
  background: var(--brand-50);
  border-color: rgba(76, 132, 246, 0.30);
}

.trust-grid {
  display: grid;
  gap: 2rem;
}

.stat-grid {
  display: grid;
  gap: 0.75rem;
}

.stat-card {
  padding: 1.25rem 1.35rem;
  border: var(--hairline);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 132, 246, 0.25);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  margin: 0;
  color: var(--brand-700);
  font-size: clamp(1.85rem, 2.5vw + 0.5rem, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  margin: 0.5rem 0 0;
  color: var(--ink-500);
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-points {
  list-style: disc;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-points li + li {
  margin-top: 0.4rem;
}

.card-points li::marker {
  color: var(--brand-500);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--t-base), gap var(--t-base);
}

.card-link::after {
  content: "→";
  display: inline-block;
  transition: transform var(--t-base);
  font-weight: 500;
}

.card-link:hover {
  color: var(--brand-700);
  gap: 0.55rem;
}

.card-link:hover::after {
  transform: translateX(3px);
}

.link-card .card-link,
.link-card a[href] {
  transition: color var(--t-base);
}

.link-card a[href]:hover {
  color: var(--brand-700);
}

.screenshot-frame-compact {
  padding: 0.85rem;
}

.demo-note {
  margin-top: 0.75rem;
  color: var(--slate-500);
  font-size: 0.78rem;
  line-height: 1.5;
}

.demo-shot {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.demo-shot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.82);
}

.demo-shot-title {
  color: var(--slate-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.demo-shot-body {
  padding: 0.85rem 0.9rem 0.95rem;
}

.demo-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.45rem 0;
  color: var(--slate-700);
  font-size: 0.72rem;
  font-weight: 600;
}

.demo-stat-row + .demo-stat-row {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
}

.demo-compare {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-box-label {
  color: var(--slate-700);
  font-size: 0.68rem;
  font-weight: 700;
}

.demo-steps {
  gap: 0.4rem;
}

.screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.screen-dots {
  display: flex;
  gap: 0.35rem;
}

.screen-dots span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(76, 132, 246, 0.35);
}

.screen-toplabel {
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.screen-metrics {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-chip {
  padding: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
}

.metric-label {
  display: block;
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  display: block;
  margin-top: 0.45rem;
  color: var(--slate-800);
  font-size: 1rem;
  font-weight: 600;
}

.screen-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-card {
  min-height: 5.5rem;
  padding: 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
}

.screen-card-title {
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.screen-card-wide {
  grid-column: span 2;
}

.screen-line {
  height: 0.65rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
}

.screen-line:first-child {
  margin-top: 0;
}

.screen-line-lg {
  width: 78%;
}

.screen-line-short {
  width: 58%;
}

.screen-pill {
  height: 1.5rem;
  width: 4.25rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: rgba(76, 132, 246, 0.18);
}

.screen-chart {
  height: 7rem;
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(76, 132, 246, 0.18), rgba(76, 132, 246, 0.03)),
    repeating-linear-gradient(
      to right,
      rgba(148, 163, 184, 0.15),
      rgba(148, 163, 184, 0.15) 1px,
      transparent 1px,
      transparent 3rem
    );
}

.uptime-shot,
.alerts-shot {
  max-width: 30rem;
  margin: 0 auto;
}

.uptime-status-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.uptime-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
}

.uptime-status-title {
  color: var(--slate-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.uptime-status-subtitle {
  margin-top: 0.28rem;
  color: var(--slate-500);
  font-size: 0.72rem;
}

.uptime-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.uptime-pill-good {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.uptime-pill-warn {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.uptime-pill-bad {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.journey-shot {
  max-width: 34rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.journey-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.88);
}

.journey-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.journey-brandmark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-600));
}

.journey-domain {
  color: var(--slate-800);
  font-size: 0.92rem;
  font-weight: 600;
}

.journey-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.journey-tab {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 600;
}

.journey-tab-active {
  background: rgba(76, 132, 246, 0.12);
  color: var(--brand-600);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.journey-main {
  padding: 0.9rem;
}

.journey-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.journey-kicker {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.journey-title {
  margin: 0.35rem 0 0;
  color: var(--slate-800);
  font-size: 1rem;
  font-weight: 600;
}

.journey-title span {
  color: #16a34a;
}

.journey-title-highlight-success {
  color: #16a34a;
}

.journey-title-highlight-danger {
  color: #b91c1c;
}

.journey-subtitle {
  margin: 0.35rem 0 0;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.journey-badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.journey-badge {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--slate-600);
  font-size: 0.7rem;
  font-weight: 600;
}

.journey-badge-success {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.18);
  color: #15803d;
}

.journey-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.journey-steps {
  display: grid;
  gap: 0.45rem;
}

.journey-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.75rem;
  background: rgba(248, 250, 252, 0.72);
  color: var(--slate-700);
  font-size: 0.72rem;
  font-weight: 500;
}

.journey-step small {
  display: block;
  margin-top: 0.12rem;
  color: var(--slate-500);
  font-size: 0.62rem;
  font-weight: 600;
}

.journey-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-dot {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.status-dot-good {
  background: #16a34a;
  box-shadow: 0 0 0 0.18rem rgba(22, 163, 74, 0.14);
}

.status-dot-warn {
  background: #d97706;
  box-shadow: 0 0 0 0.18rem rgba(245, 158, 11, 0.16);
}

.status-dot-bad {
  background: #dc2626;
  box-shadow: 0 0 0 0.18rem rgba(239, 68, 68, 0.15);
}

.journey-ms {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(76, 132, 246, 0.1);
  color: var(--brand-600);
  font-size: 0.68rem;
  font-weight: 700;
}

.health-preview-summary {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.85fr) minmax(0, 1.15fr);
  gap: 0.55rem;
}

.health-score-preview,
.health-insight-preview {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.98);
}

.health-score-label {
  color: var(--slate-500);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.health-score-preview strong {
  display: block;
  margin-top: 0.25rem;
  color: #15803d;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
}

.health-score-preview strong span {
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 700;
}

.health-score-preview p {
  margin: 0.45rem 0 0;
  color: var(--slate-600);
  font-size: 0.68rem;
  line-height: 1.45;
  font-weight: 600;
}

.journey-previews {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: start;
}

.journey-preview {
  min-height: 6.6rem;
  padding: 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.98);
}

.journey-preview-top {
  height: 1.5rem;
  border-radius: 0.55rem;
  background: rgba(148, 163, 184, 0.16);
}

.journey-preview-title {
  margin-top: 0.45rem;
  color: var(--slate-800);
  font-size: 0.7rem;
  font-weight: 700;
}

.journey-preview-label {
  color: var(--slate-800);
  font-size: 0.72rem;
  font-weight: 700;
}

.journey-preview-price {
  margin-top: 0.25rem;
  color: var(--brand-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.journey-preview-line {
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.journey-preview-line-short {
  width: 72%;
}

.journey-preview-cta {
  margin-top: 0.55rem;
  padding: 0.38rem 0.4rem;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

.journey-preview-note {
  margin-top: 0.5rem;
  color: var(--slate-500);
  font-size: 0.68rem;
  line-height: 1.45;
}

.settings-form {
  display: grid;
  gap: 1rem;
}

.settings-field {
  display: grid;
  gap: 0.35rem;
}

.settings-label {
  color: var(--slate-500);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.settings-input {
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.5rem;
  background: rgba(248, 250, 252, 0.72);
  color: var(--slate-700);
  font-size: 0.75rem;
  font-weight: 500;
}

.settings-url-list {
  display: grid;
  gap: 0.35rem;
}

.settings-url-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.5rem;
  background: rgba(248, 250, 252, 0.72);
  color: var(--slate-700);
  font-size: 0.72rem;
  font-weight: 500;
  font-family: monospace;
}

.settings-monitoring {
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.5rem;
  background: rgba(248, 250, 252, 0.72);
}

.settings-monitoring-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 500;
}

.settings-value {
  color: var(--slate-700);
  font-weight: 600;
}

.mini-feed {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.mini-feed-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-700);
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.4;
}

.compare-box {
  margin-top: 0.65rem;
  padding: 0.7rem;
  border-radius: 0.75rem;
  background: rgba(248, 250, 252, 0.82);
}

.alerts-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.alerts-title {
  color: var(--slate-800);
  font-size: 1rem;
  font-weight: 700;
}

.alerts-subtitle {
  margin-top: 0.35rem;
  color: var(--slate-500);
  font-size: 0.76rem;
}

.alerts-compare {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alerts-compare-card {
  padding: 0.8rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
}

.alerts-box {
  margin-top: 0.65rem;
  padding: 0.8rem;
  border-radius: 0.75rem;
  background: rgba(248, 250, 252, 0.82);
}

.alerts-line {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.alerts-line-lg {
  width: 80%;
}

.alerts-button {
  height: 1.65rem;
  width: 5.4rem;
  margin-top: 0.7rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
}

.alerts-missing {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 700;
}

.alerts-feed {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.alerts-feed-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.75rem;
  background: rgba(248, 250, 252, 0.72);
  color: var(--slate-700);
  font-size: 0.74rem;
  font-weight: 500;
}

/* App-style product preview — mirrors the northduty-front workspace */
.app-shot {
  max-width: 38rem;
  margin: 0 auto;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.1rem;
  background: #f8fafc;
  box-shadow: 0 24px 48px -32px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.app-shot-topbar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
}

.app-shot-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.app-shot-brandmark {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.42rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.app-shot-brandname {
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-shot-nav {
  display: flex;
  gap: 0.25rem;
  flex: 1 1 auto;
  justify-content: center;
}

.app-shot-navitem {
  padding: 0.35rem 0.7rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: var(--slate-500);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), box-shadow var(--t-base);
}

.app-shot-navitem:hover {
  color: var(--brand-700);
  background: rgba(76, 132, 246, 0.06);
}

.app-shot-navitem:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.app-shot-navitem-active {
  background: rgba(76, 132, 246, 0.12);
  color: var(--brand-700);
  box-shadow: inset 0 0 0 1px rgba(76, 132, 246, 0.18);
}

.app-shot-project {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.55rem 0.3rem 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.7rem;
  background: #ffffff;
  flex: 0 0 auto;
}

.app-shot-project-domain {
  color: var(--slate-800);
  font-size: 0.74rem;
  font-weight: 700;
}

.app-shot-project-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.app-shot-project-score-good {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.app-shot-project-score-bad {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.app-shot-body {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
}

.app-block {
  padding: 0.95rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.9rem;
  background: #ffffff;
}

.app-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.app-block-title {
  margin: 0;
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app-block-sub {
  margin: 0.18rem 0 0;
  color: var(--slate-500);
  font-size: 0.76rem;
  line-height: 1.45;
}

.app-pill-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.app-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--slate-600);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.app-pill-good {
  border-color: rgba(22, 163, 74, 0.22);
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.app-pill-warn {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.app-pill-bad {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.app-summary {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  align-items: center;
}

.app-score {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.app-score-ring {
  position: relative;
  width: 6.5rem;
  height: 6.5rem;
}

.app-score-ring svg {
  width: 100%;
  height: 100%;
}

.app-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.app-score-num {
  color: var(--ink-900);
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-score-out {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
}

.app-score-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.app-insights {
  display: grid;
  gap: 0.55rem;
}

.app-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.7rem;
  background: rgba(248, 250, 252, 0.7);
}

.app-insight strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.app-insight p {
  margin: 0.18rem 0 0;
  color: var(--slate-500);
  font-size: 0.72rem;
  line-height: 1.45;
}

.app-insight-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.app-insight-good .app-insight-bullet {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.app-insight-warn .app-insight-bullet {
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
}

.app-insight-bad .app-insight-bullet {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.app-breakdown {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-subscore {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.7rem;
  background: rgba(248, 250, 252, 0.7);
}

.app-subscore-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.app-subscore-label {
  color: var(--slate-600);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-subscore-value {
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-subscore-value small {
  margin-left: 0.1rem;
  color: var(--slate-500);
  font-size: 0.6rem;
  font-weight: 700;
}

.app-subscore-track {
  margin-top: 0.5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.85);
  overflow: hidden;
}

.app-subscore-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.app-subscore-fill-warn {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.app-subscore-fill-bad {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.app-flow {
  display: grid;
  gap: 0.4rem;
}

.app-flow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.65rem;
  background: rgba(248, 250, 252, 0.7);
}

.app-flow-text {
  color: var(--slate-700);
  font-size: 0.76rem;
  font-weight: 600;
}

.app-flow-meta {
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.app-previews {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-preview-card {
  min-height: 6.8rem;
  padding: 0.6rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.7rem;
  background: rgba(248, 250, 252, 0.7);
}

.app-preview-top {
  height: 1.6rem;
  border-radius: 0.45rem;
  background: rgba(148, 163, 184, 0.22);
}

.app-preview-title {
  margin-top: 0.45rem;
  color: var(--slate-800);
  font-size: 0.72rem;
  font-weight: 700;
}

.app-preview-price {
  margin-top: 0.25rem;
  color: var(--brand-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.app-preview-line {
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
}

.app-preview-line-short {
  width: 70%;
}

.app-preview-cta {
  margin-top: 0.55rem;
  padding: 0.32rem 0.4rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

.app-compare {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-compare-card {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.75rem;
  background: rgba(248, 250, 252, 0.7);
}

.app-compare-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--slate-600);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-compare-frame {
  padding: 0.6rem;
  border-radius: 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.app-compare-line {
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
}

.app-compare-line:first-child {
  margin-top: 0;
}

.app-compare-line-lg {
  width: 78%;
}

.app-compare-button {
  height: 1.55rem;
  width: 5rem;
  margin-top: 0.6rem;
  border-radius: 0.4rem;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
}

.app-compare-missing {
  display: inline-flex;
  align-items: center;
  margin-top: 0.6rem;
  padding: 0.32rem 0.55rem;
  border: 1px dashed rgba(239, 68, 68, 0.45);
  border-radius: 0.4rem;
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.app-compare-note {
  margin: 0.55rem 0 0;
  color: var(--slate-500);
  font-size: 0.7rem;
  line-height: 1.45;
}

.app-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  color: var(--slate-700);
  font-size: 0.7rem;
}

@media (max-width: 720px) {
  .app-shot-nav {
    display: none;
  }

  .app-summary {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .app-breakdown {
    grid-template-columns: 1fr;
  }

  .app-previews {
    grid-template-columns: 1fr;
  }

  .app-compare {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.quote-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 1px dashed var(--slate-300);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-500);
  font-size: 0.95rem;
  font-weight: 500;
}

.quote-copy {
  margin: 1.5rem 0 0;
  color: var(--slate-700);
  font-size: 1.2rem;
  line-height: 1.7;
}

.quote-author {
  margin: 1.25rem 0 0;
  color: var(--slate-800);
  font-weight: 600;
}

.quote-role {
  margin: 0.35rem 0 0;
  color: var(--slate-500);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.min-w-full {
  min-width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-md {
  max-width: 28rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-slate-200 {
  border-color: var(--slate-200);
}

.border-slate-200\/80 {
  border-color: rgba(226, 232, 240, 0.8);
}

.text-left {
  text-align: left;
}

.align-top {
  vertical-align: top;
}

.last\:border-b-0:last-child {
  border-bottom-width: 0;
}

.bg-white {
  background: #fff;
}

.bg-white\/60 {
  background: rgba(255, 255, 255, 0.6);
}

.bg-white\/80 {
  background: rgba(255, 255, 255, 0.8);
}

.bg-slate-50\/80 {
  background: var(--slate-50);
}

.bg-\[\#F3F5FB\] {
  background: var(--body-bg);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to));
}

.from-\[\#EDF1FB\] {
  --tw-gradient-from: #edf1fb;
}

.via-\[\#EEF2FC\] {
  --tw-gradient-via: #eef2fc;
}

.to-\[\#F3F5FB\] {
  --tw-gradient-to: #f3f5fb;
}

.bg-\[radial-gradient\(120\%_95\%_at_25\%_0\%\,_rgba\(152\,181\,245\,0\.24\)\,_transparent_68\%\)\,radial-gradient\(120\%_95\%_at_80\%_0\%\,_rgba\(152\,181\,245\,0\.22\)\,_transparent_70\%\)\] {
  background-image: radial-gradient(120% 95% at 25% 0%, rgba(152, 181, 245, 0.24), transparent 68%),
    radial-gradient(120% 95% at 80% 0%, rgba(152, 181, 245, 0.22), transparent 70%);
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.04em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.leading-relaxed {
  line-height: 1.7;
}

.text-brand-600 {
  color: var(--brand-600);
}

.text-slate-300 {
  color: var(--slate-300);
}

.text-slate-500 {
  color: var(--slate-500);
}

.text-slate-600 {
  color: var(--slate-600);
}

.text-slate-700 {
  color: var(--slate-700);
}

.text-slate-800 {
  color: var(--slate-800);
}

.text-slate-900 {
  color: var(--slate-900);
}

.hover\:text-brand-700:hover {
  color: var(--brand-700);
}

.hover\:text-slate-700:hover {
  color: var(--slate-700);
}

.hover\:text-slate-900:hover {
  color: var(--slate-900);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.pointer-events-none {
  pointer-events: none;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-0 {
  top: 0;
}

.top-\[260px\] {
  top: 260px;
}

.h-\[260px\] {
  height: 260px;
}

.h-\[580px\] {
  height: 580px;
}

.z-10 {
  z-index: 10;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  .hero-panel {
    padding: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 36rem);
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  }

  .quote-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .screen-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .md\:grid-cols-\[1\.3fr_1fr_1fr_1fr\] {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-\[3rem\] {
    font-size: 3rem;
  }

  .md\:text-base {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .journey-shot {
    max-width: 100%;
  }

  .screen-metrics {
    grid-template-columns: 1fr;
  }

  .health-preview-summary {
    grid-template-columns: 1fr;
  }

  .journey-previews {
    grid-template-columns: 1fr;
  }

  .alerts-compare {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1\.15fr_0\.85fr\] {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
