/* ═══════════════════════════════════════
   Crystal Software — Main Stylesheet
   crystalapps.co
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg:          #060b18;
  --bg2:         #0b1222;
  --bg3:         #101828;
  --surface:     rgba(255,255,255,0.04);
  --surface2:    rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border2:     rgba(56,220,244,0.2);
  --accent:      #38dcf4;
  --accent2:     #0ea5e9;
  --accent-glow: rgba(56,220,244,0.15);
  --accent-dim:  rgba(56,220,244,0.08);
  --purple:      #a78bfa;
  --purple-dim:  rgba(167,139,250,0.12);
  --ink:         #f0f4ff;
  --muted:       #6b7a99;
  --muted2:      #4a5470;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --nav-h:       64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(6,11,24,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.nav-logo-crystal {
  width: 32px;
  height: 32px;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover { color: var(--ink); background: var(--surface); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); }

.nav-play-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 8px;
  transition: all 0.2s;
}

.nav-play-btn:hover { background: rgba(56,220,244,0.15); opacity: 1; }

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

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 10px 16px; display: block; }

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
main {
  padding-top: var(--nav-h);
}

/* ══════════════════════════════════════
   HERO — HOME PAGE
══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 32px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(56,220,244,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(167,139,250,0.08) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(56,220,244,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(56,220,244,0.03) 60px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-title .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #050a18;
  box-shadow: 0 0 24px rgba(56,220,244,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(56,220,244,0.4); opacity: 1; }

.btn-outline {
  border: 1px solid var(--border2);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-outline:hover { background: rgba(56,220,244,0.12); transform: translateY(-2px); opacity: 1; }

.btn-purple {
  border: 1px solid rgba(167,139,250,0.3);
  color: var(--purple);
  background: var(--purple-dim);
}
.btn-purple:hover { background: rgba(167,139,250,0.18); transform: translateY(-2px); opacity: 1; }

/* Play Store badge */
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.play-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 1; color: var(--bg); }
.play-badge svg { flex-shrink: 0; }

.play-badge-sm {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 8px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--purple-dim);
  border: 1px solid rgba(167,139,250,0.3);
  color: var(--purple);
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

/* ══════════════════════════════════════
   SECTION LABELS
══════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border2), transparent);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS
══════════════════════════════════════ */
.section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-wide {
  padding: 80px 32px;
}

/* ══════════════════════════════════════
   APP / GAME CARDS
══════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-glow), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.card-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.badge-free { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border2); }
.badge-paid { background: rgba(250,188,46,0.12); color: #fabc2e; border: 1px solid rgba(250,188,46,0.25); }
.badge-freemium { background: rgba(167,139,250,0.12); color: var(--purple); border: 1px solid rgba(167,139,250,0.25); }
.badge-soon { background: rgba(167,139,250,0.12); color: var(--purple); border: 1px solid rgba(167,139,250,0.3); }
.badge-cat { background: var(--surface2); color: var(--muted); border: 1px solid var(--border); }
.badge-android { background: rgba(78,205,114,0.1); color: #4ecd72; border: 1px solid rgba(78,205,114,0.2); }

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════
   LISTING CARDS (wider)
══════════════════════════════════════ */
.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.listing-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 1;
}

.listing-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}

.listing-card-info { flex: 1; min-width: 0; }
.listing-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.listing-card-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.listing-card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.listing-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 16px;
}

/* ══════════════════════════════════════
   DETAIL PAGE
══════════════════════════════════════ */
.detail-hero {
  padding: 60px 32px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-hero-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.detail-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.detail-hero-info { flex: 1; }

.detail-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.detail-tagline {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   CONTENT BLOCKS (detail page)
══════════════════════════════════════ */
.content-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.content-block-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.content-body {
  font-size: 16px;
  color: #b0bcd4;
  line-height: 1.8;
}

/* Features list */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #b0bcd4;
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--surface2);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ══════════════════════════════════════
   SCREENSHOTS
══════════════════════════════════════ */
.screenshots-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.screenshots-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}

.screenshot-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 248px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
}

.screenshot-thumb:hover {
  border-color: var(--border2);
  transform: scale(1.03);
}

.screenshot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--ink);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox-close:hover { background: var(--surface); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--ink);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox-nav:hover { background: var(--accent-dim); border-color: var(--border2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ══════════════════════════════════════
   META TABLE
══════════════════════════════════════ */
.meta-table {
  width: 100%;
  border-collapse: collapse;
}
.meta-table tr { border-bottom: 1px solid var(--border); }
.meta-table tr:last-child { border-bottom: none; }
.meta-table td {
  padding: 12px 0;
  font-size: 14px;
}
.meta-table td:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 40%;
}
.meta-table td:last-child {
  color: var(--ink);
  text-align: right;
}
.meta-yes { color: #4ecd72 !important; }
.meta-no  { color: #4ecd72 !important; }

/* ══════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════ */
.about-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-dim), var(--purple-dim));
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.about-text-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-text-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */
.cta-strip {
  padding: 80px 32px;
  text-align: center;
}

.cta-strip-title {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta-strip-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-email {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.social-card:hover {
  border-color: var(--border2);
  background: var(--accent-dim);
  transform: translateY(-2px);
  opacity: 1;
}

.social-card-icon { font-size: 24px; margin-bottom: 6px; }
.social-card-name { font-size: 11px; color: var(--muted); font-weight: 500; }

.response-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

/* ══════════════════════════════════════
   PRIVACY POLICY
══════════════════════════════════════ */
.privacy-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.privacy-toc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 12px;
}

.privacy-toc-item {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
}
.privacy-toc-item:hover { opacity: 0.7; }

.privacy-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  scroll-margin-top: 80px;
}

.privacy-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-section h2 .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.privacy-section p {
  font-size: 15px;
  color: #9aaccc;
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
}
.privacy-section ul li {
  font-size: 15px;
  color: #9aaccc;
  padding: 6px 0 6px 20px;
  position: relative;
}
.privacy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.privacy-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 8px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.right-card {
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 16px;
}
.right-card strong {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.right-card span { font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 260px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted2);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover { color: var(--ink); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-link:hover { color: var(--muted); }

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════ */
.page-header {
  position: relative;
  padding: 80px 32px 60px;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(56,220,244,0.1) 0%, transparent 70%);
}

.page-header-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.page-header-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 12px;
  position: relative;
}

.page-header-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ══════════════════════════════════════
   COMING SOON BANNER
══════════════════════════════════════ */
.coming-soon-banner {
  background: linear-gradient(135deg, var(--purple-dim), rgba(56,220,244,0.05));
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coming-soon-banner-icon { font-size: 32px; }

.coming-soon-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}

.coming-soon-banner-text { font-size: 14px; color: var(--muted); }

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 60px 20px 50px; }
  .section { padding: 50px 20px; }
  .section-wide { padding: 50px 20px; }

  .detail-hero { padding: 40px 20px 32px; }
  .detail-hero-inner { flex-direction: column; gap: 20px; }
  .content-block { padding: 0 20px 32px; }
  .content-block-inner { padding: 24px 20px; }
  .screenshots-section { padding: 0 20px 32px; }

  .card-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px; }

  .about-strip-inner { flex-direction: column; gap: 24px; padding: 40px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding: 60px 20px 40px; }
  .cta-strip { padding: 50px 20px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .listing-card { flex-direction: column; }
  .listing-card-icon { width: 56px; height: 56px; border-radius: 14px; }
  .features-list { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
