:root {
  --bg: #04070F;
  --bg-card: rgba(10, 16, 28, 0.75);
  --bg-alt: #080D1A;
  --border: rgba(0, 245, 155, 0.15);
  --text: #F1F5F9;
  --text-muted: #8E9BAE;
  --green: #00F59B;
  --green-dark: #008753;
  --cyan: #00E5FF;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap--narrow {
  max-width: 860px;
}

/* Owner Banner */
.owner-banner {
  background: linear-gradient(90deg, #021a11, #043822, #021a11);
  border-bottom: 1px solid rgba(0, 245, 155, 0.35);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.owner-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.owner-banner__tag {
  background: var(--green);
  color: #000;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.owner-banner__text a {
  color: #A7F3D0;
  text-decoration: underline;
  font-weight: 700;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand__icon {
  width: 34px;
  height: 34px;
}

.brand__text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.brand__dot {
  color: var(--cyan);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--green);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, #00B370 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 245, 155, 0.4);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 245, 155, 0.55);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
}

.btn--glass:hover {
  background: rgba(0, 245, 155, 0.1);
  border-color: var(--green);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 5.5rem 0 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.hero__glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 245, 155, 0.08);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.green-gradient {
  background: linear-gradient(90deg, #00F59B, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box .s-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--green);
}

.stat-box .s-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Radar Visualizer */
.radar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.radar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.radar-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #fff;
}

.radar-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

.r-geo {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
}

.radar-scope {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 155, 0.3);
  margin: 0 auto 1.5rem;
  position: relative;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.05) 0%, transparent 70%);
  overflow: hidden;
}

.radar-scope::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 245, 155, 0.2);
}

.radar-scope::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0, 245, 155, 0.2);
}

.sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 245, 155, 0.3) 0deg, transparent 60deg);
  animation: radarSweep 3s linear infinite;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.target {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FF3D00;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF3D00;
}

.t1 { top: 30%; left: 65%; }
.t2 { top: 70%; left: 40%; }
.t3 { top: 45%; left: 25%; }

.radar-stats {
  display: grid;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.r-metric {
  display: flex;
  justify-content: space-between;
}

/* Scanner Box */
.scan-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
}

.scan-form {
  max-width: 650px;
  margin: 0 auto;
}

.input-wrap {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.4rem;
  margin-bottom: 1.5rem;
}

.input-prefix {
  font-family: var(--font-mono);
  color: var(--text-muted);
  padding: 0 0.5rem 0 1rem;
  font-size: 0.9rem;
}

.scan-input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 0.5rem;
  outline: none;
}

.scan-console {
  background: #020408;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  min-height: 120px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
}

.console-line {
  margin-bottom: 0.25rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.eyebrow {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

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

/* Contact Card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 245, 155, 0.05);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.avatar-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.c-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: all 0.2s ease;
}

.c-btn:hover {
  border-color: var(--green);
  background: rgba(0, 245, 155, 0.08);
}

.lead-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.f-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__grid, .form-row, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .scan-box, .contact-card {
    padding: 2rem;
  }
}
