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

:root {
  --bg: #0d1117;
  --bg-2: #161b22;
  --accent: #e8a317;
  --accent-dim: rgba(232, 163, 23, 0.15);
  --fg: #f0ede8;
  --fg-2: #8b949e;
  --fg-3: #484f58;
  --border: rgba(240, 237, 232, 0.08);
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 163, 23, 0.3);
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 440px;
}

/* video stack visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-stack {
  position: relative;
  width: 280px;
  height: 320px;
}
.video-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 220px;
}
.card-icon {
  color: var(--accent);
}
.card-lines { display: flex; flex-direction: column; gap: 8px; }
.card-line {
  height: 8px;
  background: rgba(240, 237, 232, 0.1);
  border-radius: 4px;
  width: 100%;
}
.card-line.short { width: 65%; }
.card-line.medium { width: 82%; }
.card-1 {
  top: 0; left: 0;
  transform: rotate(-3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-2 {
  top: 60px; right: 0;
  transform: rotate(2.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-3 {
  top: 140px; left: -10px;
  transform: rotate(-1.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-4 {
  top: 210px; right: -10px;
  transform: rotate(3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(232, 163, 23, 0.25);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.manifesto-sub {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.75;
}

/* ── FEATURES ── */
.features {
  padding: 80px 0;
  background: var(--bg-2);
  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 {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.feature { display: flex; flex-direction: column; gap: 10px; }
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 163, 23, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process { padding: 80px 0; }
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.closing-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 420px;
}
.closing-price {
  text-align: right;
  flex-shrink: 0;
}
.price-from {
  font-size: 0.7rem;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-amount span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg-2);
}
.price-note {
  font-size: 0.8rem;
  color: var(--fg-3);
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .closing-inner { flex-direction: column; align-items: flex-start; }
  .closing-price { text-align: left; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .price-amount { font-size: 2.8rem; }
}