:root {
  --bg: #0d0d11;
  --bg-soft: #131318;
  --surface: #1a1a21;
  --border: #2a2a33;
  --text: #ffffff;
  --muted: #a3a3ad;
  --accent: #6b2737;
  --accent-2: #9a3b4f;
  --accent-3: #e0b74c;
  --green: #34c759;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: rgba(13, 13, 17, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

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

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(154, 59, 79, 0.35), transparent 60%),
    radial-gradient(500px 380px at 10% 90%, rgba(224, 183, 76, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--accent-3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(154, 59, 79, 0.35);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(154, 59, 79, 0.45);
}

.button.secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--text);
}

/* Phone mockup */
.phone {
  position: relative;
  width: 300px;
  margin: 0 auto;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 18px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

.phone .notch {
  width: 90px;
  height: 22px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #000;
}

.phone .app-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: var(--muted);
}

.pcard {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.pcard .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 18px;
}

.pcard .name {
  font-size: 14px;
  font-weight: 600;
}

.pcard .sub {
  font-size: 12px;
  color: var(--muted);
}

.pcard .price {
  margin-left: auto;
  text-align: right;
}

.pcard .price .amt {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-3);
}

.pcard .price .lvl {
  font-size: 11px;
  color: var(--muted);
}

.pcard .verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--green);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat .num {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label {
  color: var(--muted);
  font-size: 14px;
}

/* Sections */
section {
  padding: 56px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-head .tag {
  color: var(--accent-3);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0;
}

.section-head p {
  color: var(--muted);
}

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

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}

.feature .icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
}

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

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.step .n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

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

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.quote p {
  font-size: 15px;
  margin-bottom: 16px;
}

.quote .who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.quote .name {
  font-size: 14px;
  font-weight: 600;
}

.quote .role {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */
.faq {
  max-width: 680px;
  margin: 0 auto;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 72px 0;
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Content (privacy / terms) */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.content h2 {
  font-size: 20px;
  margin: 28px 0 8px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.content ul {
  padding-left: 20px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer .links {
  margin-bottom: 8px;
}

footer .links a {
  color: var(--muted);
}

footer .links a + a {
  margin-left: 16px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .features,
  .steps,
  .testimonials,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo .mark-img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}