:root {
  --bg: #141412;
  --bg-alt: #1c1c19;
  --accent: #d4a843;
  --accent-dim: rgba(212, 168, 67, 0.15);
  --accent-mid: rgba(212, 168, 67, 0.4);
  --text: #f0ede6;
  --text-dim: rgba(240, 237, 230, 0.55);
  --text-mid: rgba(240, 237, 230, 0.75);
  --border: rgba(212, 168, 67, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-logo, .footer-logo, .hero-label, .section-label, .value-tag {
  font-family: 'Syne', sans-serif;
}

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  padding: 5rem 4rem 4rem;
  gap: 3rem;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 2rem; }
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO RIGHT — BOX VISUAL */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-visual {
  width: 320px;
  perspective: 800px;
}
.box-lid {
  background: var(--accent);
  height: 28px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lid-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--bg);
  text-transform: uppercase;
}
.box-body {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product .prod-icon svg { width: 40px; height: 40px; }
.product span {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  font-weight: 500;
}
.p1 { grid-column: 1 / -1; }
.p5 { grid-column: 1 / -1; }

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
}
.manifesto-inner { max-width: 700px; margin: 0 auto; }
.manifesto-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2rem;
}
.manifesto-text:last-child { margin-bottom: 0; }
.manifesto-highlight {
  color: var(--text);
  font-weight: 400;
  font-size: 1.4rem;
}

/* WHAT'S INSIDE */
.whats-inside { padding: 6rem 4rem; }
.section-header { margin-bottom: 4rem; }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.product-card {
  padding: 2.5rem 2rem;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.product-card:hover { background: rgba(212,168,67,0.06); }
.card-icon { width: 48px; height: 48px; }
.card-icon svg { width: 100%; height: 100%; }
.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}
.value-note {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.value-tag {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}
.value-sub { color: var(--text-dim); font-size: 0.9rem; font-weight: 300; }

/* HOW IT WORKS */
.how-it-works {
  padding: 6rem 4rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
}
.step {
  flex: 1;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin: 0 -1px;
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  top: calc(50% - 0.7rem);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--bg);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cp-tag {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.cp-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
}
.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-dim); font-weight: 300; }
.footer-note { font-size: 0.8rem; color: var(--text-dim); font-weight: 300; }

/* PRICING */
.pricing {
  padding: 6rem 4rem;
  background: var(--bg);
}
.pricing-inner { max-width: 800px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.plan {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.plan-monthly { border-color: var(--accent-mid); }
.plan-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
}
.plan-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  padding-left: 1.5rem;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2rem;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: #e0b84f; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent-mid); background: var(--accent-dim); }
.btn-sm {
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 6px;
}
.btn-sm:hover { background: #e0b84f; }

/* ABOUT */
.about {
  padding: 6rem 4rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.about-inner { max-width: 900px; margin: 0 auto; }
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-value {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.av-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}
.av-icon svg { width: 100%; height: 100%; }
.about-value h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.about-value p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* CLOSING CTA */
.closing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 2rem 3rem; min-height: auto; }
  .hero-right { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 1rem; }
  .step-connector { display: none; }
  .manifesto, .whats-inside, .how-it-works, .closing, .footer { padding: 4rem 2rem; }
  .nav { padding: 1.25rem 2rem; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-detail { gap: 1.25rem; }
  .closing-products { gap: 0.6rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}