:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #171717;
  --card: #141414;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: #262626;
  --primary: #3b6af5;
  --secondary: #0c447c;
  --text: #ffffff;
  --muted: #a0a0a0;
  --light-text: #1a1a1a;
  --light-muted: #5e5e5e;
  --light-bg: #f4f6fb;
  --white: #ffffff;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 500;
  padding: 12px 16px;
  background: var(--white);
  color: #111111;
  border-radius: 10px;
}

:focus-visible {
  outline: 3px solid rgba(59, 106, 245, 0.45);
  outline-offset: 3px;
}

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

.eyebrow,
.section-tag,
.button,
.brand-mark,
.equation-symbol,
.card-kicker,
.process-card span,
.status-chip,
.risk-badge {
  font-family: 'Space Mono', monospace;
}

h1,
h2,
h3,
.brand-text strong,
.footer-brand strong {
  font-family: 'Space Mono', monospace;
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(59, 106, 245, 0.2), rgba(12, 68, 124, 0.45));
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(59, 106, 245, 0.28);
}

.button-primary:hover {
  background: #4a76f6;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-links a {
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav-links a:hover,
.site-nav-links a[aria-current='page'] {
  color: var(--primary);
}

.hero {
  padding: 84px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(59, 106, 245, 0.22), transparent 32%),
    radial-gradient(circle at left center, rgba(12, 68, 124, 0.2), transparent 28%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-kicker,
.equation-label {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.eyebrow,
.section-tag,
.card-kicker {
  color: #8fb1ff;
}

.hero-subheadline,
.section-heading p,
.final-copy {
  font-size: 1.08rem;
  color: #d0d0d0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.trust-line {
  margin: 0;
  color: var(--muted);
}

.hero-panel {
  min-height: 100%;
}

.hero-panel-shell {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-status-row,
.hero-metrics {
  display: grid;
  gap: 12px;
}

.hero-status-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.status-chip,
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.status-chip {
  width: 100%;
}

.status-high {
  background: rgba(255, 92, 92, 0.12);
  color: #ff9b9b;
  border: 1px solid rgba(255, 92, 92, 0.26);
}

.status-mid {
  background: rgba(59, 106, 245, 0.12);
  color: #8fb1ff;
  border: 1px solid rgba(59, 106, 245, 0.26);
}

.status-low {
  background: rgba(255, 255, 255, 0.06);
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-label {
  margin-bottom: 10px;
  color: #8fb1ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero-item h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.risk-badge {
  align-self: flex-start;
  background: rgba(59, 106, 245, 0.14);
  border: 1px solid rgba(59, 106, 245, 0.28);
  color: #9ab7ff;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.hero-metrics article,
.equation-block,
.process-card,
.solution-card,
.offer-card,
.vertical-card,
.placeholder-card,
.pain-card,
.outcome-card {
  border-radius: var(--radius-sm);
}

.hero-metrics article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics span,
.hero-note p,
.hero-metrics strong,
.equation-result,
.price,
.footer-meta p,
.footer-meta a {
  display: block;
}

.hero-metrics span,
.hero-note p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-metrics strong {
  margin-top: 6px;
  font-size: 1rem;
  color: var(--white);
}

.hero-note {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}

.section-white {
  background: var(--white);
  color: var(--light-text);
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.narrow,
.faq-shell .section-heading,
.final-cta-shell {
  max-width: 760px;
}

.section-light h2,
.section-white h2,
.section-light h3,
.section-white h3,
.section-light p,
.section-white p,
.section-light li,
.section-white li,
.section-light summary,
.section-white summary,
.section-light .price,
.section-white .price,
.section-light .equation-result,
.section-white .equation-result {
  color: var(--light-text);
}

.section-light .section-tag,
.section-white .section-tag,
.section-light .card-kicker,
.section-white .card-kicker,
.section-light .equation-label,
.section-white .equation-label {
  color: var(--secondary);
}

.section-light .section-heading p,
.section-white .section-heading p,
.section-light .pain-card p,
.section-white .pain-card p,
.section-light .outcome-card p,
.section-white .outcome-card p,
.section-light .vertical-card p,
.section-white .vertical-card p,
.section-light details p,
.section-white details p,
.final-cta .fine-print {
  color: var(--light-muted);
}

.equation-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.equation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.equation-block {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.equation-label {
  display: block;
  margin-bottom: 10px;
}

.equation-block strong {
  font-size: 1.15rem;
}

.equation-symbol {
  color: var(--primary);
  font-size: 1.6rem;
}

.equation-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pain-grid,
.outcome-grid,
.solution-grid,
.offer-cards,
.vertical-grid,
.process-grid,
.placeholder-grid,
.footer-wrap {
  display: grid;
  gap: 20px;
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pain-card,
.outcome-card,
.vertical-card,
.placeholder-card {
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

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

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

.solution-card,
.offer-card,
.process-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.solution-card p,
.offer-card p,
.offer-card li,
.process-card p,
.process-card h3,
.offer-card h3,
.solution-card h3,
.process-card span,
.placeholder-card h3,
.placeholder-card p,
.vertical-card h3,
.vertical-card p,
.outcome-card h3,
.outcome-card p,
.pain-card h3,
.pain-card p {
  margin-bottom: 0;
}

.solution-card p:last-child,
.process-card p,
.outcome-card p,
.vertical-card p,
.placeholder-card p,
.pain-card p {
  margin-top: 10px;
}

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

.offer-card-trackt {
  background: linear-gradient(180deg, rgba(0, 212, 200, 0.16), rgba(10, 14, 26, 0.96));
}

.offer-card-dfy {
  background: linear-gradient(180deg, rgba(59, 106, 245, 0.22), rgba(10, 14, 26, 0.96));
}

.offer-card ul {
  margin: 18px 0 24px;
  padding-left: 18px;
}

.offer-card li + li {
  margin-top: 10px;
}

.offer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
}

.offer-brand-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.price {
  margin-bottom: 22px;
  color: #dfe7ff;
  font-size: 1.02rem;
  font-weight: 600;
}

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

.who-for-closer {
  max-width: 820px;
  margin: 56px auto 0;
  text-align: center;
}

.who-for-closer-lead,
.who-for-closer-headline,
.who-for-closer-copy {
  margin-bottom: 0;
}

.who-for-closer-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
}

.who-for-closer-headline {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.who-for-closer-copy {
  margin-top: 16px;
  color: var(--light-muted);
  font-size: 1rem;
}

.legal-main {
  padding: 84px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(59, 106, 245, 0.18), transparent 32%),
    radial-gradient(circle at left top, rgba(12, 68, 124, 0.16), transparent 28%),
    var(--bg);
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
}

.legal-intro,
.legal-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.legal-intro {
  padding: 36px;
}

.legal-eyebrow {
  margin-bottom: 16px;
  color: #8fb1ff;
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-title {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.04;
}

.legal-subtitle {
  margin-bottom: 0;
  color: #d0d0d0;
  font-size: 1.04rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.legal-section {
  padding: 30px 32px;
}

.legal-section h2,
.legal-section h3 {
  margin-bottom: 14px;
}

.legal-section h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.legal-section h3 {
  font-size: 1.02rem;
  color: #dfe7ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-section p,
.legal-section li {
  color: #d0d0d0;
}

.legal-section ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.legal-section li + li {
  margin-top: 8px;
}

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

.legal-contact a {
  color: #8fb1ff;
}

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

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(59, 106, 245, 0.14);
  color: #9ab7ff;
  border: 1px solid rgba(59, 106, 245, 0.28);
}

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

.placeholder-card {
  border: 1px dashed rgba(17, 17, 17, 0.16);
  background: #f8f8f8;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 0 22px;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  color: var(--secondary);
  font-family: 'Space Mono', monospace;
}

details[open] summary::after {
  content: '−';
}

details p {
  padding-bottom: 20px;
}

.final-cta {
  background:
    radial-gradient(circle at top left, rgba(59, 106, 245, 0.28), transparent 34%),
    var(--bg);
}

.final-cta-shell {
  text-align: center;
}

.final-cta-shell .section-tag {
  color: #8fb1ff;
}

.final-copy {
  max-width: 620px;
  margin: 0 auto 28px;
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 48px;
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: block;
  height: 36px;
  max-height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-copy {
  display: flex;
  align-items: center;
}

.footer-brand p,
.footer-nav a,
.footer-meta p,
.footer-meta a {
  color: var(--muted);
}

.footer-brand p {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .five-up,
  .outcome-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .offer-cards,
  .solution-grid,
  .footer-wrap,
  .equation-row,
  .hero-metrics,
  .vertical-grid,
  .placeholder-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-status-row {
    grid-template-columns: 1fr;
  }

  .hero-item {
    flex-direction: column;
  }

  .equation-symbol {
    text-align: center;
  }

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

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

  .nav-wrap {
    min-height: 74px;
  }

  .button-nav {
    display: none;
  }

  .site-nav {
    flex: 1;
    justify-content: flex-end;
  }

  .site-nav-links {
    gap: 12px;
  }

  .site-nav-links a {
    font-size: 0.74rem;
  }

  .brand-logo {
    height: 30px;
    max-height: 30px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .legal-main {
    padding-top: 56px;
  }

  .hero-panel-shell,
  .pain-card,
  .outcome-card,
  .solution-card,
  .offer-card,
  .vertical-card,
  .process-card,
  .placeholder-card,
  .equation-card,
  details,
  .legal-intro,
  .legal-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .five-up,
  .outcome-grid,
  .process-grid,
  .vertical-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}
