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

:root {
  --bg:            #0a0a0a;
  --bg-2:          #0f1112;
  --surface:       #161819;
  --surface-2:     #1b1e1f;
  --surface-edge:  #23272a;
  --border:        #1f2326;
  --text:          #ffffff;
  --muted:         #a0a7ae;
  --muted-2:       #6f7780;
  --accent:        #00e5ff;
  --accent-2:      #6fd0ea;
  --accent-glow:   rgba(0, 229, 255, 0.18);
  --accent-text:   #07151a;
  --radius:        14px;
  --radius-sm:     10px;
  --radius-lg:     18px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.3);
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: filter 0.15s ease;
}
.btn-link:hover { filter: brightness(1.15); }

.text-accent { color: var(--accent); }

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* hero mock card */
.hero-mock {
  display: flex;
  justify-content: center;
}

.mock-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #16191b 0%, #101214 100%);
  border: 1px solid var(--surface-edge);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.05);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.mock-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-icon svg { width: 22px; height: 22px; }

.mock-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 600;
}

.mock-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.mock-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: #0e1012;
  border: 1px solid #1a1d1f;
  border-radius: 10px;
}

.mock-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-item-icon svg { width: 16px; height: 16px; }

.mock-item-name {
  flex: 1;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.mock-item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.mock-progress {
  margin-top: 0.5rem;
}

.mock-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 600;
}

.mock-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #0e1012;
  overflow: hidden;
  border: 1px solid #1a1d1f;
}

.mock-progress-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 999px;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ─── Generic Section ───────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ─── How It Works ──────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 26px; height: 26px; }

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── Features / Bento ──────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #0f1617 0%, #131617 100%);
}

.bento-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 229, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 140, 180, 0.12), transparent 50%);
  pointer-events: none;
}

.bento-card > * { position: relative; }

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.bento-icon svg { width: 24px; height: 24px; }

.bento-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── Pricing ───────────────────────────────────────────────────────────── */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 2.25rem 2rem 2rem;
  background: linear-gradient(180deg, #14181a 0%, #0e1112 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 50px rgba(0, 229, 255, 0.1), 0 0 0 4px rgba(0, 229, 255, 0.05);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.pricing-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.pricing-amount {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-period {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.pricing-trial {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-section {
  padding: 2rem 0 5rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 50%, rgba(0, 229, 255, 0.15), transparent 55%),
    linear-gradient(180deg, #14171a 0%, #0d1011 100%);
  border: 1px solid var(--border);
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.landing-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

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

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-heading { font-size: 2.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-link { text-align: center; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-left { align-items: center; }
  .footer-links { gap: 1.25rem; justify-content: center; }
  .pricing-card { padding: 2rem 1.5rem; }
}
