:root {
  --cream: #f7f5f0;
  --ink: #18181b;
  --orange: #fb923c;
  --orange-dim: rgba(251, 146, 60, 0.12);
  --zinc-400: #a1a1aa;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --card: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(24,24,27,0.08);
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.tagline {
  font-size: 0.8rem;
  color: var(--zinc-600);
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  padding: 5rem 2.5rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.hl-line { display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--zinc-700);
  max-width: 42ch;
  line-height: 1.55;
}

.hero-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--orange-dim);
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(251,146,60,0.25);
  width: fit-content;
}

.hero-arrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.video-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
}

.vc-bar {
  font-size: 0.7rem;
  color: var(--zinc-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--zinc-800);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.vc-content { }

.vc-screen {
  background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
  border-radius: 10px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.vc-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(251,146,60,0.04) 8px,
    rgba(251,146,60,0.04) 9px
  );
}

.play-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(251,146,60,0.15);
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-label {
  display: flex;
  gap: 0.5rem;
}

.vc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--zinc-400);
  background: var(--zinc-800);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.vc-bottom {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--zinc-800);
}

.vc-stat {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.vcs-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.vcs-label {
  font-size: 0.7rem;
  color: var(--zinc-400);
}

/* Mini card */
.mini-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 180px;
  border: 1px solid rgba(24,24,27,0.06);
}

.mc-line {
  height: 6px;
  background: var(--zinc-700);
  border-radius: 3px;
  width: 100%;
}

.mc-line.short { width: 65%; }

.mc-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
  margin-top: 0.2rem;
}

/* Features */
.features {
  background: var(--ink);
  color: #fff;
  padding: 5rem 2.5rem;
}

.feat-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.feat-head {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feat-sub {
  font-size: 1rem;
  color: var(--zinc-400);
  max-width: 50ch;
}

.feat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--zinc-800);
  border: 1px solid var(--zinc-800);
  border-radius: 14px;
  overflow: hidden;
}

.feat-card {
  background: var(--zinc-800);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feat-card:hover { background: #2a2a2e; }

.fc-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.015em;
}

.fc-desc {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
}

.feat-industries {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ind-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--zinc-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ind-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ind-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--zinc-400);
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Proof */
.proof {
  background: var(--cream);
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(24,24,27,0.06);
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.proof-quote { }

.pq-text {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.pq-meta { }

.pq-name {
  font-size: 0.8rem;
  color: var(--zinc-600);
  font-weight: 500;
}

/* Closing */
.closing {
  background: var(--ink);
  padding: 5rem 2.5rem;
  text-align: center;
}

.cls-inner { max-width: 680px; margin: 0 auto; }

.cls-head {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cls-sub {
  font-size: 1rem;
  color: var(--zinc-400);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cls-final {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #111113;
  padding: 1.75rem 2.5rem;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foot-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.foot-tag {
  font-size: 0.75rem;
  color: var(--zinc-600);
}

.foot-copy {
  font-size: 0.75rem;
  color: var(--zinc-600);
}

/* Responsive */
@media (max-width: 768px) {
  .topbar { padding: 1rem 1.25rem; }
  .tagline { display: none; }

  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.75rem; }
  .hero-visual { order: -1; }
  .mini-card { display: none; }
  .vc-screen { height: 140px; }

  .features { padding: 3.5rem 1.25rem; }
  .feat-head { font-size: 2rem; }
  .feat-grid { grid-template-columns: 1fr; }

  .proof { padding: 3rem 1.25rem; }
  .proof-inner { grid-template-columns: 1fr; }

  .closing { padding: 3.5rem 1.25rem; }
  .cls-head { font-size: 2rem; }

  .site-footer { padding: 1.25rem; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-headline { animation: fadeUp 0.7s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.12s ease both; }
.hero-price { animation: fadeUp 0.7s 0.2s ease both; }
.hero-arrow { animation: fadeUp 0.7s 0.28s ease both; }
.video-card { animation: fadeUp 0.7s 0.15s ease both; }
