:root {
  --ink: #172015;
  --ink-soft: rgba(23, 32, 21, 0.68);
  --mango: #c7a33a;
  --mango-light: #f1d45d;
  --line: rgba(23, 32, 21, 0.38);
  --paper: rgba(255, 226, 112, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--mango);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.background {
  position: fixed;
  inset: -8vmax;
  z-index: -3;
  background:
    radial-gradient(
      circle at 30% 18%,
      rgba(255, 218, 76, 0.72) 0%,
      rgba(239, 190, 48, 0.42) 32%,
      transparent 62%
    ),
    linear-gradient(
      135deg,
      #d8b33f 0%,
      #c59c2f 52%,
      #ad8121 100%
    );
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1.08);
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 225, 112, 0.12),
    rgba(91, 60, 8, 0.10)
  );
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 100vh;
}

.topbar {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  text-decoration: none;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.micro-link {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(380px, 1.06fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0;
}

.cover-wrap {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  box-shadow: 0 30px 100px rgba(41, 50, 20, 0.16);
}

.cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(23, 32, 21, 0.26);
}

.cover-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.release-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 9vw, 9.2rem);
  line-height: 0.76;
  letter-spacing: -0.095em;
  text-transform: uppercase;
  font-weight: 900;
}

.release-note {
  margin: 28px 0 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.primary-actions {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.button {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--mango-light);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:not(.button-primary):hover,
.button:not(.button-primary):focus-visible {
  background: rgba(23, 32, 21, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #263320;
}

.platforms {
  border-top: 1px solid var(--line);
  padding: 48px 0 80px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.platform {
  min-height: 82px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  transition:
    background 150ms ease,
    padding 150ms ease;
}

.platform:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.platform:hover,
.platform:focus-visible {
  background: var(--paper);
  padding-left: 28px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.socials a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: currentColor;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    height: 74px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 38px 0 72px;
  }

  .cover-wrap {
    justify-self: stretch;
    width: 100%;
  }

  .release-copy {
    max-width: none;
  }

  h1 {
    font-size: clamp(4.2rem, 20vw, 7.3rem);
  }

  .release-note {
    margin: 22px 0 32px;
  }

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

  .platform:nth-child(odd) {
    border-right: 0;
  }

  .section-heading {
    align-items: flex-end;
  }
}

@media (max-width: 520px) {
  .section-heading span {
    max-width: 130px;
    text-align: right;
  }

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

  .socials {
    gap: 18px;
  }
}

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

.contact {
  padding: 52px 0 64px;
  border-top: 1px solid var(--line);
}

.contact .eyebrow {
  margin-bottom: 16px;
}

.contact-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  border-color: currentColor;
}

.consent-banner {
  position: fixed;
  z-index: 20;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border: 1px solid var(--ink);
  background: #e0c64f;
  box-shadow: 0 22px 70px rgba(23, 32, 21, 0.22);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.consent-copy p {
  max-width: 650px;
  margin: 0 0 8px;
  color: rgba(23, 32, 21, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent-copy a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-button {
  min-width: 96px;
  min-height: 44px;
  border: 1px solid var(--ink);
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-button-primary {
  background: var(--ink);
  color: var(--mango-light);
}

.legal-shell {
  min-height: 100vh;
}

.legal-copy {
  width: min(100%, 820px);
  padding: clamp(60px, 9vw, 110px) 0 90px;
}

.legal-copy > .eyebrow {
  margin-bottom: 24px;
}

.legal-copy h1 {
  margin-bottom: 72px;
  font-size: clamp(4rem, 11vw, 8rem);
}

.legal-copy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.legal-copy p {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.privacy-button {
  width: fit-content;
  margin-top: 20px;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 720px) {
  .consent-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-link {
    font-size: clamp(1.35rem, 7vw, 2.2rem);
  }
}
