:root {
  --aqua: #8cecf3;
  --aqua-soft: #c7fbfb;
  --aqua-deep: #24bfd0;
  --ink: #15100e;
  --suit: #201d1a;
  --cream: #fff6e7;
  --paper: #fffdf7;
  --blonde: #d6aa68;
  --skin: #f4a095;
  --blue: #2f7bd2;
  --red: #d72f2f;
  --muted: #665650;
  --white: #ffffff;
  --shadow: rgba(21, 16, 14, 0.2);
  --line: rgba(21, 16, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.88), transparent 22rem),
    radial-gradient(circle at 78% 8%, rgba(244, 160, 149, 0.26), transparent 20rem),
    linear-gradient(135deg, var(--aqua) 0%, var(--aqua-soft) 54%, #f2fffb 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(21, 16, 14, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(21, 16, 14, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: auto -8vw -22vh -8vw;
  z-index: -1;
  height: 42vh;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(47, 123, 210, 0.22), rgba(215, 47, 47, 0.16));
  transform: skewY(-3deg);
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  border: 4px solid var(--ink);
  border-radius: 16px;
  background:
    linear-gradient(45deg, var(--suit) 25%, transparent 25% 50%, var(--suit) 50% 75%, transparent 75%),
    var(--white);
  background-size: 14px 14px;
  box-shadow: 6px 6px 0 var(--ink);
}

.brand-mark::before {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 8px;
  height: 16px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
  background: var(--blonde);
}

.brand-mark::after {
  position: absolute;
  left: 21px;
  bottom: 4px;
  width: 10px;
  height: 20px;
  border: 3px solid var(--ink);
  content: "";
  background: var(--red);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.nav button,
.primary,
.secondary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav a:hover,
.nav button:hover,
.primary:hover,
.secondary:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  min-height: min(780px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 0.96fr) minmax(350px, 1.04fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0 44px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.pass-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 9px 12px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pass-tag::before {
  display: block;
  width: 30px;
  height: 12px;
  border: 3px solid var(--ink);
  content: "";
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--red) 52% 100%);
}

h1 {
  max-width: 7ch;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(64px, 12vw, 158px);
  line-height: 0.76;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 rgba(255, 255, 255, 0.75), 12px 12px 0 rgba(21, 16, 14, 0.1);
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 850;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary,
.secondary {
  min-width: 150px;
}

.primary {
  color: var(--white);
  background: var(--ink);
}

.secondary {
  background: var(--skin);
}

.id-strip {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.id-strip div {
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 4px 4px 0 var(--ink);
}

.id-strip b {
  display: block;
  margin-bottom: 7px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
}

.id-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.pass-card {
  position: relative;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 32px;
  background: var(--aqua);
  box-shadow: 16px 16px 0 var(--ink), 0 30px 72px var(--shadow);
}

.pass-card::before {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  width: 118px;
  height: 118px;
  border: 5px solid var(--ink);
  border-radius: 26px;
  content: "67";
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 48px;
}

.pass-card::after {
  position: absolute;
  right: 22px;
  top: 22px;
  bottom: 22px;
  z-index: 2;
  width: 42px;
  border: 4px solid var(--ink);
  content: "";
  background:
    linear-gradient(180deg, var(--blue) 0 44%, var(--white) 44% 55%, var(--red) 55% 100%);
  opacity: 0.9;
}

.pass-card img {
  display: block;
  width: 100%;
  height: min(650px, 70vh);
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.card-label {
  position: absolute;
  left: 20px;
  right: 76px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.banner {
  width: min(1360px, calc(100% - 32px));
  margin: 8px auto 0;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 34px;
  background: var(--aqua);
  box-shadow: 12px 12px 0 var(--ink);
}

.banner img {
  display: block;
  width: 100%;
  height: clamp(210px, 31vw, 400px);
  object-fit: cover;
}

.ticker {
  display: flex;
  overflow: hidden;
  margin: 38px 0;
  border-block: 5px solid var(--ink);
  background: var(--paper);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: moveTicker 17s linear infinite;
}

.ticker span {
  padding: 14px 22px;
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(20px, 3.3vw, 44px);
  text-transform: uppercase;
  white-space: nowrap;
}

.content {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 24px;
  padding: 22px 0 72px;
}

.profile,
.notes {
  border: 5px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 10px 10px 0 var(--ink);
}

.profile {
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(22px, 4vw, 38px);
}

.profile h2,
.notes h2,
.final h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 5.8vw, 78px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.profile p,
.final p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.notes {
  padding: clamp(20px, 3vw, 30px);
}

.note-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.note {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 14px;
  background: var(--white);
}

.note b {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--white);
  background: var(--blue);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
}

.note:nth-child(2) b {
  background:
    linear-gradient(45deg, var(--suit) 25%, transparent 25% 50%, var(--suit) 50% 75%, transparent 75%),
    var(--white);
  background-size: 12px 12px;
  color: var(--ink);
}

.note:nth-child(3) b {
  background: var(--red);
}

.note h3 {
  margin: 0 0 6px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.final {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 6px solid var(--ink);
  border-radius: 36px;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(47, 123, 210, 0.18), transparent 44%, rgba(215, 47, 47, 0.18)),
    var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

@keyframes moveTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

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

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .content {
    grid-template-columns: 1fr;
  }

  .pass-card {
    order: -1;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .shell,
  .banner,
  .final {
    width: min(100% - 22px, 1180px);
  }

  .nav a,
  .nav button,
  .primary,
  .secondary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .pass-card img {
    min-height: 360px;
    height: 58vh;
  }

  .pass-card::before {
    width: 78px;
    height: 78px;
    font-size: 32px;
  }

  .pass-card::after {
    right: 14px;
    top: 14px;
    bottom: 14px;
    width: 30px;
  }

  .card-label {
    left: 12px;
    right: 54px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .id-strip {
    grid-template-columns: 1fr;
  }

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

  .note b {
    width: 56px;
    height: 56px;
  }

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