﻿:root {
  --bg: #f3f3f3;
  --bg-alt: #ffffff;
  --card: #e2e2e2;
  --text: #111111;
  --muted: #4a4a4a;
  --line: #bdbdbd;
  --pill: #111111;
  --pill-hover: #000000;
  --pill-text: #ffffff;
  --accent: #111111;
  --footer: #000000;
  --footer-muted: #7a7a7a;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(0, 0, 0, 0.08), transparent 70%),
    radial-gradient(700px 360px at 100% 20%, rgba(0, 0, 0, 0.06), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(31, 27, 28, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.logo-text {
  font-size: 16px;
  text-transform: lowercase;
}

.logo-inc {
  font-size: 12px;
  margin-left: 3px;
  color: var(--accent);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

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

.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--accent);
  transform: translateY(-1px);
}

.main {
  padding: clamp(32px, 6vw, 56px) 0 clamp(56px, 10vw, 90px);
  flex: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.5px;
}

.subtitle {
  margin: 6px 0 0;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--text);
}

.divider {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 18px 0 32px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: var(--card);
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 28px) clamp(22px, 3.5vw, 30px);
  border-radius: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.card-header h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-header p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.pill-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-item {
  position: relative;
}

.pill {
  display: block;
  width: 100%;
  border: none;
  background: var(--pill);
  color: var(--pill-text);
  padding: 10px 16px;
  text-align: left;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.35;
  white-space: normal;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pill:hover {
  background: var(--pill-hover);
  transform: translateY(-1px);
}

.pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.pill-label {
  display: block;
  padding-right: 140px;
}

.pill-item.is-open .pill {
  background: var(--pill-hover);
}

.pill-action {
  position: absolute;
  top: 7px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 11px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pill-action svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pill-item.is-open .pill-action {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pill-details {
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.pill-item.is-open .pill-details {
  max-height: 360px;
  opacity: 1;
}

.details-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d0d0d0;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.details-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.details-lead {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.details-scroll {
  max-height: 190px;
  overflow-y: auto;
  padding-right: 6px;
}

.details-section {
  margin-bottom: 10px;
}

.details-section h4 {
  margin: 0 0 4px;
  font-size: 12px;
}

.details-section p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text);
}

.details-section ul {
  margin: 6px 0 0 18px;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text);
}

.details-section li {
  margin-bottom: 4px;
}

.details-placeholder {
  font-size: 12px;
  color: var(--muted);
}

.promo-artwork {
  margin: 4px 0 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  background: #101010;
}

.promo-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-artwork-fallback {
  display: none;
  margin: 0;
  padding: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #f2f2f2;
}

.promo-artwork.is-missing .promo-artwork-fallback {
  display: block;
}

.details-page {
  margin-top: 24px;
}

.details-page .details-section p {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 18px;
  padding: 10px 22px;
}

.details-scroll::-webkit-scrollbar {
  width: 6px;
}

.details-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

.details-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.site-footer {
  background: var(--footer);
  color: #e2e2e2;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: 24px;
  padding: 36px 0 20px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #f2f2f2;
}

.footer-col a {
  display: block;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-col p,
.footer-brand p {
  margin: 0;
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 24px;
  font-size: 12px;
  color: var(--footer-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
  position: relative;
  width: min(760px, 92%);
  margin: 7vh auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px 30px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #ededed;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.modal-body .details-section {
  margin-bottom: 14px;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.is-ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

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

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

@media (max-width: 720px) {
  .main {
    padding: 32px 0 60px;
  }

  .pill-label {
    padding-right: 0;
  }

  .pill-action {
    display: none;
  }

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

@media (max-width: 520px) {
  .cards {
    gap: 20px;
  }

  .card-header h2 {
    font-size: 16px;
  }

  .card-header p {
    font-size: 12px;
  }

  .pill {
    font-size: 12px;
    padding: 10px 14px;
  }
}


