:root {
  --bg: #0f0f0f;
  --bg-surface: #171717;
  --bg-card: #1e1e1e;
  --fg: #f0ede8;
  --fg-muted: #888;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --border: #2a2a2a;
  --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;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}
.nav-actions {
  margin-left: auto;
}
.nav-cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cart-btn:hover {
  border-color: rgba(245,158,11,0.4);
  background: var(--bg-surface);
}
.cart-badge {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.cart-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.cart-close:hover {
  color: var(--fg);
  background: var(--bg-card);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  color: var(--fg-muted);
  font-size: 15px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.cart-item-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s;
}
.qty-btn:hover { border-color: rgba(245,158,11,0.4); }
.qty-val {
  font-size: 14px;
  color: var(--fg);
  min-width: 20px;
  text-align: center;
}
.remove-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  padding: 2px 0;
  text-decoration: underline;
  margin-left: auto;
  transition: color 0.2s;
}
.remove-btn:hover { color: #f87171; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-subtotal span:first-child {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
#cart-subtotal {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.btn-checkout {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-checkout:hover:not(:disabled) { background: #fbbf24; transform: translateY(-1px); }
.btn-checkout:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.cart-note {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: #aaa;
  max-width: 480px;
  line-height: 1.65;
}
.hero-callouts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-surface);
  overflow: hidden;
  min-width: 200px;
}
.callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
}
.callout-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0;
}
.callout-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}
.callout-label {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* ── Features ── */
.features {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover {
  background: #232323;
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}
.features-footer {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
}
.features-footer p {
  font-size: 14px;
  color: #aaa;
}
.features-footer strong { color: var(--accent); }

/* ── Manifesto ── */
.manifesto {
  padding: 120px 0;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 48px;
  line-height: 1.3;
}
.manifesto-body {
  max-width: 640px;
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manifesto-body p {
  font-size: 17px;
  color: #999;
  line-height: 1.7;
}
.manifesto-body p:first-child { color: #bbb; }
.manifesto-body strong { color: var(--fg); }

/* ── Audience ── */
.audience {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.audience-card:hover {
  border-color: rgba(245,158,11,0.4);
}
.audience-icon { margin-bottom: 20px; }
.audience-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.audience-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  padding: 120px 0 80px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: #888;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* ── Lead Form ── */
.lead-form {
  margin-top: 48px;
}
.lead-form-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.lead-form-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.lead-form-row input {
  padding: 11px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form-row input::placeholder {
  color: #555;
}
.lead-form-row input:focus {
  border-color: rgba(245,158,11,0.5);
}
.btn-lead {
  padding: 11px 24px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-lead:hover {
  background: #fbbf24;
}
.lead-form-msg {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  color: var(--fg-muted);
}
.lead-form-msg.success { color: #4ade80; }
.lead-form-msg.error   { color: #f87171; }

/* ── Footer ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: #666;
}

/* ── Products ── */
.products {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.products-header {
  text-align: center;
  margin-bottom: 64px;
}
.products-sub {
  font-size: 16px;
  color: #777;
  margin-top: -40px;
  margin-bottom: 0;
}

/* Individual product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Product card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-2px);
}

.product-image {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-info {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Buy button */
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-buy:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.btn-buy:active {
  transform: translateY(0);
}

/* Add to Cart button */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.btn-add-cart:active {
  transform: translateY(0);
}

/* Bundle card */
.bundle-card {
  position: relative;
  margin-top: 12px;
  background: var(--bg-card);
  border: 2px solid rgba(245,158,11,0.4);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.bundle-card:hover {
  border-color: rgba(245,158,11,0.65);
}
.bundle-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  padding: 6px 14px;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
}
.bundle-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 48px 48px 48px;
}
.bundle-info {
  flex: 1;
}
.bundle-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.bundle-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}
.bundle-contents {
  margin-bottom: 24px;
}
.bundle-contents span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.bundle-contents ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bundle-contents li {
  font-size: 13px;
  color: #aaa;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.bundle-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.bundle-compare {
  font-size: 14px;
  color: #666;
}
.btn-buy--bundle {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 8px;
}
.bundle-visual {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-visual svg {
  width: 160px;
  height: 160px;
}
.bundle-image-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
}
.bundle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-callouts { flex-direction: row; min-width: unset; }
  .callout { flex-direction: column; padding: 20px; }
  .callout-divider { width: 1px; height: auto; margin: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .bundle-content { flex-direction: column; gap: 24px; }
  .bundle-visual { display: none; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 14px 20px; }
  .hero-inner { padding: 60px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-inner { padding: 0 20px; }
  .products, .manifesto, .audience { padding: 80px 0; }
  .closing { padding: 80px 0 60px; }
  .features-inner,
  .manifesto-inner,
  .audience-inner,
  .closing-inner,
  .footer-inner { padding: 0 20px; }
  .bundle-content { padding: 32px 24px; }
  .bundle-name { font-size: 22px; }
  .bundle-price { font-size: 26px; }
  .bundle-compare { display: none; }
  .bundle-badge { top: 16px; right: 16px; }
}