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

:root {
  --bg-body: #05070c;
  --bg-panel: #0d111c;
  --bg-soft: #131a27;
  --bg-chip: #0a0f18;
  --bg-hero-gradient: radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.28), transparent 55%), radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.24), transparent 60%), linear-gradient(135deg, #070910 0%, #111827 55%, #111827 100%);
  --color-primary: #f8fafc;
  --color-secondary: #94a3b8;
  --color-muted: #64748b;
  --accent-red: #f87171;
  --accent-red-strong: #dc2626;
  --accent-blue: #38bdf8;
  --accent-green: #22c55e;
  --accent-amber: #facc15;
  --border-strong: #1f2937;
  --border-soft: rgba(148, 163, 184, 0.1);
  --shadow-strong: 0 40px 120px rgba(15, 23, 42, 0.45);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.32);
  --container-width: 1200px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

body {
  background: var(--bg-body);
  color: var(--color-primary);
  font-family: inherit;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.breadcrumb {
  background: rgba(148, 163, 184, 0.06);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
}

.breadcrumb a {
  color: var(--color-secondary);
  font-weight: 500;
}

.breadcrumb span {
  color: var(--color-primary);
}

.hero {
  background: var(--bg-hero-gradient);
  border-bottom: 1px solid rgba(248, 113, 113, 0.18);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(248, 113, 113, 0.2), transparent 50%);
  pointer-events: none;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-icon img {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(248, 113, 113, 0.35);
  height: 72px;
  width: 72px;
}

.hero-kicker {
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-lede {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-benefits {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-benefit {
  align-items: flex-start;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  display: flex;
  gap: 16px;
  padding: 16px 20px;
}

.hero-benefit-icon {
  align-items: center;
  background: rgba(248, 113, 113, 0.16);
  border-radius: 14px;
  color: var(--accent-red);
  display: flex;
  font-size: 1.1rem;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  width: 40px;
}

.hero-benefit-copy {
  color: var(--color-secondary);
  font-size: 0.98rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.btn {
  border-radius: 16px;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fb7185 0%, #ef4444 100%);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.32);
  color: #0b0f16;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.38);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--color-primary);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.45);
}

.hero-subtext {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  background: rgba(13, 17, 28, 0.85);
  border: 1px solid rgba(248, 113, 113, 0.12);
  border-radius: 32px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.hero-panel img {
  border-radius: 24px;
  width: 100%;
  display: block;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

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

.how-it-works {
  background: rgba(15, 23, 42, 0.32);
  border-top: 1px solid rgba(248, 113, 113, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.video-wrapper {
  background: rgba(13, 17, 28, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 40px;
  overflow: hidden;
  padding: 24px;
  max-width: 920px;
}

.video-wrapper video {
  border-radius: 20px;
  display: block;
  width: 100%;
}

.video-note {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  text-align: center;
}

.steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
  background: var(--bg-panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.step-index {
  align-items: center;
  background: rgba(248, 113, 113, 0.18);
  border-radius: 14px;
  color: var(--accent-red);
  display: inline-flex;
  font-weight: 700;
  font-size: 1.15rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-copy {
  color: var(--color-secondary);
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 10%, rgba(248, 113, 113, 0.08) 100%);
  pointer-events: none;
}

.feature-icon {
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  color: var(--accent-blue);
  display: inline-flex;
  font-size: 1.3rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-copy {
  color: var(--color-secondary);
  font-size: 0.98rem;
}





.privacy-list {
  list-style: none;
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--color-secondary);
}

.privacy-item {
  background: var(--bg-panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  padding: 20px 24px;
  line-height: 1.5;
}

.privacy-item strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 6px;
}

.privacy-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-block {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  margin: 64px auto 0;
  max-width: 880px;
  padding: 40px;
  position: relative;
}

.quote-mark {
  color: rgba(248, 113, 113, 0.45);
  font-size: 4rem;
  font-weight: 800;
  left: 32px;
  line-height: 1;
  position: absolute;
  top: -24px;
}

.quote-text {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin: 0 0 18px;
}

.quote-author {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

details {
  background: rgba(13, 17, 28, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  padding: 20px 24px;
}

details summary {
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: var(--accent-red);
}

.faq-answer {
  color: var(--color-secondary);
  font-size: 0.98rem;
  margin-top: 14px;
}

.support {
  background: rgba(15, 23, 42, 0.24);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.6);
}

.support-card {
  background: rgba(13, 17, 28, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
  max-width: 760px;
  padding: 36px 40px;
  text-align: center;
}

.support-copy {
  color: var(--color-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.support-copy a {
  color: var(--accent-red);
  font-weight: 600;
}

.final-cta {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
  border-top: 1px solid rgba(248, 113, 113, 0.16);
  padding: 80px 0;
}

.final-cta-card {
  background: rgba(13, 17, 28, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 32px;
  margin: 0 auto;
  max-width: 880px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0 20px;
}

.final-note {
  color: var(--color-muted);
  font-size: 0.95rem;
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  color: var(--color-muted);
  font-size: 0.9rem;
  padding: 40px 0 60px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    padding: 72px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section {
    padding: 72px 0;
  }
}
