:root {
  --navy: #0f172a;
  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --teal: #14b8a6;
  --teal-hover: #0f766e;
  --white: #ffffff;
  --soft-gray: #f8fafc;
  --border-gray: #e2e8f0;
  --body-gray: #475569;
  --muted-gray: #94a3b8;
  --warm-sand: #f4ede4;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Inter", sans-serif;
}

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

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gray);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.button,
h1,
h2,
h3,
summary {
  font-family: "Sora", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span:last-child {
  color: var(--body-gray);
  font-size: 0.9rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--body-gray);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.header-cta {
  white-space: nowrap;
  min-height: 46px;
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  font-size: 56px;
  max-width: none;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

.hero-text,
.section-intro,
.info-card p,
.offer-card p,
.footer-copy,
.metric-card p,
.micro-copy,
.about-preview p,
.faq-item p,
.contact-form label span {
  color: var(--body-gray);
  line-height: 1.6;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: 20px;
}

.support-line {
  margin: 16px 0 0;
  color: var(--body-gray);
  font-size: 14px;
  font-weight: 600;
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-hover);
}

.button-secondary {
  background: var(--white);
  border-color: #cbd5e1;
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft-gray);
}

.hero-visual {
  background: var(--soft-gray);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pipeline-card {
  display: grid;
  gap: 18px;
}

.pipeline-label {
  color: var(--muted-gray);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pipeline-flow {
  display: grid;
  gap: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-hover);
  font-size: 14px;
  font-weight: 600;
}

.pipeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-gray);
}

.pipeline-step strong {
  font-size: 18px;
}

.pipeline-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--blue);
  font-weight: 700;
}

.trust-bar {
  margin: 18px 0 8px;
  padding: 14px 18px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  background: var(--soft-gray);
  color: var(--body-gray);
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.page-hero {
  display: grid;
  gap: 18px;
  max-width: none;
  padding: 32px 0 8px;
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero .section-intro {
  max-width: 760px;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.two-column-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 20px;
}

.icon-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

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

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

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

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

.service-grid,
.faq-list {
  grid-template-columns: repeat(2, 1fr);
}

.split-layout {
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.info-card,
.metric-card,
.offer-card,
.about-preview,
.faq-item,
.contact-form,
.contact-card {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-card,
.metric-card,
.offer-card,
.about-preview,
.faq-item,
.contact-card {
  padding: 24px;
}

.icon-card {
  display: grid;
  gap: 12px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-hover);
  font-size: 18px;
  font-weight: 700;
}

.steps-flow {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  position: relative;
  padding-top: 72px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.offer-card {
  background: var(--soft-gray);
}

.offer-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--body-gray);
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.metric-card {
  min-height: 140px;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.about-preview {
  display: grid;
  gap: 16px;
  background: var(--warm-sand);
}

.text-link {
  color: var(--blue);
  font-weight: 700;
}

.button-accent {
  background: var(--teal);
  color: var(--white);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--teal-hover);
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

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

.faq-item p {
  margin: 14px 0 0;
}

.roadmap-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--soft-gray) 0%, var(--white) 100%);
  box-shadow: var(--shadow);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comparison-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-card-muted {
  background: var(--soft-gray);
}

.comparison-label {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-section {
  padding: 56px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #111c36 100%);
  box-shadow: var(--shadow);
}

.spotlight-section .eyebrow,
.spotlight-section h2,
.spotlight-section .section-intro,
.spotlight-card h3,
.spotlight-card p {
  color: var(--white);
}

.spotlight-section .eyebrow {
  color: #93c5fd;
}

.spotlight-header {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.spotlight-card {
  display: grid;
  gap: 14px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.spotlight-card-primary {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.22), rgba(255, 255, 255, 0.08));
}

.spotlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 700;
}

.spotlight-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.spotlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.roadmap-step {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  background: var(--white);
  min-height: 172px;
}

.roadmap-week {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.roadmap-card-home {
  gap: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
}

.roadmap-grid-compact {
  position: relative;
  gap: 18px;
  align-items: start;
}

.roadmap-grid-compact::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.18), rgba(20, 184, 166, 0.28));
}

.roadmap-step-compact {
  position: relative;
  gap: 12px;
  padding: 46px 8px 0;
  min-height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.roadmap-step-compact::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--white);
  border: 6px solid var(--blue);
  box-shadow: 0 0 0 8px rgba(29, 78, 216, 0.08);
}

.roadmap-step-compact h3 {
  font-size: 18px;
  line-height: 1.15;
}

.roadmap-step-compact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.roadmap-step-compact .roadmap-week {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.final-cta {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border-gray);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--body-gray);
  font-size: 14px;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.legal-content {
  display: grid;
  gap: 24px;
}

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

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: min(460px, calc(100% - 24px));
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border-gray);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.cookie-banner__content {
  display: grid;
  gap: 10px;
}

.cookie-banner__title {
  margin: 0;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.cookie-banner__text {
  margin: 0;
  color: var(--body-gray);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-start;
}

.cookie-banner__button {
  min-width: 140px;
}

@media (max-width: 1080px) {
  .page-shell {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    align-items: flex-start;
  }

  .brand-copy span:last-child {
    max-width: 160px;
  }

  .hero,
  .two-column-intro,
  .split-layout,
  .legal-grid,
  .contact-layout,
  .card-grid-4,
  .steps-flow,
  .roadmap-grid,
  .comparison-grid,
  .spotlight-header,
  .spotlight-grid,
  .stats-grid,
  .tile-grid,
  .pillar-grid,
  .icon-grid,
  .service-grid,
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 22px, 1200px);
  }

  .site-header {
    padding: 14px 0;
    position: static;
  }

  .nav-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero,
  .two-column-intro,
  .split-layout,
  .legal-grid,
  .contact-layout,
  .card-grid-4,
  .steps-flow,
  .roadmap-grid,
  .comparison-grid,
  .spotlight-header,
  .spotlight-grid,
  .stats-grid,
  .tile-grid,
  .pillar-grid,
  .icon-grid,
  .service-grid,
  .faq-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-text {
    font-size: 18px;
  }

  .brand {
    width: 100%;
  }

  .brand-copy span:last-child {
    max-width: none;
    font-size: 0.86rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px 12px;
    width: 100%;
  }

  .site-nav a {
    padding: 8px 0;
    font-size: 0.95rem;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 24px 0 4px;
    max-width: none;
  }

  .page-hero h1 {
    max-width: none;
  }

  .section {
    padding: 48px 0;
  }

  .hero-actions,
  .cta-stack {
    gap: 12px;
  }

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

  .section-header {
    margin-bottom: 20px;
  }

  .spotlight-section {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .spotlight-card {
    min-height: auto;
  }

  .roadmap-card-home {
    padding: 24px;
  }

  .roadmap-grid-compact::before {
    display: none;
  }

  .roadmap-step-compact {
    padding: 18px;
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    background: var(--white);
    box-shadow: none;
  }

  .roadmap-step-compact::before {
    display: none;
  }

  .roadmap-step-compact .roadmap-week {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.1);
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 27px;
  }

  .hero {
    padding: 16px 0 8px;
    gap: 20px;
  }

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

  .site-nav {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual,
  .info-card,
  .metric-card,
  .offer-card,
  .about-preview,
  .faq-item,
  .contact-form,
  .contact-card,
  .final-cta {
    padding: 20px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }

  .spotlight-card h3 {
    font-size: 22px;
  }

  .cookie-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
  }
}
