:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d7dde5;
  --paper: #ffffff;
  --wash: #f3f6f7;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --coral: #c5523d;
  --amber: #d99a36;
  --hero-ink: #07110f;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.13);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(215, 221, 229, 0.7);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 5vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  border-radius: 6px;
  color: #fff !important;
  padding: 10px 14px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  align-items: center;
  background-image: url("/assets/growth-command-center.png");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 88svh;
  overflow: hidden;
  padding: 120px 5vw 72px;
  position: relative;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 10, 9, 0.92) 0%, rgba(4, 10, 9, 0.72) 42%, rgba(4, 10, 9, 0.22) 72%, rgba(4, 10, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 10, 9, 0.62), rgba(4, 10, 9, 0.02) 46%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a7f3d0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 20px;
}

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

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-primary:hover {
  background: #ad4633;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
}

.proof-line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 92px 5vw;
}

.section-light {
  background: var(--wash);
}

.section-ink {
  background: var(--hero-ink);
  color: #fff;
}

.section-ink .section-tag {
  color: #a7f3d0;
}

.section-ink p {
  color: rgba(255, 255, 255, 0.78);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.two-column {
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.copy-stack p {
  color: var(--ink-soft);
  font-size: 18px;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.statement,
.question-line {
  color: var(--ink) !important;
  font-size: 25px !important;
  font-weight: 850;
  line-height: 1.22;
}

.section-ink .question-line {
  color: #fff !important;
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-header p:not(.section-tag) {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.process-step,
.offer-panel,
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 228px;
  padding: 24px;
}

.service-card p,
.process-step p,
.comparison-row span,
.offer-layout p,
details p {
  color: var(--muted);
}

.service-number {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
}

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

.process-step {
  min-height: 276px;
  padding: 24px;
}

.process-step span {
  align-items: center;
  background: #dff8f3;
  border-radius: 6px;
  color: var(--teal-dark);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 24px;
  width: 34px;
}

.comparison {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 280px 1fr;
  min-height: 76px;
  padding: 20px 24px;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row.highlighted {
  background: #e8f7f3;
}

.comparison-note {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 24px 0 0;
  max-width: 760px;
}

.fit-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.not-fit {
  border-left: 3px solid var(--coral);
  padding-left: 32px;
}

.check-list,
.dash-list,
.offer-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.dash-list li,
.offer-list li {
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 3px;
  position: absolute;
  top: 11px;
  width: 8px;
}

.dash-list li::before,
.offer-list li::before {
  background: var(--coral);
  content: "";
  height: 2px;
  left: 2px;
  position: absolute;
  top: 14px;
  width: 12px;
}

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

.outcome-grid span {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 750;
  min-height: 64px;
  padding: 18px;
}

.section-offer {
  background: #18211f;
  color: #fff;
}

.section-offer .section-tag {
  color: #a7f3d0;
}

.offer-layout {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.offer-layout p {
  font-size: 18px;
}

.offer-panel {
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 28px;
}

.offer-name {
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price {
  color: var(--ink) !important;
  font-size: 42px !important;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.price span {
  color: var(--muted);
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
}

.offer-list {
  margin-bottom: 26px;
}

.full-width {
  width: 100%;
}

.faq-layout {
  display: grid;
  gap: 64px;
  grid-template-columns: 340px minmax(0, 1fr);
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  background: var(--hero-ink);
  color: #fff;
  padding: 98px 5vw;
}

.final-cta-inner {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.final-cta p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.final-cta .section-tag {
  color: #a7f3d0;
}

.final-cta .button {
  margin: 18px 0;
}

.final-cta span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 14px;
}

.site-footer {
  align-items: center;
  background: #070c0b;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 24px 5vw;
}

.site-footer span {
  color: #fff;
  font-weight: 850;
}

@media (max-width: 980px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .site-nav {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
    padding: 16px;
    position: absolute;
    right: 5vw;
    top: 68px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .two-column,
  .fit-grid,
  .offer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .offer-panel {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 20px;
  }

  .site-nav {
    left: 20px;
    right: 20px;
  }

  .hero {
    background-position: 62% center;
    min-height: 86svh;
    padding: 108px 20px 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 10, 9, 0.94), rgba(4, 10, 9, 0.76)),
      linear-gradient(0deg, rgba(4, 10, 9, 0.62), rgba(4, 10, 9, 0.1));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-copy,
  .copy-stack p,
  .section-header p:not(.section-tag),
  .comparison-note,
  .offer-layout p,
  .final-cta p:not(.section-tag) {
    font-size: 16px;
  }

  .section {
    padding: 68px 20px;
  }

  .service-grid,
  .process-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .not-fit {
    border-left: 0;
    border-top: 3px solid var(--coral);
    padding-left: 0;
    padding-top: 28px;
  }

  .price {
    font-size: 34px !important;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
