:root {
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #15191d;
  --muted: #6b7377;
  --line: rgba(21, 25, 29, 0.12);
  --green: #1b7b61;
  --mint: #dff5ec;
  --gold: #d49b36;
  --red: #b94132;
  --shadow: rgba(21, 25, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(27, 123, 97, 0.05) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(315deg, rgba(212, 155, 54, 0.05) 25%, transparent 25%) 0 0 / 38px 38px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.button-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 950;
}

.brand span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: inset 0 -4px 0 var(--gold);
}

.nav {
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.hero-banner {
  width: min(100%, 1660px);
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.hero-banner img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 60px var(--shadow);
}

.dashboard {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1rem;
  width: min(100% - 2rem, 1180px);
  margin: 2rem auto 0;
}

.ticket,
.hero-copy,
.character-runway,
.route-grid div,
.copy-band {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px var(--shadow);
}

.ticket {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 22rem;
  padding: 1.2rem;
  border-left: 0.5rem solid var(--green);
}

.ticket-label,
.ticket-note,
.eyebrow {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket strong {
  font-size: 1.35rem;
  word-break: break-word;
}

.hero-copy {
  min-height: 22rem;
  padding: 2.6rem;
  background:
    linear-gradient(120deg, rgba(223, 245, 236, 0.85), transparent 48%),
    rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin: 0 0 0.85rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 4.9rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 46rem;
  color: #3f474a;
  font-size: 1.14rem;
  line-height: 1.65;
}

.button-row {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.08rem;
  border: 1px solid rgba(21, 25, 29, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
.copy-button:hover {
  border-color: rgba(27, 123, 97, 0.45);
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--ink));
}

.character-runway {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1fr);
  gap: 2rem;
  width: min(100% - 2rem, 1180px);
  margin: 4rem auto 0;
  padding: 1rem;
  overflow: hidden;
}

.character-runway figure {
  position: relative;
  margin: 0;
  background: var(--white);
}

.character-runway figure::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 11%;
  height: 0.18rem;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2rem, transparent 2rem 3rem);
  opacity: 0.2;
}

.character-runway img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  object-position: center 42%;
}

.runway-copy {
  align-self: center;
  padding: 2rem 1rem;
}

.runway-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(100% - 2rem, 1180px);
  margin: 2rem auto 0;
}

.route-grid div {
  min-height: 13rem;
  padding: 1.15rem;
}

.route-grid span {
  display: inline-block;
  margin-bottom: 2.3rem;
  color: var(--gold);
  font-weight: 950;
}

.route-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.route-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.copy-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 1180px);
  margin: 4rem auto;
  padding: 1.35rem;
  background:
    linear-gradient(90deg, var(--mint), rgba(212, 155, 54, 0.14)),
    var(--white);
}

.copy-band h2 {
  margin: 0;
  font-size: 2rem;
}

.copy-band .eyebrow {
  margin-bottom: 0.35rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .dashboard,
  .character-runway {
    grid-template-columns: 1fr;
  }

  .ticket {
    min-height: auto;
    gap: 1rem;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.15rem;
  }

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

@media (max-width: 620px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-banner {
    padding: 0;
  }

  .hero-banner img {
    aspect-ratio: 16 / 9;
  }

  .dashboard,
  .character-runway,
  .route-grid,
  .copy-band {
    width: min(100% - 1rem, 1180px);
  }

  .hero-copy {
    padding: 2rem 1.2rem;
  }

  .character-runway img {
    height: 25rem;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .copy-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
