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

:root {
  --bg:        #0d0d0f;
  --bg2:       #141416;
  --bg3:       #1c1c1f;
  --border:    rgba(255,255,255,0.08);
  --text:      #e8e8ea;
  --muted:     #888892;
  --accent:    #E8441A;
  --accent2:   #ff6b3d;
  --green:     #34c759;
  --radius:    14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }

/* ─── Buttons ─── */
.btn-primary, .btn-secondary, .btn-nav, .btn-price-primary, .btn-price-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-secondary {
  background: var(--bg3);
  color: var(--text);
  padding: 14px 28px;
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  font-size: 0.875rem;
}
.btn-nav:hover { background: var(--accent2); }

/* ─── Nav ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.nav-links a:not(.btn-nav) {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.nav-links a:not(.btn-nav):hover { color: var(--text); }

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,68,26,0.15);
  color: var(--accent2);
  border: 1px solid rgba(232,68,26,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 64px;
}

/* ─── App Mockup ─── */
.app-mockup {
  display: flex;
  justify-content: center;
}

.mockup-window {
  background: #1a1a1d;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.mockup-titlebar {
  background: #222225;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.mockup-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 240px;
}

.mockup-sidebar {
  width: 200px;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  flex-shrink: 0;
}

.mockup-project {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: default;
  border-radius: 8px;
  margin: 2px 6px;
  transition: background 0.15s;
}

.mockup-project.active {
  background: rgba(232,68,26,0.12);
}

.proj-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
}

.proj-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.proj-time { font-size: 0.72rem; color: var(--muted); }

.mockup-main {
  flex: 1;
  padding: 20px;
}

.mockup-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.mockup-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.mockup-stat.highlight {
  background: rgba(232,68,26,0.08);
  border-color: rgba(232,68,26,0.25);
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stat-value.live {
  color: var(--accent2);
}

.mockup-sessions-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.mockup-session {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

/* ─── Problem ─── */
.problem {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.problem-text .label { display: block; }
.problem-text h2 { margin-bottom: 20px; }
.problem-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }

.problem-vs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.vs-card.good { border-color: rgba(52,199,89,0.25); background: rgba(52,199,89,0.05); }
.vs-card.bad  { border-color: rgba(255,69,58,0.2);  background: rgba(255,69,58,0.04); }

.vs-header {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.vs-card ul { list-style: none; padding: 0; }
.vs-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 4px 0;
}
.vs-card ul li::before { content: "— "; color: var(--muted); }

/* ─── How It Works ─── */
.how {
  padding: 100px 0;
  text-align: center;
}

.how .label, .how h2 { display: block; }
.how h2 { margin-bottom: 60px; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(232,68,26,0.25);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.step-arrow {
  font-size: 1.4rem;
  color: var(--border);
  padding-top: 20px;
  flex-shrink: 0;
}

/* ─── Features ─── */
.features {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features .label { display: block; }

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

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.15); }

.feature-icon { font-size: 1.75rem; margin-bottom: 14px; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── Pricing ─── */
.pricing { padding: 100px 0; text-align: center; }
.pricing .label { display: block; }
.pricing-sub { color: var(--muted); margin-bottom: 48px; font-size: 0.9rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
  align-items: stretch;
}

.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  background: rgba(232,68,26,0.06);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }

.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 5px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

.btn-price-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.18s, transform 0.18s;
}
.btn-price-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-price-outline {
  background: transparent;
  color: var(--text);
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.18s;
}
.btn-price-outline:hover { border-color: rgba(255,255,255,0.25); }

.price-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.pricing-guarantee {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 16px;
}

/* ─── Trust ─── */
.trust {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item { text-align: center; }
.trust-icon { font-size: 1.8rem; margin-bottom: 12px; }
.trust-item strong { display: block; margin-bottom: 8px; font-size: 0.95rem; }
.trust-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── FAQ ─── */
.faq { padding: 100px 0; }
.faq .label { display: block; }
.faq h2 { margin-bottom: 48px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item code {
  background: var(--bg3);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: "SF Mono", "Fira Code", monospace;
  color: var(--accent2);
}

/* ─── Final CTA ─── */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(232,68,26,0.08) 0%, transparent 70%);
}

.final-cta h2 { margin-bottom: 12px; }
.final-cta p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ─── Footer ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }

.btn-cookie-settings {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s;
}
.btn-cookie-settings:hover { color: var(--text); }

.cookie-settings-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 500;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, opacity 0.2s;
  opacity: 0.6;
}
.cookie-settings-fab:hover { color: var(--text); border-color: rgba(255,255,255,0.2); opacity: 1; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(136,136,146,0.5);
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20, 20, 22, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { font-size: 0.9rem; display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.6; }
.cookie-text a { color: var(--accent2); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}
.btn-cookie-accept:hover { background: var(--accent2); }

.btn-cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ─── Platforms Section ─── */
.platforms-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.platforms-header { margin-bottom: 40px; }
.platforms-header .label { display: block; }
.platforms-header h2 { margin-bottom: 10px; }
.platforms-header p { color: var(--muted); font-size: 0.95rem; }

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.platform-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: border-color 0.2s;
}
.platform-card:hover { border-color: rgba(255,255,255,0.15); }

.platform-icon {
  width: 56px;
  height: 56px;
  background: var(--bg2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-info { flex: 1; }
.platform-info h3 { font-size: 1rem; margin-bottom: 4px; }
.platform-info p { font-size: 0.8rem; color: var(--muted); margin: 0; }

.btn-platform {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s;
}
.btn-platform:hover { background: var(--accent2); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links a:not(.btn-nav) { display: none; }

  /* Hero */
  .hero { padding: 72px 20px 60px; }
  .hero-meta { gap: 14px; font-size: 0.8rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  /* Mockup */
  .mockup-sidebar { display: none; }
  .mockup-stat-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-value { font-size: 0.95rem; }

  /* Problem */
  .problem { padding: 72px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 36px; }

  /* How it works */
  .how { padding: 72px 0; }
  .steps { flex-direction: column; align-items: center; gap: 8px; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); padding: 0; font-size: 1rem; }

  /* Features */
  .features { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Pricing */
  .pricing { padding: 72px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }

  /* Trust */
  .trust { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* FAQ */
  .faq { padding: 72px 0; }

  /* Platforms */
  .platforms-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .platform-card { flex-wrap: wrap; }
  .btn-platform { width: 100%; justify-content: center; }

  /* Final CTA */
  .final-cta { padding: 80px 24px; }
}

@media (max-width: 480px) {
  /* Nav */
  .logo span, .logo { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 60px 16px 48px; }
  .hero-meta { flex-direction: column; gap: 8px; align-items: center; }

  /* Mockup */
  .mockup-stat-grid { grid-template-columns: 1fr 1fr; }
  .mockup-stat:last-child { grid-column: span 2; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 12px; }
}
