/* JobPilot — design tokens + base */

:root {
  /* surface tokens — overridden by tweaks */
  --bg: #f7f6f3;
  --bg-elev: #ffffff;
  --bg-soft: #efede8;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --ink-3: #545454;
  --ink-4: #8a8a85;
  --line: rgba(10, 10, 10, 0.08);
  --line-2: rgba(10, 10, 10, 0.14);

  /* accent tokens — driven by tweak hue */
  --accent-h: 252;
  --accent: oklch(0.58 0.19 var(--accent-h));
  --accent-2: oklch(0.42 0.2 calc(var(--accent-h) + 18));
  --accent-soft: oklch(0.94 0.04 var(--accent-h));
  --accent-ink: oklch(0.32 0.16 var(--accent-h));
  --accent-glow: oklch(0.7 0.21 var(--accent-h) / 0.35);

  /* type tokens — driven by aesthetic tweak */
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-display: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --display-tracking: -0.035em;
  --display-weight: 500;
  --display-italic: normal;
  --section-tracking: -0.028em;

  /* energy tokens */
  --section-pad: 120px;
  --hero-display: clamp(44px, 6vw, 84px);
  --section-display: clamp(34px, 4.2vw, 56px);

  --ok: oklch(0.62 0.15 152);
  --warn: oklch(0.78 0.14 75);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-1: 0 1px 0 rgba(10,10,10,0.04), 0 2px 6px rgba(10,10,10,0.04);
  --shadow-2: 0 1px 0 rgba(10,10,10,0.04), 0 14px 40px -16px rgba(10,10,10,0.18);
  --shadow-3: 0 1px 0 rgba(10,10,10,0.04), 0 40px 80px -40px rgba(10,10,10,0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  transition: background-color .4s ease, color .4s ease;
}
.mono { font-family: var(--font-mono); }

/* aesthetic variants */
body[data-aesthetic="editorial"] {
  --font-display: 'Fraunces', 'EB Garamond', Georgia, serif;
  --display-tracking: -0.02em;
  --display-weight: 400;
  --display-italic: italic;
  --section-tracking: -0.018em;
}
body[data-aesthetic="terminal"] {
  --font-sans: 'Geist Mono', ui-monospace, monospace;
  --font-display: 'Geist Mono', ui-monospace, monospace;
  --display-tracking: -0.02em;
  --display-weight: 500;
  --section-tracking: -0.015em;
}
body[data-aesthetic="terminal"] .h-display,
body[data-aesthetic="terminal"] .h-section { text-transform: none; }

/* energy variants */
body[data-energy="calm"] {
  --section-pad: 160px;
  --hero-display: clamp(40px, 5vw, 72px);
  --section-display: clamp(28px, 3.4vw, 46px);
}
body[data-energy="loud"] {
  --section-pad: 96px;
  --hero-display: clamp(54px, 7.6vw, 108px);
  --section-display: clamp(40px, 5vw, 72px);
}

/* surface variants */
body[data-surface="ink"] {
  --bg: #0a0a0b;
  --bg-elev: #131315;
  --bg-soft: #1c1c1f;
  --ink: #f5f5f4;
  --ink-2: #d6d6d2;
  --ink-3: #9a9a96;
  --ink-4: #6b6b67;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --accent-soft: color-mix(in oklab, var(--accent) 16%, #131315);
  --accent-ink: oklch(0.85 0.13 var(--accent-h));
}
body[data-surface="cool"] {
  --bg: #f3f5f9;
  --bg-elev: #ffffff;
  --bg-soft: #e7eaf1;
}
body[data-surface="paper"] {
  --bg: #f7f6f3;
  --bg-elev: #ffffff;
  --bg-soft: #efede8;
}

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 72px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 16px; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background:
    radial-gradient(120% 120% at 20% 10%, white 0%, transparent 40%),
    linear-gradient(135deg, oklch(0.65 0.21 252), oklch(0.42 0.2 270));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25), 0 4px 14px var(--accent-glow);
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 4px;
  background: radial-gradient(60% 60% at 50% 50%, white 0%, transparent 70%);
  opacity: 0.4; border-radius: 6px;
}
.nav-links { display: flex; gap: 28px; color: var(--ink-3); font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap; transition: transform .15s ease, background .15s ease, box-shadow .2s ease, color .15s ease; }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 6px 22px -6px rgba(10,10,10,0.35);
}
.btn-primary:hover { transform: translateY(-1px); background: #1c1c1c; }
.btn-accent {
  background: var(--accent); color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 30px -8px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-1px); }
.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); }
.btn-outline { border: 1px solid var(--line-2); color: var(--ink); background: var(--bg-elev); }
.btn-outline:hover { background: var(--bg-soft); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn .chev { transition: transform .2s ease; }
.btn:hover .chev { transform: translateX(2px); }

/* type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-elev) 70%, transparent);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 500; }
.h-display {
  font-family: var(--font-display);
  font-size: var(--hero-display);
  line-height: 0.98;
  letter-spacing: var(--display-tracking);
  font-weight: var(--display-weight);
}
.h-display em { font-style: var(--display-italic); color: var(--ink-3); }
/* Hero-specific override — longer sentence needs smaller size */
.hero-h1 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.08;
}
.h-section {
  font-family: var(--font-display);
  font-size: var(--section-display);
  line-height: 1.02;
  letter-spacing: var(--section-tracking);
  font-weight: var(--display-weight);
}
.h-section em { font-style: var(--display-italic); color: var(--ink-3); }
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-3);
  max-width: 560px;
  line-height: 1.55;
}

/* hero */
.hero {
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero > .wrap {
  max-width: min(1600px, 100%);
  padding: 0 clamp(24px, 5vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: flex-start;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; color: var(--ink-3); font-size: 13px;
}
.hero-trust-stack { display: flex; }
.hero-trust-stack > span {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #c7d1ff, #6f7df0);
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; font-weight: 600;
}
.hero-trust-stack > span:first-child { margin-left: 0; }
.hero-trust-stack > span:nth-child(2) { background: linear-gradient(135deg, #ffd0c4, #f07a5a); }
.hero-trust-stack > span:nth-child(3) { background: linear-gradient(135deg, #c6f5d8, #4cb47a); }
.hero-trust-stack > span:nth-child(4) { background: linear-gradient(135deg, #fff0bf, #e1b14a); }

/* hero bg ambient */
.hero-bg {
  position: absolute; inset: -10% -10% auto -10%; height: 720px;
  background:
    radial-gradient(48% 60% at 78% 22%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(40% 50% at 22% 12%, color-mix(in oklab, oklch(0.7 0.18 320) 14%, transparent), transparent 70%);
  filter: blur(20px);
  pointer-events: none; z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }

/* browser mock shell */
.browser {
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfbfa);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
}
.browser-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #fafaf9, #f3f2ee);
  border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots > span { width: 11px; height: 11px; border-radius: 50%; background: #e2dfd8; }
.browser-dots > span:nth-child(1) { background: #ff6058; }
.browser-dots > span:nth-child(2) { background: #ffbe2e; }
.browser-dots > span:nth-child(3) { background: #28c941; }
.browser-url {
  flex: 1; height: 26px; border-radius: 7px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  padding: 0 10px; font-size: 12px; color: var(--ink-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.browser-url svg { color: var(--ink-4); }
.browser-tabs { display: flex; gap: 4px; }
.browser-tab {
  font-size: 11px; padding: 4px 8px; border-radius: 5px;
  color: var(--ink-4);
}
.browser-tab.active { background: var(--bg-elev); color: var(--ink-2); border: 1px solid var(--line); }
.browser-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 460px;
  position: relative;
}
@media (max-width: 520px) {
  .browser-body { grid-template-columns: 1fr; }
}

/* extension pin in chrome bar */
.ext-bar { display: flex; align-items: center; gap: 8px; margin-left: 8px; padding-left: 10px; border-left: 1px solid var(--line); }
.ext-pin {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--bg-elev); border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  box-shadow: 0 1px 0 rgba(10,10,10,0.04);
}
.ext-pin-mark {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset;
}
.ext-pin-dot {
  position: absolute; top: -3px; right: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-elev), 0 0 14px var(--accent-glow);
  animation: pinPulse 1.8s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* LinkedIn-style jobs page (generic professional network look) */
.linpage { padding: 14px 16px; border-right: 1px solid var(--line); background: var(--bg-soft); }
.linpage-header { display: flex; flex-direction: column; gap: 8px; padding-bottom: 12px; }
.linpage-search {
  display: flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px; border-radius: 7px;
  background: var(--bg-elev); border: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
}
.linpage-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.linpage-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 10px; }
.linpage-list { display: flex; flex-direction: column; gap: 6px; }
.linjob {
  display: flex; gap: 10px; padding: 9px 10px; border-radius: 8px;
  background: var(--bg-elev); border: 1px solid var(--line);
  align-items: flex-start;
  transition: background .2s;
}
.linjob.sel { border-color: var(--accent); background: var(--bg-elev); box-shadow: inset 3px 0 0 0 var(--accent); }
.linjob-logo {
  width: 28px; height: 28px; border-radius: 6px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 12px;
}
.linjob-body { flex: 1; min-width: 0; }
.linjob-title { font-size: 12px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linjob-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.linjob-meta { font-size: 10.5px; color: var(--ink-4); margin-top: 4px; font-family: var(--font-mono); }
.linpage-detail {
  padding: 12px; border-radius: 8px;
  background: var(--bg-elev); border: 1px solid var(--line);
}

/* mini linjob (in how-it-works) */
.mini-linjob {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  margin-bottom: 6px;
  transition: border-color .4s, box-shadow .4s;
}
.mini-linjob.detected { border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 14%, transparent); }
.mini-pin {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* legacy job page (kept for fallback) */
.jobpage { padding: 22px 24px; border-right: 1px solid var(--line); position: relative; }
.jobpage-header { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.jobpage-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #1b1b1b, #404040);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 18px;
  letter-spacing: -0.04em;
  position: relative;
}
.jobpage-logo::after {
  content: ''; position: absolute; inset: 1px; border-radius: 9px;
  background: linear-gradient(160deg, rgba(255,255,255,0.18), transparent 40%);
  pointer-events: none;
}
.jobpage-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.jobpage-sub { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.jobpage-meta { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.chip {
  font-size: 11px; padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-3);
  background: var(--bg-elev);
}
.jobpage-section-title {
  margin-top: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-4); font-family: 'Geist Mono', ui-monospace, monospace;
}
.jobpage-line {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-soft), color-mix(in oklab, var(--bg-soft) 60%, transparent));
  margin-top: 10px;
}
.jobpage-line.w-90 { width: 92%; }
.jobpage-line.w-70 { width: 72%; }
.jobpage-line.w-60 { width: 62%; }
.jobpage-line.w-80 { width: 84%; }
.jobpage-apply {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 8px;
  background: var(--ink); color: white; font-size: 13px;
  opacity: 0.92;
}
.detect-ring {
  position: absolute; inset: -6px; border-radius: 14px;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
  pointer-events: none;
  animation: detectPulse 2.4s ease-in-out infinite;
}
@keyframes detectPulse {
  0%, 100% { opacity: 0.0; transform: scale(1); }
  20%, 60% { opacity: 0.85; transform: scale(1); }
  80% { opacity: 0; transform: scale(1.02); }
}

/* side panel */
.sidepanel {
  background: linear-gradient(180deg, var(--bg-elev), color-mix(in oklab, var(--bg-elev) 80%, var(--bg-soft)));
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.7,.0,.2,1), opacity .4s ease;
}
.sidepanel.closed { transform: translateX(110%); opacity: 0; }
.sidepanel.open { transform: translateX(0); opacity: 1; }

.sp-detect-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3); padding-bottom: 4px;
}
.dotpulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: dotPulse 1s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); } }

.sp-job {
  display: flex; flex-direction: column; gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg-elev);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.sp-job.active { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 12%, transparent); }
.sp-job-row { display: flex; align-items: center; gap: 10px; }
.sp-job-logo {
  width: 30px; height: 30px; border-radius: 7px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 12px;
}
.sp-job-meta { flex: 1; min-width: 0; }
.sp-job-title { font-size: 12.5px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-job-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }

.sp-enroll-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 6px;
  font-size: 11.5px; font-weight: 500;
  background: var(--ink); color: white;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.sp-enroll-btn.idle:hover { transform: translateY(-1px); }
.sp-enroll-btn.enroll { background: var(--accent); box-shadow: 0 4px 14px -4px var(--accent-glow); }
.sp-enroll-btn.working { background: var(--ink); }
.sp-enroll-btn.done { background: oklch(0.55 0.15 152); }
.sp-enroll-btn[disabled] { opacity: 0.55; cursor: default; }
.sp-enroll-btn .spinner {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3); border-top-color: white;
  animation: spin 0.9s linear infinite;
}
.sidepanel-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.sidepanel-header .pilot-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, oklch(0.65 0.21 252), oklch(0.42 0.2 270));
}
.sidepanel-header .title { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.sidepanel-header .credits {
  margin-left: auto; font-size: 11px; padding: 3px 7px; border-radius: 5px;
  background: var(--accent-soft); color: var(--accent-ink);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.sidepanel-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; min-height: 0; flex: 1; }
.sp-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: var(--bg-elev);
}
.sp-card-row { display: flex; gap: 10px; align-items: center; }
.sp-card .label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-4); font-family: 'Geist Mono', ui-monospace, monospace;
}
.sp-card .value { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; margin-top: 2px; }
.sp-card .sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }

.sp-detected {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sp-detected-cell .label { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); font-family: 'Geist Mono', ui-monospace, monospace; }
.sp-detected-cell .value { font-size: 12.5px; font-weight: 500; margin-top: 2px; }

.sp-enroll {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; border-radius: 9px;
  background: var(--accent); color: white; font-size: 13px; font-weight: 500;
  box-shadow: 0 6px 20px -6px var(--accent-glow);
  position: relative; overflow: hidden;
}
.sp-enroll.done { background: oklch(0.55 0.15 152); }
.sp-enroll.thinking { background: var(--ink); }
.sp-enroll .spinner {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.sp-email {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px;
  background: var(--bg-elev);
  font-size: 12px; line-height: 1.55;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 130px;
}
.sp-email-head { display: flex; flex-direction: column; gap: 3px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.sp-email-head .field { display: flex; gap: 6px; font-size: 11px; }
.sp-email-head .field .k { color: var(--ink-4); width: 32px; font-family: 'Geist Mono', ui-monospace, monospace; }
.sp-email-head .field .v { color: var(--ink-2); }
.sp-email-body { color: var(--ink-2); white-space: pre-wrap; font-size: 12.5px; line-height: 1.55; min-height: 60px; }
.sp-email-body .caret { display: inline-block; width: 1px; background: var(--ink); margin-left: 1px; animation: blink 1.1s steps(1) infinite; height: 13px; vertical-align: -2px; }
@keyframes blink { 50% { opacity: 0; } }

.sp-attach {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border: 1px dashed var(--line-2); border-radius: 8px;
  font-size: 12px; color: var(--ink-2);
}
.sp-attach .file-ico {
  width: 24px; height: 30px; border-radius: 3px; background: linear-gradient(180deg, #fff, #f2f2ee);
  border: 1px solid var(--line-2); position: relative; flex: 0 0 auto;
}
.sp-attach .file-ico::after {
  content: 'PDF'; position: absolute; bottom: 4px; left: 0; right: 0; text-align: center;
  font-size: 7px; font-family: 'Geist Mono', monospace; color: var(--accent-ink); font-weight: 700;
}
.sp-attach .file-name { flex: 1; }
.sp-attach .file-size { color: var(--ink-4); font-size: 11px; font-family: 'Geist Mono', monospace; }

.sp-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; padding: 8px 10px; border-radius: 8px;
  background: color-mix(in oklab, oklch(0.62 0.15 152) 12%, transparent);
  color: oklch(0.36 0.14 152);
}
.sp-status .ok-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.55 0.15 152); }

.cursor-ghost {
  position: absolute; width: 18px; height: 18px;
  pointer-events: none; z-index: 5;
  transition: top .9s cubic-bezier(.7,.0,.2,1), left .9s cubic-bezier(.7,.0,.2,1), opacity .3s ease;
}
.cursor-ghost svg { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25)); }

/* social proof bar */
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.proof-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; color: var(--ink-3); }
.proof-label { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.proof-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; letter-spacing: -0.02em; font-weight: 600;
  color: var(--ink-2); opacity: 0.78;
  transition: opacity .2s;
}
.proof-logo:hover { opacity: 1; }
.proof-logo .glyph {
  width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--ink-2); color: white; font-size: 13px; font-weight: 700;
}

/* section heading */
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.section-head.center { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }

/* benefit cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }
.bcard {
  background: var(--bg-elev);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  position: relative;
  transition: background .2s ease;
}
.bcard:hover { background: color-mix(in oklab, var(--bg-elev) 70%, var(--bg-soft)); }
.bcard .b-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.bcard h3 { font-size: 17px; letter-spacing: -0.018em; font-weight: 500; }
.bcard p { color: var(--ink-3); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* how it works */
.how {
  background: var(--ink);
  color: #f5f5f4;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.how::before {
  content: ''; position: absolute; inset: -2px;
  background: radial-gradient(60% 50% at 50% 0%, color-mix(in oklab, var(--accent) 35%, transparent), transparent 70%);
  z-index: -1; opacity: 0.6;
}
.how-inner { padding: 88px 56px; }
@media (max-width: 720px) { .how-inner { padding: 56px 24px; } }
.how .section-head h2 { color: #fafafa; }
.how .lead { color: rgba(245,245,244,0.6); }
.how .eyebrow { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(245,245,244,0.7); }

.how-steps {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; } }

.steps-list { display: flex; flex-direction: column; gap: 4px; }
.step-row {
  display: flex; gap: 16px;
  padding: 14px 16px; border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: background .2s ease;
  border: 1px solid transparent;
}
.step-row:hover { background: rgba(255,255,255,0.04); }
.step-row.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.step-num {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,0.08);
  color: rgba(245,245,244,0.7);
  font-family: 'Geist Mono', monospace; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  margin-top: 1px;
}
.step-row.active .step-num { background: var(--accent); color: white; }
.step-row.done .step-num { background: oklch(0.55 0.15 152); color: white; }
.step-title { font-size: 15px; letter-spacing: -0.01em; font-weight: 500; }
.step-sub { font-size: 13px; color: rgba(245,245,244,0.55); margin-top: 2px; }
.step-row.active .step-title { color: white; }

.step-stage {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.step-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: rgba(255,255,255,0.08);
}
.step-progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), oklch(0.7 0.21 252));
  transition: width .15s linear;
}

/* mini browser inside how */
.mini-browser {
  background: var(--bg-elev);
  color: var(--ink);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  margin-top: 8px;
}

/* ─── Full Dashboard browser mock (DemoShowcase) ─── */
.dash-browser {
  border-radius: 16px;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  height: 620px;
  margin-top: 48px;
}
.dash-browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #fafaf9, #f3f2ee);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

/* demo cards layered */
.demo {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
@media (max-width: 920px) { .demo { grid-template-columns: 1fr; } }
.demo-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-2);
}
.demo-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Geist Mono', monospace; color: var(--ink-4); font-weight: 500; }
.demo-stack { display: flex; flex-direction: column; gap: 22px; }

.founder-card {
  display: flex; gap: 14px; padding: 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfaf6);
  align-items: center;
}
.avatar-bubble {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  flex: 0 0 auto;
}
.founder-card .name { font-size: 14.5px; font-weight: 500; letter-spacing: -0.01em; }
.founder-card .role { font-size: 12.5px; color: var(--ink-3); margin-top: 1px; }
.founder-card .tag {
  margin-left: auto; font-size: 11px; padding: 3px 8px; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent-ink);
  font-family: 'Geist Mono', monospace;
}

.kpi-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 12px; }
.kpi { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-elev); }
.kpi .k { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.kpi .v { font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; font-weight: 500; }
.kpi .delta { font-size: 11px; color: oklch(0.5 0.15 152); margin-top: 2px; font-family: 'Geist Mono', monospace; }

.applist { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.appline {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 13px;
}
.appline .co {
  width: 26px; height: 26px; border-radius: 6px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 11px;
}
.appline .meta { flex: 1; }
.appline .role { font-size: 12.5px; color: var(--ink-3); }
.appline .state {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  padding: 3px 7px; border-radius: 5px;
  background: var(--bg-soft); color: var(--ink-3);
}
.appline .state.sent { background: var(--accent-soft); color: var(--accent-ink); }
.appline .state.replied { background: color-mix(in oklab, oklch(0.62 0.15 152) 16%, transparent); color: oklch(0.34 0.14 152); }
.appline .state.fwd { background: color-mix(in oklab, oklch(0.78 0.14 75) 22%, transparent); color: oklch(0.42 0.16 65); }

/* gmail-style testimonial cards */
.gmail-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gmail-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.gmail-head { display: flex; align-items: center; gap: 10px; }
.gmail-head .avatar-bubble { width: 36px; height: 36px; font-size: 13px; }
.gmail-name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.gmail-name-row .name { font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.gmail-name-row .when { font-size: 11px; color: var(--ink-4); font-family: var(--font-mono); white-space: nowrap; }
.gmail-subj { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: -0.005em; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.gmail-body { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.gmail-body strong { color: var(--ink); }
.gmail-foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--ink-4); font-family: var(--font-mono);
  padding-top: 8px; border-top: 1px dashed var(--line);
}
.gmail-foot .pill { padding: 3px 7px; border-radius: 5px; background: var(--accent-soft); color: var(--accent-ink); }

/* testimonials (legacy) */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tests-grid { grid-template-columns: 1fr; } }
.test-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-1);
}
.test-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.test-head .avatar-bubble { width: 34px; height: 34px; font-size: 12px; }
.test-head .name { font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.test-head .when { font-size: 11px; color: var(--ink-4); margin-left: auto; font-family: 'Geist Mono', monospace; }
.test-body { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.test-body strong { font-weight: 600; }
.test-foot { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-4); font-family: 'Geist Mono', monospace; }
.test-foot .pill { padding: 3px 7px; border-radius: 5px; background: var(--bg-soft); }

/* pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 16px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.featured {
  background: var(--ink); color: #fafafa;
  border-color: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(10,10,10,0.5);
}
.price-card.featured .price-name { color: white; }
.price-card.featured .price-sub { color: rgba(255,255,255,0.6); }
.price-card.featured .price-amt { color: white; }
.price-card.featured .price-feat { color: rgba(255,255,255,0.85); }
.price-card.featured .price-feat .check { background: var(--accent); color: white; }
.price-name { font-size: 13px; font-family: 'Geist Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.price-amt { font-size: 50px; letter-spacing: -0.03em; font-weight: 500; line-height: 1; }
.price-amt .currency { font-size: 22px; vertical-align: 22px; color: var(--ink-3); margin-right: 2px; }
.price-amt .per { font-size: 14px; color: var(--ink-3); margin-left: 6px; font-weight: 400; }
.price-card.featured .price-amt .currency, .price-card.featured .price-amt .per { color: rgba(255,255,255,0.6); }
.price-sub { font-size: 13.5px; color: var(--ink-3); }
.price-feats { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.price-feat { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.price-feat .check {
  width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto;
  background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.price-tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; padding: 4px 9px; border-radius: 999px;
  background: var(--accent); color: white;
  font-family: 'Geist Mono', monospace; letter-spacing: 0.04em;
}

/* final cta */
.final-cta {
  text-align: center;
  padding: 120px 28px;
  border-radius: 28px;
  background:
    radial-gradient(50% 70% at 50% 30%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 70%),
    linear-gradient(180deg, #0f0f10, #0a0a0a);
  color: white;
  position: relative; overflow: hidden;
}
.final-cta h2 { color: white; }
.final-cta .lead { color: rgba(255,255,255,0.65); margin: 18px auto 30px; }

/* footer */
.footer { padding: 56px 0 64px; color: var(--ink-3); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 24px; }
.foot-links a:hover { color: var(--ink); }

/* ─── LinkedIn-realistic hero mock ─── */
.lin-rail {
  width: 220px;
  flex-shrink: 0;
  background: #f3f2ef;
  border-right: 1px solid #e0dfdc;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lin-search-bar {
  padding: 10px 10px 8px;
  border-bottom: 1px solid #e0dfdc;
  background: white;
}
.lin-searchbox {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #c8c7c4;
  background: white;
  font-size: 11.5px;
  color: #666;
  margin-bottom: 7px;
}
.lin-filters-row { display: flex; gap: 5px; flex-wrap: wrap; }
.lin-filter-chip {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #c8c7c4;
  color: #555;
  background: white;
  cursor: pointer;
  white-space: nowrap;
}
.lin-job-card {
  display: flex;
  gap: 9px;
  padding: 10px 10px;
  border-bottom: 1px solid #e8e7e4;
  background: white;
  align-items: flex-start;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.2s ease;
  position: relative;
}
.lin-job-card:hover { background: #f8f7f5; }
.lin-job-card.sel {
  background: #eef3fa;
  border-right: 3px solid #0a66c2;
}
.lin-job-card.applied { background: #f0faf3; border-right: 3px solid #057642; }
.lin-job-logo {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 11px;
}
.lin-job-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lin-job-co { font-size: 10.5px; color: #555; margin-top: 2px; }
.lin-job-time { font-size: 10px; color: #888; margin-top: 2px; }
.lin-badge-easy {
  font-size: 9.5px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0a66c2;
  border: 1px solid #b6d4f7;
  white-space: nowrap;
}
.lin-badge-early {
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 999px;
  background: #fff0e0;
  color: #b45309;
  border: 1px solid #fcd090;
  white-space: nowrap;
}
.lin-badge-applied {
  font-size: 9.5px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e6f4ea;
  color: #057642;
  border: 1px solid #a8d5b5;
  white-space: nowrap;
}

/* LinkedIn detail panel */
.lin-detail-panel {
  flex: 1;
  background: white;
  padding: 16px 18px;
  overflow-y: auto;
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  pointer-events: none;
  min-width: 0;
}
.lin-detail-panel.vis {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.ldp-company-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.ldp-company-logo {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.ldp-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 5px;
}
.ldp-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #666;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ldp-dot { width: 3px; height: 3px; border-radius: 50%; background: #999; display: inline-block; }
.ldp-tags-row { display: flex; gap: 6px; margin-bottom: 10px; }
.ldp-tag { font-size: 11px; padding: 3px 8px; border-radius: 4px; border: 1px solid #c8c7c4; color: #555; }
.ldp-actions { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.ldp-jobpilot-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px -4px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.ldp-jobpilot-btn:hover { transform: translateY(-1px); }
.ldp-easy-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 6px;
  background: #0a66c2;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.ldp-save-btn {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #c8c7c4;
  background: white;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.ldp-top-applicant-banner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 12px;
  background: #f0faf5;
  border-radius: 8px;
  border: 1px solid #b8e6cc;
  margin-bottom: 14px;
  font-size: 12px;
  color: #1a1a1a;
}
.ldp-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.ldp-skeleton-line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0ede8, #e8e5e0);
}
.ldp-skill-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #0a66c2;
  color: #0a66c2;
  background: #eef3fa;
}
.ldp-recruiter-row {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
}
.ldp-recruiter-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.ldp-insight-card {
  flex: 1;
  padding: 8px 10px;
  background: #f7f6f3;
  border-radius: 8px;
  border: 1px solid #e0dfdc;
}

/* JobPilot extension panel */
.jp-ext-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 252px;
  background: white;
  border-left: 1px solid #e0dfdc;
  box-shadow: -4px 0 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.32s ease;
  z-index: 10;
  pointer-events: none;
}
.jp-ext-panel.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.jp-ext-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-bottom: 1px solid #f0ede8;
  background: white;
  flex-shrink: 0;
}
.jp-ext-logo-mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, oklch(0.65 0.21 252), oklch(0.42 0.2 270));
  flex-shrink: 0;
}
.jp-ext-name { font-size: 13px; font-weight: 700; color: #1a1a1a; letter-spacing: -0.01em; }
.jp-ext-badge {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.jp-ext-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.jp-ext-job-ctx {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  background: #f7f6f3;
  border-radius: 8px;
  border: 1px solid #e8e7e4;
}
.jp-ext-job-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}
.jp-ext-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jp-ext-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 2px;
}
.jp-ext-file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  background: #f7f6f3;
  border-radius: 7px;
  border: 1px solid #e8e7e4;
}
.jp-ext-file-icon {
  width: 26px;
  height: 32px;
  border-radius: 3px;
  background: white;
  border: 1px solid #e0dfdc;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3px;
  font-size: 7px;
  font-family: var(--font-mono);
  color: var(--accent-ink);
  font-weight: 700;
  flex-shrink: 0;
}
.jp-ext-progress-track {
  height: 5px;
  border-radius: 999px;
  background: #f0ede8;
  overflow: hidden;
}
.jp-ext-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), oklch(0.65 0.2 200));
  transition: width 0.1s linear;
}
.jp-ext-letter {
  font-size: 11.5px;
  line-height: 1.55;
  color: #333;
  white-space: pre-wrap;
  background: #f9f8f6;
  border-radius: 7px;
  padding: 9px 10px;
  border: 1px solid #ece9e3;
  min-height: 80px;
  max-height: 140px;
  overflow: hidden;
}
.jp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px -4px var(--accent-glow);
  white-space: nowrap;
}
.jp-send-btn .spinner {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}
.jp-success-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f0faf5;
  border-radius: 9px;
  border: 1px solid #b8e6cc;
}
.jp-success-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #057642;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── JobPilot sidebar panel (always-visible 3-col layout) ─── */
.jp-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: white;
  border-left: 1px solid #e0dfdc;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 16px rgba(0,0,0,0.06);
}
.jp-sidebar-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-bottom: 1px solid #f0ede8;
  background: white;
  flex-shrink: 0;
}
.jp-sidebar-logo-mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, oklch(0.65 0.21 252), oklch(0.42 0.2 270));
  flex-shrink: 0;
}
.jp-sidebar-credits {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-weight: 500;
}
.jp-sidebar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px 10px 8px;
  gap: 8px;
}
.caret {
  display: inline-block;
  width: 1.5px;
  height: 12px;
  background: var(--ink-2);
  margin-left: 1px;
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}
.jp-detect-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
  padding: 0 0 4px;
}
.jp-job-entry {
  border: 1px solid #e8e7e4;
  border-radius: 8px;
  background: #fafaf9;
  padding: 9px 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.jp-job-entry.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 14%, transparent);
  background: white;
}
.jp-job-entry.done {
  border-color: #b8e6cc;
  background: #f8fdf9;
}
.jp-job-entry-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.jp-job-logo-sm {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}
.jp-enroll-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.jp-enroll-btn-new.idle {
  background: var(--ink);
  color: white;
}
.jp-enroll-btn-new.idle:not(:disabled):hover { transform: translateY(-1px); }
.jp-enroll-btn-new.working,
.jp-enroll-btn-new.generating,
.jp-enroll-btn-new.sending {
  background: var(--accent);
  color: white;
}
.jp-enroll-btn-new.sent {
  background: #057642;
  color: white;
}
.jp-enroll-btn-new:disabled { opacity: 0.7; cursor: default; }
.jp-letter-expand {
  margin-top: 9px;
  padding: 9px 10px;
  background: white;
  border: 1px solid #e8e7e4;
  border-radius: 6px;
  animation: fadeSlideIn 0.25s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* JP Dashboard */
.jp-dash-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid #e8e7e4;
  border-radius: 8px;
  overflow: hidden;
  background: #fafaf9;
}
.jp-dash-stat-cell {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid #e8e7e4;
}
.jp-dash-stat-cell:last-child { border-right: none; }
.jp-dash-app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0ede8;
  transition: background 0.2s;
}
.jp-dash-app-row:last-child { border-bottom: none; }
.jp-dash-app-row.replied { background: #f8fdf9; border-radius: 6px; padding: 8px 6px; }
.jp-status-pill {
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
}
.jp-status-pill.sent { background: var(--accent-soft); color: var(--accent-ink); }
.jp-status-pill.opened { background: #e8f0ff; color: #1a56db; }
.jp-status-pill.replied { background: #e6f4ea; color: #057642; }
.jp-status-pill.interview { background: #ede9fe; color: #7c3aed; }
.jp-reply-card {
  padding: 11px 12px;
  border-radius: 9px;
  background: #f8fdf9;
  border: 1px solid #b8e6cc;
  animation: fadeSlideIn 0.3s ease;
}

/* ─── Inbox / Testimonials section ─── */
.inbox-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .inbox-stats-row { grid-template-columns: repeat(2, 1fr); } }
.inbox-stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-1);
}
.inbox-shell {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  min-height: 540px;
}
.inbox-list {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.inbox-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.inbox-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-weight: 600;
}
.inbox-row {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s ease;
  align-items: flex-start;
}
.inbox-row:hover { background: color-mix(in oklab, var(--bg-soft) 60%, transparent); }
.inbox-row.active { background: var(--accent-soft); }
.inbox-row.unread .inbox-row-name { font-weight: 700; }
.inbox-row-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.inbox-row-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inbox-row-subj {
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-weight: 500;
}
.inbox-row-preview {
  font-size: 11.5px;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.inbox-row-time {
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  white-space: nowrap;
}
.inbox-row-tag {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.inbox-view {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.inbox-view-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.inbox-view-subj {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.inbox-tag-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600;
  display: inline-block;
}
.inbox-thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.inbox-thread-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--bg-elev);
}
.inbox-thread-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inbox-msg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inbox-msg-meta {
  padding: 2px 0;
  margin-left: 6px;
  margin-right: 6px;
}
.inbox-msg-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inbox-msg-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.inbox-msg-from {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.inbox-msg-time {
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  margin-top: 1px;
}
.inbox-msg-body {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  white-space: pre-wrap;
  margin-left: 40px;
  margin-bottom: 5px;
}
.inbox-msg.recv .inbox-msg-body {
  background: color-mix(in oklab, var(--accent-soft) 60%, var(--bg-elev));
  border: 1px solid var(--line);
}
.inbox-reply-box {
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

/* ─── Gmail-style inbox UI ─── */
.gmail-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  flex-shrink: 0;
}
.gmail-topbar-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}
.gmail-m-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ea4335 40%, #fbbc04);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.gmail-brand-name {
  font-size: 17px;
  color: var(--ink-4);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.gmail-search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 7px 16px;
  color: var(--ink-4);
  font-size: 13px;
  max-width: 420px;
}
.gmail-topbar-actions {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.gmail-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-3);
  transition: background 0.15s;
  user-select: none;
}
.gmail-icon-btn:hover { background: var(--bg-soft); }
.inbox-shell-body {
  display: grid;
  grid-template-columns: 268px 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
@media (max-width: 900px) { .inbox-shell-body { grid-template-columns: 1fr; } }
.gmail-compose-btn {
  margin: 12px 12px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.15s;
  flex-shrink: 0;
}
.gmail-compose-btn:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.13); }
.gmail-compose-plus {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  color: var(--ink-3);
}
.gmail-nav {
  display: flex;
  flex-direction: column;
  padding: 2px 0;
  flex-shrink: 0;
}
.gmail-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 12px 5px 14px;
  border-radius: 0 24px 24px 0;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s;
  margin-right: 8px;
}
.gmail-nav-item:hover { background: var(--bg-soft); }
.gmail-nav-item.active {
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 600;
}
.gmail-nav-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.gmail-nav-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
  flex-shrink: 0;
}
.inbox-unread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  align-self: center;
  margin-right: -2px;
}
.inbox-email-hdr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0 4px;
}
.inbox-email-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.inbox-attachment-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-3);
  width: fit-content;
  margin-left: 44px;
  margin-top: 2px;
}
.inbox-real-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  font-family: var(--font-mono);
  text-transform: uppercase;
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ─── How It Works — cinematic layout ─── */
.hiw-cinema-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 56px;
}
@media (max-width: 900px) { .hiw-cinema-grid { grid-template-columns: 1fr; } }

.hiw-steps-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 80px;
}
.hiw-step-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}
.hiw-step-row:hover { background: var(--bg-soft); }
.hiw-step-row.active { background: var(--bg-elev); box-shadow: var(--shadow-1); }
.hiw-step-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink-4);
  flex-shrink: 0;
  transition: all 0.2s;
}
.hiw-step-row.active .hiw-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.hiw-step-row.done .hiw-step-num {
  background: oklch(0.62 0.15 152 / 0.12);
  border-color: oklch(0.62 0.15 152 / 0.3);
  color: oklch(0.42 0.15 152);
}
.hiw-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hiw-step-row.active .hiw-step-title { color: var(--ink); }
.hiw-step-row.done .hiw-step-title { color: var(--ink-4); }
.hiw-step-sub {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 4px;
  line-height: 1.5;
  animation: fadeSlideIn 0.2s ease;
}
.hiw-step-bar {
  position: absolute;
  bottom: 8px;
  left: 56px;
  right: 14px;
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
}
.hiw-step-bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.08s linear;
}

/* How it works browser */
.hiw-browser-col {
  min-height: 520px;
}
.hiw-browser {
  border-radius: 14px;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.hiw-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #fafaf9, #f3f2ee);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

/* Animated cursor */
.hero-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 50;
  transition: left 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  transform: translate(-3px, -2px);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.22));
}
.hero-cursor.clicking {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  opacity: 0.8 !important;
}

/* Slide in keyframe for how-it-works mini panels */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ok-dot used in hero */
.ok-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.55 0.15 152); display: inline-block; }

/* utility */
.row { display: flex; align-items: center; gap: 8px; }
.col { display: flex; flex-direction: column; gap: 8px; }

/* reveal anim */
[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* divider */
.hr { height: 1px; background: var(--line); border: none; margin: 0; }
