:root {
  --ink: #12201a;
  --muted: #5a6b62;
  --line: #d5e0d9;
  --paper: #f4f7f5;
  --card: #ffffff;
  --brand: #0f6b4c;
  --brand-dark: #0a4d38;
  --brand-soft: #e7f3ed;
  --accent: #c45c26;
  --shade: rgba(10, 30, 22, 0.62);
  --shadow: 0 22px 60px rgba(18, 32, 26, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-dark);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: color-mix(in srgb, var(--brand) 35%, transparent);
  color: var(--brand-dark);
}

.btn-light {
  background: #fff;
  color: var(--brand-dark);
}

.btn-lg {
  padding: 0.9rem 1.35rem;
  font-size: 1rem;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.top-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

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

.nav-parent {
  color: var(--brand) !important;
  border-bottom: 2px solid color-mix(in srgb, var(--brand) 40%, transparent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.top-actions .btn-ghost {
  display: none;
}

.burger {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}

.burger span {
  width: 1rem;
  height: 2px;
  background: var(--ink);
  display: block;
}

.drawer {
  position: fixed;
  inset: 4.25rem 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.85rem;
  z-index: 35;
  box-shadow: var(--shadow);
}

.drawer[hidden] {
  display: none !important;
}

.drawer a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 28, 20, 0.88) 12%, rgba(8, 28, 20, 0.45) 55%, rgba(8, 28, 20, 0.25) 100%),
    linear-gradient(to top, rgba(8, 28, 20, 0.75), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: 40rem;
  animation: riseIn 0.9s ease both;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, #fff 80%, transparent);
}

.eyebrow a {
  color: #fff;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  max-width: 34rem;
  color: color-mix(in srgb, #fff 88%, transparent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-pills li {
  border: 1px solid color-mix(in srgb, #fff 35%, transparent);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: color-mix(in srgb, #fff 8%, transparent);
}

.strip {
  background: var(--brand);
  color: #fff;
}

.strip-inner {
  padding: 1rem 0;
  font-weight: 600;
}

.strip a {
  color: #fff;
  margin-left: 0.35rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2,
.feature-split h2,
.cta-band h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.section-head.light p {
  color: color-mix(in srgb, #fff 78%, transparent);
}

/* Tabs */
.tabs {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem;
  background: var(--brand-soft);
  border-bottom: 1px solid var(--line);
}

.tablist button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.tablist button[aria-selected="true"] {
  background: var(--brand);
  color: #fff;
}

.tabpanel {
  padding: 1.5rem;
}

.tabpanel[hidden] {
  display: none;
}

.tab-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.tab-grid h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.tab-grid p,
.tab-grid li {
  color: var(--muted);
}

.tab-grid ul,
.steps {
  padding-left: 1.1rem;
  margin: 0 0 1.25rem;
}

.steps {
  list-style: decimal;
}

.tab-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}

.tab-grid figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--brand) 35%, transparent), transparent 40%),
    linear-gradient(160deg, #0d241b, #12201a 55%, #0a4d38);
  color: #fff;
}

.audience-grid {
  display: grid;
  gap: 1rem;
}

.audience-grid article {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, #fff 16%, transparent);
}

.audience-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #9fecc4;
}

.audience-grid p {
  margin: 0 0 1rem;
  color: color-mix(in srgb, #fff 82%, transparent);
}

.audience-grid a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.feature-split {
  background: #10251c;
  color: #fff;
}

.feature-split .split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding-block: 1.5rem;
}

.feature-split p {
  color: color-mix(in srgb, #fff 80%, transparent);
}

.feature-split figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-split figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-split .btn-ghost {
  border-color: color-mix(in srgb, #fff 35%, transparent);
  color: #fff;
  margin-left: 0.5rem;
}

.fleet-grid {
  display: grid;
  gap: 1rem;
}

.fleet-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.fleet-grid h3 {
  margin: 1rem 1.1rem 0.35rem;
  font-family: var(--font-display);
}

.fleet-grid p {
  margin: 0 1.1rem 1.2rem;
  color: var(--muted);
}

.center-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.values {
  background: var(--brand-soft);
}

.values-grid {
  display: grid;
  gap: 1rem;
}

.values-grid article {
  padding: 1.4rem;
}

.values-grid .icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.values-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  gap: 1rem;
}

.guide-grid a,
.guide-grid article {
  text-decoration: none;
  color: inherit;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-grid a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.guide-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--brand-dark);
}

.faq-answer {
  color: var(--muted);
}

.faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
}

.faq-answer li {
  margin: 0.25rem 0;
}

.faq-answer a {
  font-weight: 600;
}

.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, var(--brand), var(--brand-dark)),
    var(--brand);
  color: #fff;
}

.cta-band p {
  margin: 0.35rem 0 0;
  color: color-mix(in srgb, #fff 85%, transparent);
}

.foot {
  background: #0d1c16;
  color: color-mix(in srgb, #fff 78%, transparent);
  padding: 3rem 0 1.5rem;
}

.foot a {
  color: #fff;
  text-decoration: none;
}

.foot a:hover {
  color: #9fecc4;
}

.foot-grid {
  display: grid;
  gap: 1.75rem;
}

.foot-brand {
  color: #fff;
  margin-bottom: 0.75rem;
}

.foot-note {
  max-width: 22rem;
  margin: 0;
  font-size: 0.92rem;
}

.foot h4 {
  margin: 0 0 0.75rem;
  color: #9fecc4;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.foot-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, #fff 12%, transparent);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 760px) {
  .top-actions {
    margin-left: 0;
  }

  .top-actions .btn-ghost {
    display: inline-flex;
  }

  .nav {
    display: flex;
  }

  .burger {
    display: none;
  }

  .tab-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .audience-grid,
  .fleet-grid,
  .values-grid,
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-split .split {
    grid-template-columns: 1fr 1fr;
  }

  .feature-split .split.reverse > :first-child {
    order: 2;
  }

  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero-copy {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }
}
