:root {
  --navy: #0d1b2a;
  --blue: #1b4965;
  --teal: #2c7a7b;
  --gold: #d9a441;
  --cream: #f6f1e8;
  --white: #ffffff;
  --gray: #667085;
  --light: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 18px 55px rgba(13, 27, 42, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--gray);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.section {
  padding: 92px 22px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.hero {
  padding-top: 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.18), transparent 30%),
    linear-gradient(135deg, var(--cream), #ffffff 58%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 850;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-subtitle {
  max-width: 700px;
  margin-top: 24px;
  color: var(--gray);
  font-size: 1.18rem;
}

.hero-boundary {
  max-width: 690px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(44, 122, 123, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.22);
}

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

.light-button {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.full-width {
  width: 100%;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.proof-row div {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.proof-row strong {
  display: block;
  font-size: 1.1rem;
}

.proof-row span {
  color: var(--gray);
  font-size: 0.92rem;
}

.hero-card,
.card,
.pilot-offer-card,
.contact-form,
.privacy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
}

.card-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gray);
  font-weight: 800;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.light-checks li::before {
  color: var(--gold);
}

.mini-cta {
  margin-top: 26px;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(217, 164, 65, 0.32);
}

.mini-cta span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
}

.mini-cta strong {
  display: block;
  margin-top: 3px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.body-copy {
  color: var(--gray);
  font-size: 1.08rem;
}

.body-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1.08rem;
}

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

.card {
  padding: 28px;
}

.icon-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.84rem;
}

.card p,
.feature-list p,
.timeline-item p,
.pilot-layout p,
.contact-grid p {
  color: var(--gray);
  margin-top: 12px;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(44, 122, 123, 0.36), transparent 30%),
    var(--navy);
}

.dark-section .eyebrow {
  color: var(--gold);
}

.pilot-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
}

.pilot-layout p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  max-width: 680px;
}

.pilot-layout .button {
  margin-top: 28px;
}

.pilot-offer-card {
  padding: 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.pilot-offer-card h3 {
  margin-bottom: 18px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
}

.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--navy);
  font-weight: 900;
}

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

.feature-list {
  display: grid;
  gap: 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.accordion-panel {
  display: none;
  padding: 0 20px 16px;
  color: rgba(255, 255, 255, 0.76);
}

.accordion-panel.open {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-note {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(217, 164, 65, 0.28);
}

.contact-note a {
  font-weight: 850;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--navy);
  outline: none;
  background: var(--white);
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(44, 122, 123, 0.12);
}

.form-footnote {
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
}

.footer {
  padding: 46px 22px 30px;
  background: #08111d;
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 12px;
}

.footer .brand-mark {
  background: var(--white);
  color: var(--navy);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 750;
}

.legal {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal p {
  font-size: 0.88rem;
}

.privacy-page {
  background: var(--light);
}

.narrow {
  max-width: 900px;
}

.privacy-card {
  padding: 34px;
  margin-top: 30px;
}

.privacy-card h2 {
  font-size: 1.38rem;
  margin-top: 26px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  color: var(--gray);
  margin-top: 10px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .two-column,
  .pilot-layout,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    max-width: 560px;
  }
}

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

  .proof-row,
  .cards.three {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .footer-grid,
  .footer-links {
    flex-direction: column;
  }
}
