@font-face {
  font-family: "Rajdhani";
  src: url("/fonts/Rajdhani-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07111d;
  --bg-alt: #0d1827;
  --surface: rgba(9, 16, 28, 0.78);
  --surface-strong: #101b2c;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(238, 188, 88, 0.22);
  --text: #edf3ff;
  --muted: #99a7be;
  --gold: #efb653;
  --gold-soft: #ffe2a9;
  --teal: #2ad2cc;
  --danger: #ff6a61;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(42, 210, 204, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(239, 182, 83, 0.14), transparent 28%),
    linear-gradient(180deg, #06101b 0%, #0b1320 44%, #09111d 100%);
  min-height: 100vh;
}

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

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-title,
.display,
.section-kicker,
.nav a,
.button,
.card h3,
.legal-card h2,
.footer-links a,
.tiny-label {
  font-family: "Rajdhani", "Avenir Next", sans-serif;
  letter-spacing: 0.03em;
}

.brand-title {
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--gold-soft);
  line-height: 1;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.nav a {
  color: var(--muted);
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(239, 182, 83, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.display {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.display .accent {
  color: var(--gold);
}

.lede {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 1.02rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #f3be5e, #d99822);
  color: #17120a;
  box-shadow: 0 18px 40px rgba(239, 182, 83, 0.22);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.visual {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(42, 210, 204, 0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(239, 182, 83, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(10, 18, 31, 0.96), rgba(8, 15, 26, 0.98));
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 620px;
}

.visual img.feature {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.08), rgba(5, 10, 18, 0.64) 74%, rgba(5, 10, 18, 0.9) 100%);
}

.visual-bottom {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-panel {
  background: rgba(10, 16, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.tiny-label {
  text-transform: uppercase;
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.mini-panel p,
.card p,
.section-note,
.legal-card p,
.legal-card li,
.footer-note {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding-top: 34px;
}

.section-kicker {
  text-transform: uppercase;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  font-size: 0.88rem;
}

.section-note {
  margin-top: 10px;
  max-width: 70ch;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card {
  padding: 20px;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.store-copy h3 {
  margin: 3px 0 8px;
}

.store-copy p {
  margin: 0;
}

.store-label {
  font-family: "Rajdhani", "Avenir Next", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.store-pill {
  align-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  background: rgba(239, 182, 83, 0.08);
  font-family: "Rajdhani", "Avenir Next", sans-serif;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.store-badge-link {
  display: inline-flex;
  align-self: flex-start;
}

.store-badge {
  display: block;
  width: min(100%, 180px);
  height: auto;
}

.web-callout {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(42, 210, 204, 0.18);
  background:
    linear-gradient(135deg, rgba(42, 210, 204, 0.08), rgba(239, 182, 83, 0.06)),
    rgba(9, 16, 28, 0.78);
  box-shadow: var(--shadow);
}

.web-callout h3 {
  margin: 6px 0 8px;
}

.web-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card .tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(42, 210, 204, 0.12);
  color: #c3fffc;
  margin-bottom: 12px;
}

.card h3,
.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.legal-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.legal-card {
  padding: 28px;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.legal-header .brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.legal-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-family: "Rajdhani", "Avenir Next", sans-serif;
}

.legal-meta {
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-alert {
  background: rgba(255, 106, 97, 0.1);
  border: 1px solid rgba(255, 106, 97, 0.24);
  color: #ffd3d0;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.inline-link:hover {
  color: var(--text);
}

.media-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
}

.media-row img {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

@media (max-width: 980px) {
  .hero,
  .store-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .visual {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .shell,
  .legal-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-bottom {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .store-card {
    gap: 12px;
  }

  .web-callout {
    margin-top: 18px;
  }
}
