:root {
  color-scheme: light;
  --atlas-paper: #f6ecda;
  --atlas-cream: #fffaf2;
  --atlas-sand: #ead0aa;
  --atlas-ink: #202633;
  --atlas-muted: #56606f;
  --atlas-sea: #2f78c4;
  --atlas-sea-soft: #dcedff;
  --atlas-land: #69b57b;
  --atlas-coral: #d77654;
  --atlas-stamp: #17344f;
  --atlas-line: rgba(23, 52, 79, 0.12);
  --atlas-shadow: 0 24px 50px rgba(25, 35, 51, 0.1);
  --atlas-shadow-tight: 0 12px 24px rgba(25, 35, 51, 0.08);
  --atlas-radius-xl: 32px;
  --atlas-radius-lg: 24px;
  --atlas-radius-md: 18px;
  --atlas-radius-sm: 14px;
  --atlas-shell: min(1160px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--atlas-ink);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(180deg, #f4d8af 0%, #f6ecda 32%, #f2e5d1 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.24;
}

body::after {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.12), transparent 18%);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--atlas-coral);
  outline-offset: 3px;
}

.atlas-topbar {
  width: var(--atlas-shell);
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(23, 52, 79, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--atlas-shadow-tight);
}

.atlas-back,
.atlas-mini-link {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--atlas-stamp);
}

.atlas-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.atlas-back::before {
  content: "<";
  font-size: 0.88rem;
}

.atlas-topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.atlas-topbar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.atlas-wordmark {
  display: grid;
  gap: 2px;
}

.atlas-wordmark strong {
  font-size: 0.98rem;
}

.atlas-wordmark span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--atlas-muted);
}

.atlas-topbar-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.atlas-shell {
  width: var(--atlas-shell);
  margin: 20px auto 48px;
}

.atlas-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 34px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(247, 234, 208, 0.88)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 40%);
  border: 1px solid rgba(23, 52, 79, 0.08);
  box-shadow: var(--atlas-shadow);
  overflow: hidden;
}

.atlas-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.atlas-hero-copy,
.atlas-hero-visual {
  position: relative;
  z-index: 1;
}

.atlas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 16px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--atlas-coral);
}

.atlas-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1;
}

h3 {
  font-size: 1.28rem;
}

.atlas-lead,
.atlas-body,
.atlas-note,
.atlas-faq-copy,
.atlas-ledger p,
.route-log p,
.ticket-card p {
  color: var(--atlas-muted);
  line-height: 1.65;
}

.atlas-lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.atlas-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.stamp-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stamp-link {
  color: #fffaf2;
  background: linear-gradient(135deg, #d77654, #c25f45);
  box-shadow: 0 16px 28px rgba(215, 118, 84, 0.26);
}

.ghost-link {
  color: var(--atlas-stamp);
  border: 1px solid rgba(23, 52, 79, 0.16);
  background: rgba(255, 250, 242, 0.82);
}

.stamp-link:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.atlas-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.atlas-proof-chip {
  padding: 14px 16px;
  border-radius: var(--atlas-radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-proof-chip span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--atlas-muted);
}

.atlas-proof-chip strong {
  display: block;
  font-size: 1rem;
}

.atlas-hero-visual {
  display: grid;
  gap: 16px;
}

.atlas-poster {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 228, 200, 0.82));
  border: 1px solid rgba(23, 52, 79, 0.08);
  box-shadow: var(--atlas-shadow-tight);
}

.atlas-poster img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-poster-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 200px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(23, 52, 79, 0.12);
  box-shadow: var(--atlas-shadow-tight);
}

.atlas-poster-note span,
.atlas-panel-note span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--atlas-coral);
}

.atlas-poster-note strong {
  display: block;
  font-size: 0.95rem;
}

.atlas-panel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.atlas-panel-note,
.atlas-panel-badge {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-panel-badge {
  display: grid;
  place-items: center;
  min-width: 136px;
  text-align: center;
}

.atlas-panel-badge strong {
  font-size: 2.4rem;
  line-height: 1;
}

.atlas-panel-badge span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--atlas-muted);
}

.atlas-section {
  margin-top: 26px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(23, 52, 79, 0.08);
  box-shadow: var(--atlas-shadow-tight);
}

.atlas-section-head {
  max-width: 68ch;
}

.atlas-section-head p {
  margin: 14px 0 0;
}

.atlas-reason-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  margin-top: 22px;
}

.atlas-callout {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.88), rgba(223, 238, 255, 0.74));
  border: 1px solid rgba(47, 120, 196, 0.18);
}

.atlas-callout ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--atlas-muted);
  line-height: 1.7;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ticket-card {
  position: relative;
  padding: 22px 18px;
  min-height: 220px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 233, 209, 0.9));
  border: 1px solid rgba(23, 52, 79, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ticket-card::before,
.ticket-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  background: var(--atlas-paper);
  border: 1px solid rgba(23, 52, 79, 0.06);
}

.ticket-card::before {
  left: -12px;
}

.ticket-card::after {
  right: -12px;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(25, 35, 51, 0.1);
}

.ticket-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(47, 120, 196, 0.12);
  color: var(--atlas-sea);
  font-family: "Menlo", "Consolas", monospace;
  font-size: 0.9rem;
  font-weight: 700;
}

.route-log {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
}

.route-log li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 229, 202, 0.82));
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.route-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--atlas-stamp);
  color: #fffaf2;
  font-family: "Menlo", "Consolas", monospace;
  font-size: 0.95rem;
  font-weight: 700;
}

.atlas-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  margin-top: 24px;
}

.atlas-visual-panel {
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 233, 209, 0.86));
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-visual-panel img {
  border-radius: 22px;
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-visual-panel figcaption {
  margin-top: 12px;
  color: var(--atlas-muted);
  line-height: 1.6;
}

.atlas-globe-stage {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.atlas-globe-orb {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 10px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.42), transparent 36%),
    url("./assets/earth.jpg") center / cover no-repeat;
  border: 10px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 56px rgba(25, 35, 51, 0.18);
}

.atlas-icon-tag {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 132px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(23, 52, 79, 0.08);
  box-shadow: var(--atlas-shadow-tight);
}

.atlas-icon-tag img {
  width: 100%;
  border-radius: 18px;
}

.atlas-icon-tag strong,
.atlas-globe-note strong {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
}

.atlas-globe-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 200px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(23, 52, 79, 0.1);
}

.atlas-ledger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.atlas-ledger {
  padding: 22px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 233, 209, 0.88));
  border: 1px solid rgba(23, 52, 79, 0.08);
}

.atlas-ledger-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atlas-coral);
}

.atlas-ledger strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.atlas-availability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.atlas-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(23, 52, 79, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.atlas-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.atlas-faq-list details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 52, 79, 0.08);
  overflow: hidden;
}

.atlas-faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
}

.atlas-faq-list summary::-webkit-details-marker {
  display: none;
}

.atlas-faq-copy {
  padding: 0 20px 18px;
}

.atlas-cta {
  position: relative;
  overflow: hidden;
}

.atlas-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(47, 120, 196, 0.08);
}

.atlas-footer {
  width: var(--atlas-shell);
  margin: 0 auto 36px;
  padding: 0 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--atlas-muted);
}

.atlas-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .ticket-grid,
  .atlas-ledger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-hero,
  .atlas-reason-grid,
  .atlas-visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .atlas-topbar {
    width: min(100vw - 20px, 100%);
    margin-top: 10px;
    padding: 14px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .atlas-topbar-links {
    justify-content: space-between;
  }

  .atlas-shell,
  .atlas-footer {
    width: min(100vw - 20px, 100%);
  }

  .atlas-hero,
  .atlas-section {
    padding: 24px 20px;
    border-radius: 28px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .atlas-proof-strip,
  .ticket-grid,
  .atlas-ledger-grid {
    grid-template-columns: 1fr;
  }

  .atlas-panel-row {
    grid-template-columns: 1fr;
  }

  .atlas-globe-stage {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .atlas-icon-tag,
  .atlas-globe-note {
    position: static;
    max-width: none;
    width: auto;
  }

  .route-log li {
    grid-template-columns: 1fr;
  }

  .route-step {
    width: 40px;
    height: 40px;
  }

  .atlas-footer {
    padding: 0 6px 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
