:root {
  --bg: #0d0d0f;
  --bg-2: #141418;
  --bg-3: #1c1c22;
  --fg: #f5f0e8;
  --fg-muted: rgba(245, 240, 232, 0.55);
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --gold: #d4a843;
  --border: rgba(245, 240, 232, 0.08);
  --radius: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(13, 13, 15, 0.85);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
}
.nav-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 32px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.waveform-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
}
.waveform-lines svg {
  width: 100%;
  height: 100%;
}
.wave { fill: rgba(245, 166, 35, 0.04); }
.wave-1 { animation: wave-drift 8s ease-in-out infinite alternate; }
.wave-2 { animation: wave-drift 12s ease-in-out infinite alternate-reverse; fill: rgba(245, 166, 35, 0.03); }
.wave-3 { fill: rgba(245, 166, 35, 0.02); }
@keyframes wave-drift {
  from { transform: translateX(-30px); }
  to { transform: translateX(30px); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-kicker { margin-bottom: 24px; }
.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* SECTIONS */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
}
.section-header.centered .section-title { max-width: 560px; margin: 0 auto; }

/* WHAT IT DOES */
.what-it-does { padding: 100px 0; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.body-lead {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.process-steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 2px;
  flex-shrink: 0;
  width: 28px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-content p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* DASHBOARD MOCKUP */
.dashboard-section { padding: 80px 0 100px; background: var(--bg-2); }
.dashboard-mockup {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-browser-bar {
  background: var(--bg-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg-3);
  padding: 5px 12px;
  border-radius: 6px;
  max-width: 200px;
  margin: 0 auto;
}
.mockup-body { display: flex; min-height: 420px; }
.mockup-sidebar {
  width: 56px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}
.sidebar-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 8px; }
.nav-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  cursor: pointer;
}
.nav-item.active { background: var(--accent-dim); color: var(--accent); }
.mockup-main { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; gap: 20px; }
.mockup-topbar { display: flex; justify-content: space-between; align-items: center; }
.topbar-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg); }
.topbar-period { font-size: 11px; color: var(--fg-muted); }
.mockup-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mstat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.mstat-label { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.mstat-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); }
.mstat-change { font-size: 11px; margin-top: 3px; }
.mstat-change.positive { color: #4ade80; }
.mstat-change.neutral { color: var(--fg-muted); }
.mockup-chart {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  height: 100px;
  display: flex;
  align-items: flex-end;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), rgba(245,166,35,0.3));
  border-radius: 3px 3px 0 0;
  transition: height 0.3s ease;
}
.mockup-alerts { display: flex; flex-direction: column; gap: 8px; }
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--fg-muted);
}
.alert-sync { border-left: 3px solid var(--accent); }
.alert-stream { border-left: 3px solid #4ade80; }
.alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.alert-stream .alert-dot { background: #4ade80; }

/* FEATURES */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-2px); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* DIFFERENT */
.different { padding: 100px 0; background: var(--bg-2); }
.different-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.different-left .section-title { font-size: 32px; }
.comparison-table { width: 100%; }
.comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.comp-col-label, .comp-col-orphiq, .comp-col-mngrs, .comp-col-us {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 500;
}
.comp-col-us { color: var(--accent); }
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.comp-feature { font-size: 13px; color: var(--fg-muted); }
.comp-cell { font-size: 12px; color: var(--fg-muted); text-align: center; }
.comp-cell.active { color: var(--accent); font-weight: 600; }
.comp-row:hover .comp-feature { color: var(--fg); }

/* CLOSING */
.closing { padding: 120px 0; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}
.closing-quote { margin-top: 48px; }
.closing-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 12px;
}
.closing-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.footer-brand { margin-bottom: 24px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split-layout, .different-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .mockup-stats-row { grid-template-columns: repeat(2, 1fr); }
  .comp-header, .comp-row { grid-template-columns: 2fr 1fr 1fr; }
  .comp-col-mngrs, .comp-row > div:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .section-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .mockup-stats-row { grid-template-columns: 1fr 1fr; }
  .comp-header, .comp-row { grid-template-columns: 2fr 1fr; }
  .comp-col-mngrs { display: none; }
  .comp-row > div:nth-child(3) { display: none; }
}