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

:root {
  /* Brand colors from lighthouse.host */
  --navy:      #0f1c3f;
  --navy-2:    #0d1635;
  --navy-3:    #111d42;
  --surface:   #162050;
  --surface-2: #1a2660;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --amber:     #f59e0b;
  --amber-2:   #fbbf24;
  --amber-3:   #fcd34d;
  --green:     #10b981;
  --blue:      #3b82f6;
  --purple:    #8b5cf6;
  --red:       #ef4444;
  --teal:      #14b8a6;
  --orange:    #f97316;

  --text:      #f1f5f9;
  --text-2:    #94a3b8;
  --text-3:    #64748b;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,158,11,0.06);
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
}
.btn--ghost:hover { color: var(--text); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn-arrow { font-size: 16px; }

/* ─── NAV ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,28,63,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(15,28,63,0.97); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.logo-svg { width: 28px; height: 28px; }

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: var(--amber);
  top: -200px; right: -100px;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: #3b82f6;
  bottom: 0; left: -100px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.hero__badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber-2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__note {
  font-size: 13px;
  color: var(--text-3);
}

/* Hero right — price card */
.hero__right {
  position: relative;
}

.price-card-hero {
  background: rgba(22,32,80,0.9);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.price-card-hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.price-label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.price-badge-up {
  background: rgba(16,185,129,0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.price-card-hero__main {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.price-unit { font-size: 22px; color: var(--text-2); font-weight: 500; }
.price-card-hero__sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-card-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.pstat__label { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.pstat__val { font-size: 20px; font-weight: 800; }
.pstat__val--amber { color: var(--amber); }
.pstat__val--green { color: var(--green); }

.mini-chart { }
.mini-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-bottom: 6px;
}
.mc-bar {
  flex: 1;
  background: rgba(245,158,11,0.2);
  border-radius: 3px 3px 0 0;
}
.mc-bar--active { background: var(--amber); }
.mc-bar--proj { background: rgba(245,158,11,0.4); border: 1px dashed rgba(245,158,11,0.5); }
.mini-chart__label { font-size: 11px; color: var(--text-3); }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(22,32,80,0.95);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  animation: floatBob 4s ease-in-out infinite;
}
.float-card--1 {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}
.float-card--2 {
  top: -20px;
  right: -20px;
  animation-delay: 2s;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.float-icon--green { background: rgba(16,185,129,0.2); color: var(--green); }
.float-icon--amber { background: rgba(245,158,11,0.2); color: var(--amber); }
.float-title { font-size: 13px; font-weight: 600; }
.float-sub   { font-size: 12px; color: var(--text-3); }

/* Hero stats bar */
.hero__stats {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(22,32,80,0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hstat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}
.hstat__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hstat__label {
  font-size: 13px;
  color: var(--text-3);
}
.hstat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── FEATURES ─────────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--navy-2);
}

.features__primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon--amber  { background: rgba(245,158,11,0.15); color: var(--amber); }
.feat-icon--blue   { background: rgba(59,130,246,0.15); color: var(--blue); }
.feat-icon--purple { background: rgba(139,92,246,0.15); color: var(--purple); }
.feat-icon--green  { background: rgba(16,185,129,0.15); color: var(--green); }

.feat-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.feat-tag--amber  { background: rgba(245,158,11,0.12);  color: var(--amber-2); }
.feat-tag--blue   { background: rgba(59,130,246,0.12);  color: var(--blue); }
.feat-tag--purple { background: rgba(139,92,246,0.12);  color: var(--purple); }
.feat-tag--green  { background: rgba(16,185,129,0.12);  color: var(--green); }

.feat-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.feat-list li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.feat-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 12px;
}

/* Feature demo widgets */
.feat-demo {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: auto;
}

/* Pricing demo */
.fd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.fd-row:last-child { border-bottom: none; }
.fd-label { font-size: 12px; color: var(--text-3); flex: 1; }
.fd-val { font-size: 15px; font-weight: 700; }
.fd-val--big { font-size: 22px; color: var(--amber); }
.fd-val--green { color: var(--green); }
.fd-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.fd-badge--up { background: rgba(16,185,129,0.15); color: var(--green); }
.fd-bar-wrap {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
}
.fd-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-radius: 2px;
  transition: width 1s ease;
}

/* Chat demo */
.feat-demo--chat { display: flex; flex-direction: column; gap: 8px; }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 90%;
}
.chat-bubble--guest {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble--ai {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 100%;
}
.ai-label {
  background: var(--amber);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.chat-meta { font-size: 11px; color: var(--text-3); text-align: center; padding-top: 4px; }

/* Competitor demo */
.feat-demo--comp { display: flex; flex-direction: column; gap: 10px; }
.comp-row { display: flex; align-items: center; gap: 10px; }
.comp-name { font-size: 12px; color: var(--text-2); width: 90px; flex-shrink: 0; }
.comp-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.comp-bar { height: 100%; background: rgba(255,255,255,0.15); border-radius: 3px; }
.comp-bar--you { background: var(--amber); }
.comp-price { font-size: 13px; font-weight: 700; width: 36px; text-align: right; flex-shrink: 0; }
.comp-price--you { color: var(--amber); }

/* Notifications demo */
.feat-demo--notifs { display: flex; flex-direction: column; gap: 8px; }
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.notif-dot--green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.notif-dot--amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.notif-dot--red   { background: var(--red);   box-shadow: 0 0 6px var(--red); }
.notif-title { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.notif-sub   { font-size: 11px; color: var(--text-3); }

/* Secondary features grid */
.features__secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.feat-mini:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-3px);
}
.feat-mini__icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 16px;
}
.feat-mini h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-mini p  { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.feat-link { font-size: 13px; color: var(--amber); font-weight: 600; }
.feat-link:hover { text-decoration: underline; }

/* ─── DEMO SECTION ─────────────────────────────────────────────────────── */
.demo-section {
  padding: 100px 0;
  background: var(--navy);
}

.demo-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.demo-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.demo-tab:hover { border-color: var(--amber); color: var(--amber); }
.demo-tab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  font-weight: 700;
}

.demo-panels { position: relative; }
.demo-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.demo-panel.active { display: grid; }

.demo-panel__left h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.demo-panel__left p  { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.demo-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.demo-bullets li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.demo-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* Demo screen */
.demo-screen {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.ds-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy-3);
  border-bottom: 1px solid var(--border);
}
.ds-title { font-size: 13px; font-weight: 600; }
.ds-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.ds-badge--live { background: rgba(16,185,129,0.15); color: var(--green); }
.ds-badge--ai   { background: rgba(245,158,11,0.15); color: var(--amber); }
.ds-body { padding: 20px; }

/* Pricing demo screen */
.ds-property {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ds-property:last-of-type { border-bottom: none; }
.dsp-info { flex: 1; }
.dsp-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.dsp-loc  { font-size: 12px; color: var(--text-3); }
.dsp-price { text-align: right; }
.dsp-rec { font-size: 16px; font-weight: 800; color: var(--amber); }
.dsp-up  { font-size: 12px; color: var(--green); }
.dsp-cur { font-size: 12px; color: var(--text-3); }
.dsp-btn {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.dsp-btn:hover { background: var(--amber); color: var(--navy); }
.ds-accept-all { padding-top: 16px; text-align: center; }

/* Chat demo screen */
.ds-body--chat { display: flex; flex-direction: column; gap: 10px; }
.inbox-msg { display: flex; align-items: flex-start; gap: 10px; }
.inbox-msg--ai { flex-direction: row; }
.inbox-msg--guest { flex-direction: row-reverse; }
.inbox-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-2);
}
.inbox-avatar--ai { background: var(--amber); color: var(--navy); }
.inbox-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  background: var(--navy-3);
  border: 1px solid var(--border);
  max-width: 80%;
}
.inbox-bubble--ai {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.2);
}
.inbox-meta { font-size: 11px; color: var(--text-3); text-align: center; padding: 4px 0; }

/* Competitor intel demo screen */
.market-score { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.ms-label { font-size: 12px; color: var(--text-3); margin-bottom: 6px; }
.ms-score { font-size: 32px; font-weight: 900; color: var(--amber); margin-bottom: 4px; }
.ms-sub   { font-size: 12px; color: var(--text-3); }
.comp-table { display: flex; flex-direction: column; gap: 0; }
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.ct-row:last-child { border-bottom: none; }
.ct-row--header { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ct-row--you { background: rgba(245,158,11,0.05); border-radius: 6px; padding: 8px 6px; }
.ct-row--avg { color: var(--text-3); }
.ct-amber { color: var(--amber); font-weight: 700; }
.ct-green { color: var(--green); font-weight: 700; }

/* Revenue dashboard demo screen */
.rev-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.rev-stat { text-align: center; }
.rev-stat__label { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.rev-stat__val   { font-size: 22px; font-weight: 800; color: var(--amber); }
.rev-stat__delta { font-size: 12px; font-weight: 600; }
.rev-stat__delta.up { color: var(--green); }
.rev-chart { }
.rc-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.rc-bar {
  flex: 1;
  background: rgba(245,158,11,0.2);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
}
.rc-bar span { font-size: 10px; color: var(--text-3); }
.rc-bar--active { background: var(--amber); }
.rc-bar--proj { background: rgba(245,158,11,0.35); border: 1px dashed rgba(245,158,11,0.4); }

.demo-note { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 32px; }

/* ─── HOW IT WORKS ─────────────────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--navy-2);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-step p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.how-arrow {
  font-size: 24px;
  color: var(--amber);
  opacity: 0.5;
  padding-top: 14px;
  flex-shrink: 0;
}

/* ─── INTEGRATIONS ─────────────────────────────────────────────────────── */
.integrations {
  padding: 100px 0;
  background: var(--navy);
}
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.int-group h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.int-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.int-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  transition: all 0.2s;
}
.int-pill:hover { border-color: var(--amber); color: var(--text); }
.int-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.int-dot--red    { background: #ef4444; }
.int-dot--blue   { background: #3b82f6; }
.int-dot--navy   { background: #1d4ed8; }
.int-dot--yellow { background: #eab308; }
.int-dot--green  { background: #10b981; }
.int-dot--teal   { background: #14b8a6; }
.int-dot--amber  { background: #f59e0b; }
.int-dot--purple { background: #8b5cf6; }
.int-dot--gray   { background: #6b7280; }
.int-dot--orange { background: #f97316; }

/* ─── PRICING ──────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--navy-2);
}
.pricing__toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.ptoggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.2s;
}
.ptoggle-label--active { color: var(--text); }
.save-chip {
  font-size: 11px;
  font-weight: 700;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.ptoggle {
  width: 44px; height: 24px;
  background: var(--surface-2);
  border-radius: 100px;
  border: 1px solid var(--border-2);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.ptoggle.annual { background: var(--amber); }
.ptoggle__thumb {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.ptoggle.annual .ptoggle__thumb { transform: translateX(20px); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pcard:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.pcard--featured {
  background: linear-gradient(160deg, rgba(245,158,11,0.08), rgba(22,32,80,0.9));
  border-color: rgba(245,158,11,0.4);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(245,158,11,0.12);
}
.pcard--featured:hover { transform: scale(1.03) translateY(-4px); }
.pcard__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pcard__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.pcard__currency { font-size: 22px; font-weight: 700; color: var(--text-2); }
.pcard__num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--amber);
}
.pcard__period { font-size: 15px; color: var(--text-3); margin-left: 4px; }
.pcard__desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pcard__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.pcard__features li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-x     { color: var(--text-3); flex-shrink: 0; }

.pricing__enterprise {
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
  margin-top: 32px;
}
.pricing__enterprise a { color: var(--amber); }
.pricing__enterprise a:hover { text-decoration: underline; }

/* ─── CTA SECTION ──────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.cta-glow--1 {
  width: 500px; height: 500px;
  background: var(--amber);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-glow--2 {
  width: 400px; height: 400px;
  background: var(--blue);
  bottom: -150px; right: 10%;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-note { font-size: 13px; color: var(--text-3); }

/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { font-size: 18px; margin-bottom: 14px; display: inline-flex; }
.footer__brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 240px;
}
.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--amber); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}

/* ─── MODAL ────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 640px;
  padding: 40px;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal__close:hover { color: var(--text); border-color: var(--amber); }
.video-placeholder {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-3);
}
.video-placeholder svg { opacity: 0.4; }
.video-placeholder p { font-size: 15px; }

/* ─── SCROLL REVEAL ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__right { max-width: 480px; margin: 0 auto; }
  .float-card--1 { bottom: -10px; left: -10px; }
  .float-card--2 { top: -10px; right: -10px; }
  .features__primary { grid-template-columns: 1fr; }
  .features__secondary { grid-template-columns: repeat(2, 1fr); }
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .demo-panel.active { grid-template-columns: 1fr; }
  .demo-panel__right { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 60px 0 0; }
  .hero__headline { font-size: 36px; }
  .hero__stats { flex-direction: column; gap: 0; }
  .hstat__divider { width: 80%; height: 1px; margin: 0 auto; }

  .features__secondary { grid-template-columns: 1fr; }
  .how__steps { flex-direction: column; align-items: center; gap: 24px; }
  .how-arrow { transform: rotate(90deg); }
  .integrations__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pcard--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .demo-tabs { gap: 6px; }
  .demo-tab { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .hero__actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .price-card-hero__stats { grid-template-columns: repeat(3, 1fr); }
}


/* ─── SIGN-IN MODAL ────────────────────────────────────────────────────── */
.signin-modal__box {
  max-width: 420px;
  padding: 32px;
}
.signin-modal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.signin-modal__header {
  text-align: center;
}
.signin-modal__header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.signin-modal__header p {
  font-size: 14px;
  color: var(--text-2);
}
.signin-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.signin-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signin-social__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.signin-social__btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--amber);
  color: var(--amber);
}
.signin-social__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.signin-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.signin-divider::before,
.signin-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.signin-divider span {
  font-size: 13px;
  color: var(--text-2);
  white-space: nowrap;
}
.signin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signin-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.signin-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.signin-form__input {
  padding: 10px 12px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  transition: all 0.2s;
}
.signin-form__input:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.08);
}
.signin-form__input::placeholder {
  color: var(--text-3);
}
.signin-terms {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
}
.signin-terms a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}
.signin-terms a:hover {
  color: var(--amber-2);
  text-decoration: underline;
}
