/* ============================================================
   InterviewDashboard — marketing site
   Dark high-tech / enterprise. Violet brand (#6D28D9 family).
   ============================================================ */

:root {
  --bg: #07070c;
  --bg-2: #0b0b13;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ededf2;
  --muted: #9c9ca9;
  --faint: #6d6d7a;

  --violet: #7c3aed;
  --violet-2: #8b5cf6;
  --violet-deep: #6d28d9;
  --violet-soft: rgba(124, 58, 237, 0.14);
  --violet-glow: rgba(124, 58, 237, 0.35);

  --emerald: #34d399;
  --blue: #60a5fa;
  --amber: #fbbf24;
  --rose: #fb7185;
  --cyan: #22d3ee;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1160px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(124, 58, 237, 0.4); }

/* ---------- Page backdrop ---------- */
.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 15% -5%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(800px 480px at 85% 8%, rgba(109, 40, 217, 0.12), transparent 60%),
    var(--bg);
}
.page-backdrop::before {
  content: "";
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.section { padding: 112px 0; position: relative; }
.section--tight { padding: 88px 0; }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head--left { margin: 0 0 56px; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-2));
}
.section-head:not(.section-head--left) .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-2), transparent);
}

.h-display {
  font-size: clamp(2.6rem, 5.6vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.h-section {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: -0.028em;
}
.lede {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}
.grad-text {
  background: linear-gradient(100deg, #c4b5fd 0%, var(--violet-2) 45%, var(--cyan) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--violet-2), var(--violet-deep));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.5), 0 10px 34px rgba(109, 40, 217, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.7), 0 16px 44px rgba(109, 40, 217, 0.55);
}
.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 13.5px; border-radius: 8px; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 7, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 16.5px; }
.nav__brand img { width: 30px; height: 30px; }
.nav__brand span b { color: var(--violet-2); font-weight: 700; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 6px; }
.nav__burger { display: none; margin-left: auto; width: 40px; height: 40px; position: relative; }
.nav__burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.8px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   App-window mockup framework
   ============================================================ */
.window {
  background: linear-gradient(180deg, #101018, #0c0c13);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 120px rgba(109, 40, 217, 0.12);
  overflow: hidden;
  font-size: 13px;
  position: relative;
}
.window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.window__dot { width: 11px; height: 11px; border-radius: 50%; }
.window__dot:nth-child(1) { background: #ff5f57; }
.window__dot:nth-child(2) { background: #febc2e; }
.window__dot:nth-child(3) { background: #28c840; }
.window__title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
}
.window__body { display: flex; min-height: 0; }

/* mini sidebar (mirrors the app's AppShell) */
.mock-side {
  flex: 0 0 148px;
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.015);
}
.mock-side__logo { display: flex; align-items: center; gap: 7px; padding: 4px 8px 14px; }
.mock-side__logo .sq {
  width: 20px; height: 20px; border-radius: 6px;
  background: linear-gradient(135deg, var(--violet-2), var(--violet-deep));
  display: grid; place-items: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.mock-side__logo span { font-size: 10.5px; font-weight: 700; letter-spacing: -0.01em; }
.mock-side__logo span b { color: var(--violet-2); }
.mock-nav { display: grid; gap: 2px; }
.mock-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--faint);
}
.mock-nav a i {
  width: 12px; height: 12px; border-radius: 3.5px;
  background: rgba(255, 255, 255, 0.09);
  flex: none;
}
.mock-nav a.is-active { background: var(--violet-soft); color: #d8ccff; }
.mock-nav a.is-active i { background: var(--violet-2); }

.mock-main { flex: 1; padding: 18px 20px; min-width: 0; }
.mock-title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.015em; }
.mock-sub { font-size: 11px; color: var(--faint); margin-top: 1px; }

/* shared mock atoms */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2.5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}
.chip--emerald { color: var(--emerald); background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.25); }
.chip--blue    { color: var(--blue);    background: rgba(96, 165, 250, 0.1); border-color: rgba(96, 165, 250, 0.25); }
.chip--amber   { color: var(--amber);   background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.25); }
.chip--rose    { color: var(--rose);    background: rgba(251, 113, 133, 0.1); border-color: rgba(251, 113, 133, 0.25); }
.chip--violet  { color: #c4b5fd;        background: var(--violet-soft);       border-color: rgba(124, 58, 237, 0.35); }
.chip--slate   { color: var(--muted);   background: rgba(255, 255, 255, 0.05); border-color: var(--border); }
.chip .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.bar { height: 5px; border-radius: 99px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; }
.bar--emerald i { background: linear-gradient(90deg, #059669, var(--emerald)); }
.bar--blue i { background: linear-gradient(90deg, #2563eb, var(--blue)); }
.bar--amber i { background: linear-gradient(90deg, #d97706, var(--amber)); }
.bar--rose i { background: linear-gradient(90deg, #e11d48, var(--rose)); }
.bar--violet i { background: linear-gradient(90deg, var(--violet-deep), var(--violet-2)); }

.mono { font-family: var(--font-mono); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 188px 0 96px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(124, 58, 237, 0.22), transparent);
  pointer-events: none;
}
.hero__inner { text-align: center; max-width: 880px; margin: 0 auto; position: relative; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cdb9ff;
  margin-bottom: 28px;
}
.hero__pill .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero__cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--faint);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust li::before { content: "▸"; color: var(--violet-2); }

.hero__visual { margin-top: 72px; position: relative; }
.hero__visual::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto;
  height: 70%;
  background: radial-gradient(closest-side, var(--violet-glow), transparent);
  filter: blur(30px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__window { transform: perspective(1600px) rotateX(4deg); transform-origin: top center; }

/* ---------- Dashboard mockup ---------- */
.dash { display: grid; gap: 14px; }
.dash__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  text-align: left;
}
.stat__icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--violet-soft);
  border: 1px solid rgba(124, 58, 237, 0.3);
  margin-bottom: 8px;
  display: grid; place-items: center;
}
.stat__icon::after { content: ""; width: 9px; height: 9px; border-radius: 2.5px; background: var(--violet-2); }
.stat__num { font-size: 19px; font-weight: 750; letter-spacing: -0.02em; line-height: 1.1; }
.stat__label { font-size: 10px; color: var(--faint); margin-top: 2px; }

.dash__grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 14px; }
.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  text-align: left;
  min-width: 0;
}
.mock-card__head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; font-weight: 650; margin-bottom: 11px;
}
.mock-card__head .mono { font-size: 9.5px; color: var(--faint); font-weight: 500; }

.kanban { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.kanban__col { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 9px; padding: 8px; min-width: 0; }
.kanban__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.kanban__head .chip { font-size: 8.5px; padding: 1.5px 7px; }
.kanban__count { font-family: var(--font-mono); font-size: 9px; color: var(--faint); }
.kanban__card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 8px;
  margin-bottom: 6px;
}
.kanban__card:last-child { margin-bottom: 0; }
.kanban__name { font-size: 10.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kanban__role { font-size: 9px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.activity { display: grid; gap: 7px; }
.activity__row {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.provider {
  flex: none;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid;
}
.provider--claude { color: #e8a87c; border-color: rgba(232, 168, 124, 0.4); background: rgba(232, 168, 124, 0.08); }
.provider--codex { color: #7ce8b1; border-color: rgba(124, 232, 177, 0.4); background: rgba(124, 232, 177, 0.08); }
.provider--kimi { color: #8fb8ff; border-color: rgba(143, 184, 255, 0.4); background: rgba(143, 184, 255, 0.08); }
.activity__task { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); font-weight: 500; }
.activity__meta { font-family: var(--font-mono); font-size: 9px; color: var(--faint); flex: none; }
.activity__ok { color: var(--emerald); font-size: 10px; flex: none; }

/* ============================================================
   Providers strip
   ============================================================ */
.providers { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.012); }
.providers__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
}
.providers__row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.provider-card {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.provider-card:hover { border-color: rgba(124, 58, 237, 0.45); transform: translateY(-2px); }
.provider-card__glyph {
  width: 26px; height: 26px; border-radius: 7px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
}
.provider-card:nth-child(1) .provider-card__glyph { background: rgba(232, 168, 124, 0.12); color: #e8a87c; border: 1px solid rgba(232, 168, 124, 0.3); }
.provider-card:nth-child(2) .provider-card__glyph { background: rgba(124, 232, 177, 0.12); color: #7ce8b1; border: 1px solid rgba(124, 232, 177, 0.3); }
.provider-card:nth-child(3) .provider-card__glyph { background: rgba(143, 184, 255, 0.12); color: #8fb8ff; border: 1px solid rgba(143, 184, 255, 0.3); }
.provider-card__name { font-size: 14px; font-weight: 650; letter-spacing: -0.01em; }
.provider-card__sub { font-size: 10.5px; color: var(--faint); font-family: var(--font-mono); }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 22px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(124, 58, 237, 0.4); }
.step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--violet-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.step__num::after { content: ""; width: 26px; height: 1px; background: rgba(124, 58, 237, 0.5); }
.step h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.step .filetag {
  display: inline-block;
  margin-top: 13px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #cdb9ff;
  background: var(--violet-soft);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 3px 9px;
  border-radius: 6px;
}

/* ============================================================
   Feature blocks (alternating)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0;
}
.feature + .feature { border-top: 1px solid rgba(255, 255, 255, 0.04); }
.feature--flip .feature__copy { order: 2; }
.feature--flip .feature__visual { order: 1; }
.feature__copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.feature__copy p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature__list { margin-top: 22px; display: grid; gap: 11px; }
.feature__list li { display: flex; gap: 11px; font-size: 14px; color: var(--muted); align-items: flex-start; }
.feature__list li b { color: var(--text); font-weight: 600; }
.feature__list .check {
  flex: none;
  width: 19px; height: 19px;
  margin-top: 1px;
  border-radius: 6px;
  background: var(--violet-soft);
  border: 1px solid rgba(124, 58, 237, 0.35);
  display: grid; place-items: center;
  color: var(--violet-2);
  font-size: 10px;
  font-weight: 800;
}
.feature__visual { position: relative; }
.feature__visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -6%;
  background: radial-gradient(closest-side, rgba(124, 58, 237, 0.16), transparent);
  filter: blur(24px);
  pointer-events: none;
}
.feature__visual .window { position: relative; }

/* ---------- Inbox mockup ---------- */
.inbox { display: grid; gap: 10px; }
.inbox__file {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.inbox__file .doc {
  width: 26px; height: 30px; border-radius: 5px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.4);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 7px; font-weight: 700; color: #cdb9ff;
  flex: none;
}
.inbox__meta { flex: 1; min-width: 0; }
.inbox__name { font-size: 12.5px; font-weight: 650; }
.inbox__filesub { font-family: var(--font-mono); font-size: 9.5px; color: var(--faint); }
.fits { display: grid; gap: 8px; }
.fit {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.02);
}
.fit__top { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.fit__role { flex: 1; font-size: 11.5px; font-weight: 600; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fit__score { font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.fit__score--emerald { color: var(--emerald); }
.fit__score--blue { color: var(--blue); }
.fit__score--amber { color: var(--amber); }
.fit__summary { font-size: 10.5px; color: var(--faint); margin-top: 8px; line-height: 1.5; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.proscons li { display: flex; gap: 6px; font-size: 10px; color: var(--muted); line-height: 1.45; align-items: flex-start; }
.proscons .pc-yes { color: var(--emerald); font-weight: 800; flex: none; }
.proscons .pc-no { color: var(--rose); font-weight: 800; flex: none; }

/* ---------- Rubric mockup ---------- */
.rubric { display: grid; gap: 10px; }
.criterion { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border: 1px solid var(--border); border-radius: 9px; background: var(--surface); }
.criterion__name { flex: 1; font-size: 11.5px; font-weight: 600; min-width: 0; }
.criterion__bar { flex: 0 0 90px; }
.criterion__w { font-family: var(--font-mono); font-size: 10px; color: var(--emerald); flex: none; width: 52px; text-align: right; }
.criterion__w--amber { color: var(--amber); }
.qcard { border: 1px solid var(--border); border-radius: 10px; background: rgba(255, 255, 255, 0.02); padding: 12px; }
.qcard__q { display: flex; gap: 9px; font-size: 11.5px; font-weight: 600; line-height: 1.5; margin-bottom: 10px; }
.qbadge {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--violet-soft);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #cdb9ff;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  display: grid; place-items: center;
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.tier { border: 1px solid var(--border); border-radius: 8px; padding: 8px 9px; background: rgba(255, 255, 255, 0.02); }
.tier__label { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.tier:nth-child(1) .tier__label { color: var(--muted); }
.tier:nth-child(2) .tier__label { color: var(--blue); }
.tier:nth-child(3) .tier__label { color: var(--emerald); }
.tier p { font-size: 9.5px; color: var(--faint); line-height: 1.5; }
.tier .tscore { font-family: var(--font-mono); font-size: 8.5px; color: var(--faint); margin-top: 5px; }

/* ---------- Review mockup ---------- */
.review { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: stretch; }
.review__score {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 16px 18px;
}
.donut { position: relative; width: 108px; height: 108px; }
.donut svg { transform: rotate(-90deg); }
.donut__track { stroke: rgba(255, 255, 255, 0.07); }
.donut__val { stroke: url(#donutGrad); stroke-linecap: round; }
.donut__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.donut__num { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.donut__of { font-family: var(--font-mono); font-size: 9px; color: var(--faint); margin-top: 3px; }
.review__right { display: grid; gap: 9px; align-content: start; }
.review__line { font-size: 10.5px; color: var(--muted); line-height: 1.55; }
.qstrip { display: flex; gap: 4px; align-items: flex-end; height: 34px; padding: 0 2px; }
.qstrip i { flex: 1; border-radius: 3px 3px 2px 2px; min-width: 6px; }
.sg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sg li { display: flex; gap: 6px; font-size: 10px; color: var(--muted); line-height: 1.45; align-items: flex-start; }
.sg .pc-yes { color: var(--emerald); font-weight: 800; flex: none; }
.sg .pc-no { color: var(--rose); font-weight: 800; flex: none; }
.evidence {
  border-left: 2px solid var(--violet-2);
  background: var(--violet-soft);
  border-radius: 0 8px 8px 0;
  padding: 8px 11px;
  font-size: 10px;
  color: #d8ccff;
  font-style: italic;
  line-height: 1.55;
}
.evidence .who { display: block; font-style: normal; font-family: var(--font-mono); font-size: 8.5px; color: var(--faint); margin-top: 5px; }

/* ---------- Folders mockup ---------- */
.folders { display: grid; gap: 6px; font-family: var(--font-mono); font-size: 11px; }
.folders__row {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--muted);
}
.folders__row .ico { color: var(--violet-2); flex: none; }
.folders__row--depth { margin-left: 22px; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.02); }
.folders__row--hot { border: 1px solid rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.06); color: #b8f4dd; }
.folders__row .tag { margin-left: auto; font-size: 9px; color: var(--faint); }
.folders__flow {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 0 4px;
  padding: 10px 12px;
  border: 1px dashed rgba(124, 58, 237, 0.45);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.06);
  font-size: 10px;
  color: #cdb9ff;
  flex-wrap: wrap;
}
.folders__flow .arr { color: var(--violet-2); }

/* ============================================================
   Enterprise band
   ============================================================ */
.band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.015)); }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10, 10, 16, 0.6);
  padding: 28px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.value-card:hover { transform: translateY(-3px); border-color: rgba(124, 58, 237, 0.45); }
.value-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--violet-soft);
  border: 1px solid rgba(124, 58, 237, 0.35);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--violet-2);
}
.value-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.value-card .mono-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.value-card .mono-note b { color: #cdb9ff; font-weight: 500; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing { position: relative; }
.pricing__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.7), rgba(139, 92, 246, 0.12) 40%, rgba(34, 211, 238, 0.25));
  box-shadow: var(--shadow-lg), 0 0 90px rgba(109, 40, 217, 0.18);
}
.price-card__inner {
  background: linear-gradient(180deg, #0e0e17, #0a0a11);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 36px 34px;
}
.price-card__plan { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet-2); margin-bottom: 14px; }
.price-card__amount { display: flex; align-items: baseline; gap: 10px; }
.price-card__amount .num { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-card__amount .per { font-size: 13.5px; color: var(--faint); }
.price-card__once { margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.price-card__list { margin: 26px 0; display: grid; gap: 10px; border-top: 1px solid var(--border); padding-top: 24px; }
.price-card__list li { display: flex; gap: 10px; font-size: 13.5px; color: var(--muted); align-items: flex-start; }
.price-card__list li b { color: var(--text); font-weight: 600; }
.price-card__list .check { color: var(--emerald); font-weight: 800; flex: none; margin-top: 1px; }
.price-card__req {
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--faint);
  font-family: var(--font-mono);
  line-height: 1.6;
  border: 1px dashed var(--border-strong);
  border-radius: 9px;
  padding: 10px 13px;
}
.pricing__points { display: grid; gap: 22px; margin-top: 30px; }
.ppoint { display: flex; gap: 15px; align-items: flex-start; }
.ppoint__n {
  flex: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--violet-2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: var(--violet-soft);
  border-radius: 7px;
  padding: 4px 9px;
  margin-top: 2px;
}
.ppoint h4 { font-size: 15px; font-weight: 650; margin-bottom: 4px; }
.ppoint p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); margin-bottom: 12px; overflow: hidden; transition: border-color 0.25s; }
.faq__item.is-open { border-color: rgba(124, 58, 237, 0.4); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  padding: 19px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq__q .plus {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--violet-2);
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.faq__item.is-open .plus { transform: rotate(45deg); background: var(--violet-soft); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 22px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq__a b { color: var(--text); font-weight: 600; }

/* ============================================================
   Final CTA + footer
   ============================================================ */
.cta-final { position: relative; text-align: center; overflow: hidden; }
.cta-final::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 480px;
  background: radial-gradient(closest-side, rgba(124, 58, 237, 0.2), transparent);
  pointer-events: none;
}
.cta-final .hero__cta { margin-top: 34px; }
.cta-final__note { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; color: var(--faint); letter-spacing: 0.04em; }

.footer { border-top: 1px solid var(--border); padding: 44px 0 40px; }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.footer__brand img { width: 26px; height: 26px; }
.footer__tag { font-size: 12.5px; color: var(--faint); margin-top: 10px; max-width: 320px; line-height: 1.6; }
.footer__cols { display: flex; gap: 64px; }
.footer__col h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 13px; font-weight: 500; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col a { font-size: 13.5px; color: var(--muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--faint);
}
.footer__bottom .mono { font-size: 10.5px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .dash__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .feature--flip .feature__copy { order: 1; }
  .feature--flip .feature__visual { order: 2; }
  .pricing__wrap { grid-template-columns: 1fr; gap: 44px; }
  .value-grid { grid-template-columns: 1fr; }
  .hero__window { transform: none; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding: 148px 0 72px; }
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 28px 26px;
    background: rgba(7, 7, 12, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 16px; padding: 8px 0; }
  .nav__cta { margin: 12px 0 0; }
  .nav__burger { display: block; }
  .dash__stats { grid-template-columns: repeat(2, 1fr); }
  .kanban { grid-template-columns: repeat(3, 1fr); }
  .kanban__col:nth-child(4), .kanban__col:nth-child(5) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .review { grid-template-columns: 1fr; }
  .review__score { flex-direction: row; justify-content: flex-start; gap: 16px; }
  .footer__cols { gap: 40px; flex-wrap: wrap; }
  .mock-side { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__pill .pulse { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
