.marketing {
  --navy: #142d40;
  --teal: #176773;
  --paper: #faf8f3;
  color: var(--navy);
  background: var(--paper);
  font:
    17px/1.65 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body:has(.marketing) {
  margin: 0;
}
.marketing * {
  box-sizing: border-box;
}
.marketing a {
  color: var(--teal);
  text-underline-offset: 5px;
}
.marketing a:hover {
  text-decoration: underline;
}
.marketing a:focus-visible {
  outline: 3px solid #176773;
  outline-offset: 6px;
}
.marketing .site-header,
.marketing footer {
  max-width: 1200px;
  margin: auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.marketing .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 750;
  color: var(--navy);
  text-decoration: none;
}
.marketing nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.marketing nav a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.marketing nav a[aria-current="page"] {
  text-decoration: underline;
}
.marketing .hero {
  max-width: 1200px;
  margin: auto;
  padding: 72px 32px 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.marketing .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 750;
  color: var(--teal);
}
.marketing h1 {
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 18px 0 24px;
  max-width: 650px;
}
.marketing h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 12px 0 24px;
}
.marketing h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 12px 0;
}
.marketing p {
  margin: 0 0 20px;
}
.marketing .intro {
  font-size: 19px;
  color: #425769;
  max-width: 620px;
}
.marketing .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.marketing .cta {
  display: inline-block;
  padding: 13px 23px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 650;
  text-decoration: none;
}
.marketing .cta:hover {
  background: #105561;
}
.marketing .trip-preview {
  background: #fff;
  border: 1px solid #d9e2df;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 60px #142d4010;
  transform: rotate(1deg);
}
.marketing .trip-preview h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.marketing .preview-caption {
  font-size: 15px;
  color: #526474;
}
.marketing .trip-preview ol {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.marketing .trip-preview li {
  border-left: 3px solid #a1c7c7;
  padding: 0 0 20px 20px;
  margin: 0;
}
.marketing .trip-preview li:last-child {
  padding-bottom: 0;
}
.marketing .trip-preview h3 {
  font-size: 18px;
  margin: 3px 0;
}
.marketing .trip-preview li p {
  font-size: 14px;
  margin: 0;
  color: #526474;
}
.marketing .content-section {
  max-width: 1200px;
  margin: auto;
  padding: 56px 32px;
  border-top: 1px solid #d9e2df;
}
.marketing .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 56px;
  margin-top: 40px;
}
.marketing .feature-grid p,
.marketing .faq p {
  color: #425769;
}
.marketing .feature-number {
  font-size: 13px;
  color: var(--teal);
  font-weight: 750;
}
.marketing .faq {
  max-width: 900px;
}
.marketing .faq > div {
  padding: 15px 0;
  border-bottom: 1px solid #d9e2df;
}
.marketing .closing {
  text-align: center;
  background: #e5efeb;
  padding: 64px 24px;
}
.marketing footer {
  flex-wrap: wrap;
  font-size: 14px;
}
.marketing footer p {
  margin: 0;
}
.marketing .skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.marketing .skip-link:focus {
  top: 12px;
}
@media (max-width: 760px) {
  .marketing .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
  .marketing nav {
    gap: 20px;
  }
  .marketing .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 22px 56px;
  }
  .marketing .trip-preview {
    transform: none;
  }
  .marketing .content-section {
    padding: 40px 22px;
  }
  .marketing .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .marketing footer {
    padding: 28px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .marketing .actions {
    gap: 20px;
  }
  .marketing .intro {
    font-size: 18px;
  }
}
