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

:root {
  --bg:        #060d18;
  --bg-card:   #0d1f35;
  --bg-card2:  #0a1628;
  --accent:    #00e5ff;
  --accent2:   #0066ff;
  --crimson:   #8b0000;
  --text:      #ffffff;
  --text-muted:#8899aa;
  --border:    rgba(255,255,255,0.08);
  --radius:    16px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Gradient text ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #0088ff 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #060d18;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,255,.25); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; border-radius: 14px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6,13,24,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav.scrolled { background: rgba(6,13,24,.97); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.logo-dk   { color: var(--text); }
.logo-kash { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(6,13,24,.97);
  border-top: 1px solid var(--border);
}
.nav-mobile a { font-size: 1rem; color: var(--text-muted); }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero--short {
  min-height: 50vh;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0,102,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139,0,0,.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(0,229,255,.08) 0%, transparent 50%),
    linear-gradient(180deg, #060d18 0%, #0a1628 50%, #060d18 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  max-width: 620px;
}
.hero-content--center {
  max-width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── Phone mockup ─────────────────────────────────────────── */
.hero-phone {
  position: absolute;
  right: max(24px, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.phone-frame {
  width: 280px;
  background: #0a1628;
  border-radius: 36px;
  border: 2px solid rgba(0,229,255,.15);
  box-shadow:
    0 0 60px rgba(0,229,255,.08),
    0 40px 80px rgba(0,0,0,.6);
  overflow: hidden;
  padding: 16px 12px;
}
.phone-screen { display: flex; flex-direction: column; gap: 10px; }
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mock-title { font-size: .85rem; font-weight: 700; }
.mock-filter {
  font-size: .7rem;
  color: var(--accent);
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 8px;
  padding: 3px 8px;
}
.mock-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}
.mock-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.mock-card-title { font-size: .8rem; font-weight: 700; margin-bottom: 3px; }
.mock-card-sub { font-size: .68rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.4; }
.mock-card-footer { display: flex; justify-content: space-between; font-size: .65rem; color: var(--text-muted); margin-bottom: 8px; }
.mock-ends { color: var(--accent); }
.mock-signup {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #060d18;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 12px;
  text-align: center;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: #080f1c;
}
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.step-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding-top: 80px;
  flex-shrink: 0;
}

/* ── Features grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.features-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-3px); }
.feature-card--accent {
  border-color: rgba(0,229,255,.2);
  background: linear-gradient(135deg, rgba(0,229,255,.06), rgba(0,102,255,.06));
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── For Business split ───────────────────────────────────── */
.biz-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.biz-text .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.biz-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.biz-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.check { color: var(--accent); font-weight: 700; }
.biz-cards { display: flex; flex-direction: column; gap: 16px; }
.biz-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.biz-stat-card--sm { padding: 20px 24px; }
.biz-stat-icon { font-size: 1.5rem; margin-bottom: 8px; }
.biz-stat-label { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.biz-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.biz-stat-row:last-child { border-bottom: none; }
.accent { color: var(--accent); font-weight: 700; }

/* ── CTA section ──────────────────────────────────────────── */
.section-cta { background: #080f1c; }
.cta-inner {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,.12);
  border-radius: 24px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Download buttons ─────────────────────────────────────── */
.download-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 14px 24px;
  transition: all .2s;
  min-width: 180px;
}
.store-btn:hover { border-color: var(--accent); background: rgba(0,229,255,.06); transform: translateY(-2px); }
.store-sub { display: block; font-size: .7rem; color: var(--text-muted); }
.store-name { display: block; font-size: 1rem; font-weight: 700; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: #040a12; border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: .9rem; color: var(--text-muted); margin-top: 12px; max-width: 240px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: .9rem; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Steps vertical ───────────────────────────────────────── */
.steps--vertical { flex-direction: column; align-items: stretch; max-width: 700px; margin: 0 auto; gap: 0; }
.step-v {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step-v:last-child { border-bottom: none; }
.step-v-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #060d18;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-v-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-v-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing-card--featured {
  border-color: rgba(0,229,255,.3);
  background: linear-gradient(135deg, rgba(0,229,255,.05), rgba(0,102,255,.05));
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #060d18;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-size: .85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 24px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: .9rem; color: var(--text-muted); }
.pricing-features li:first-child, .pricing-features li:nth-child(2) { color: var(--text); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { font-size: 1.5rem; }
.contact-item strong { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a { color: var(--accent); font-size: .95rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  color: #69f0ae;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  background: rgba(105,240,174,.08);
  border: 1px solid rgba(105,240,174,.2);
  border-radius: 10px;
}
.form-success.visible { display: block; }

/* ── Prose (legal pages) ──────────────────────────────────── */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 12px; color: var(--accent); }
.prose p, .prose li { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-phone { display: none; }
  .biz-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .step-arrow { display: none; }
  .pricing-card--featured { transform: none; }
}
@media (max-width: 600px) {
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .download-btns { flex-direction: column; align-items: center; }
}
