:root {
  --bg: #0b0e1a;
  --bg-elev: #11152a;
  --surface: #151a2e;
  --surface-2: #1c2238;
  --border: #222840;
  --gold-1: #DF944D;
  --gold-2: #C78651;
  --gold-3: #996439;
  --green: #23c55e;
  --green-hover: #1ba94e;
  --text: #e8e8ec;
  --text-2: #9aa0b4;
  --text-3: #6c7390;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1320px;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 26, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 30px; width: auto; }
.main-nav {
  display: none;
  align-items: center;
  gap: 6px;
  flex: 1;
  margin-left: 24px;
}
.main-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--text); background: var(--surface); }
.main-nav a.active { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
  text-align: center;
  transition: transform .12s, box-shadow .12s, background .15s, color .15s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--green), var(--green-hover));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 6px 18px rgba(35,197,94,0.25);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface-2); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #0b0e1a;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(199,134,81,0.25);
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-lg { padding: 12px 24px; font-size: 15px; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; }

main { padding: 14px 0 40px; }

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1328 / 784;
  background: var(--surface);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 62%;
  pointer-events: none;
}
.hero-overlay-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-overlay-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-overlay-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-overlay-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 14px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #0b0e1a;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(199,134,81,0.35);
}

.categories {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 12px;
  margin-bottom: 6px;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: color .15s, background .15s, border-color .15s;
}
.cat-pill:hover { color: var(--text); background: var(--surface-2); }
.cat-pill.active {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #0b0e1a;
  border-color: transparent;
  font-weight: 700;
}

.section {
  margin-bottom: 22px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}
.section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-link {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.section-link:hover { color: var(--gold-1); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tile {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 3 / 4;
  position: relative;
  transition: transform .15s;
}
.tile:hover { transform: translateY(-3px); }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-name {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 8px 6px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  text-align: center;
  line-height: 1.2;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.collection-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--surface);
  transition: transform .15s;
}
.collection-card:hover { transform: translateY(-3px); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; }
.collection-label {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.collection-label-eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.collection-label-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
@media (min-width: 900px) {
  .collection-label { top: 14px; left: 16px; right: 16px; }
  .collection-label-eyebrow { font-size: 10px; }
  .collection-label-title { font-size: 17px; }
}

.install-app {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0 16px;
  background: var(--surface);
}
.install-app img { width: 100%; display: block; }
.install-app-overlay {
  position: absolute;
  inset: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  width: 60%;
  pointer-events: none;
}
.install-app-overlay .hero-overlay-title { font-size: 16px; }
.install-app-overlay .hero-overlay-sub { font-size: 11px; }

.providers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 22px 0;
}
.providers span {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.payments {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  background: var(--surface);
  border-radius: var(--radius);
  margin: 16px 0;
}
.payments span { font-size: 12px; color: var(--text-3); font-weight: 600; }

.seo-content {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  margin: 28px 0 8px;
}
.seo-content h1,
.seo-content h2,
.seo-content h3 {
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.seo-content h1 {
  font-size: 26px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.seo-content h2 {
  font-size: 21px;
  margin-top: 28px;
  border-left: 3px solid var(--gold-1);
  padding-left: 12px;
}
.seo-content h3 {
  font-size: 17px;
  margin-top: 22px;
  color: var(--gold-1);
}
.seo-content p { margin: 0 0 14px; color: var(--text); }
.seo-content strong { color: var(--gold-1); font-weight: 700; }
.seo-content em { color: var(--text); font-style: italic; }
.seo-content ul,
.seo-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.seo-content li { margin-bottom: 6px; }
.seo-content ul li::marker { color: var(--gold-1); }
.seo-content ol li::marker { color: var(--gold-1); font-weight: 700; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.seo-content table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  font-size: 14px;
}
.seo-content th,
.seo-content td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.seo-content th {
  background: var(--surface-2);
  color: var(--gold-1);
  font-weight: 700;
}
.seo-content tr:last-child td { border-bottom: none; }
.seo-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.faq-item:first-of-type { border-top: none; padding-top: 6px; }
.faq-item h3 {
  margin: 0 0 8px;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: -2px;
  font-size: 22px;
  color: var(--gold-1);
  transition: transform .2s;
  font-weight: 400;
}
.faq-item.open h3::after { content: '−'; }
.faq-item p {
  display: none;
  margin-top: 4px;
}
.faq-item.open p { display: block; }

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.site-footer {
  background: #060812;
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 30px 0 20px;
  font-size: 13px;
  color: var(--text-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 12px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold-1); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  align-items: center;
  text-align: center;
}
.footer-logo img { height: 28px; }
.footer-bottom p { margin: 0; font-size: 12px; color: var(--text-3); }
.footer-disclaimer { font-size: 11px; color: var(--text-3); line-height: 1.5; }

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.error-page h1 {
  font-size: 88px;
  margin: 0 0 8px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.error-page p { font-size: 16px; color: var(--text-2); margin: 0 0 24px; max-width: 480px; }

@media (min-width: 600px) {
  .tile-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .collections-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-card:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-overlay { padding: 22px 28px; gap: 8px; }
  .hero-overlay-title { font-size: 24px; }
  .hero-overlay-sub { font-size: 13px; }
  .hero-overlay-btn { font-size: 13px; padding: 9px 18px; }
  .install-app-overlay { padding: 24px 32px; gap: 10px; }
  .install-app-overlay .hero-overlay-title { font-size: 22px; }
  .install-app-overlay .hero-overlay-sub { font-size: 13px; }
}

@media (min-width: 900px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  main { padding: 22px 0 60px; }
  .main-nav { display: flex; }
  .burger { display: none; }
  .hero {
    grid-template-columns: 2fr 1fr;
    gap: 12px;
  }
  .hero-card:first-child { grid-column: auto; }
  .hero-side {
    display: grid;
    gap: 12px;
    grid-template-rows: 1fr 1fr;
  }
  .hero-overlay { padding: 36px 44px; gap: 10px; width: 55%; }
  .hero-overlay-eyebrow { font-size: 11px; }
  .hero-overlay-title { font-size: 32px; }
  .hero-overlay-sub { font-size: 15px; }
  .hero-overlay-btn { font-size: 14px; padding: 11px 22px; }
  .hero-side .hero-overlay { padding: 22px 26px; }
  .hero-side .hero-overlay-title { font-size: 20px; }
  .hero-side .hero-overlay-sub { font-size: 12px; }
  .hero-side .hero-overlay-btn { font-size: 12px; padding: 8px 14px; }
  .install-app-overlay { padding: 36px 48px; gap: 12px; width: 55%; }
  .install-app-overlay .hero-overlay-title { font-size: 26px; }
  .install-app-overlay .hero-overlay-sub { font-size: 15px; }
  .tile-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .collections-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .seo-content { padding: 32px 36px; }
  .seo-content h1 { font-size: 32px; }
  .seo-content h2 { font-size: 24px; }
  .seo-content h3 { font-size: 19px; }
  .tile-name { font-size: 12px; padding: 18px 8px 8px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1200px) {
  .tile-grid { grid-template-columns: repeat(8, 1fr); }
}
