:root {
  --abyss: #101c32;
  --navy: #152742;
  --navy-2: #213a5e;
  --teal: #168795;
  --teal-bright: #24a8b7;
  --sand: #efe2cc;
  --paper: #f8f1e6;
  --pearl: #fff9ec;
  --orange: #e4522f;
  --hazard: #f4c20d;
  --red: #c8102e;
  --ink: #101c32;
  --muted: #9fb0c9;
  --line: rgba(239, 231, 216, .18);
  --shadow: 0 24px 70px rgba(8, 14, 28, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--sand);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 249, 236, .08) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--abyss);
  font-family: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.light { background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--hazard);
  outline-offset: 3px;
}
body.cart-open { overflow: hidden; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  color: var(--teal-bright);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.serif { font-family: Georgia, "Times New Roman", serif; }
.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: var(--hazard);
  color: var(--ink);
  padding: 8px 12px;
  transform: translateY(-150%);
}
.skip:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 26, 51, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  color: var(--pearl);
  letter-spacing: .06em;
}
.brand img {
  width: 58px;
  height: 34px;
  object-fit: contain;
}
.brand sup { color: var(--teal-bright); font-size: 10px; }
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--pearl); }
.cart-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pearl);
  background: transparent;
  padding: 9px 14px;
  cursor: pointer;
}
.cart-button:hover { border-color: var(--teal-bright); }
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 22px;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled, .btn[aria-disabled="true"] { cursor: wait; opacity: .62; transform: none; }
.btn-primary { background: var(--orange); color: var(--pearl); }
.btn-primary:hover { background: #ff6a30; }
.btn-ghost { border-color: var(--line); color: var(--pearl); background: transparent; }
.btn-ghost:hover { border-color: var(--teal-bright); }
.btn-dark { background: var(--ink); color: var(--pearl); }
.btn-full { width: 100%; }

.section { padding: clamp(64px, 7vw, 88px) 0; }
.section.light { background: var(--paper); color: var(--ink); }
.section h1, .section h2, .section h3, .hero h1 {
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 1;
  letter-spacing: .015em;
}
.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 42px); }
.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 5vw, 58px);
}
.section-head p { margin: 14px 0 0; color: #c2cfe0; font-size: 18px; }
.light .section-head p { color: #4a5264; }

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: clamp(52px, 7vw, 72px) 0 clamp(44px, 6vw, 54px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 236, .08) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 249, 236, .06) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(60% 48% at 82% 10%, rgba(36, 168, 183, .22), transparent 62%),
    radial-gradient(45% 42% at 10% 80%, rgba(228, 82, 47, .16), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(34px, 5vw, 52px);
  align-items: center;
}
.hero h1 {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--pearl);
  font-size: clamp(44px, 6.1vw, 86px);
  text-transform: uppercase;
}
.hero h1 em { color: var(--teal-bright); font-style: italic; font-weight: 900; }
.hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: #cfdbeb;
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note {
  margin: 22px 0 0;
  max-width: 560px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 13px;
}
.hero-card {
  background: var(--pearl);
  border: 4px solid rgba(255, 249, 236, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--paper); padding: 18px; }
.hero-card-caption {
  padding: 16px 18px;
  border-top: 3px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker {
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 34s linear infinite;
}
.ticker span {
  padding: 12px 24px;
  white-space: nowrap;
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
@keyframes scroll { to { transform: translateX(-50%); } }

.drop-grid, .product-grid, .cast-grid, .voice-grid, .faq-grid {
  display: grid;
  gap: 22px;
}
.drop-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.voice-grid { grid-template-columns: repeat(3, 1fr); }
.cast-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }

.product-card, .voice-card, .memo-card, .cast-card, .faq-card, .launch-card {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 230, .055);
  overflow: hidden;
}
.light .product-card, .light .voice-card, .light .memo-card, .light .cast-card, .light .faq-card, .light .launch-card {
  background: var(--pearl);
  border-color: #cdbf9f;
}
.product-card { transition: transform .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-4px) rotate(-.4deg); border-color: var(--teal-bright); }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--sand); }
.product-body { padding: 18px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin: 10px 0 8px;
}
.product-card h3, .voice-card h3, .memo-card h3, .cast-card h3, .faq-card h3 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.product-card p, .voice-card p, .cast-card p, .faq-card p { color: #b9c6d7; margin: 10px 0 0; }
.light .product-card p, .light .voice-card p, .light .cast-card p, .light .faq-card p { color: #4a5264; }
.price { font-weight: 900; color: var(--orange); }
.badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 5px 9px;
  color: var(--teal-bright);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.voice-card, .memo-card, .cast-card, .faq-card, .launch-card { padding: 24px; }
.voice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 238px;
}
.voice-card .badge { margin-bottom: 14px; }
.voice-card h3 { font-size: 23px; line-height: 1.04; }
.voice-card p { margin-top: 14px; line-height: 1.62; }
.voice-card.seal { border-top: 5px solid var(--teal); }
.voice-card.shield { border-top: 5px solid var(--orange); }
.voice-card.compliance { border-top: 5px solid var(--hazard); }
.voice-card.seal .badge { color: var(--teal-bright); }
.voice-card.shield .badge { color: var(--orange); }
.voice-card.compliance .badge { color: var(--hazard); }
.memo-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--pearl);
  color: var(--ink);
  box-shadow: 0 26px 60px rgba(14, 26, 51, .18);
}
.memo-card p { color: #374052; }
.memo-lines {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid #e2d9c6;
}
.league-band {
  background: #080e1c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.league-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.league-poster {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #101010;
  box-shadow: var(--shadow);
}
.league-poster h2 {
  margin: 0;
  color: var(--pearl);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: .02em;
  line-height: .9;
}
.league-poster .red { color: var(--orange); }
.event-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d5dfec;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.email-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}
.email-box input, .field, select {
  min-height: 48px;
  border: 1px solid #d8cfba;
  border-radius: 6px;
  background: var(--pearl);
  color: var(--ink);
  padding: 12px 14px;
}
.email-result {
  margin-top: 10px;
  color: var(--teal-bright);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.page-hero {
  padding: 76px 0 52px;
  background: linear-gradient(180deg, var(--abyss), #0a1326);
}
.page-hero h1 {
  max-width: 840px;
  margin: 14px 0 0;
  color: var(--pearl);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.page-hero p { max-width: 720px; color: #cfdbeb; font-size: 18px; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}
.product-image-panel {
  border-radius: 8px;
  overflow: hidden;
  background: var(--pearl);
  border: 1px solid #ddd3bd;
}
.product-detail h1 {
  margin: 12px 0 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.product-detail .lead { font-size: 19px; color: #4a5264; }
.product-detail-price { font-size: 28px; }
.detail-list { margin: 24px 0; padding-left: 18px; color: #374052; }
.buy-panel {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #ddd3bd;
  border-radius: 8px;
  background: var(--pearl);
}
.buy-row { display: grid; grid-template-columns: 1fr 120px; gap: 12px; margin: 14px 0; }

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  z-index: 100;
  background: var(--pearl);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform .2s ease;
  box-shadow: -18px 0 50px rgba(0, 0, 0, .28);
  display: flex;
  flex-direction: column;
}
.cart-drawer[hidden], .drawer-backdrop[hidden] { display: none; }
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #ddd3bd;
}
.cart-close { background: transparent; border: 0; font-size: 28px; cursor: pointer; }
.cart-items { padding: 18px; overflow: auto; flex: 1; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid #e6dcc8; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border: 1px solid #ddd3bd; border-radius: 6px; }
.cart-item h4 { margin: 0; font-size: 15px; }
.cart-item p { margin: 4px 0 0; color: #61687a; font-size: 13px; }
.cart-foot { padding: 18px; border-top: 1px solid #ddd3bd; }
.cart-note { margin: 0 0 14px; color: #61687a; font-size: 13px; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 12px; font-weight: 900; }
.checkout-status { min-height: 1.55em; margin: 0 0 10px; color: #375061; font-size: 13px; }
.checkout-status.error { color: var(--red); font-weight: 700; }
.remove-item { border: 0; background: transparent; color: var(--red); cursor: pointer; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .44);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.checkout-result {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
}
.checkout-result-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  border: 2px solid #cdbf9f;
  border-radius: 8px;
  background: var(--pearl);
  box-shadow: 0 24px 70px rgba(16, 28, 50, .16);
}
.checkout-result-card h1 {
  margin: 14px 0 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: .98;
  text-transform: uppercase;
}
.checkout-result-card .lead { color: #374052; font-size: 19px; }
.checkout-result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-footer {
  background: #091020;
  border-top: 1px solid var(--line);
  padding: 46px 0;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}
.footer-grid h4 { color: var(--pearl); margin: 0 0 12px; }
.footer-grid a { display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--pearl); }

.password-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(70% 70% at 50% 0%, rgba(30,127,140,.2), transparent 70%),
    var(--abyss);
}
.password-card {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247,241,230,.06);
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
}
.password-card img { width: min(320px, 82%); margin: 0 auto 20px; }
.password-card h1 { color: var(--pearl); font-family: Impact, "Arial Black", sans-serif; font-size: clamp(36px, 7vw, 70px); line-height: .95; margin: 0; letter-spacing: .015em; text-transform: uppercase; }
.password-card p { color: #cfdbeb; }

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 22px;
    background: rgba(14, 26, 51, .98);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .mobile-menu {
    display: inline-flex;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--pearl);
    border-radius: 6px;
    padding: 9px 12px;
  }
  .hero-grid, .league-grid, .product-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 44px 0 42px; }
  .hero-grid { gap: 30px; }
  .hero-card { width: min(520px, 100%); margin: 0 auto; }
  .drop-grid { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 18px; }
  .voice-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .section { padding: 52px 0; }
  .header-inner { gap: 10px; }
  .brand span { display: none; }
  .hero-card-caption { align-items: start; flex-direction: column; }
  .email-box, .buy-row { grid-template-columns: 1fr; }
  .product-body, .voice-card, .memo-card, .cast-card, .faq-card, .launch-card { padding: 18px; }
  .email-box .btn, .buy-panel .btn, .cart-foot .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(38px, 12vw, 46px); }
  .hero-copy { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .product-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
  }
  .product-card img {
    height: 100%;
    min-height: 148px;
    aspect-ratio: auto;
  }
  .product-card p { font-size: 14px; }
}

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