:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-card: #181818;
  --fg: #ffffff;
  --fg-2: #a0a0a0;
  --fg-3: #555555;
  --accent: #c8f542;
  --accent-2: #a8d32e;
  --accent-dim: rgba(200, 245, 66, 0.12);
  --lime-2: #e2ff7a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid #1f1f1f;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 245, 66, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid #1f1f1f;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 245, 66, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.line-small {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg-2);
  font-weight: 600;
}

.line-large {
  display: block;
  font-size: clamp(72px, 10vw, 128px);
  color: var(--fg);
  font-weight: 800;
}

.line-accent {
  display: block;
  font-size: clamp(72px, 10vw, 128px);
  color: var(--accent);
  font-weight: 800;
  -webkit-text-stroke: 2px var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 440px;
  line-height: 1.65;
}

/* Card stack */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-card-2 {
  border-color: rgba(200, 245, 66, 0.15);
}

.card-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.card-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}

.card-label {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.3;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  gap: 4px;
}

.stat-item:first-child { background: var(--bg-2); }
.stat-item:nth-child(3) { background: var(--bg-2); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}

.stat-desc {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #1f1f1f;
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  border-bottom: 1px solid #1f1f1f;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-label,
.offers-label,
.closing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.manifesto-body strong {
  color: var(--fg);
}

/* Manifesto blocks */
.manifesto-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
}

.manifesto-block {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 28px 32px;
}

.manifesto-block-accent {
  border-color: rgba(200, 245, 66, 0.15);
}

.block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}

.block-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block-list li {
  font-size: 15px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}

.block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-3);
}

.manifesto-block-accent .block-list li::before {
  background: var(--accent);
}

.manifesto-block-accent .block-list li {
  color: var(--fg);
}

/* OFFERS */
.offers {
  padding: 96px 48px;
  border-bottom: 1px solid #1f1f1f;
}

.offers-header {
  margin-bottom: 56px;
}

.offers-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid #1f1f1f;
  border-radius: 18px;
  padding: 28px 28px;
  transition: border-color 0.2s;
}

.offer-card:hover {
  border-color: #2a2a2a;
}

.offer-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.offer-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.offer-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

.offer-card-price {
  background: var(--accent-dim);
  border-color: rgba(200, 245, 66, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 16px;
  color: var(--fg-2);
}

.price-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 48px 80px;
  border-bottom: 1px solid #1f1f1f;
}

.closing-inner {
  max-width: 720px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-statement {
  margin-top: 48px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--fg);
  letter-spacing: -0.02em;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* FOOTER */
.footer {
  padding: 36px 48px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 245, 66, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

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

.footer-note {
  font-size: 12px;
  color: var(--fg-3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-stack { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 220px; }
  .hero-stats-row { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .manifesto { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .manifesto-visual { padding-top: 0; }
  .offers { padding: 64px 24px; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 64px 24px 56px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .offers-grid { grid-template-columns: 1fr; }
  .hero-headline .line-large,
  .hero-headline .line-accent { font-size: 72px; }
}