:root {
  color-scheme: light dark;
  --font-sans: "Inter", "SF Pro Display", "SF Pro Text", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --color-bg: #05060a;
  --color-surface: rgba(12, 15, 24, 0.72);
  --color-card: rgba(255, 255, 255, 0.08);
  --color-accent: #00e0ff;
  --color-primary: #00b4ff;
  --color-secondary: #0f1c2f;
  --color-text: #f2f9ff;
  --color-muted: rgba(242, 249, 255, 0.72);
  --color-inverse: #05060a;
  --shadow-soft: 0 24px 64px rgba(5, 6, 10, 0.35);
  --shadow-card: 0 20px 45px rgba(5, 6, 10, 0.4);
  font-family: var(--font-sans);
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
}

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

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

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1rem clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  background-color: rgba(5, 6, 10, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 42px;
  height: auto;
}

.primary-nav {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  opacity: 0.75;
}

.nav-download {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 4px 0;
  transition: transform 0.25s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 6, 10, 0.92) 12%, rgba(9, 12, 20, 0.2) 58%, rgba(5, 6, 10, 0.78) 100%);
}

.hero__content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media img {
  width: min(420px, 100%);
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 194, 255, 0.25));
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin: 0.75rem 0;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-text);
  background-color: transparent;
}

.hero__tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 680px;
}

.tag {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(0, 142, 255, 0.18));
  border: 1px solid rgba(0, 210, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242, 249, 255, 0.78);
  box-shadow: 0 4px 14px rgba(0, 140, 255, 0.2);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.section--light {
  background: radial-gradient(circle at top right, rgba(0, 180, 255, 0.08), transparent 55%), #0b1320;
}

.section--dark {
  background: radial-gradient(circle at top left, #163459, #080c14 65%);
}

.section--accent {
  position: relative;
  background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.08), rgba(5, 6, 10, 0.96) 60%);
  color: var(--color-text);
  border-top: 1px solid rgba(0, 210, 255, 0.12);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__inner--compact {
  max-width: 900px;
}

.section__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.section--accent .section__eyebrow {
  color: var(--color-inverse);
  opacity: 0.8;
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.5rem 0 1rem;
}

.section__lead {
  color: rgba(245, 247, 255, 0.85);
}

.section--accent .section__lead {
  color: rgba(5, 6, 10, 0.7);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.feature-card {
  position: relative;
  padding: 0;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 180, 255, 0.18);
}

.feature-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(0, 229, 255, 0.15), rgba(0, 255, 144, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before,
.feature-card:focus-visible::before {
  opacity: 1;
}

.feature-card__inner {
  position: relative;
  z-index: 1;
  padding: 1.85rem;
  border-radius: 18px;
  background: rgba(10, 16, 28, 0.78);
  border: 1px solid rgba(0, 224, 255, 0.18);
  backdrop-filter: blur(12px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 240, 255, 0.9);
}

.feature-card__cta::after {
  content: "→";
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-card__cta::after,
.feature-card:focus-visible .feature-card__cta::after {
  transform: translateX(4px);
}

.feature-card[aria-pressed="true"] .feature-card__inner {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 160, 255, 0.2);
}

.feature-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(0, 210, 255, 0.18), rgba(0, 255, 166, 0.12));
  border: 1px solid rgba(0, 224, 255, 0.25);
  margin-bottom: clamp(3rem, 8vw, 5rem);
  box-shadow: 0 40px 90px rgba(4, 18, 36, 0.5);
}

.feature-stage__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-stage__media img {
  width: min(520px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(0, 224, 255, 0.25);
  box-shadow: 0 40px 90px rgba(0, 40, 70, 0.45);
}

.feature-stage__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-text);
}

.feature-stage__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(0, 240, 255, 0.85);
}

.feature-stage__cta {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 255, 166, 0.78);
}

.section--testimonials {
  background: radial-gradient(circle at top left, rgba(0, 220, 255, 0.15), rgba(5, 6, 10, 0.95) 55%);
}

.testimonial-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  margin: 0;
  padding: 2rem;
  border-radius: 22px;
  background: rgba(6, 12, 21, 0.78);
  border: 1px solid rgba(0, 224, 255, 0.18);
  box-shadow: 0 30px 70px rgba(3, 12, 24, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(242, 249, 255, 0.88);
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: rgba(0, 240, 255, 0.8);
}

.testimonial-name {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(242, 249, 255, 0.65);
}

.content-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.content-grid h3 {
  margin-bottom: 0.75rem;
}

.support-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.support-grid article {
  padding: 1.75rem;
  border-radius: 18px;
  background: rgba(12, 18, 30, 0.68);
  border: 1px solid rgba(0, 224, 255, 0.12);
  box-shadow: var(--shadow-card);
}

.section--light .support-grid article {
  background: rgba(13, 20, 34, 0.82);
}

.download-card {
  display: grid;
  gap: 2.5rem;
  border-radius: 24px;
  padding: clamp(2rem, 6vw, 3rem);
  background: rgba(8, 14, 24, 0.85);
  border: 1px solid rgba(0, 224, 255, 0.16);
  box-shadow: 0 30px 80px rgba(4, 12, 26, 0.55);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.download-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-actions .btn--primary {
  background: linear-gradient(130deg, var(--color-primary), #00ffbf);
  color: var(--color-inverse);
  box-shadow: 0 24px 60px rgba(0, 143, 255, 0.35);
}

.download-actions .btn--ghost {
  border-color: rgba(5, 6, 10, 0.35);
  color: var(--color-inverse);
  background: rgba(255, 255, 255, 0.2);
}

.store-badge {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(5, 12, 24, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge img {
  display: block;
  width: 180px;
  max-width: 100%;
}

.kgay-body {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 8vw, 4rem) clamp(1.5rem, 6vw, 3rem);
  background: linear-gradient(135deg, #ff0080 0%, #ff8a00 18%, #ffef00 36%, #3cd500 55%, #009dff 73%, #7b5cff 90%, #b258ff 100%);
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--color-text);
}

.kgay-body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 22%, rgba(255, 0, 128, 0.28) 0%, rgba(255, 0, 128, 0) 45%),
    radial-gradient(circle at 28% 70%, rgba(0, 157, 255, 0.24) 0%, rgba(0, 157, 255, 0) 46%),
    radial-gradient(circle at 72% 78%, rgba(60, 213, 0, 0.24) 0%, rgba(60, 213, 0, 0) 44%),
    radial-gradient(circle at 48% 52%, rgba(255, 239, 0, 0.2) 0%, rgba(255, 239, 0, 0) 48%);
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
}

.kgay-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(5, 6, 10, 0.45);
  backdrop-filter: blur(65px);
  pointer-events: none;
}

.kgay-main {
  width: min(960px, 100%);
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.kgay-hero {
  text-align: left;
}

.kgay-hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
}

.kgay-hero__copy {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: 24px;
  background: rgba(6, 12, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(5, 8, 18, 0.45);
  backdrop-filter: blur(20px);
}

.kgay-hero__badge {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.18), rgba(0, 140, 255, 0.35));
  border: 1px solid rgba(0, 210, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(242, 249, 255, 0.85);
}

.kgay-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0;
}

.kgay-hero__lead {
  max-width: 640px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  margin: 0;
}

.kgay-rainbow {
  background: linear-gradient(90deg, #ff0066, #ff8a00, #ffee00, #33cc33, #0099ff, #6633ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kgay-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.kgay-hero__store {
  padding: 0.4rem 0.9rem;
}

.kgay-hero__store img {
  width: 170px;
}

.kgay-hero__disclaimer {
  font-size: 0.95rem;
  color: rgba(242, 249, 255, 0.72);
  max-width: 520px;
  margin: 0;
}

.kgay-hero__media img {
  width: min(320px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 35px 60px rgba(0, 194, 255, 0.35));
}

.kgay-offer {
  display: flex;
  justify-content: center;
}

.kgay-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 30px;
  padding: clamp(2rem, 6vw, 3rem);
  display: grid;
  gap: 1.75rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(6, 10, 26, 0.82), rgba(8, 16, 30, 0.78)) padding-box,
    linear-gradient(135deg, rgba(255, 0, 128, 0.65), rgba(255, 154, 0, 0.65), rgba(255, 239, 0, 0.65), rgba(60, 213, 0, 0.65), rgba(0, 157, 255, 0.65), rgba(123, 92, 255, 0.65)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 40px 120px rgba(5, 6, 10, 0.6);
  overflow: hidden;
}

.kgay-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 35% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 55%);
  opacity: 0.4;
  pointer-events: none;
}

.kgay-card > * {
  position: relative;
  z-index: 1;
}

.kgay-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.kgay-card__copy {
  color: rgba(242, 249, 255, 0.88);
  margin: 0;
}

.kgay-card__code {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  letter-spacing: 0.12em;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(10, 18, 36, 0.92), rgba(8, 12, 26, 0.78)) padding-box,
    linear-gradient(135deg, rgba(255, 0, 128, 0.65), rgba(255, 239, 0, 0.65), rgba(0, 157, 255, 0.65)) border-box;
  box-shadow: 0 25px 55px rgba(5, 8, 20, 0.45);
}

.kgay-card__code code {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.kgay-card__qr {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(5, 12, 24, 0.72);
  border: 1px solid rgba(0, 210, 255, 0.26);
  box-shadow: 0 24px 55px rgba(5, 10, 20, 0.45);
}

.kgay-card__qr img {
  width: min(280px, 60vw);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.75rem;
  box-shadow: 0 18px 40px rgba(5, 8, 22, 0.4);
}

.kgay-card__qr-caption {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(242, 249, 255, 0.7);
  text-align: center;
}

.kgay-card__action {
  margin: 0 auto;
  min-width: 240px;
}

.kgay-card__action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kgay-card__store {
  justify-self: center;
}

.kgay-card__note {
  color: rgba(242, 249, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.kgay-card__redeem-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 auto;
  color: rgba(247, 249, 255, 0.92);
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.85), rgba(255, 154, 0, 0.85), rgba(0, 157, 255, 0.85));
  box-shadow: 0 18px 38px rgba(5, 10, 20, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kgay-card__redeem-link:hover,
.kgay-card__redeem-link:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(5, 10, 20, 0.55);
}

.kgay-card__instructions {
  text-align: left;
  border-radius: 20px;
  padding: 1.6rem;
  color: rgba(242, 249, 255, 0.9);
  font-size: 0.95rem;
  background:
    linear-gradient(145deg, rgba(8, 12, 26, 0.85), rgba(10, 18, 34, 0.78)) padding-box,
    linear-gradient(135deg, rgba(255, 0, 128, 0.45), rgba(255, 239, 0, 0.45), rgba(0, 157, 255, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 20px 45px rgba(5, 8, 20, 0.4);
}

.kgay-card__instructions h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.kgay-card__instructions ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.kgay-card__instructions li {
  line-height: 1.5;
}

.kgay-card__feedback {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 224, 255, 0.8);
  text-align: center;
}

.kgay-card__feedback[data-state="error"] {
  color: #ff6b8a;
}

.kgay-footnote {
  text-align: center;
}

.kgay-footnote__inner {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-muted);
}

.kgay-footnote__inner h3 {
  margin: 0 0 0.5rem;
}

.kgay-footnote__inner a {
  color: var(--color-accent);
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 6vw, 3rem);
  background: rgba(5, 6, 10, 0.96);
  border-top: 1px solid rgba(0, 224, 255, 0.18);
  box-shadow: 0 -18px 40px rgba(5, 6, 10, 0.4);
}

.consent-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.consent-banner__copy {
  flex: 1 1 520px;
  margin: 0;
  color: rgba(242, 249, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-banner__action {
  flex: 0 0 auto;
  min-width: 140px;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(5, 15, 30, 0.5);
}

.download-footnote {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: rgba(242, 249, 255, 0.75);
}

.download-footnote a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 224, 255, 0.4);
  padding-bottom: 2px;
}

.download-footnote a:hover,
.download-footnote a:focus-visible {
  border-bottom-color: rgba(0, 224, 255, 0.7);
}

.site-footer {
  background-color: #05060a;
  padding: 2.5rem clamp(1.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 247, 255, 0.6);
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: rgba(245, 247, 255, 0.7);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    background: rgba(10, 12, 20, 0.92);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    min-width: 200px;
  }

  .nav-list[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list li + li {
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: clamp(7rem, 20vw, 9rem);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__media img {
    width: min(70vw, 320px);
    margin: 0 auto;
  }

  .feature-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-stage__copy {
    align-items: center;
  }

  .feature-stage__copy .btn--primary {
    align-self: center;
  }

  .store-badge {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .store-badge img {
    width: 100%;
  }

  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kgay-body {
    padding: clamp(1.5rem, 6vw, 3rem);
    align-items: flex-start;
  }

  .kgay-main {
    gap: 2.5rem;
  }

  .kgay-hero {
    text-align: center;
  }

  .kgay-hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .kgay-hero__copy {
    justify-items: center;
  }

  .kgay-hero__lead,
  .kgay-hero__disclaimer {
    text-align: center;
  }

  .kgay-hero__actions {
    justify-content: center;
  }

  .kgay-hero__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1.25rem;
  }

  .hero__lead {
    margin-bottom: 1.5rem;
  }

  .hero__tags {
    gap: 0.5rem;
  }

  .tag {
    font-size: 0.65rem;
  }

  .feature-card__inner,
  .support-grid article {
    padding: 1.5rem;
  }

  .feature-stage {
    padding: 2rem;
  }

  .feature-stage__copy {
    align-items: center;
    text-align: center;
  }

  .download-card {
    padding: 2rem;
  }

  .kgay-card {
    padding: clamp(1.5rem, 8vw, 2.25rem);
  }

  .kgay-card__action {
    width: 100%;
  }

  .kgay-card__store img {
    width: 150px;
  }

  .kgay-hero__store img {
    width: 150px;
  }

  .kgay-hero__copy {
    padding: clamp(1.25rem, 7vw, 1.75rem);
  }

  .kgay-card__redeem-link {
    width: 100%;
  }

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

  .consent-banner__action {
    width: 100%;
  }
}
