/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f12;
  --bg-2: #17171b;
  --bg-3: #1e1e24;
  --orange: #ff4d00;
  --orange-dim: #cc3d00;
  --cream: #f5f0eb;
  --warm-gray: #8a8580;
  --mid-gray: #3a3a42;
  --text: #f0ece7;
  --text-muted: #7a7672;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; line-height: 1.05; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,77,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 95% 20%, rgba(255,77,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(56px, 7vw, 88px);
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.0;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 420px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── INK SHAPE (CSS-only) ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ink-shape {
  position: relative;
  width: 400px;
  height: 400px;
}
.ink-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
}
.ink-blob-1 {
  width: 280px; height: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  filter: blur(0px);
}
.ink-blob-2 {
  width: 200px; height: 200px;
  top: 20%; left: 10%;
  transform: translate(0, 0);
  opacity: 0.25;
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
}
.ink-blob-3 {
  width: 140px; height: 140px;
  bottom: 15%; right: 10%;
  opacity: 0.35;
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
}
.halftone-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,77,0,0.12) 2px, transparent 2px);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 0.6;
}
/* big accent circle */
.ink-shape::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,77,0,0.2);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.04); }
}

/* ── DASHBOARD SECTION ── */
.dashboard-section {
  background: var(--bg-2);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dashboard-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
}
.dashboard-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.dashboard-title {
  font-size: 48px;
  color: var(--cream);
}
.dashboard-mockup {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-3);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-topbar {
  background: #12121a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mid-gray);
}
.mockup-dot:first-child { background: #ff4d00; }
.mockup-dot:nth-child(2) { background: #ffaa00; }
.mockup-dot:nth-child(3) { background: #22c55e; }
.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 12px;
  font-family: 'DM Sans', sans-serif;
}
.mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 280px;
}
.mockup-sidebar {
  background: #14141a;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.sidebar-item {
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  cursor: default;
}
.sidebar-item.active {
  color: var(--orange);
  border-left: 2px solid var(--orange);
  background: rgba(255,77,0,0.05);
}
.mockup-content { padding: 20px 24px; }
.job-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
}
.job-row:last-of-type { border-bottom: none; }
.job-badge {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  background: rgba(255,77,0,0.15);
  color: var(--orange);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.job-badge.active { background: rgba(34,197,94,0.15); color: #22c55e; }
.job-badge.complete { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.job-name { font-size: 13px; color: var(--text); flex: 1; }
.job-due { font-size: 11px; color: var(--text-muted); flex-shrink: 0; }
.reorder-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255,77,0,0.07);
  border-radius: 8px;
  border-left: 2px solid var(--orange);
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.reorder-icon { color: var(--orange); font-size: 14px; }

/* ── FEATURES ── */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 64px;
  max-width: 700px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.feature-card:nth-child(odd) { padding-right: 48px; border-right: 1px solid rgba(255,255,255,0.04); }
.feature-card:nth-child(even) { padding-left: 48px; }
.feature-card:nth-child(3),
.feature-card:nth-child(4) { border-bottom: none; }
.feature-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── OUTCOMES ── */
.outcomes {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 0;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.outcome-row {
  background: var(--bg-2);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome-stat {}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 0;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-bar {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 40px;
}
.closing-headline {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 800px;
  line-height: 1.1;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero { padding: 100px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(odd) { border-right: none; padding-right: 0; }
  .feature-card:nth-child(even) { padding-left: 0; }
  .feature-card:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .feature-card:nth-child(4) { border-bottom: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .dashboard-title { font-size: 36px; }
  .section-title { font-size: 36px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .outcome-row { padding: 32px 20px; }
  .closing-headline { font-size: 36px; }
}
