:root {
  --canvas: #f3efe5;
  --canvas-deep: #e5dfd1;
  --ink: #17211f;
  --ink-soft: #52605c;
  --rule: rgba(23, 33, 31, 0.22);
  --acid: #d5f66f;
  --acid-deep: #bddc52;
  --blue: #253ccf;
  --blue-deep: #172692;
  --white: #fffdf8;
  --display-font: Georgia, Cambria, "Times New Roman", serif;
  --ui-font: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(213, 246, 111, 0.38), transparent 25rem),
    linear-gradient(180deg, var(--canvas) 0%, #f8f5ed 72%, var(--canvas-deep) 100%);
  font-family: var(--ui-font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  display: flex;
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 68px) 24px;
  flex-direction: column;
}

.masthead,
.hero,
.card-meta,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display-font);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.edition-note,
.eyebrow,
.card-kicker,
.card-footnote,
.site-footer {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edition-note {
  margin: 0;
  color: var(--ink-soft);
}

main {
  flex: 1;
}

.hero {
  gap: clamp(36px, 7vw, 112px);
  padding: clamp(52px, 8vw, 112px) 0 clamp(42px, 6vw, 82px);
  align-items: flex-end;
}

.hero-intro {
  flex: 1 1 64%;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.hero h1 span {
  display: block;
  color: var(--blue);
  font-style: italic;
}

.hero-copy {
  width: min(100%, 360px);
  padding-bottom: 6px;
}

.hero-copy > p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-family: var(--display-font);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.availability-dot {
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 60, 207, 0.12);
}

.destinations {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(14px, 2vw, 28px);
}

.destination-card {
  position: relative;
  display: flex;
  min-height: clamp(390px, 43vw, 570px);
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  isolation: isolate;
  cursor: default;
  user-select: none;
  animation: reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.destination-card[href] {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.destination-card[href]:hover {
  z-index: 3;
  box-shadow: 0 22px 60px rgba(23, 33, 31, 0.18);
  transform: translateY(-5px);
}

.destination-card[href]:focus-visible {
  z-index: 4;
  outline: 4px solid var(--blue);
  outline-offset: 5px;
}

.destination-card--cities {
  color: var(--ink);
  background: var(--acid);
  animation-delay: 80ms;
}

.destination-card--dashboard {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--blue);
  animation-delay: 180ms;
}

.card-meta {
  position: relative;
  z-index: 2;
}

.card-number {
  font-family: var(--display-font);
  font-size: 16px;
  font-style: italic;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  padding: 5px 12px;
  align-items: center;
  border: 1px solid rgba(23, 33, 31, 0.48);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-badge--dark {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.48);
  background: rgba(23, 38, 146, 0.32);
}

.status-badge--live {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.card-content {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-top: auto;
}

.card-kicker {
  margin: 0 0 8px;
  opacity: 0.72;
}

.card-content h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: clamp(56px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.card-content > p:last-child {
  max-width: 450px;
  margin: 0;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.45;
  opacity: 0.78;
}

.card-footnote {
  position: relative;
  z-index: 2;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  opacity: 0.72;
}

.city-illustration,
.dashboard-illustration {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.city-orbit {
  position: absolute;
  border: 1px solid rgba(23, 33, 31, 0.34);
  border-radius: 50%;
}

.city-orbit--one {
  top: -22%;
  right: -5%;
  width: min(40vw, 520px);
  aspect-ratio: 1;
}

.city-orbit--two {
  top: 3%;
  right: 10%;
  width: min(26vw, 330px);
  aspect-ratio: 1;
}

.city-block {
  position: absolute;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(23, 33, 31, 0.08);
  transform: rotate(-11deg);
}

.city-block--one {
  top: 22%;
  right: 18%;
  width: 58px;
  height: 118px;
}

.city-block--two {
  top: 18%;
  right: 7%;
  width: 42px;
  height: 78px;
  background: var(--blue);
}

.city-block--three {
  top: 42%;
  right: 11%;
  width: 82px;
  height: 34px;
  background: var(--white);
}

.dashboard-frame {
  position: absolute;
  top: 18%;
  right: -8%;
  width: min(33vw, 430px);
  aspect-ratio: 1.28;
  border: 1px solid rgba(255, 253, 248, 0.42);
  transform: rotate(6deg);
}

.dashboard-frame::before,
.dashboard-frame::after {
  position: absolute;
  content: "";
}

.dashboard-frame::before {
  inset: 9%;
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.dashboard-frame::after {
  top: 0;
  bottom: 0;
  left: 31%;
  width: 1px;
  background: rgba(255, 253, 248, 0.28);
}

.dashboard-line {
  position: absolute;
  right: 3%;
  height: 1px;
  background: rgba(255, 253, 248, 0.34);
  transform: rotate(6deg);
}

.dashboard-line--one {
  top: 31%;
  width: 39%;
}

.dashboard-line--two {
  top: 37%;
  width: 29%;
}

.dashboard-line--three {
  top: 43%;
  width: 34%;
}

.dashboard-signal {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 15px;
  height: 15px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(213, 246, 111, 0.16);
}

.site-footer {
  gap: 24px;
  padding-top: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.company-details {
  display: grid;
  flex: 1 1 100%;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: none;
}

.company-details a {
  color: inherit;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
}

.legal-links a {
  padding: 4px 1px;
  color: var(--ink-soft);
  text-decoration-color: rgba(23, 33, 31, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.legal-links a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.legal-links a:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-radius: 2px;
  outline: 3px solid var(--acid-deep);
  outline-offset: 3px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-shell {
    padding-inline: 18px;
  }

  .edition-note {
    display: none;
  }

  .hero {
    display: block;
    padding: 52px 0 42px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 116px);
  }

  .hero-copy {
    margin-top: 42px;
  }

  .destinations {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 440px;
  }

  .city-orbit--one {
    width: 480px;
  }

  .city-orbit--two {
    width: 300px;
  }

  .dashboard-frame {
    width: 390px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .site-shell {
    padding-top: 18px;
  }

  .hero h1 {
    letter-spacing: -0.075em;
  }

  .destination-card {
    min-height: 420px;
    padding: 22px;
  }

  .card-content h2 {
    font-size: 58px;
  }

  .city-block--one {
    right: 22%;
  }
}

@media (max-width: 360px) {
  .card-content h2 {
    font-size: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
