:root {
  /* Color */
  --color-surface-page: oklch(1 0 0);
  --color-surface-card: oklch(1 0 0);
  --color-surface-subtle: oklch(0.97 0.01 250);
  --color-surface-dark: oklch(0.18 0.05 265);
  --color-text-primary: oklch(0.18 0.04 264);
  --color-text-muted: oklch(0.5 0.03 257);
  --color-text-inverse: #fff;
  --color-border-soft: oklch(0.92 0.01 255);
  --color-brand-primary: oklch(0.55 0.24 263);
  --color-brand-blue-200: oklch(0.882 0.059 254.128);
  --color-brand-blue-300: oklch(0.809 0.105 251.813);
  --color-brand-blue-400: oklch(0.707 0.165 254.624);
  --color-brand-blue-500: oklch(0.623 0.214 259.815);

  /* Backward-compatible aliases */
  --background: var(--color-surface-page);
  --foreground: var(--color-text-primary);
  --card: var(--color-surface-card);
  --primary: var(--color-brand-primary);
  --secondary: var(--color-surface-subtle);
  --muted: var(--color-text-muted);
  --border: var(--color-border-soft);
  --navy: var(--color-surface-dark);
  --blue-200: var(--color-brand-blue-200);
  --blue-300: var(--color-brand-blue-300);
  --blue-400: var(--color-brand-blue-400);
  --blue-500: var(--color-brand-blue-500);
  --white: var(--color-text-inverse);

  /* Type */
  --font-family-base:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-family-mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --line-height-tight: 1.05;
  --line-height-heading: 1.15;
  --line-height-copy: 1.65;
  --tracking-tight: -0.025em;
  --tracking-wide: 0.1em;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-7-5: 1.875rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-15: 3.75rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-25: 6.25rem;

  /* Radius */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  /* Layout */
  --container: 75rem;
  --container-narrow: 53.75rem;
  /* Motion / effects */
  --duration-fast: 0.2s;
  --easing-standard: ease;
  --shadow-focus: 0 0 0 3px color-mix(in oklab, var(--primary) 35%, transparent);

  /* Override design system tokens for this landing specific needs */
  --font-heading: var(--font-family-base);
  --font-body: var(--font-family-base);
  --font-ui: var(--font-family-base);
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-subset-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4,
p,
blockquote,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 5rem), var(--container));
  margin: 0 auto;
}

.container--narrow {
  width: min(calc(100% - 5rem), var(--container-narrow));
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
}

h4 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--foreground);
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  transition:
    background var(--duration-fast) var(--easing-standard),
    box-shadow var(--duration-fast) var(--easing-standard);
  box-shadow: 0 29px 58px color-mix(in oklab, var(--primary) 24%, transparent);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: color-mix(in oklab, var(--primary) 90%, black 10%);
  box-shadow: 0 20px 40px color-mix(in oklab, var(--primary) 32%, transparent);
}

.btn-primary:focus-visible,
.faq-trigger:focus-visible {
  outline: var(--shadow-focus);
  outline-offset: 3px;
}

.hero {
  background: var(--navy);
  padding: var(--space-25) 0;
	max-width: unset;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 35%, transparent);
  border-radius: var(--radius-pill);
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: var(--space-7-5);
}

.hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-7-5);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: var(--space-10);
}

.hero__cta-note {
  margin-top: var(--space-5);
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.section {
  padding: var(--space-25) 0;
  margin: 0;
	max-width:unset;
}

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

.section--dark {
  background: var(--navy);
  color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-5);
}

.section--dark .section__label {
  color: #6fa3ff;
}

.section__heading {
  margin-bottom: var(--space-5);
}

.section__intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: var(--space-15);
  line-height: 1.65;
}

.section__intro--tight {
  margin-bottom: var(--space-10);
}

.section__text-intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: var(--space-7-5);
}

.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.65);
}

.problem__lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 780px;
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.problem__list li {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--foreground);
  line-height: 1.65;
}

.problem__list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 9px;
}

.blockquote {
  border-left: 4px solid var(--primary);
  background: var(--secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-7-5) var(--space-10);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.6;
  max-width: 720px;
}

.blockquote--testimonial {
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-10);
  margin-bottom: var(--space-10);
}

.blockquote--testimonial .quote-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.blockquote--testimonial .quote-attribution {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-5);
  align-items: start;
}

.pillar__num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 18%, transparent);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar h4 {
  color: var(--foreground);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.pillar p {
  margin-top: 0;
  font-size: 15px;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7-5);
  margin-bottom: var(--space-15);
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.approach-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.approach-card__icon {
  width: 48px;
  height: 48px;
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card__icon svg {
  width: 24px;
  height: 24px;
}

.approach-card h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.proof-strip {
  background: var(--navy);
  padding: var(--space-20) 0;
}

.proof-strip .container {
  max-width: 60rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  text-align: center;
}

@media (max-width: 700px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-7-5);
  }
}

.proof-tile__number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.proof-tile__number--compact {
/*   font-size: clamp(22px, 3vw, 36px); */
}

.proof-tile__number span {
  color: var(--primary);
  font-size: 0.65em;
  vertical-align: super;
}

.proof-tile__label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.proof-tile__divider {
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin: 12px auto;
  border-radius: 2px;
}

.proof-strip__footnote {
  margin-top: var(--space-10);
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-15);
  align-items: start;
  margin-bottom: var(--space-15);
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

.case-stat-pair {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.case-stat {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7-5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.case-stat__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.case-stat__value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.case-stat__value--compact {
  font-size: 20px;
  line-height: 1.3;
}

.case-stat__sub {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.case-cta-copy {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: var(--space-7-5);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7-5);
}

@media (max-width: 900px) {
  .objections-grid {
    grid-template-columns: 1fr;
  }
}

.objection-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: 0 29px 58px color-mix(in oklab, var(--primary) 24%, transparent);
}

.objection-card__q {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.objection-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.icp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.icp-list li {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--foreground);
  line-height: 1.65;
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-7-5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.icp-list li::before {
  content: "\2713";
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 8%, transparent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.icp-cta-note {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: var(--space-7-5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7-5);
  margin-bottom: var(--space-10);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: 0 29px 58px color-mix(in oklab, var(--primary) 24%, transparent);
  border: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--easing-standard);
}

.why-card:hover {
  border-color: color-mix(in oklab, var(--primary) 20%, transparent);
}

.why-card h4 {
  font-size: 18px;
  color: var(--foreground);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.why-firm-note {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--foreground);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: var(--space-10);
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-7-5) var(--space-10);
  border-left: 4px solid var(--primary);
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.faq-item {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-7-5) 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  gap: var(--space-6);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--duration-fast) var(--easing-standard);
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger:focus {
  outline: none;
}

.faq-indicator {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 8%, transparent);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ui);
  line-height: 1;
  text-align: center;
  padding: 0;
  transition:
    background var(--duration-fast) var(--easing-standard),
    color var(--duration-fast) var(--easing-standard);
}

.faq-trigger[aria-expanded="true"] .faq-indicator {
  background: var(--primary);
  color: #ffffff;
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-body.open {
  max-height: none;
}

.faq-body__inner {
  padding: 0 0 var(--space-7-5) 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

.final-cta {
  background: var(--navy);
  padding: var(--space-25) 0;
  text-align: center;
}

.final-cta h2 {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto var(--space-10);
}

.final-cta__note {
  margin-top: var(--space-5);
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: var(--space-5);
}

.section-divider--light {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }

  .container--narrow {
    width: min(calc(100% - 2.5rem), var(--container-narrow));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
