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

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --accent: #F472B6;
  --accent-hover: #EC4899;
  --bg: #0F1117;
  --bg-card: #1A1D27;
  --bg-card-hover: #222632;
  --bg-section: #13151D;
  --bg-section-alt: #0B0D12;
  --text: #D1D5DB;
  --text-muted: #8B92A5;
  --text-bright: #F3F4F6;
  --border: rgba(255,255,255,.07);
  --border-accent: rgba(13,148,136,.3);
  --glass-bg: rgba(26,29,39,.6);
  --radius: 14px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-bright);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  background: rgba(15,17,23,.85);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-bright);
}

.logo img { width: 36px; height: 36px; }

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

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-links a:hover { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(13,148,136,.3);
}

.btn-accent {
  background: var(--accent);
  color: #000000;
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(244,114,182,.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-cta {
  padding: 8px 20px;
  font-size: .83rem;
  background: var(--accent);
  color: #000000;
  font-weight: 800;
}

.nav-cta:hover { background: var(--accent-hover); }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,13,18,.96);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  backdrop-filter: blur(8px);
}

.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: 'Sora', sans-serif; font-size: 1.2rem; color: var(--text-bright); font-weight: 600; }
.mobile-nav .close-btn {
  position: absolute; top: 18px; right: 22px;
  font-size: 2rem; color: var(--text); cursor: pointer;
  background: none; border: none;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-section-alt);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.2), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,114,182,.1), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(13,148,136,.12);
  border: 1px solid var(--border-accent);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
  position: relative;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
}

.trust-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.trust-badge {
  color: var(--text-muted);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge strong { color: var(--primary); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-section); }
.section-darker { background: var(--bg-section-alt); }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* ===== FEATURES — gradient sidebar ===== */
.features-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.feature-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.feature-stripe {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.feature-row:nth-child(2) .feature-stripe { background: linear-gradient(180deg, var(--accent), #F59E0B); }
.feature-row:nth-child(3) .feature-stripe { background: linear-gradient(180deg, #8B5CF6, var(--primary)); }
.feature-row:nth-child(4) .feature-stripe { background: linear-gradient(180deg, #06B6D4, #3B82F6); }
.feature-row:nth-child(5) .feature-stripe { background: linear-gradient(180deg, #F59E0B, var(--accent)); }
.feature-row:nth-child(6) .feature-stripe { background: linear-gradient(180deg, #10B981, #06B6D4); }

.feature-body {
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(13,148,136,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-text p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

/* ===== DOWNLOAD ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .3s, transform .3s;
  display: block;
}

.download-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.download-card h3 { font-size: .95rem; margin-bottom: 4px; }
.download-card p { color: var(--text-muted); font-size: .78rem; }

/* ===== CTA ===== */
.cta-banner {
  background: var(--bg-section-alt);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-banner h2 { font-size: 2rem; margin-bottom: 14px; }

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(244,114,182,.1);
  border: 1px solid rgba(244,114,182,.25);
  color: var(--accent);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ===== FAQ — dark accordion ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-bright);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after { content: '\2212'; }
.faq-item.active { border: 1px solid var(--border-accent); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-section-alt);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: .82rem;
}

.footer a { color: var(--text-muted); transition: color .2s; }
.footer a:hover { color: var(--primary); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }

/* ===== INSTRUCTION PAGE ===== */
.instr-hero {
  background: var(--bg-section-alt);
  padding: 60px 0 50px;
  text-align: center;
}

.instr-hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.instr-hero p { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); line-height: 1.7; }
.step-card ul { padding-left: 20px; color: var(--text-muted); }
.step-card ul li { margin-bottom: 8px; list-style: disc; }

.platforms-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.platform-mini-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.1rem; }
  .platforms-mini { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .download-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.5rem; }
  .feature-body { flex-direction: column; gap: 12px; }
  .platforms-mini { grid-template-columns: 1fr; }
}
