:root {
  --bg: #070b14;
  --bg2: #0d1220;
  --bg3: #111827;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --text: #f0f2f8;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --purple: #7c5cfc;
  --purple2: #9b7dfd;
  --blue: #3b82f6;
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --grad: linear-gradient(135deg, #7c5cfc 0%, #3b82f6 100%);
  --grad2: linear-gradient(135deg, #9b7dfd 0%, #60a5fa 100%);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 20px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.logo-mark {
  width: 20px;
  height: 22px;
  display: block;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .15s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface2);
}

.nav-link.active {
  color: var(--text);
  background: var(--surface2);
}

/* Products dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted2);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
  border: none;
  background: transparent;
  font-family: var(--sans);
}

.nav-dropdown-btn:hover {
  color: var(--text);
  background: var(--surface2);
}

.nav-dropdown-btn svg {
  transition: transform .2s;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-btn:hover {
  color: var(--text);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all .2s;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--surface2);
}

.dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.dropdown-item-text {
  flex: 1;
}

.dropdown-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.dropdown-item-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

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

.dropdown-item-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(107, 114, 128, .15);
  color: var(--muted);
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

.badge-live {
  background: rgba(16, 185, 129, .12);
  color: #34d399;
}

.badge-soon {
  background: rgba(245, 158, 11, .1);
  color: #fbbf24;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-signin {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  transition: all .15s;
  white-space: nowrap;
}

.nav-signin:hover {
  color: var(--text);
  border-color: rgba(124, 92, 252, .4);
}

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 10px;
  background: var(--grad);
  transition: opacity .15s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: .88
}

/* ── SHARED ──────────────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 560px;
}

.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 72px;
  text-align: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(124, 92, 252, .1);
  border: 1px solid rgba(124, 92, 252, .25);
  border-radius: 999px;
  color: var(--purple2);
  margin-bottom: 28px;
}

.hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.8)
  }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 14px 28px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s;
  letter-spacing: -.01em;
}

.btn-hero-primary:hover {
  opacity: .88
}

.btn-hero-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

.btn-hero-ghost:hover {
  border-color: rgba(124, 92, 252, .4);
  color: var(--purple2);
}

.hero-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

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

.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted2);
}

.hero-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

/* ── SCAN BOX ────────────────────────────────────────────────────── */
.scan-section {
  padding: 0 0 80px;
}

.scan-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  max-width: 720px;
  margin: 0 auto;
}

.scan-card-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.scan-row {
  display: flex;
  gap: 10px;
}

.domain-input {
  flex: 1;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 0 18px;
  height: 54px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.domain-input::placeholder {
  color: var(--muted)
}

.domain-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, .15);
}

.scan-btn {
  height: 54px;
  padding: 0 28px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}

.scan-btn:hover {
  opacity: .88
}

.scan-btn:disabled {
  opacity: .4;
  cursor: not-allowed
}

.scan-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.scan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}

.scan-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted2);
  padding: 4px 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* Progress + Results */
#scan-progress {
  display: none;
  margin-top: 24px;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.progress-tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(124, 92, 252, .15);
  border: 1px solid rgba(124, 92, 252, .3);
  border-radius: 999px;
  color: var(--purple2);
}

.progress-domain {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 18px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  width: 0;
  transition: width .4s ease;
}

.scan-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  transition: color .3s;
}

.step.active {
  color: var(--text)
}

.step.done {
  color: var(--success)
}

.step.fail {
  color: var(--danger)
}

.step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: all .3s;
}

.step.active .step-icon {
  border-color: var(--purple);
  animation: spin 1s linear infinite;
}

.step.done .step-icon {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step.fail .step-icon {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

#results {
  display: none;
  margin-top: 24px;
}

.score-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  border-radius: 14px;
  margin-bottom: 14px;
}

.score-ring {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.score-ring svg {
  transform: rotate(-90deg);
}

.score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.score-label-s {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}

.score-info h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 5px;
}

.score-info p {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}

.result-cards {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.result-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.result-card.pass {
  border-left: 3px solid var(--success)
}

.result-card.warn {
  border-left: 3px solid var(--warn)
}

.result-card.fail {
  border-left: 3px solid var(--danger)
}

.result-status {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.pass .result-status {
  background: rgba(16, 185, 129, .12);
  color: #34d399;
}

.warn .result-status {
  background: rgba(245, 158, 11, .12);
  color: #fbbf24;
}

.fail .result-status {
  background: rgba(239, 68, 68, .12);
  color: #f87171;
}

.result-body h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.result-body p {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.result-detail {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 7px;
  word-break: break-all;
}

.result-cta {
  margin-top: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(124, 92, 252, .12) 0%, rgba(59, 130, 246, .08) 100%);
  border: 1px solid rgba(124, 92, 252, .25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.result-cta h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.result-cta p {
  font-size: 12px;
  color: var(--muted2);
}

.cta-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-sm-primary {
  padding: 9px 18px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-sm-ghost {
  padding: 9px 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm-primary:hover {
  opacity: .88
}

.btn-sm-ghost:hover {
  border-color: var(--purple2);
}

.error-msg {
  display: none;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--danger);
  margin-top: 10px;
}

.rescan-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  margin-top: 16px;
  display: inline-block;
}

.rescan-link:hover {
  color: var(--text)
}

/* ── PRODUCTS ────────────────────────────────────────────────────── */
.products-section {
  padding: 96px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 24px;
  transition: border-color .2s, background .2s;
  cursor: default;
}

.product-card:hover {
  border-color: rgba(124, 92, 252, .35);
  background: rgba(124, 92, 252, .04);
}

.product-card.live {
  border-color: rgba(16, 185, 129, .2);
}

.product-card.live:hover {
  border-color: rgba(16, 185, 129, .4);
}

.pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pc-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.pc-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
}

.pc-live {
  background: rgba(16, 185, 129, .12);
  color: #34d399;
}

.pc-soon {
  background: rgba(245, 158, 11, .1);
  color: #fbbf24;
}

.pc-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  padding: 28px 24px;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 999px;
  opacity: .6;
}

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple2);
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
}

/* ── WHY SHIELDLY ───────────────────────────────────────────────── */
.why-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.why-col-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.why-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.why-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}

/* ── COMPETITOR REPLACEMENT ──────────────────────────────────────── */
.replace-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.replace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.replace-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color .2s;
}

.replace-card:hover {
  border-color: var(--border2);
}

.replace-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

.replace-price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.replace-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}

.replace-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.replace-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.replace-vs-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.replace-shieldly {
  background: linear-gradient(135deg, rgba(124, 92, 252, .15) 0%, rgba(59, 130, 246, .1) 100%);
  border: 1px solid rgba(124, 92, 252, .3);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.rs-icon {
  width: 48px;
  height: 48px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.rs-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.rs-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--purple2);
}

.rs-desc {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 4px;
}

/* ── ADVANCED FEATURES ───────────────────────────────────────────── */
.advanced-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.adv-grid.reverse {
  direction: rtl;
}

.adv-grid.reverse>* {
  direction: ltr;
}

.adv-visual {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.adv-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
}

.adv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.adv-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s;
}

.adv-feat:hover {
  border-color: rgba(124, 92, 252, .3);
}

.adv-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-feat-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.adv-feat-desc {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.6;
}

.adv-feat-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.ab-live {
  background: rgba(16, 185, 129, .12);
  color: #34d399;
}

.ab-soon {
  background: rgba(245, 158, 11, .1);
  color: #fbbf24;
}

.adv-mockup {
  font-family: var(--mono);
  font-size: 12px;
}

.adv-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}

.adv-mock-label {
  font-size: 12px;
  color: var(--muted2);
}

.adv-mock-val {
  font-size: 12px;
  font-weight: 500;
}

.adv-mock-pass {
  color: #34d399;
}

.adv-mock-fail {
  color: #f87171;
}

.adv-mock-warn {
  color: #fbbf24;
}

.adv-mock-score {
  font-size: 28px;
  font-weight: 800;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(124, 92, 252, .12);
  border: 1px solid rgba(124, 92, 252, .25);
  border-radius: 999px;
  color: var(--purple2);
  margin-bottom: 16px;
}

.ai-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

@media(max-width:768px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid.reverse {
    direction: ltr;
  }
}

/* ── PRICING ─────────────────────────────────────────────────────── */
.pricing-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(124, 92, 252, .45);
  background: linear-gradient(160deg, rgba(124, 92, 252, .1) 0%, rgba(59, 130, 246, .06) 100%);
}

.plan-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.badge-free {
  background: rgba(255, 255, 255, .07);
  color: var(--muted2);
  border: 1px solid var(--border2);
}

.badge-pop {
  background: rgba(124, 92, 252, .15);
  color: var(--purple2);
  border: 1px solid rgba(124, 92, 252, .3);
}

.badge-ent {
  background: rgba(16, 185, 129, .1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, .25);
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 14px;
  line-height: 1.5;
}

.plan-price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}

.plan-per {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted2);
}

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

.plan-section-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 14px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.4;
}

.feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 5px;
}

.feat-dot-green {
  background: var(--success);
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  margin-top: 20px;
}

.plan-btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
}

.plan-btn-primary:hover {
  opacity: .88
}

.plan-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}

.plan-btn-ghost:hover {
  border-color: var(--purple2);
  color: var(--purple2);
}

/* ── AI SHOWCASE SECTION ─────────────────────────────────────────── */
.ai-showcase-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.ai-feature-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}

.ai-feature-card:hover {
  border-color: rgba(124, 92, 252, .35);
}

.ai-feature-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, .12) 0%, transparent 70%);
  pointer-events: none;
}

.ai-feature-card.alt::before {
  background: radial-gradient(ellipse, rgba(59, 130, 246, .1) 0%, transparent 70%);
}

.aif-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.aif-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.aif-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(124, 92, 252, .15);
  border: 1px solid rgba(124, 92, 252, .25);
  color: var(--purple2);
}

.aif-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.aif-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.aif-example {
  background: rgba(0, 0, 0, .25);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.aif-example-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.aif-example-text {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.7;
}

.aif-example-text strong {
  color: var(--text);
}

@media(max-width:768px) {
  .ai-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.contact-value a {
  color: var(--purple2);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.contact-form p {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-group-c {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-label-c {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-input-c {
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-input-c:focus {
  border-color: var(--purple);
}

.form-input-c::placeholder {
  color: var(--muted);
}

textarea.form-input-c {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
}

.form-row-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-submit {
  width: 100%;
  padding: 14px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  margin-top: 4px;
}

.contact-submit:hover {
  opacity: .88;
}

.contact-submit:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.contact-success {
  display: none;
  padding: 14px;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
  border-radius: 10px;
  font-size: 13px;
  color: #34d399;
  text-align: center;
  margin-top: 10px;
}

@media(max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row-c {
    grid-template-columns: 1fr;
  }
}

/* ── SOCIAL PROOF ────────────────────────────────────────────────── */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted2);
}

.proof-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--success);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--muted2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  transition: color .15s;
}

.footer-link:hover {
  color: var(--purple2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-link {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.footer-bottom-link:hover {
  color: var(--text);
}

.footer-disclaimer {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px;
  max-width: 420px;
  width: 90%;
  margin: 20px;
}

.modal h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.modal p {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal input {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text);
  outline: none;
  margin-bottom: 10px;
  transition: border-color .2s;
}

.modal input:focus {
  border-color: var(--purple);
}

.modal-btns {
  display: flex;
  gap: 8px;
}

.mbtn-p {
  flex: 1;
  padding: 13px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.mbtn-g {
  flex: 1;
  padding: 13px;
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
}

.mbtn-p:hover {
  opacity: .88
}

.mbtn-g:hover {
  border-color: var(--muted);
  color: var(--text);
}

@media(max-width:1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .replace-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .products-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .replace-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr)
  }

  .scan-row {
    flex-direction: column
  }
}

@media(max-width:480px) {
  .replace-grid {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-disclaimer {
    text-align: left
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto
  }
}