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

:root {
  --bg: #0D0F14;
  --surface: #161922;
  --surface2: #1E2130;
  --accent: #FF4D2E;
  --accent-dim: rgba(255, 77, 46, 0.15);
  --text: #F0EDE6;
  --text-muted: #8A8FA3;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ---- Navigation ---- */
.nav { padding: 1.75rem 3rem; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- Hero ---- */
.hero { padding: 5rem 3rem 4rem; position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.7;
}

/* ---- Widget ---- */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.widget-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.widget-scroll { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.widget-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: var(--surface2);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  border: 1px solid var(--border);
}

.widget-icon { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }

.widget-cursor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--accent-dim);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--accent-dim);
}

.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---- What It Makes ---- */
.what-it-makes { padding: 5rem 3rem; border-top: 1px solid var(--border); }
.make-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.make-card { background: var(--bg); }
.make-card-inner { padding: 2.5rem; }
.make-card-icon { color: var(--accent); font-size: 1.25rem; margin-bottom: 1rem; }
.make-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.make-card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---- How It Works ---- */
.how-it-works { padding: 5rem 3rem; border-top: 1px solid var(--border); }
.steps { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 2rem; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent-dim); margin-bottom: 1.25rem; line-height: 1; }
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Pricing ---- */
.pricing { padding: 5rem 3rem; border-top: 1px solid var(--border); }
.pricing-card { max-width: 1200px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem; padding: 3rem 3.5rem; display: flex; align-items: center; gap: 3rem; }
.pricing-tier { flex-shrink: 0; }
.pricing-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-price { font-family: var(--font-display); font-size: 4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.pricing-per { font-size: 1.5rem; font-weight: 400; color: var(--text-muted); }
.pricing-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-divider { width: 1px; height: 120px; background: var(--border); flex-shrink: 0; }
.pricing-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; }
.pricing-features li { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 0.6rem; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.pricing-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-muted); grid-column: 1 / -1; }

/* ---- Closing ---- */
.closing { padding: 6rem 3rem; border-top: 1px solid var(--border); text-align: center; }
.closing-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
}

/* ---- Footer ---- */
.footer { padding: 2rem 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.footer-sub { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.75rem; }
.footer-note { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.75rem; }
  .make-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .pricing-card { flex-direction: column; padding: 2rem; }
  .pricing-divider { width: 100%; height: 1px; }
  .pricing-features { grid-template-columns: 1fr; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 1.5rem; }
}