/* ===================
   VARIABLES & RESET
==================== */
:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --fg: #f2f2f2;
  --fg-dim: #888888;
  --fg-muted: #555555;
  --accent: #9AFF4F;
  --accent-dim: rgba(154, 255, 79, 0.15);
  --accent-glow: rgba(154, 255, 79, 0.25);
  --danger: #ff4f4f;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #000; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-muted); border-radius: 2px; }

/* ===================
   SECTION BASE
==================== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 520px;
  line-height: 1.7;
}

/* ===================
   HERO
==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(154,255,79,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-copy { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 440px;
  line-height: 1.7;
}

/* ===================
   PHONE MOCKUP
==================== */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.phone-frame {
  width: 280px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(154,255,79,0.08);
}

.phone-screen {
  background: #0f0f0f;
  border-radius: 30px;
  overflow: hidden;
  padding: 0 0 8px;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #0f0f0f;
  margin: 0 auto;
  border-radius: 0 0 16px 16px;
  position: relative;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px 4px;
  font-size: 10px;
  color: var(--fg-muted);
}

.app-header {
  padding: 12px 16px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
}

.app-subtitle {
  font-size: 10px;
  color: var(--fg-muted);
}

/* DEAL CARDS */
.deal-card {
  margin: 4px 12px;
  background: #181818;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.deal-card--featured {
  border-color: rgba(154,255,79,0.3);
  background: #141414;
  box-shadow: 0 0 20px rgba(154,255,79,0.06);
}

.deal-img-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #222;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-img-placeholder--sm { width: 48px; height: 48px; }

.deal-img-icon { display: flex; align-items: center; justify-content: center; }

.icon-crosshair { position: relative; width: 24px; height: 24px; }
.ch-h { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--accent); opacity: 0.5; transform: translateY(-50%); }
.ch-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--accent); opacity: 0.5; transform: translateX(-50%); }
.ch-dot { position: absolute; top: 50%; left: 50%; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; transform: translate(-50%, -50%); }

.deal-info { flex: 1; min-width: 0; }

.deal-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 5px;
}

.deal-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

.deal-market {
  font-size: 10px;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.deal-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.deal-pct {
  font-size: 9px;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.deal-pct--med { background: var(--accent); color: #000; }

.deal-loc {
  font-size: 9px;
  color: var(--fg-muted);
}

/* NAV */
.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--fg-muted);
  font-size: 9px;
}

.nav-btn--active { color: var(--accent); }

.nav-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.3;
}

.nav-btn--active .nav-icon { opacity: 1; }

/* ===================
   DEALS / PROCESS
==================== */
.deals {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.2s;
}

.process-card:hover { border-color: var(--accent-dim); }

.process-icon { margin-bottom: 20px; }

.process-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0.6;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.process-card p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ===================
   RADAR
==================== */
.radar { background: var(--bg); }

.radar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.stat { }

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* RADAR DISPLAY */
.radar-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.radar-sweep {
  position: relative;
  width: 300px;
  height: 300px;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(154,255,79,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: radar-ping 3s ease-out infinite;
}

.radar-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.radar-ring-2 { width: 200px; height: 200px; animation-delay: 0.8s; }
.radar-ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; }

@keyframes radar-ping {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent);
}

.radar-blip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 10px;
  background: rgba(154,255,79,0.08);
  border: 1px solid rgba(154,255,79,0.25);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.radar-blip::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.radar-blip-1 {
  top: 30%;
  right: 10%;
  animation: blip-glow 2s ease-in-out infinite;
}
.radar-blip-1::before { bottom: -8px; left: 50%; transform: translateX(-50%); }

.radar-blip-2 {
  bottom: 25%;
  left: 5%;
  animation: blip-glow 2s ease-in-out infinite 0.5s;
}
.radar-blip-2::before { top: -8px; left: 50%; transform: translateX(-50%); }

.radar-blip-3 {
  top: 60%;
  left: 35%;
  animation: blip-glow 2s ease-in-out infinite 1s;
}
.radar-blip-3::before { right: -8px; top: 50%; transform: translateY(-50%); }

@keyframes blip-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(154,255,79,0.2); }
  50% { box-shadow: 0 0 20px rgba(154,255,79,0.5); }
}

.blip-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}

.blip-badge {
  font-size: 9px;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  padding: 1px 5px;
  border-radius: 3px;
  width: fit-content;
}

.radar-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ===================
   MANIFESTO
==================== */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner { padding: 120px 40px; }

.manifesto-content { max-width: 700px; }

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* SNIPET BADGE (CSS crosshair brand mark) */
.snippet-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 20px 28px;
  border: 1px solid rgba(154,255,79,0.2);
  border-radius: 14px;
  width: fit-content;
  background: rgba(154,255,79,0.04);
}

.snippet-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.snippet-lines { display: flex; flex-direction: column; gap: 6px; }

.snippet-line {
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.snippet-line--1 { width: 80px; }
.snippet-line--2 { width: 56px; }
.snippet-line--3 { width: 40px; }

/* ===================
   FOOTER
==================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand { flex: 1; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-logo-mark {
  position: relative;
  width: 20px;
  height: 20px;
}

.flm-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: translateY(-50%);
}
.flm-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--accent);
  transform: translateX(-50%);
}
.flm-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

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

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

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===================
   RESPONSIVE
==================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .radar-content { grid-template-columns: 1fr; gap: 48px; }
  .radar-right { order: -1; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 600px) {
  .section-inner { padding: 60px 20px; }
  .manifesto-inner { padding: 60px 20px; }
  .stat-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .phone-frame { width: 200px; }
  .deal-card { margin: 4px 8px; }
}
