.landing-page {
  background: #f3f5f7;
}

.landing-page main {
  padding-top: var(--topbar-height);
}

.landing-topbar {
  background: rgba(17, 20, 25, 0.97);
}

.landing-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-hero {
  position: relative;
  height: min(620px, calc(100vh - 150px));
  min-height: 430px;
  overflow: hidden;
  background: #0a1015;
  color: #fff;
  isolation: isolate;
}

.landing-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.landing-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 10, 15, 0.55);
}

.landing-hero__content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(620px, calc(100% - 48px));
  transform: translateY(-50%);
}

.landing-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
  color: #75e8f3;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-kicker svg {
  width: 17px;
}

.landing-hero h1 {
  margin-bottom: 12px;
  font-size: 4.7rem;
  line-height: 1;
}

.landing-hero__content > p {
  max-width: 570px;
  margin-bottom: 26px;
  color: #e2edf0;
  font-size: 1.14rem;
}

.hero-actions,
.start-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-button {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-button svg {
  width: 19px;
}

.hero-button--primary {
  background: #00a7c4;
  color: #071419;
}

.hero-button--primary:hover {
  background: #52d3e5;
}

.hero-button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(13, 20, 26, 0.58);
  color: #fff;
}

.hero-button--secondary:hover {
  border-color: #fff;
  background: rgba(13, 20, 26, 0.82);
}

.hero-button--light {
  border-color: #c9d3d9;
  background: #fff;
  color: #23343c;
}

.hero-button--light:hover {
  background: #edf3f5;
}

.hero-next {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce9ed;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-next svg {
  width: 18px;
}

.destinations {
  padding: 72px 0 82px;
  background: #fff;
}

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

.landing-section-heading h2,
.capabilities__intro h2,
.start-band h2 {
  margin-bottom: 8px;
  font-size: 2.15rem;
}

.landing-section-heading p,
.capabilities__intro p {
  color: var(--muted);
}

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

.destination-card {
  display: grid;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: 8px;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  background: #f9fbfc;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.destination-card:hover {
  transform: translateY(-2px);
  border-color: #aebac2;
  box-shadow: 0 10px 24px rgba(26, 37, 46, 0.09);
}

.destination-card.is-disabled:hover {
  transform: none;
  border-color: var(--line);
  border-top-color: var(--green);
  box-shadow: none;
}

.landing-footer nav span[aria-disabled="true"] {
  color: #87929a;
}

.destination-card--pink { border-top-color: var(--pink); }
.destination-card--green { border-top-color: var(--green); }
.destination-card--yellow { border-top-color: #d59a15; }

.destination-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  place-items: center;
  background: var(--cyan-soft);
  color: #08788e;
}

.destination-card--pink .destination-card__icon { background: var(--pink-soft); color: #aa2b62; }
.destination-card--green .destination-card__icon { background: var(--green-soft); color: #187452; }
.destination-card--yellow .destination-card__icon { background: var(--yellow-soft); color: #956300; }

.destination-card__icon svg {
  width: 25px;
}

.destination-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.destination-card strong {
  font-size: 1.05rem;
}

.destination-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.destination-card > svg {
  width: 20px;
  color: #849099;
}

.capabilities {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef2f4;
}

.capabilities .landing-container {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 72px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd4da;
  border-left: 1px solid #cbd4da;
}

.capability-list article {
  min-height: 174px;
  padding: 20px;
  border-right: 1px solid #cbd4da;
  border-bottom: 1px solid #cbd4da;
  background: #fff;
}

.capability-list article > span {
  font-size: 1.55rem;
}

.capability-list h3 {
  margin: 13px 0 6px;
}

.capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.start-band {
  padding: 56px 0;
  background: #15232a;
  color: #fff;
}

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

.start-band h2 {
  margin-bottom: 7px;
}

.start-band p {
  margin: 0;
  color: #bacbd2;
}

.start-band__actions {
  flex: 0 0 auto;
}

.landing-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e1216;
  color: #fff;
}

.landing-footer .landing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.landing-footer nav a {
  color: #aebac2;
  font-size: 0.8rem;
  text-decoration: none;
}

.landing-footer nav a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .landing-hero h1 {
    font-size: 3.8rem;
  }

  .capabilities .landing-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .start-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .landing-container {
    width: calc(100% - 24px);
  }

  .landing-topbar .text-button span {
    display: none;
  }

  .landing-topbar .text-button {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .landing-hero {
    height: calc(100vh - 142px);
    min-height: 420px;
    max-height: 590px;
  }

  .landing-hero__content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .landing-hero h1 {
    font-size: 3.2rem;
  }

  .landing-hero__content > p {
    font-size: 1rem;
  }

  .hero-next {
    right: 18px;
    bottom: 16px;
  }

  .destinations,
  .capabilities {
    padding: 58px 0;
  }

  .landing-section-heading h2,
  .capabilities__intro h2,
  .start-band h2 {
    font-size: 1.75rem;
  }

  .destination-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 104px;
    padding: 16px;
  }

  .capability-list article {
    min-height: 140px;
  }

  .start-band {
    padding: 46px 0;
  }

  .start-band__actions,
  .start-band__actions .hero-button {
    width: 100%;
  }

  .landing-footer .landing-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 390px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .hero-button {
    width: 100%;
  }

  .destination-card {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 11px;
  }

  .destination-card__icon {
    width: 44px;
    height: 44px;
  }
}
