/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #080808;
  --surface:      #111111;
  --surface-2:    #1a1a1a;
  --border:       #1c1c1c;
  --border-2:     #222222;
  --text:         #ffffff;
  --text-2:       #666666;
  --text-3:       #444444;
  --green:        #4ade80;
  --green-action: #007A3D;
  --radius-pill:  99px;
  --radius-card:  12px;
  --max-w:        740px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-width: 960px;
}

/* ── Navbar ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.2px;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-action);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.nav-pill {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px;
}

.nav-pill a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.15s, background 0.15s;
}

.nav-pill a:hover { color: var(--text); background: var(--surface-2); }

.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
}

/* ── Hero ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 56px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}

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

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

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-2);
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border-2);
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover { color: var(--text); border-color: #444; }

/* ── Product Screenshot ── */
.product-wrap {
  max-width: 880px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.browser-chrome {
  background: #141414;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.browser-bar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-2);
}

.browser-dots { display: flex; gap: 6px; }

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.browser-url {
  flex: 1;
  background: #222;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #555;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.browser-body {
  position: relative;
  background: #0d0d1a;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.blocked-page {
  text-align: center;
  opacity: 0.25;
  user-select: none;
}

.blocked-page h2 { font-size: 28px; color: var(--text); font-weight: 700; margin-bottom: 8px; }
.blocked-page p  { color: #888; font-size: 14px; }

.ext-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px 32px;
  width: 340px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
  text-align: center;
}

.ext-flag { font-size: 28px; margin-bottom: 12px; }

.ext-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.ext-sub {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ext-btns { display: flex; flex-direction: column; gap: 8px; }

.ext-btn {
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: default;
}

.ext-btn-green { background: var(--green-action); color: #fff; }
.ext-btn-dark  { background: var(--surface-2); color: #777; border: 1px solid #2a2a2a; }

/* ── Shared Section ── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

.section p + p { margin-top: 14px; }

.divider {
  border: none;
  border-top: 1px solid #141414;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Stats ── */
.stats-section {
  background: #0d0d0d;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #141414;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.stats-inner .section-label { margin-bottom: 16px; }

.stats-inner h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 0;
  line-height: 1.1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.stat-card {
  padding: 36px 32px;
  background: var(--surface);
}

.stat-card:not(:last-child) { border-right: 1px solid var(--surface-2); }

.stat-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-skeleton {
  width: 80px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 6px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.stat-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: sweep 1.8s infinite;
}

@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stat-skeleton.done {
  background: transparent;
  width: auto;
  height: auto;
}

.stat-skeleton.done::after { display: none; }

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ── Companies ── */
.companies-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.companies-section .section-label { margin-bottom: 16px; }

.companies-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 0;
  line-height: 1.1;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.company-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-2);
}

.company-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a2a2a;
  flex-shrink: 0;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #141414;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p { font-size: 12px; color: #333; }
footer a { color: #444; text-decoration: none; font-size: 12px; transition: color 0.15s; }
footer a:hover { color: #777; }
