:root {
  --ink: #192a2e;
  --muted: #617074;
  --paper: #f6f8f5;
  --panel: #ffffff;
  --line: #dce4df;
  --teal: #047c7a;
  --teal-deep: #035958;
  --mint: #dff3e8;
  --coral: #dc6e4f;
  --gold: #d6a84f;
  --shadow: 0 18px 50px rgba(20, 35, 38, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 12px 40px;
  color: #ffffff;
  background: rgba(17, 31, 34, 0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand,
.nav-cta,
.button,
.segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.brand {
  justify-self: start;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 800;
  background: #ffffff;
  border-radius: 8px;
}

.nav-cta svg,
.button svg,
.segment svg,
article svg,
.itinerary-header svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 23, 0.82) 0%, rgba(8, 20, 23, 0.58) 36%, rgba(8, 20, 23, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 20, 23, 0.42), rgba(8, 20, 23, 0.06) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #dff3e8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.segment:hover,
.segment:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(220, 110, 79, 0.26);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 0;
}

.hero-stats div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-size: 0.96rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  max-width: 700px;
}

.education-section {
  padding-bottom: 40px;
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(300px, 0.8fr);
  gap: 16px;
}

.education-card {
  min-height: 248px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.education-card svg {
  color: var(--teal);
  margin-bottom: 18px;
}

.education-card p {
  color: var(--muted);
}

.comparison-card {
  color: #ffffff;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 2.25rem;
  line-height: 1;
}

.comparison-card p {
  color: rgba(255, 255, 255, 0.76);
}

.method-grid,
.support-grid,
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-grid article,
.support-grid article,
.evidence-grid article {
  min-height: 238px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.method-grid svg,
.support-grid svg {
  color: var(--teal);
  margin-bottom: 16px;
}

.method-grid p,
.support-grid p,
.evidence-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.schedule-section {
  padding-top: 72px;
}

.schedule-grid {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.schedule-row time {
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 900;
}

.schedule-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.support-copy p {
  color: var(--muted);
}

.evidence-grid article {
  box-shadow: none;
}

.evidence-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.planner-section {
  margin-top: 0;
  padding-top: 84px;
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.planner-panel,
.result-panel,
.itinerary-panel,
.proof-grid article,
.lead-form,
.timeline article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.planner-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.field-row,
.toggle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
}

.field-row span,
.toggle-row strong {
  color: var(--ink);
  font-weight: 850;
}

.toggle-row small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.readout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: baseline;
  padding: 16px;
  background: #eef6f1;
  border: 1px solid #d6e8df;
  border-radius: 8px;
}

.readout-row span {
  color: var(--ink);
  font-weight: 850;
}

.readout-row strong {
  color: var(--teal-deep);
  font-size: 1.15rem;
}

.readout-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.field-note,
.tour-note {
  margin: -8px 0 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.tour-note {
  margin: 0;
  padding: 14px;
  color: var(--teal-deep);
  font-weight: 800;
  background: var(--mint);
  border-radius: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cdd8d2;
  border-radius: 8px;
  outline: none;
}

input,
select {
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

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

input[type="checkbox"] {
  justify-self: end;
  width: 50px;
  height: 28px;
  min-height: 28px;
  appearance: none;
  padding: 0;
  background: #cdd8d2;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 160ms ease;
}

input[type="checkbox"]:checked {
  background: var(--teal);
}

input[type="checkbox"]:checked::before {
  transform: translateX(22px);
}

.range {
  width: 100%;
  min-height: 28px;
  padding: 0;
  accent-color: var(--teal);
  background: transparent;
  border: 0;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.result-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  color: #ffffff;
  background: var(--teal-deep);
  border-color: rgba(255, 255, 255, 0.16);
}

.result-topline span,
.result-metrics span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.result-topline strong {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
}

.result-bars {
  display: grid;
  gap: 10px;
}

.result-bars div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.result-bars span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.result-bars b {
  display: block;
  width: 1%;
  height: 12px;
  background: var(--gold);
  border-radius: 999px;
  transition: width 180ms ease;
}

.result-bars div:nth-child(2) b {
  background: var(--mint);
}

.result-bars div:nth-child(3) b {
  background: var(--coral);
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-metrics div {
  min-height: 94px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.result-metrics strong {
  font-size: 1.24rem;
}

#budget-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

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

.timeline article,
.proof-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.timeline article {
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 5px;
  background: var(--coral);
  border-radius: 999px;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.timeline svg,
.proof-grid svg {
  color: var(--teal);
  margin-bottom: 16px;
}

.timeline p,
.proof-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.travel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 34px;
  align-items: center;
}

.travel-copy p {
  color: var(--muted);
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.segment {
  min-height: 44px;
  padding: 0 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.segment.active {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.itinerary-panel {
  min-height: 330px;
  padding: 30px;
}

.itinerary-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.itinerary-header svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--teal);
  background: var(--mint);
  border-radius: 8px;
}

#itinerary-kicker {
  display: block;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.itinerary-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.itinerary-panel li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.proof-grid article {
  min-height: 230px;
  box-shadow: none;
}

.consult-section {
  display: grid;
  grid-template-columns: 0.9fr minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 96px;
}

.consult-copy p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.lead-form label {
  font-size: 0.9rem;
  font-weight: 900;
}

.date-select-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.consent-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: var(--muted);
  background: #eef6f1;
  border-radius: 8px;
}

.consent-row a {
  color: var(--teal-deep);
  font-weight: 900;
  text-decoration: underline;
}

.consent-row input[type="checkbox"] {
  justify-self: start;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--teal-deep);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
  color: #ffffff;
  background: var(--ink);
}

.site-footer span {
  font-weight: 900;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.legal-main,
.thanks-main {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 80px;
}

.legal-main article,
.thanks-panel {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-main h1,
.thanks-main h1 {
  font-size: 2.4rem;
}

.legal-main h2 {
  margin-top: 34px;
  font-size: 1.3rem;
}

.legal-main p,
.legal-main li,
.thanks-main p {
  color: var(--muted);
}

.legal-main ul {
  padding-left: 22px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .planner-grid,
  .travel-section,
  .support-section,
  .consult-section {
    grid-template-columns: 1fr;
  }

  .timeline,
  .proof-grid,
  .education-grid,
  .method-grid,
  .support-grid,
  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .nav-cta svg {
    display: none;
  }

  .hero {
    min-height: 82vh;
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 20, 23, 0.88) 4%, rgba(8, 20, 23, 0.64) 58%, rgba(8, 20, 23, 0.08) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 92px 0 38px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    min-height: 46px;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 76px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .planner-section {
    margin-top: 0;
  }

  .field-row,
  .toggle-row,
  .readout-row,
  .schedule-row,
  .date-select-row,
  .result-bars div,
  .result-metrics {
    grid-template-columns: 1fr;
  }

  .field-row {
    gap: 8px;
  }

  input[type="checkbox"] {
    justify-self: start;
  }

  .result-topline strong {
    font-size: 2.2rem;
  }

  .timeline,
  .proof-grid,
  .education-grid,
  .method-grid,
  .support-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-column: auto;
  }

  .timeline article,
  .proof-grid article {
    min-height: auto;
  }

  .segment-control {
    display: grid;
  }

  .site-footer {
    display: block;
    padding: 26px 16px;
  }

  .site-footer span {
    display: block;
    margin-bottom: 8px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .legal-main,
  .thanks-main {
    width: calc(100% - 32px);
    padding-top: 92px;
  }

  .legal-main article,
  .thanks-panel {
    padding: 22px;
  }
}
