:root {
  --bg: #050814;
  --bg-alt: #080d1f;
  --card: #0c1226;
  --accent: #4fd1c5;
  --accent-soft: rgba(79, 209, 197, 0.12);
  --accent-strong: #2fb0a2;
  --text: #f9fafb;
  --text-soft: #cbd5f5;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --transition: 0.2s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #111827 0, #020617 38%, #000 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0%, #22c55e, #0ea5e9 55%, #6366f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0b1020;
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.8);
}

.logo-mark.small {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-soft);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #22c55e, #2dd4bf, #38bdf8);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text);
  padding: 0.25rem 0.7rem;
  font-size: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.05rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, #22c55e, #14b8a6, #0ea5e9);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.5);
}

.btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-soft);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

.btn-large {
  padding: 0.7rem 1.6rem;
  font-size: 0.98rem;
}

/* Hero */

.hero{
  max-width:1200px;
  margin:0 auto;
  padding:60px 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.12rem 0.7rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  background: radial-gradient(circle at top left, rgba(34,197,94,0.16), rgba(15,23,42,0.9));
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw + 1.4rem, 3rem);
  line-height: 1.1;
  margin: 0.9rem 0 0.6rem;
}

.hero-text {
  margin: 0 0 1.3rem;
  color: var(--text-soft);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-trust p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-tags span {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.12rem 0.6rem;
  background: rgba(15, 23, 42, 0.75);
}

/* Hero card / phone */

.hero-card {
  background: radial-gradient(circle at top, #111827, #020617 70%);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.phone-ui {
  background: #020617;
  border-radius: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.phone-status {
  font-size: 0.76rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.phone-call {
  padding: 0.8rem 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.caller-label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.caller-number {
  font-size: 1rem;
  font-weight: 600;
}

.script {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.script p {
  margin: 0 0 0.3rem;
}

.script p:last-child {
  margin-bottom: 0;
}

.decision {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill-btn {
  flex: 1 1 45%;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.6rem;
  border: none;
  font-size: 0.78rem;
  cursor: default;
}

.pill-btn.positive {
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
}

.pill-btn.negative {
  background: rgba(220, 38, 38, 0.15);
  color: #fecaca;
}

.phone-footer {
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  padding-top: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-soft);
}

/* Sections */

.section {
  padding: 2.7rem 0 2.6rem;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), #020617 70%);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.feature-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.9rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

/* Pricing */

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(34,197,94,0.12), rgba(15,23,42,0.96));
  border-radius: 1.6rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(74, 222, 128, 0.5);
  box-shadow: var(--shadow-soft);
}

.pricing-label {
  display: inline-flex;
  padding: 0.16rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  border: 1px solid rgba(74, 222, 128, 0.7);
  color: #bbf7d0;
  margin-bottom: 0.55rem;
}

.pricing-text {
  margin-top: 0;
  color: var(--text-soft);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.4rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.pricing-list li {
  margin-bottom: 0.35rem;
}

.pricing-note {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Join */

.join-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.join-copy h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.join-copy p {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
}

.join-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.join-form label {
  font-size: 0.86rem;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #020617;
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font-size: 0.9rem;
}

.join-form input:focus,
.join-form textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.small-note {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* FAQ */

.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  text-align: left;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.faq-icon {
  margin-left: 0.7rem;
  font-size: 1rem;
  color: var(--text-soft);
}

.faq-answer {
  display: none;
  padding: 0.45rem 0.4rem 0.7rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.faq-answer p {
  margin: 0;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1rem 0 1.2rem;
  background: rgba(2, 6, 23, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.foot-note {
  margin: 0.1rem 0 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.separator {
  opacity: 0.6;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .steps-grid,
  .features-grid,
  .join-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    padding-inline: 0;
  }

  .hero {
    padding-top: 2.1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav open state - we will toggle a class via JS */

.nav-open .nav,
.nav-open .nav-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 1rem;
  top: 3.2rem;
  background: rgba(15, 23, 42, 0.98);
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  gap: 0.6rem;
  z-index: 50;
}