:root {
  --bg: #0a0a0b;
  --bg-elevated: #111113;
  --surface: #18181b;
  --surface-glass: rgba(24, 24, 27, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-soft: #71717a;
  --accent: #f43f5e;
  --accent-soft: #fb7185;
  --accent-glow: rgba(244, 63, 94, 0.35);
  --teal: #2dd4bf;
  --teal-glow: rgba(45, 212, 191, 0.25);
  --container: min(1120px, 100% - 48px);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
.heading-font {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

main {
  flex: 1;
  width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

.brand-link:hover {
  color: var(--text);
  opacity: 0.92;
}

.brand-link img {
  width: 36px;
  height: auto;
}

.brand-link span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-cta:hover {
  opacity: 0.92;
  color: #fff !important;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  width: 100%;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, var(--teal-glow), transparent 50%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }
}

.hero-mark {
  display: block;
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-glass);
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-soft), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 32px;
  line-height: 1.55;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  background: none;
  border: none;
  padding: 0;
  opacity: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge-link.disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.3);
}

/* Same height — artwork matches after PNG crop (Play had ~41px transparent padding) */
.store-badge-link img {
  display: block;
  height: 44px;
  width: auto;
}

.store-note {
  font-size: 0.8125rem;
  color: var(--muted-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: min(100%, 340px);
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(145deg, var(--surface) 0%, #1c1c21 100%);
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-card-main {
  position: relative;
  z-index: 2;
}

.hero-card-float {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-float.top {
  top: -12px;
  right: -8px;
}

.hero-card-float.bottom {
  bottom: 24px;
  left: -16px;
  color: var(--teal);
}

.hero-card-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-soft);
  margin-bottom: 8px;
}

.hero-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.2);
  font-size: 0.8125rem;
  color: var(--text);
}

/* ---- Sections ---- */
.section {
  width: 100%;
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.0625rem;
}

.activity-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.activity-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9375rem;
  transition: border-color 0.15s, transform 0.15s;
}

.activity-pill:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.steps {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: var(--border-strong);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  height: 100%;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta-band {
  width: 100%;
  padding: 64px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, var(--accent-glow), transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

.cta-band .store-badges {
  justify-content: center;
}

/* ---- Inner pages ---- */
.page-hero {
  width: 100%;
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 50% -20%, var(--accent-glow), transparent 60%),
    var(--bg);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 8px;
}

.page-hero .updated {
  color: var(--muted);
  font-size: 0.9375rem;
}

.page-body {
  width: 100%;
  padding: 40px 0 64px;
}

.page-body .content {
  max-width: 720px;
}

.legal-notice {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.page-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  margin: 32px 0 10px;
  color: var(--text);
}

.page-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.page-body p,
.page-body li {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 12px;
  line-height: 1.65;
}

.page-body .content strong {
  color: var(--text);
  font-weight: 600;
}

.page-body ul,
.page-body ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.page-body li {
  margin-bottom: 8px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  padding-top: 0;
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
}

.faq-item p {
  margin: 0;
}

.contact-highlight {
  display: inline-block;
  margin: 16px 0;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: 1.125rem;
}

.contact-highlight a {
  font-weight: 600;
}

/* ---- Footer ---- */
.site-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 56px 0 32px;
  margin-top: auto;
}

.site-footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 40px;
}

@media (min-width: 640px) {
  .site-footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .brand-link {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-contact-email a {
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-bottom {
  width: var(--container);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-soft);
}

.footer-bottom a {
  color: var(--muted);
}
