/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface2:  #1A1A1A;
  --gold:      #FFD700;
  --gold-dark: #B8860B;
  --gold-dim:  rgba(255,215,0,0.12);
  --cyan:      #00E5FF;
  --text:      #F0F0F0;
  --text-sub:  #888888;
  --radius:    16px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

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

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold      { color: var(--gold); }
.cyan      { color: var(--cyan); }
.sub       { color: var(--text-sub); }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-gold  { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(255,215,0,.3); }
.badge-cyan  { background: rgba(0,229,255,.1); color: var(--cyan); border: 1px solid rgba(0,229,255,.3); }
.badge-green { background: rgba(76,175,80,.12); color: #4CAF50; border: 1px solid rgba(76,175,80,.3); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-sub);
  font-size: 1rem;
  margin-bottom: 48px;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,215,0,.1);
  transition: background .3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 1px;
}

.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px rgba(255,215,0,.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: .85rem !important;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,215,0,.35); opacity: 1 !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,215,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(0,229,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--text-sub);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-tagline {
  color: rgba(240,240,240,.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 460px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-bullets li {
  color: rgba(240,240,240,.8);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Social proof */
.social-proof-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gplay-mockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 14px;
}
.gplay-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #000;
  font-weight: 900;
}
.gplay-label {
  font-size: .68rem;
  color: var(--text-sub);
  line-height: 1.2;
}
.gplay-store {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.rating-mockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: none;
  letter-spacing: .3px;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 24px rgba(255,215,0,.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(255,215,0,.4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn-outline:hover { border-color: rgba(255,215,0,.4); color: var(--gold); }

/* Hero visual — phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Wrapper holds the phone + floating badges (no overflow:hidden) */
.mockup-wrapper {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 480px;
}

.app-mockup {
  width: 240px;
  height: 480px;
  background: #0D0D0D;
  border-radius: 32px;
  border: 2px solid rgba(255,215,0,.25);
  box-shadow: 0 0 60px rgba(255,215,0,.12), 0 32px 80px rgba(0,0,0,.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone notch */
.mockup-notch {
  width: 72px; height: 10px;
  background: #0A0A0A;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Game screen inside phone */
.mockup-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px 14px;
  background: linear-gradient(180deg, #0A1A0A 0%, #0D0D0D 100%);
}

.mockup-screen-title {
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 4px;
}

.mockup-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  width: 100%;
}

/* Opponent cards (face-down) */
.mockup-opp {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.mockup-card-back {
  width: 26px; height: 36px;
  background: linear-gradient(135deg, #1A3A1A, #0D200D);
  border: 1px solid rgba(255,215,0,.3);
  border-radius: 4px;
}

/* Discard pile area */
.mockup-discard {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-pile-count {
  font-size: .6rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* Face-up cards */
.mockup-card-face {
  width: 30px; height: 42px;
  background: #F8F8F8;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
  text-align: center;
}
.mockup-card-face.red { color: #CC0000; }

/* Player hand */
.mockup-hand {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* TCHEK button */
.mockup-tchek {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255,215,0,.45);
}

.floating-badge {
  position: absolute;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 12px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  animation: float 3s ease-in-out infinite;
}
.floating-badge.top-right { top: 64px; right: -14px; animation-delay: .5s; }
.floating-badge.bottom-left { bottom: 84px; left: -14px; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Stats strip ──────────────────────────────────────────────────────────── */
.stats-strip {
  padding: 32px 0;
  border-top: 1px solid rgba(255,215,0,.08);
  border-bottom: 1px solid rgba(255,215,0,.08);
  background: rgba(255,215,0,.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Apps section ─────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.app-card {
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,215,0,.1);
  border-color: rgba(255,215,0,.35);
}

.app-card-banner {
  height: 148px;
  background: linear-gradient(135deg, #1C1400, #0D0D0D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.app-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,.1), transparent 70%);
}

.app-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.app-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.app-name { font-size: 1.25rem; font-weight: 900; margin-bottom: 4px; }
.app-genre { font-size: .8rem; color: var(--text-sub); }
.app-desc { color: var(--text-sub); font-size: .9rem; line-height: 1.6; margin: 12px 0 20px; }

.app-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.app-tag {
  padding: 2px 9px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: .75rem;
  color: var(--text-sub);
  cursor: default;
  user-select: none;
}
.app-tag::before { content: '# '; opacity: .4; }

.app-card-footer {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid rgba(255,215,0,.2);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.play-store-btn:hover { background: rgba(255,215,0,.08); border-color: rgba(255,215,0,.4); color: var(--gold); opacity: 1; }

/* Full-width Google Play CTA */
.play-store-full {
  display: flex !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #000 !important;
  border: 1.5px solid rgba(255,255,255,.12) !important;
  color: var(--text) !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.play-store-full:hover {
  border-color: rgba(255,215,0,.45) !important;
  box-shadow: 0 0 24px rgba(255,215,0,.12);
  color: var(--text) !important;
  opacity: 1 !important;
}
.gp-arrow {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.gp-sub { font-size: .65rem; color: var(--text-sub); line-height: 1.3; }
.gp-main { font-size: .95rem; font-weight: 800; line-height: 1.3; }

/* TchekCard banner — mini card hand preview */
.tchekcard-banner {
  background: linear-gradient(155deg, #1C1200, #0D0D0D) !important;
  align-items: flex-end;
  padding-bottom: 12px;
}
.mini-hand {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -4px;
}
.mini-card-face {
  width: 40px;
  height: 56px;
  background: #F8F8F8;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(0,0,0,.55);
  transform: rotate(var(--r, 0deg));
  text-align: center;
  margin-left: -8px;
}
.mini-card-face:first-child { margin-left: 0; }
.mini-card-face.red { color: #CC0000; }

/* Coming soon teaser card — matches gold theme */
.coming-soon-card { border-color: rgba(255,215,0,.1); }
.coming-soon-card:hover { border-color: rgba(255,215,0,.35) !important; box-shadow: 0 16px 48px rgba(255,215,0,.08) !important; }
.coming-banner {
  background: linear-gradient(155deg, #1A1200, #0D0D0D) !important;
  flex-direction: column;
  gap: 8px;
}
.mystery-hand {
  display: flex;
  align-items: flex-end;
  gap: -4px;
}
.mystery-card-back {
  width: 32px;
  height: 44px;
  background: linear-gradient(135deg, #2A1C00, #1A1200);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
  margin-left: -8px;
  position: relative;
  overflow: hidden;
  opacity: .45;
}
.mystery-card-back:first-child { margin-left: 0; }
.mystery-label {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,215,0,.5);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,215,0,.25), 0 0 80px rgba(255,215,0,.1);
}

/* Notify CTA on coming-soon card — gold outline matching site theme */
.notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,215,0,.3);
  background: rgba(255,215,0,.05);
  color: rgba(255,215,0,.8);
  font-size: .88rem;
  font-weight: 700;
  transition: border-color .2s, background .2s, box-shadow .2s;
  cursor: pointer;
}
.notify-btn:hover {
  border-color: rgba(255,215,0,.65);
  background: rgba(255,215,0,.1);
  box-shadow: 0 0 20px rgba(255,215,0,.1);
  opacity: 1;
  color: var(--gold);
}

/* ── About section ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.dev-card {
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.dev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.dev-avatar {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 0 32px rgba(255,215,0,.25);
}

.dev-name { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.dev-role { color: var(--gold); font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.dev-bio { color: var(--text-sub); font-size: .8rem; margin-bottom: 20px; }

.dev-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.skill-tag {
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 999px;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
}

.about-content p {
  color: var(--text-sub);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
}
.feature-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── Contact / CTA section ────────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,215,0,.06), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-desc { color: var(--text-sub); font-size: 1.05rem; margin-bottom: 40px; }
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: var(--radius);
  padding: 14px 28px;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 16px;
  transition: background .2s, border-color .2s;
}
.cta-email:hover { background: rgba(255,215,0,.06); border-color: rgba(255,215,0,.4); opacity: 1; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,215,0,.08);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-sub);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: background .2s, border-color .2s, color .2s;
}
.social-link:hover {
  background: rgba(255,215,0,.08);
  border-color: rgba(255,215,0,.3);
  color: var(--gold);
  opacity: 1;
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-sub);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-sub); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text-sub);
  font-size: .8rem;
}

/* ── Inner pages (privacy, support) ──────────────────────────────────────── */
.page-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid rgba(255,215,0,.08);
  background: linear-gradient(180deg, rgba(255,215,0,.04) 0%, transparent 100%);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: var(--text-sub); font-size: 1rem; }

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}
.prose h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,215,0,.12);
}
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.prose p { color: rgba(240,240,240,.8); font-size: .95rem; line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { color: rgba(240,240,240,.75); font-size: .95rem; line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--gold); }
.prose strong { color: var(--text); }

.info-box {
  background: rgba(255,215,0,.06);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: .9rem; }

/* ── Support page ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(255,215,0,.25); }
.faq-q {
  padding: 18px 20px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.2rem; font-weight: 300; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-sub);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.05);
}
.faq-item.open .faq-a { display: block; }

.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.contact-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.contact-card p { color: var(--text-sub); margin-bottom: 24px; }

/* ── Sélecteur de langue ──────────────────────────────────────────────────── */
/* Hors de .nav-links : reste visible sur mobile, où le menu se replie. */
.nav-right { display: flex; align-items: center; gap: 24px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,215,0,.18);
  border-radius: 999px;
  background: rgba(255,215,0,.04);
}

.lang-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-sub);
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}
.lang-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mockup-wrapper { width: 200px; height: 400px; }
  .app-mockup { width: 200px; height: 400px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,8,8,.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,215,0,.1);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .nav-right { gap: 12px; }
  .lang-btn { padding: 5px 8px; font-size: .68rem; }
}
