:root {
  --bg-deep: #050810;
  --bg-surface: #0a0f1a;
  --bg-elevated: #111827;
  --coral-bright: #ff4d4d;
  --coral-mid: #e63946;
  --coral-dark: #991b1b;
  --cyan-bright: #00e5cc;
  --cyan-mid: #14b8a6;
  --cyan-glow: rgba(0, 229, 204, 0.35);
  --text-primary: #f0f4ff;
  --text-secondary: #a2adc7;
  --text-muted: #77829d;
  --border-subtle: rgba(136, 146, 176, 0.2);
  --border-accent: rgba(255, 77, 77, 0.35);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.35);
  --font-display: "Clash Display", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 77, 77, 0.1), transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(0, 229, 204, 0.08), transparent 35%),
    var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, #ffffff 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-coral {
  width: 360px;
  height: 360px;
  left: -90px;
  top: 140px;
  background: rgba(255, 77, 77, 0.18);
}

.orb-cyan {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 430px;
  background: rgba(0, 229, 204, 0.14);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.hero {
  text-align: center;
  padding: 2.25rem 0 3.75rem;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  color: var(--coral-bright);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
}

h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.02em;
}

.hero-copy {
  width: min(790px, 92%);
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.micro-proof {
  margin: 1.1rem auto 0;
  width: min(690px, 90%);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  text-decoration: none;
  padding: 0.78rem 1.1rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--coral-bright), var(--coral-mid));
  color: var(--text-primary);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--cyan-mid);
}

.section-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
}

.section-heading p {
  margin: 0.55rem auto 0;
  max-width: 640px;
  color: var(--text-secondary);
}

.features,
.pricing,
.faq,
.final-cta {
  margin-top: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.price-card,
.faq-item,
.trust,
.final-cta {
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005)),
    var(--bg-surface);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.card,
.faq-item {
  padding: 1.2rem;
}

.card h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.card p,
.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--text-secondary);
}

.trust {
  margin-top: 1.3rem;
  text-align: center;
  padding: 1rem 1.25rem;
  border-color: rgba(0, 229, 204, 0.35);
  background:
    linear-gradient(145deg, rgba(0, 229, 204, 0.08), rgba(0, 229, 204, 0.02)),
    var(--bg-elevated);
}

.trust-title {
  margin: 0;
  font-family: var(--font-display);
  color: var(--cyan-bright);
  font-size: 1.14rem;
}

.trust-copy {
  margin: 0.3rem 0 0;
  color: var(--text-secondary);
}

.pricing-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1.3rem;
}

.price-card-featured {
  border-color: var(--border-accent);
  background:
    linear-gradient(145deg, rgba(255, 77, 77, 0.12), rgba(255, 77, 77, 0.02)),
    var(--bg-elevated);
}

.plan-name {
  margin: 0;
  font-weight: 700;
  color: var(--text-primary);
}

.price {
  margin: 0.55rem 0;
  color: var(--text-secondary);
}

.price span {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 2rem;
}

.plan-copy {
  margin: 0;
  color: var(--text-secondary);
}

ul {
  list-style: none;
  margin: 0.95rem 0 1.1rem;
  padding: 0;
}

li {
  position: relative;
  margin-top: 0.38rem;
  padding-left: 1rem;
  color: var(--text-secondary);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--cyan-bright);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.pricing-note {
  margin-top: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.final-cta {
  margin-top: 1.55rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .cards,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .page {
    padding-top: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal {
    transition: none;
  }

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