:root {
  --bg: #09090b;
  --surface: #131316;
  --surface-2: #1c1c21;
  --border: rgba(255, 255, 255, 0.1);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #e5a31c;
  --violet: #7c3aed;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(9, 9, 11, 0.9);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand img {
  width: 32px;
  height: 32px;
}

nav {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-trigger::after {
  content: " ▾";
  font-size: 0.72rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: none;
  z-index: 40;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-muted);
}

.dropdown-menu a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.cta {
  text-decoration: none;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: center;
  padding: 28px 0;
}

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

.hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.card h3,
.card h2 {
  margin-top: 0;
}

.hero-media {
  padding: 8px;
  overflow: hidden;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}

.card .btn-secondary {
  margin-top: 10px;
}

.grid-four,
.grid-two,
.grid-three {
  display: grid;
  gap: 12px;
}

.grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 10px;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four article {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  color: var(--text-muted);
}

.section {
  margin-top: 36px;
}

.product-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs {
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--text-muted);
}

.about-grid {
  align-items: stretch;
}

.about-grid .about-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-cta {
  margin-top: auto !important;
  align-self: stretch;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.section-cta {
  margin-top: 16px;
}

.section-cta--with-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.legal-grid .legal-card {
  display: flex;
  flex-direction: column;
}

.legal-grid .legal-card p {
  color: var(--text-muted);
}

.card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.legal-cta {
  align-self: center;
}

.link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 24px;
}

.footer-brand {
  justify-self: start;
}

.footer-brand img {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.footer-meta {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.footer-meta > p {
  margin: 0;
  width: 100%;
}

.footer-links a {
  text-decoration: none;
  color: var(--accent);
  font-size: 0.9rem;
}

.site-footer p {
  color: var(--text-muted);
}

.footer-sponsor {
  grid-column: 3;
  justify-self: end;
}

.footer-sponsor a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-sponsor a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-sponsor img {
  display: block;
  height: 32px;
  width: auto;
  min-width: 75px;
  max-width: none;
  flex-shrink: 0;
}

.policy-layout {
  max-width: 980px;
}

.policy-notice {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.policy-notice h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.policy-notice p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.policy-header {
  margin-top: 16px;
  margin-bottom: 20px;
}

.policy-header h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
}

.policy-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.policy-section {
  margin-top: 18px;
}

.policy-section h2 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-muted);
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 960px) {
  .hero,
  .grid-four,
  .grid-three,
  .grid-two {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-meta,
  .footer-sponsor {
    grid-column: 1;
    justify-self: center;
  }

  .footer-sponsor a {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}
