:root {
  --teal: #0e5c7e;
  --teal-soft: rgba(14, 92, 126, 0.082);
  --teal-light: #7bc4dd;
  --ink: #1f2937;
  --muted: #6b7280;
  --body: #374151;
  --border: #e5e7eb;
  --surface: #f5f6f7;
  --surface-2: #eef1f3;
  --white: #fff;
  --accent-red: #c0584d;
  --green: #1f8a5c;
  --footer: #073a52;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08),                                
    0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(14, 92, 126, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.15s;
}

.dc-card {
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  background: var(--white);
}

.page-bg {
  background: var(--white);
  font-family: var(--font);
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
}

.nav-panel {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px 32px;
  margin-left: 24px;
  min-width: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: inherit;
  transition: color 0.15s ease, font-weight 0.15s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--teal);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-signin {
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
  text-decoration: none;
}

.nav-signin:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: var(--surface);
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav.is-nav-open .nav-toggle-bars {
  background: transparent;
}

.nav.is-nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.is-nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 36px;
  width: auto;
}

.site-logo--nav {
  height: 32px;
}

.site-logo--footer {
  height: 38px;
}

.site-logo--table {
  height: 32px;
}

.logo-text {
  line-height: 1;
}

.logo-text .brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  display: block;
}

.logo-text .tag {
  font-size: 10px;
  color: var(--teal);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 2px;
  display: block;
}

.btn-primary {
  padding: 11px 22px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  box-shadow: rgba(14, 92, 126, 0.15) 0 1px 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  padding: 11px 22px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--teal);
}

.btn-ghost:hover {
  background: var(--surface);
}

.shell {
  max-width: 1320px;
  margin: 0 auto;
}

.section {
  padding: 96px 56px;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--surface);
}

.section.compact-pad {
  padding: 36px 56px;
}

.hero {
  padding: 40px 56px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 0;
  align-items: center;
}

.hero-col-text {
  grid-column: 1;
  grid-row: 1;
}

.hero-stat-row {
  grid-column: 1;
  grid-row: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
}

.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--body);
  margin: 0 0 36px;
  max-width: 540px;
}

.lead-sm {
  font-size: 16px;
  line-height: 1.5;
}

.teal {
  color: var(--teal);
}

.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  width: 100%;
}

.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
}

.hero-visual-stage {
  position: relative;
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at 70% 30%,
    var(--teal-soft) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-visual .float-card {
  position: absolute;
}

.frame {
  position: relative;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
}

.float-card {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  min-width: 180px;
}

.float-card.top-right {
  top: 14%;
  right: -20px;
}

.float-card.bottom-left {
  bottom: 8%;
  left: -24px;
  background: var(--teal);
  color: var(--white);
  border: none;
  box-shadow: rgba(14, 92, 126, 0.35) 0 8px 24px;
}

.float-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.float-card.bottom-left .float-label {
  color: rgba(255, 255, 255, 0.85);
}

.float-value {
  font-size: 20px;
  color: var(--teal);
  font-weight: 700;
}

.float-card.bottom-left .float-value {
  color: var(--white);
  font-size: 18px;
}

.logos-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.logos-label {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.logo-item {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}

.center-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.left-head {
  text-align: left;
  max-width: none;
  margin-inline: 0;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 16px;
  max-width: 640px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.problem-cell {
  padding: 40px 32px;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.problem-cell:last-child {
  border-right: none;
}

.big-stat {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--accent-red);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cell-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 8px;
}

.cell-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.callout {
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: center;
}

.callout-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.callout p {
  margin: 0;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
}

.tabs-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 4px;
  margin-right: 32px;
  margin-bottom: -1px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

.tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.feature-grid.rev {
  grid-template-columns: 1fr 1.1fr;
}

h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
}

.feature-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

.frame-elevated {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: rgba(14, 92, 126, 0.18) 0 24px 50px -20px,
    rgba(0, 0, 0, 0.04) 0 4px 12px;
  background: var(--white);
}

.panel-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 32px;
}

.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pillar h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.lifecycle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.lifecycle-tabs {
  display: flex;
}

.lifecycle-tab {
  flex: 1;
  border: none;
  border-bottom: 3px solid transparent;
  border-right: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  padding: 24px 28px;
  text-align: left;
  transition: 0.2s;
}

.lifecycle-tab:last-child {
  border-right: none;
}

.lifecycle-tab.active {
  background: var(--surface);
  border-bottom-color: var(--teal);
}

.tab-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.tab-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  border-top: 1px solid var(--border);
}

.pane-stat {
  background: var(--teal);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
}

.pane-stat-num {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pane-stat-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.check-item strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.check-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  display: block;
}

.report {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: rgba(14, 92, 126, 0.18) 0 24px 50px -20px,
    rgba(0, 0, 0, 0.04) 0 4px 12px;
  overflow: hidden;
  min-width: 0;
}

.report-body {
  min-width: 0;
}

.report-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  background: #dcefdf;
  color: var(--green);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.report-row {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr 70px 80px;
  gap: 14px;
  align-items: center;
}

.thumb {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mono-sm {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}

.price {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.report-total {
  padding: 18px 24px;
  background: var(--teal);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

/* mobile wins list — hidden on desktop */
.compare-wins {
  display: none;
}

.compare-wins__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.compare-wins__item:last-child {
  border-bottom: none;
}

.compare-wins__item::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8 L6.5 10.5 L12 5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 8px no-repeat;
}

.compare-wins__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.compare-wins__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-wins__text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
}

.table-head {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.table-head > div,
.table-row > div {
  padding: 20px 28px;
}

.th-muted {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.th-brand {
  font-size: 14px;
  color: var(--teal);
  font-weight: 700;
  border-left: 1px solid var(--border);
  background: var(--white);
}

.table-row {
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.table-row:last-child {
  border-bottom: none;
}

.td-muted {
  color: var(--muted);
  line-height: 1.55;
  border-left: 1px solid var(--border);
}

.td-win {
  background: var(--white);
  border-left: 1px solid var(--border);
  line-height: 1.55;
  color: var(--ink);
}

.results {
  background: var(--footer);
  color: var(--white);
  border-bottom: none;
}

.results-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.results-top h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.results-top p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-bar > div {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-bar > div:last-child {
  border-right: none;
}

.stat-bar .n {
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat-bar .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.quote-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.quote {
  font-size: 24px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.avatar-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.snapshot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 10px;
}

.snapshot h4 {
  font-size: 11px;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}

.snapshot-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.snapshot-row:last-child {
  border-bottom: none;
}

.cta {
  padding: 120px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta .shell-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.cta p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 600px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  padding: 56px 56px 28px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

footer .blurb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
  margin-top: 16px;
}

footer .col h5 {
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}

footer .col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.footer-meta {
  max-width: 1320px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-meta .links {
  display: flex;
  gap: 20px;
}

.icon-check svg {
  display: block;
}

.site-footer {
  background: #0a2030;
  padding: 48px 24px 32px;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px 40px;
}

.site-footer__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-footer__blurb {
  font-size: 13px;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 280px;
}

.site-footer__heading {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__store-btn {
  text-decoration: none;
  padding: 10px 14px;
  background: #000;
  border-radius: 6px;
  font-size: 11px;
  color: #fff;
  min-width: 110px;
  display: block;
}

.site-footer__store-kicker {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.site-footer__store-name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

.site-footer__meta {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__col--stores {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .report {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .report-body {
    min-width: 480px;
  }

  .feature-grid,
  .feature-grid.rev {
    gap: 32px;
  }

  .pane-stat-num {
    font-size: clamp(40px, 12vw, 64px);
  }
}

@media (max-width: 1280px) {
  .section {
    padding: 80px 40px;
  }

  .section.compact-pad {
    padding: 32px 40px;
  }

  .hero {
    padding: 36px 40px 64px;
  }

  .nav {
    padding: 12px 40px;
  }

  .cta {
    padding: 88px 40px;
  }

  .pane-grid {
    padding: 40px 40px;
  }
}

@media (max-width: 1100px) {
  .feature-grid,
  .pane-grid,
  .results-top,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid.rev .report {
    display: none;
  }

  .feature-grid.rev {
    display: block;
  }

  .feature-grid.rev > div:first-child {
    width: 100%;
    max-width: none;
  }

  .pane-grid {
    gap: 20px;
    padding: 32px 32px;
  }

  .pane-stat {
    padding: 20px 24px;
    border-radius: 8px;
  }

  .pane-stat-num {
    font-size: 40px;
  }

  .pane-stat-sub {
    margin-top: 6px;
    font-size: 13px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .hero-col-text {
    order: 1;
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-visual {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .hero-stat-row {
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: start;
  }

  .hero-visual-stage {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual .float-card {
    position: static;
    margin-top: 0;
  }

  .lifecycle-tabs {
    flex-direction: column;
  }

  .lifecycle-tab {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    order: 3;
    padding: 8px 0 20px;
    border-top: 1px solid var(--border);
    gap: 20px;
  }

  .nav.is-nav-open .nav-panel {
    display: flex;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 4px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    width: 100%;
  }

  .nav-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--teal);
    background: transparent;
    border: 1px solid var(--teal);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: rgba(14, 92, 126, 0.08) 0 1px 2px;
    transition: background 0.15s ease, color 0.15s ease,
      border-color 0.15s ease;
  }

  .nav-signin:hover {
    background: var(--teal-soft);
    color: var(--teal);
    border-color: var(--teal);
  }

  .nav-actions .nav-signin {
    width: 100%;
    justify-content: center;
  }

  .nav-actions .btn-primary {
    justify-content: center;
  }

  .section {
    padding: 48px 24px;
  }

  .hero {
    padding: 32px 24px 48px;
  }

  .nav {
    padding: 12px 20px;
  }

  .problem-grid,
  .pillar-grid,
  .stat-bar {
    grid-template-columns: 1fr;
  }

  .stat-bar > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 24px;
  }

  .stat-bar > div:last-child {
    border-bottom: none;
  }

  .stat-bar .n {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
  }

  .problem-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .problem-cell:last-child {
    border-bottom: none;
  }

  .table-wrap {
    display: none;
  }

  .compare-wins {
    display: block;
    margin-top: 8px;
  }

  .table-wrap + .compare-wins,
  .compare-wins {
    margin-top: 8px;
  }

  .section:has(.compare-wins) .center-head {
    margin-bottom: 20px;
  }

  .section:has(.compare-wins) .center-head .eyebrow {
    display: none;
  }

  .marquee-track {
    animation-duration: 22s;
  }

  .marquee-group {
    gap: 36px;
    padding-right: 36px;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .callout {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }

  .callout-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .callout p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cta {
    padding: 64px 24px;
  }

  .quote {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .tabs-inline .tab {
    margin-right: 16px;
    font-size: 14px;
  }
}

@media (max-width: 1100px) and (min-width: 641px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-bar > div {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-bar > div:nth-child(2n) {
    border-right: none;
  }

  .stat-bar > div:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* lifecycle / tabs / panels */
.lifecycle-tab:not(.active) {
  background: var(--white);
}

.panel-life[hidden] {
  display: none;
}


.panel {
  display: none;
}

.panel.active {
  display: block;
}

.tab-content .panel {
  padding: 0;
}

.feature-panels .panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1100px) {
  .feature-panels .panel-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Our Story (embedded page) —— */
.os-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.os-wrap button {
  font-family: inherit;
}

.os-wrap {
  --os-primary: #0e5c7e;
  --os-primary-dark: #0a4a66;
  --os-primary-deep: #073a52;
  --os-primary-soft: #e5eff3;
  --os-primary-softer: #f2f7fa;
  --os-accent: #c0584d;
  --os-accent-soft: #fae5e2;
  --os-positive: #1f8a5c;
  --os-positive-soft: #dcefe3;
  --os-bg: #f5f6f7;
  --os-bg-alt: #eef1f3;
  --os-ink: #1f2937;
  --os-ink-soft: #374151;
  --os-muted: #6b7280;
  --os-line: #e5e7eb;
  font-family: var(--font);
  background: #fff;
  color: var(--os-ink);
}

.os-hero {
  background: linear-gradient(
    180deg,
    var(--os-primary-deep) 0%,
    var(--os-primary-dark) 100%
  );
  padding: 90px 32px 110px;
  position: relative;
  overflow: hidden;
}

.os-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.os-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.os-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.os-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7bc4dd;
}

.os-hero h1 {
  font-family: var(--font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.os-hero h1 span {
  font-style: normal;
  font-weight: 500;
  color: #7bc4dd;
}

.os-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 28px auto 0;
}

.os-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 64px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.os-stat-cell {
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.os-stat-cell:last-child {
  border-right: none;
}

.os-stat-val {
  font-family: var(--font);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.os-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.os-founding {
  background: #fff;
  padding: 120px 32px;
}

.os-founding-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.os-chapter-label {
  font-size: 11px;
  color: var(--os-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.os-vision .os-chapter-label {
  color: rgba(255, 255, 255, 0.6);
}

.os-values-header .os-chapter-label {
  margin-bottom: 12px;
}

.os-chapter-name {
  font-family: var(--font);
  font-style: italic;
  font-size: 17px;
  color: var(--os-primary);
}

.os-chapter-note {
  margin-top: 18px;
  border-top: 1px solid var(--os-line);
  padding-top: 18px;
  font-size: 13px;
  color: var(--os-muted);
  line-height: 1.55;
}

.os-founding h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--os-ink);
}

.os-founding h2 em {
  color: var(--os-accent);
  font-style: italic;
}

.os-founding-body {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--os-ink-soft);
}

.os-founding-body p + p {
  margin-top: 20px;
}

.os-problems {
  background: var(--os-bg);
  padding: 110px 32px;
}

.os-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.os-section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.os-section-h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--os-ink);
}

.os-section-h2 em {
  font-style: italic;
}

.os-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.os-card {
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.os-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--os-accent);
  background: var(--os-accent-soft);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.os-card h3 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: var(--os-ink);
  letter-spacing: -0.01em;
}

.os-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--os-ink-soft);
}

.os-card-stat {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--os-line);
}

.os-card-stat-val {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 500;
  color: var(--os-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.os-card-stat-lbl {
  font-size: 12px;
  color: var(--os-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.os-quote {
  background: #fff;
  padding: 120px 32px;
}

.os-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.os-quote-mark {
  font-family: var(--font);
  font-size: clamp(100px, 15vw, 180px);
  line-height: 1;
  color: var(--os-primary-soft);
  position: absolute;
  top: -40px;
  left: -20px;
  user-select: none;
}

.os-quote-text {
  position: relative;
  font-family: var(--font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--os-ink);
}

.os-quote-attr {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--os-muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  text-align: center;
}

.os-quote-rule {
  width: 40px;
  height: 1px;
  background: var(--os-line);
  flex-shrink: 0;
}

.os-vision {
  background: var(--os-primary-deep);
  padding: 110px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.os-vision-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 196, 221, 0.15),
    transparent 70%
  );
}

.os-vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.os-vision h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.os-vision h2 em {
  color: #7bc4dd;
  font-style: italic;
}

.os-vision-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
}

.os-pillar {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.os-pillar:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.os-pillar-n {
  font-family: var(--font);
  font-size: 28px;
  color: #7bc4dd;
  font-style: italic;
  font-weight: 400;
}

.os-pillar h3 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.os-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

.os-timeline {
  background: var(--os-bg);
  padding: 110px 32px;
}

.os-timeline-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.os-timeline-body {
  position: relative;
}

.os-timeline-line {
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--os-line);
}

.os-timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.os-timeline-item:last-child {
  padding-bottom: 0;
}

.os-timeline-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--os-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--os-primary);
  position: relative;
  z-index: 1;
}

.os-timeline-card {
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 12px;
  padding: 28px 32px;
}

.os-timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

.os-timeline-label {
  font-family: var(--font);
  font-style: italic;
  font-size: 15px;
  color: var(--os-primary);
}

.os-timeline-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--os-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.os-timeline-card h3 {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 500;
  color: var(--os-ink);
  letter-spacing: -0.01em;
}

.os-timeline-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--os-ink-soft);
  margin-top: 12px;
}

.os-timeline-num-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.os-today {
  background: #fff;
  padding: 110px 32px;
}

.os-today-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.os-today h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--os-ink);
}

.os-today h2 em {
  color: var(--os-primary);
  font-style: italic;
}

.os-today-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--os-ink-soft);
  margin-top: 24px;
}

.os-today-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.os-btn-lg {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.os-btn-lg-solid {
  border: none;
  color: #fff;
  background: var(--os-primary);
}

.os-btn-lg-outline {
  border: 1.5px solid var(--os-line);
  color: var(--os-ink);
  background: #fff;
}

.os-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.os-kpi {
  border-radius: 12px;
  padding: 24px;
}

.os-kpi-val {
  font-family: var(--font);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.os-kpi-lbl {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.45;
  color: var(--os-ink-soft);
}

.os-kpi.green {
  background: var(--os-positive-soft);
  border: 1px solid #1f8a5c33;
}

.os-kpi.green .os-kpi-val {
  color: var(--os-positive);
}

.os-kpi.blue {
  background: var(--os-primary-soft);
  border: 1px solid #0e5c7e33;
}

.os-kpi.blue .os-kpi-val {
  color: var(--os-primary);
}

.os-values {
  background: var(--os-primary-softer);
  padding: 90px 32px;
}

.os-values-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.os-values-header {
  margin-bottom: 48px;
  text-align: center;
}

.os-values-h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: var(--os-ink);
  letter-spacing: -0.02em;
}

.os-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.os-value {
  position: relative;
  padding-left: 20px;
}

.os-value-bar {
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 36px;
  background: var(--os-primary);
  border-radius: 2px;
}

.os-value h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  color: var(--os-ink);
  letter-spacing: -0.01em;
}

.os-value p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--os-ink-soft);
  margin-top: 14px;
}

.os-cta {
  background: var(--os-primary-deep);
  padding: 110px 32px;
  position: relative;
  overflow: hidden;
}

.os-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    #0e5c7e55,
    transparent 60%
  );
}

.os-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.os-cta h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.os-cta h2 em {
  color: #7bc4dd;
  font-style: italic;
}

.os-cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 24px auto 0;
}

.os-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.os-cta-btn-white {
  padding: 16px 32px;
  border: none;
  color: var(--os-primary-deep);
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.os-cta-btn-ghost {
  padding: 16px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.os-timeline-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--os-ink-soft);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .os-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .os-founding-inner {
    grid-template-columns: 1fr;
  }

  .os-cards-3 {
    grid-template-columns: 1fr;
  }

  .os-vision-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .os-today-inner {
    grid-template-columns: 1fr;
  }

  .os-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .os-timeline-item {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .os-kpi {
    padding: 14px 16px;
  }

  .os-kpi-val {
    font-size: 26px;
  }

  .os-kpi-lbl {
    font-size: 11px;
    margin-top: 6px;
  }

  .os-timeline-num {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .os-hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .os-hero-sub {
    font-size: 13px;
    margin-top: 12px;
  }

  .os-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .os-stats-bar {
    grid-template-columns: 1fr;
  }

  .os-stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .os-stat-cell:last-child {
    border-bottom: none;
  }

  .os-values-grid {
    grid-template-columns: 1fr;
  }

  .os-quote-mark {
    left: 0;
  }
}
