@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg-black: #000000;
  --bg-dark: #0a0d12;
  --bg-card: #111620;
  --bg-card-hover: #161c28;
  --bg-nav: rgba(10, 13, 18, 0.95);
  --blue-primary: #1a6bff;
  --blue-mid: #0ea5e9;
  --teal: #00d4b4;
  --teal-glow: rgba(0, 212, 180, 0.15);
  --blue-glow: rgba(26, 107, 255, 0.2);
  --text-white: #ffffff;
  --text-muted: #8a93a6;
  --text-dim: #4a5568;
  --border: rgba(255,255,255,0.08);
  --border-glow: rgba(0, 212, 180, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1a6bff, #00d4b4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: -1px;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-logo-text span { color: var(--teal); }

.nav-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 99;
}

.nav-drawer.open { transform: translateY(0); }

.nav-drawer a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.nav-drawer a:hover, .nav-drawer a.active {
  background: rgba(255,255,255,0.05);
  color: var(--text-white);
}

.nav-drawer .nav-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  color: white !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius);
}

/* ─── Hero Section ─── */
.hero {
  background: linear-gradient(180deg, #050810 0%, #0a0d18 60%, #070d0b 100%);
  position: relative;
  padding: 52px 24px 48px;
  overflow: hidden;
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 107, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 212, 180, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-headline .line-teal { color: var(--teal); }

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 320px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--teal) 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  min-height: 54px;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(26, 107, 255, 0.3);
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 107, 255, 0.45);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  min-height: 54px;
  transition: all 0.25s;
  letter-spacing: -0.2px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.proof-item .check {
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
}

/* ─── Sections ─── */
.section {
  padding: 52px 24px;
}

.section-dark { background: var(--bg-dark); }
.section-darker { background: #060810; }
.section-card-bg { background: linear-gradient(180deg, #080c14 0%, #040608 100%); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── What AppWow Is ─── */
.explainer-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.explainer-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--teal));
}

.explainer-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.explainer-block p:last-child { margin-bottom: 0; }
.explainer-block p strong { color: var(--text-white); font-weight: 600; }

/* ─── Submit Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.submit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: all 0.2s;
}

.submit-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.submit-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.submit-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.submit-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Reject List ─── */
.reject-list {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  padding: 24px;
}

.reject-list h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fc8181;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reject-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(239, 68, 68, 0.08);
}

.reject-item:last-child { border-bottom: none; }

.reject-item .x-mark {
  color: #fc8181;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── How It Works Steps ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 107, 255, 0.3);
}


.step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Pricing Summary ─── */
.pricing-highlight {
  background: linear-gradient(135deg, rgba(26,107,255,0.12), rgba(0,212,180,0.08));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-highlight .big-rule {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.pricing-highlight .big-rule span { color: var(--teal); }

.pricing-highlight p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── Requirements Preview ─── */
.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.req-list li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 212, 180, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Linx Section ─── */
.linx-section {
  background: linear-gradient(180deg, #060a10 0%, #040608 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.linx-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,180,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.linx-badge {
  display: inline-block;
  background: rgba(0,212,180,0.1);
  border: 1px solid rgba(0,212,180,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.linx-statement {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-style: italic;
}

/* ─── Final CTA ─── */
.final-cta {
  background: linear-gradient(135deg, #060c18 0%, #040a0c 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,107,255,0.15) 0%, transparent 70%);
}

.final-cta .section-title { font-size: 36px; text-align: center; }
.final-cta .section-body { text-align: center; }
.final-cta .btn-primary { max-width: 280px; margin: 0 auto; }

/* ─── Footer ─── */
.footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border);
  padding: 36px 24px 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #1a6bff, #00d4b4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
}
.footer-logo-text span { color: var(--teal); }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(180deg, #050810 0%, #0a0d18 100%);
  padding: 40px 24px 36px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26,107,255,0.15) 0%, transparent 70%);
}

.page-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ─── Requirements Page ─── */
.req-block {
  margin-bottom: 32px;
}

.req-block-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.req-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.req-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.req-check-list li .ck {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.req-check-list li .xk {
  color: #fc8181;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pass-fail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.pass-box, .fail-box {
  border-radius: var(--radius);
  padding: 20px 16px;
}

.pass-box {
  background: rgba(0, 212, 180, 0.06);
  border: 1px solid rgba(0, 212, 180, 0.2);
}

.fail-box {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.pass-box h4 {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.fail-box h4 {
  color: #fc8181;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pass-box ul, .fail-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pass-box ul li, .fail-box ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Pricing Page ─── */
.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.pricing-tier:hover {
  border-color: var(--border-glow);
}

.pricing-tier.featured {
  border-color: rgba(26,107,255,0.4);
  background: linear-gradient(135deg, rgba(26,107,255,0.08), rgba(0,212,180,0.04));
  position: relative;
}

.tier-featured-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tier-headline {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tier-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.slot-pill {
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}

.slot-live {
  background: rgba(0, 212, 180, 0.12);
  border: 1px solid rgba(0, 212, 180, 0.25);
  color: var(--teal);
}

.slot-private {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.pricing-rule-block {
  background: linear-gradient(135deg, rgba(26,107,255,0.1), rgba(0,212,180,0.06));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.pricing-rule-block .rule-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.pricing-rule-block .rule-text span { color: var(--teal); }

.pricing-rule-block p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.no-fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.no-fee-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.no-fee-item .nf-icon { font-size: 24px; margin-bottom: 8px; }
.no-fee-item .nf-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.no-fee-item .nf-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ─── Submit Page ─── */
.submit-checklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 28px;
}

.submit-checklist h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-weight: 400;
}

.submit-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.submit-checklist ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.submit-checklist ul li .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.submit-reassure {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── Utility ─── */
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
  cursor: pointer;
  min-height: 50px;
  transition: all 0.25s;
  width: 100%;
}

.btn-outline:hover {
  background: rgba(0,212,180,0.06);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 24px;
}
