:root {
  --bg: #07110f;
  --bg-soft: #0e1b18;
  --ink: #f7fbf7;
  --muted: #a8b8b0;
  --cream: #f4efe6;
  --cream-2: #fbf8f1;
  --dark: #08100e;
  --green: #20e09b;
  --green-dark: #0fa873;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 17, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green);
  color: #06110e;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-cta {
  color: #07110f;
  background: var(--green);
  padding: 10px 14px;
  border-radius: 999px;
}

.section-shell {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  background:
    radial-gradient(circle at 15% 15%, rgba(32, 224, 155, 0.22), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(112, 92, 255, 0.28), transparent 26%),
    linear-gradient(145deg, #07110f 0%, #0d1728 64%, #07110f 100%);
}

.eyebrow,
.mini-label,
.map-label {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9vw, 114px);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-lede,
.section-heading p,
.booking-card p,
.stack-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button.primary {
  color: #06110e;
  background: var(--green);
  box-shadow: 0 18px 50px rgba(32, 224, 155, 0.22);
}

.button.primary:hover {
  background: #46f0b5;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

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

.button.full {
  width: 100%;
  margin-top: 18px;
}

.trust-note {
  max-width: 620px;
  color: #73827c;
  font-size: 13px;
  line-height: 1.7;
}

.hero-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portrait-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(7, 17, 15, 0.72);
  border: 1px solid var(--line);
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  width: 140px;
  height: 160px;
  border-radius: 28px;
  background: linear-gradient(145deg, #d8fff0, #20e09b);
  color: #07110f;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.portrait-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.panel-grid div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.panel-grid strong,
.panel-grid span {
  display: block;
}

.panel-grid strong {
  font-size: 42px;
  letter-spacing: -0.08em;
}

.panel-grid span {
  color: var(--muted);
  font-weight: 700;
}

.light-section {
  background: var(--cream);
  color: #07110f;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 92px);
}

.cards.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card,
.step,
.faq-list article {
  padding: 28px;
  border: 1px solid rgba(7, 17, 15, 0.1);
  border-radius: 28px;
  background: var(--cream-2);
}

.card span {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: rgba(32, 224, 155, 0.22);
}

.card p,
.step p,
.faq-list p,
.price-card p,
.map-item p {
  margin-bottom: 0;
  color: #5f6965;
  line-height: 1.65;
}

.method-section,
.pricing-section {
  background: var(--dark);
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.method-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.map-item {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.map-item.featured {
  border-color: rgba(32, 224, 155, 0.38);
  background: rgba(32, 224, 155, 0.09);
}

.map-arrow {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step strong {
  display: block;
  margin-bottom: 54px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.26em;
}

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

.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
}

.price-card.highlighted {
  border-color: rgba(32, 224, 155, 0.38);
}

.price {
  margin: 22px 0;
  font-size: clamp(48px, 8vw, 78px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.booking-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  background: var(--cream);
  color: #07110f;
}

.booking-card,
.stack-card {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 34px;
}

.booking-card {
  color: var(--ink);
  background: var(--dark);
}

.stack-card {
  border: 1px solid rgba(7, 17, 15, 0.1);
  background: var(--cream-2);
}

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

.checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  color: #07110f;
  font-weight: 800;
}

.checklist li::after {
  content: "Ready";
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(32, 224, 155, 0.18);
  color: #08754f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .method-map,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .map-arrow {
    transform: rotate(90deg);
  }
}

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

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .cards.two-col {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
