:root {
  --bg: #050816;
  --bg-soft: #0a1024;
  --panel: rgba(10, 16, 36, 0.85);
  --panel-2: rgba(14, 24, 52, 0.92);
  --line: rgba(77, 141, 255, 0.18);
  --line-strong: rgba(74, 179, 255, 0.34);
  --text: #eaf2ff;
  --muted: #a8b7d9;
  --primary: #1f8fff;
  --primary-2: #4ab3ff;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.22);
  --shadow-strong: 0 24px 72px rgba(0, 0, 0, 0.36);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(31, 143, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(74, 179, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #04070f 0%, #081021 44%, #050816 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-2);
  text-decoration: none;
}

a:hover {
  color: var(--white);
}

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

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

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 68px 0;
}

.eyebrow,
.kicker {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.95rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 72ch;
}

.lead {
  font-size: 1.13rem;
  max-width: 760px;
}

strong, b {
  color: var(--white);
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(3, 8, 20, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
}

.brand img {
  width: 64px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

.brand-text span:first-child {
  font-size: 0.8rem;
  color: var(--primary-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-text span:last-child {
  font-size: 0.98rem;
}

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

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary-2), transparent);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0d6eff 100%);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(31, 143, 255, 0.22);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.16);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}

.btn-primary:hover,
.btn-secondary:hover {
  box-shadow: var(--shadow-strong);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.88) 0%, rgba(4, 8, 18, 0.66) 48%, rgba(4, 8, 18, 0.8) 100%),
    url('assets/hero-walk.jpg') center/cover no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 100px 0 94px;
}

.hero-card,
.panel,
.stat,
.quote-card,
.package-card,
.contact-card,
.faq-item,
.path-card,
.feature-card,
.service-card,
.value-card,
.phase-card {
  background: linear-gradient(180deg, rgba(12, 19, 42, 0.9) 0%, rgba(8, 13, 28, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-card:hover,
.panel:hover,
.stat:hover,
.quote-card:hover,
.package-card:hover,
.contact-card:hover,
.faq-item:hover,
.path-card:hover,
.feature-card:hover,
.service-card:hover,
.value-card:hover,
.phase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 179, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-card {
  padding: 28px;
}

.hero .lead {
  max-width: 700px;
}

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

.page-actions.center,
.hero-actions.center,
.cta-panel .page-actions,
.callout .page-actions {
  justify-content: center;
  width: 100%;
}

.badge-row,
.page-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.badge,
.page-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 143, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(74, 179, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero,
.page-hero-premium {
  padding: 60px 0 26px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--primary-2);
}

.page-title {
  max-width: 1080px;
  display: grid;
  gap: 12px;
}

.page-title h1 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
}

.page-title .lead {
  max-width: 780px;
}

.section-heading,
.section-header-tight {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-header-tight h2 {
  max-width: 15ch;
}

.section-header-tight {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-tight p,
.section-heading p.lead {
  margin-left: auto;
  margin-right: auto;
}

.highlight-grid,
.value-grid,
.feature-grid,
.service-grid,
.package-grid,
.path-grid,
.contact-grid,
.faq-grid,
.story-grid,
.metrics-grid,
.phase-grid {
  display: grid;
  gap: 24px;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.value-grid,
.feature-grid,
.service-grid,
.package-grid,
.path-grid,
.faq-grid,
.contact-grid,
.story-grid,
.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
  padding: 22px;
}

.stat h3 {
  margin-bottom: 10px;
}

.value-card,
.feature-card,
.service-card,
.package-card,
.path-card,
.contact-card,
.faq-item,
.quote-card {
  padding: 28px;
}

.callout {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(74, 179, 255, 0.18);
  background: linear-gradient(90deg, rgba(31, 143, 255, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.callout > .eyebrow,
.callout > .kicker,
.callout > h2,
.callout > h3,
.callout > p,
.callout > .lead,
.callout > .page-actions,
.callout > .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.callout > p,
.callout > .lead {
  max-width: 74ch;
}

.callout.center,
.cta-panel {
  text-align: center;
}

.callout h2 {
  max-width: 18ch;
}

.callout.center h2,
.cta-panel h2 {
  margin-left: auto;
  margin-right: auto;
}

.callout p:last-child,
.quote-card p:last-child,
.package-card p:last-child,
.contact-card p:last-child,
.service-card p:last-child,
.value-card p:last-child,
.feature-card p:last-child,
.path-card p:last-child,
.faq-item p:last-child {
  margin-bottom: 0;
}

.package-price {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  margin: 12px 0;
}

.package-card.featured,
.phase-card.featured {
  border-color: rgba(74, 179, 255, 0.45);
  box-shadow: 0 22px 70px rgba(16, 95, 219, 0.25);
}

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

.phase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
}

.phase-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(31, 143, 255, 0.14);
  border: 1px solid rgba(74, 179, 255, 0.2);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.phase-meta {
  color: var(--primary-2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
}

.phase-card h3 {
  max-width: 12ch;
}

.phase-price {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 10px;
}

.phase-subcopy {
  margin-bottom: 16px;
  max-width: 26ch;
}

.split,
.split-premium {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

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

.list-clean li {
  padding: 15px 17px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}

.phase-card .list-clean {
  flex: 1;
  margin-bottom: 20px;
}

.phase-card .list-clean li {
  min-height: 58px;
  display: flex;
  align-items: center;
}

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

label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(74, 179, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 143, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

input::placeholder,
textarea::placeholder {
  color: #8ea3c8;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.note,
.mini-note,
.small {
  font-size: 0.92rem;
}

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

.center {
  text-align: center;
}

.site-footer {
  padding: 34px 0 52px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(74, 179, 255, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1200px) {
  .page-title h1 {
    max-width: 20ch;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split-premium,
  .footer-grid,
  .value-grid,
  .feature-grid,
  .service-grid,
  .package-grid,
  .path-grid,
  .faq-grid,
  .contact-grid,
  .story-grid,
  .metrics-grid,
  .highlight-grid,
  .phase-grid {
    grid-template-columns: 1fr;
  }

  .page-title h1,
  .section-heading h2,
  .section-header-tight h2,
  .callout h2,
  .phase-card h3 {
    max-width: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: rgba(8, 14, 30, 0.98);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid {
    padding: 86px 0 80px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .section-tight {
    padding: 52px 0;
  }

  .page-hero,
  .page-hero-premium {
    padding: 44px 0 18px;
  }

  .hero-grid {
    padding: 72px 0 66px;
  }

  .brand img {
    width: 58px;
  }

  .hero-card,
  .panel,
  .stat,
  .quote-card,
  .package-card,
  .contact-card,
  .faq-item,
  .path-card,
  .feature-card,
  .service-card,
  .value-card,
  .callout,
  .phase-card {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

  .page-title h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
