/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B0B12;
  --surface:   #141420;
  --surface2:  #1C1C2E;
  --accent:    #F59E0B;
  --accent-dim:#F59E0B26;
  --accent2:   #FBBF24;
  --text:      #E8E8F0;
  --text-dim:  #8888A8;
  --text-muted:#555572;
  --border:    #1F1F30;
  --success:   #22C55E;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(11,11,18,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 32px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.phone-mockup {
  position: relative;
  width: 220px;
  background: #18182A;
  border-radius: 32px;
  border: 1px solid #272740;
  padding: 2px;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.08) inset,
    0 24px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(245,158,11,0.06);
}
.phone-notch {
  width: 80px; height: 22px;
  background: #0F0F1A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  top: -1px;
}
.phone-screen {
  padding: 16px 14px 20px;
  background: #0F0F1A;
  border-radius: 30px 30px 28px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mockup-time { font-size: 11px; color: #5555A0; font-family: -apple-system, sans-serif; }
.mockup-wifi { width: 12px; height: 9px; background: #5555A0; border-radius: 2px; }
.mockup-app-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #7070A0;
  margin-bottom: 8px;
}
.mockup-alert {
  background: #1A1A2E;
  border: 1px solid #252540;
  border-radius: 14px;
  padding: 12px;
}
.mockup-alert-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.mockup-alert-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.mockup-alert-header span {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mockup-alert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.mockup-alert-meta {
  font-size: 10px;
  color: #5555A0;
  margin-bottom: 10px;
}
.mockup-alert-action { display: flex; flex-direction: column; gap: 5px; }
.mockup-action-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 10px;
  color: var(--accent);
}
.mockup-action-bar--success {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: #4ADE80;
}
.mockup-action-icon { width: 10px; height: 10px; }
.mockup-timestamp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #404060;
  margin-top: 4px;
}
.mockup-timestamp-dot {
  width: 5px; height: 5px;
  background: #404060;
  border-radius: 50%;
}
.mockup-input {
  background: #16162A;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: auto;
}
.mockup-input-text {
  font-size: 11px;
  color: #6060A0;
  font-style: italic;
}

/* ===== SPEED ===== */
.speed {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.speed-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.speed-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.speed-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 60px;
  max-width: 700px;
}
.speed-headline em { font-style: normal; color: var(--accent); }
.speed-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}
.speed-col { display: flex; flex-direction: column; gap: 12px; }
.speed-col-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.speed-col-label--other { color: var(--text-muted); }
.speed-col-label--leasescout { color: var(--accent); }
.speed-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.speed-step--delay { opacity: 0.5; }
.speed-step--highlight { opacity: 0.9; }
.speed-step-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.speed-step-icon--empty {
  border: 1.5px solid var(--text-muted);
  background: transparent;
}
.speed-step-icon--scan { background: rgba(245,158,11,0.15); color: var(--accent); }
.speed-step-icon--match { background: rgba(34,197,94,0.15); color: #4ADE80; }
.speed-step-icon--fire { background: rgba(245,158,11,0.2); color: var(--accent); }
.speed-step-icon--done { background: rgba(34,197,94,0.2); color: #4ADE80; }
.speed-step-icon--sleep {
  background: var(--accent-dim);
  border: 1.5px solid rgba(245,158,11,0.4);
}
.speed-step-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.45;
  padding-top: 3px;
}
.speed-col--leasescout .speed-step-text { color: var(--text); }
.speed-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}
.speed-divider-line { width: 1px; height: 160px; background: var(--border); }
.speed-divider-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.speed-outro {
  margin-top: 48px;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

/* ===== HUNT ===== */
.hunt { padding: 100px 32px; }
.hunt-inner { max-width: 1100px; margin: 0 auto; }
.hunt-header { margin-bottom: 60px; }
.hunt-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hunt-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 600px;
}
.hunt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.hunt-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.hunt-card:hover { background: var(--surface2); }
.hunt-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.hunt-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hunt-card-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== SILENT ===== */
.silent {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.silent-inner { max-width: 760px; margin: 0 auto; }
.silent-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.5;
}
.silent-quote {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}
.silent-cite {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
  margin-bottom: 48px;
}
.silent-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #0B0B12;
  flex-shrink: 0;
}
.silent-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: block;
}
.silent-role {
  font-size: 12px;
  color: var(--text-dim);
}
.silent-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}
.silent-stats-row {
  display: flex;
  gap: 48px;
}
.silent-stat { display: flex; flex-direction: column; gap: 6px; }
.silent-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.silent-stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 32px 120px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.closing-headline-wrap {}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 520px;
}
.closing-vision {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.closing-vision-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.closing-vision-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-right {}
.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .speed-comparison { grid-template-columns: 1fr; }
  .speed-divider { flex-direction: row; }
  .speed-divider-line { width: 100%; height: 1px; }
  .hunt-grid { grid-template-columns: 1fr 1fr; }
  .silent-stats-row { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 20px 48px; }
  .speed, .hunt, .silent, .closing { padding: 72px 20px; }
  .hunt-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .silent-stats-row { flex-direction: column; gap: 28px; }
  .closing { padding-bottom: 80px; }
  .nav { padding: 0 20px; }
}