/* ========== ReBoard — design tokens ========== */
:root {
  /* Paper & ink */
  --paper: #F4EFE5;          /* warm cream */
  --paper-2: #EBE4D4;        /* slightly darker cream for sections */
  --paper-3: #FAF7F0;        /* near-white card */
  --ink: #14141A;            /* near-black */
  --ink-2: #2E2E36;
  --ink-soft: #5A5A66;
  --hairline: rgba(20, 20, 26, 0.12);
  --hairline-2: rgba(20, 20, 26, 0.06);

  /* Brand gradient — pulled from logo */
  --brand-blue: #2FA0F8;
  --brand-indigo: #5F6FFB;
  --brand-violet: #9152F9;
  --brand-grad: linear-gradient(115deg, #2FA0F8 0%, #5F6FFB 45%, #9152F9 100%);
  --brand-grad-soft: linear-gradient(115deg, rgba(47,160,248,0.16) 0%, rgba(95,111,251,0.16) 45%, rgba(145,82,249,0.16) 100%);

  /* Calm secondaries */
  --sage: #7C8E73;
  --warm-orange: #D9842A;
  --warm-orange-bg: rgba(217, 132, 42, 0.12);

  /* Type */
  --font-display: "Instrument Serif", "Newsreader", Georgia, serif;
  --font-sans: "Geist", "GeistVar", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

/* ========== reset / base ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.04; }
p { margin: 0; }

/* ========== layout helpers ========== */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(72px, 9vw, 140px); position: relative; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink);
  opacity: 0.5;
}
.serif { font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }
.hairline { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

/* ========== nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: var(--logo-nav-h, 39px); flex-shrink: 0; transition: height 0.2s ease; }
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.nav-links a { position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ========== buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(20,20,26,0.4); }
.btn-ghost { border-color: var(--hairline); color: var(--ink); }
.btn-ghost:hover { background: var(--paper-3); border-color: var(--ink); }
.btn-link {
  padding: 0;
  border-radius: 0;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}
.btn-link:hover { color: var(--brand-indigo); border-bottom-color: var(--brand-indigo); }
.icon { width: 16px; height: 16px; flex-shrink: 0; }
.icon-lg { width: 20px; height: 20px; }

/* ========== HERO ========== */
.hero { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(60px, 8vw, 120px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px 4px 8px;
  border-radius: var(--radius-pill);
  background: var(--paper-3);
  border: 1px solid var(--hairline);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-2);
}
.flag-pill svg { width: 14px; height: 10px; }
.flag-pill.ai-pill {
  padding: 4px 12px 4px 10px;
  background: linear-gradient(115deg, rgba(47,160,248,0.10) 0%, rgba(95,111,251,0.10) 45%, rgba(145,82,249,0.10) 100%);
  border-color: rgba(95,111,251,0.28);
  color: var(--ink);
  font-weight: 500;
}
.ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 0 0 3px rgba(95,111,251,0.15);
  animation: pulse 2s ease-in-out infinite;
}
h1.hero-title {
  font-size: clamp(48px, 7.6vw, 108px);
  font-weight: 460;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 28px;
}
h1.hero-title .line { display: block; }
h1.hero-title .serif { font-size: 1.06em; line-height: 0.92; padding-right: 0.04em; color: var(--ink); position: relative; }
h1.hero-title .serif::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.5em;
  background: var(--brand-grad);
  z-index: -1;
  opacity: 0.18;
  border-radius: 4px;
  transform: translateY(0.05em);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.5;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 13.5px;
}
.hero-meta-stat strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-divider {
  width: 1px; height: 32px; background: var(--hairline);
}

/* Hero video card */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0E0E12;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 60px 80px -40px rgba(20,20,26,0.35),
    0 20px 40px -20px rgba(20,20,26,0.25),
    0 0 0 1px var(--hairline);
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-card:hover { transform: translateY(-4px); }
.video-card .gif-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease;
}
.video-card:hover .gif-bg { transform: scale(1.04); }
.video-card .gradient-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,18,0.6) 100%);
  z-index: 2;
}
.video-card .video-label {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px 6px 9px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  z-index: 3;
}
.video-card .video-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-violet);
  box-shadow: 0 0 0 3px rgba(145,82,249,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(145,82,249,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(145,82,249,0.0); }
}
.video-card .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 4;
}
.video-card .play-btn .ring {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.video-card:hover .play-btn .ring { transform: scale(1.08); }
.video-card .play-btn .ring svg { color: var(--ink); margin-left: 5px; }
.video-card .caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: white;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 16px;
}
.video-card .caption .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.video-card .caption .duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ========== marquee proof bar ========== */
.proof {
  border-block: 1px solid var(--hairline);
  padding-block: 32px;
  background: var(--paper-2);
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.proof-stat {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.proof-stat strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ========== STORY / problem ========== */
.story { background: var(--paper); }
.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 880px) { .story-inner { grid-template-columns: 1fr; } }
.story-aside {
  position: sticky;
  top: 100px;
}
.story-headline {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 24px;
  margin-bottom: 24px;
}
.story-headline .serif {
  font-size: 1.05em;
}
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 2px solid var(--brand-violet);
  padding-left: 28px;
  margin-bottom: 36px;
  text-wrap: balance;
}
.pullquote-attr {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-soft);
  display: block;
  margin-top: 18px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
@media (max-width: 600px) { .story-grid { grid-template-columns: 1fr; } }
.story-bullet {
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.story-bullet .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.story-bullet h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.story-bullet p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ========== PERSONAS section ========== */
.personas { background: var(--paper-2); position: relative; }
.personas-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 760px;
}
.section-title .serif { font-size: 1.04em; }
.section-lede {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 360px;
  text-wrap: pretty;
}
.persona-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.persona-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  background: var(--paper-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s;
}
.persona-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.persona-tab .num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  opacity: 0.6;
}
.persona-tab:hover:not(.active) { border-color: var(--ink); }
.persona-card {
  background: var(--paper-3);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
}
@media (max-width: 880px) { .persona-card { grid-template-columns: 1fr; } }
.persona-content { padding: clamp(32px, 4vw, 56px); }
.persona-content h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.persona-content h3 .serif { font-style: italic; }
.persona-content p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 460px;
  text-wrap: pretty;
}
.persona-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.persona-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  align-items: start;
}
.persona-list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-grad);
  margin-top: 8px;
  flex-shrink: 0;
}
.persona-visual {
  background: linear-gradient(155deg, #1d1d23 0%, #14141A 60%, #0c0c10 100%);
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 28px;
  color: #F4EFE5;
  overflow: hidden;
}
.persona-visual::before {
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 600px; height: 600px;
  background: var(--brand-grad);
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
}

/* ============ rich dashboards ============ */
.dash {
  width: 100%;
  max-width: 420px;
  align-self: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dashIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dashIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.dash[hidden] { display: none; }

.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.dash-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.dash-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5F6FFB, #9152F9);
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}
.dash-avatar.warm { background: linear-gradient(135deg, #D9842A, #c75d2a); }
.dash-bar-title {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(244,239,229,0.92);
}
.dash-bar-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.55);
}
.dash-bar-meta.live { color: var(--brand-violet); display: inline-flex; align-items: center; gap: 6px; }
.dash-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-violet);
  box-shadow: 0 0 0 3px rgba(145,82,249,0.25);
  animation: pulse 2s ease-in-out infinite;
}

.dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-section-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.55);
}
.dash-section-h > span:first-child { color: rgba(244,239,229,0.78); }
.dash-section-meta.warn { color: var(--warm-orange); }

/* --- HR admin stats --- */
.dash-hero-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  align-items: stretch;
}
.dash-hero-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(95,111,251,0.16), rgba(145,82,249,0.08));
  border: 1px solid rgba(95,111,251,0.18);
}
.dash-hero-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.6);
  margin-bottom: 6px;
}
.dash-hero-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dash-hero-delta {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(244,239,229,0.55);
}
.dash-hero-delta.up { color: var(--sage); }

.dash-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.dash-mini {
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.mn-k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.5);
  margin-bottom: 3px;
}
.mn-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: rgba(244,239,229,0.95);
}
.mn-v .mn-of {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  color: rgba(244,239,229,0.5);
  margin-left: 3px;
  font-weight: 400;
}
.mn-v.warn { color: var(--warm-orange); }
.mn-v.ok { color: var(--sage); }

.dash-bars { display: flex; flex-direction: column; gap: 6px; }
.dbar-row {
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(244,239,229,0.78);
}
.dbar-label { font-family: var(--font-mono); letter-spacing: 0.04em; font-size: 10.5px; opacity: 0.7; }
.dbar-track {
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.dbar-fill {
  height: 100%;
  background: var(--brand-grad);
  border-radius: 4px;
}
.dbar-val { font-family: var(--font-mono); font-size: 10.5px; text-align: right; opacity: 0.8; }

.dash-log { display: flex; flex-direction: column; gap: 6px; }
.dlog-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 9px;
  font-size: 11.5px;
  color: rgba(244,239,229,0.82);
}
.dlog-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(244,239,229,0.5);
}
.dlog-row.warn .dlog-dot { background: var(--warm-orange); box-shadow: 0 0 0 3px rgba(217,132,42,0.18); }
.dlog-text b { font-weight: 500; color: rgba(244,239,229,0.98); }
.dlog-time { font-family: var(--font-mono); font-size: 10px; color: rgba(244,239,229,0.5); }

.dash-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dash-foot-l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,239,229,0.5); }
.dash-foot-r { font-size: 12px; color: rgba(244,239,229,0.75); }
.dash-foot-r.serif { font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(244,239,229,0.9); }
.dash-pills { display: flex; gap: 5px; }
.dpill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(244,239,229,0.78);
}

/* --- Manager dashboard --- */
.dash-countdown {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(95,111,251,0.18), rgba(145,82,249,0.10));
  border: 1px solid rgba(95,111,251,0.2);
}
.dash-countdown.soft {
  background: linear-gradient(150deg, rgba(217,132,42,0.16), rgba(124,142,115,0.10));
  border-color: rgba(217,132,42,0.22);
}
.cd-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.6);
  margin-bottom: 4px;
}
.cd-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: rgba(244,239,229,0.96);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cd-v.grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cd-u {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,239,229,0.55);
  letter-spacing: 0;
}
.cd-v.grad .cd-u { color: rgba(244,239,229,0.5); -webkit-text-fill-color: rgba(244,239,229,0.5); }
.cd-date {
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(244,239,229,0.6);
}

.dash-steps { display: flex; flex-direction: column; gap: 6px; }
.dstep {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.dstep.active {
  border-color: rgba(95,111,251,0.35);
  background: rgba(95,111,251,0.10);
}
.dstep-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244,239,229,0.7);
}
.dstep.done .dstep-num { background: var(--brand-grad); color: white; }
.dstep.active .dstep-num { background: var(--brand-grad); color: white; }
.dstep-text b { display: block; font-size: 12.5px; font-weight: 500; color: rgba(244,239,229,0.95); }
.dstep-text small { display: block; font-size: 11px; color: rgba(244,239,229,0.55); margin-top: 1px; }

.dash-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  height: 84px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  align-items: end;
}
.dwk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 6px;
  height: 100%;
}
.dwk-d {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(244,239,229,0.55);
  order: 3;
}
.dwk-bar {
  width: 100%;
  background: var(--brand-grad);
  border-radius: 3px;
  min-height: 2px;
  order: 1;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dwk-pct {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(244,239,229,0.75);
  order: 2;
}

.dash-ai-list { display: flex; flex-direction: column; gap: 5px; }
.dai-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 9px;
  font-size: 11.5px;
  color: rgba(244,239,229,0.82);
}
.dai-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(95,111,251,0.18);
  color: #b5beff;
  flex-shrink: 0;
}

.dash-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}

/* --- Returner dashboard --- */
.dash-pay {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 4px 12px;
}
.dpay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
  color: rgba(244,239,229,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dpay-row:last-child { border-bottom: 0; }
.dpay-row.total { font-weight: 500; }
.dpay-row.total .dpay-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dpay-v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244,239,229,0.95);
}

.dash-tline {
  display: flex;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  gap: 3px;
}
.dtl {
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.85);
}
.dtl span { white-space: nowrap; padding: 0 6px; }
.dtl.p1 { background: linear-gradient(180deg, rgba(95,111,251,0.35), rgba(47,160,248,0.25)); }
.dtl.p2 { background: rgba(255,255,255,0.10); }
.dtl.p3 { background: rgba(217,132,42,0.35); color: white; }
.dtl.p4 { background: linear-gradient(180deg, rgba(145,82,249,0.35), rgba(95,111,251,0.22)); }

.dash-loop { display: flex; flex-direction: column; gap: 5px; }
.dloop-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 9px;
  font-size: 11.5px;
  color: rgba(244,239,229,0.85);
}
.dloop-tag {
  padding: 3px 7px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.dloop-tag.hire { background: rgba(95,111,251,0.20); color: #b5beff; }
.dloop-tag.policy { background: rgba(124,142,115,0.22); color: #b8c7ad; }
.dloop-tag.tool { background: rgba(217,132,42,0.20); color: #f0b97a; }

/* mock UI inside persona-visual */
.mock-card {
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.mock-greeting {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 400;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 8px;
  font-size: 13.5px;
}
.mock-row .label { display: flex; align-items: center; gap: 10px; opacity: 0.92; }
.mock-row .val { opacity: 0.65; font-family: var(--font-mono); font-size: 12px; }
.mock-row .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand-grad);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ========== FEATURE: Money Map ========== */
.feature { padding-block: clamp(80px, 9vw, 140px); }
.feature-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin-bottom: 56px;
}
.feature-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.feature-mark .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: white;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.feature-title {
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 460;
  line-height: 1;
  letter-spacing: -0.03em;
}
.feature-title .serif { font-size: 1.04em; }
.feature-desc {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  text-wrap: pretty;
}

/* Money Map visual */
.moneymap {
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.moneymap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.moneymap-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.moneymap-title h4 {
  font-size: 18px;
  font-weight: 500;
}
.moneymap-title .who {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.province-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.province-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  background: transparent;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: all 0.18s;
}
.province-pill.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.province-pill:hover:not(.active) { border-color: var(--ink); }

.mm-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 720px) { .mm-summary { grid-template-columns: repeat(2, 1fr); } }
.mm-stat {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--hairline-2);
}
.mm-stat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.mm-stat .v {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.mm-stat .v.warn { color: var(--warm-orange); }

.mm-timeline {
  position: relative;
  padding: 28px 0 8px;
}
.mm-track {
  position: relative;
  height: 88px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.mm-phase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--ink);
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mm-phase .ph-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
.mm-phase .ph-amt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.mm-phase.p1 { background: linear-gradient(180deg, rgba(95,111,251,0.18), rgba(47,160,248,0.12)); flex: 4; }
.mm-phase.p2 { background: rgba(20,20,26,0.06); flex: 3; }
.mm-phase.p3 { background: var(--warm-orange-bg); flex: 1.4; color: var(--ink); }
.mm-phase.p3 .ph-name { color: var(--warm-orange); opacity: 1; }
.mm-phase.p4 { background: linear-gradient(180deg, rgba(145,82,249,0.16), rgba(95,111,251,0.1)); flex: 1.6; }

.mm-axis {
  display: flex;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.mm-axis span { flex: 1; }
.mm-axis span:last-child { text-align: right; }
.mm-axis span:nth-child(2) { text-align: center; }

.mm-callout {
  position: absolute;
  top: -8px;
  background: var(--warm-orange);
  color: white;
  padding: 5px 10px 6px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(217,132,42,0.5);
  left: 67%;
}
.mm-callout::before {
  content: "";
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
}

.mm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ========== FEATURE: Hand-Back Wizard ========== */
.wizard-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .wizard-wrap { grid-template-columns: 1fr; } }

.wizard-steps {
  display: grid;
  gap: 4px;
}
.wizard-step {
  border-top: 1px solid var(--hairline);
  padding: 22px 0 26px;
  cursor: pointer;
  transition: padding 0.3s;
  position: relative;
}
.wizard-step:last-child { border-bottom: 1px solid var(--hairline); }
.wizard-step-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 6px;
}
.wizard-step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  width: 28px;
  flex-shrink: 0;
}
.wizard-step h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.wizard-step.active h4 { color: var(--ink); }
.wizard-step .body {
  margin-left: 46px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s, margin-top 0.3s;
  text-wrap: pretty;
}
.wizard-step.active .body { max-height: 200px; opacity: 1; margin-top: 10px; }

.wizard-mock {
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20,20,26,0.18);
  min-height: 500px;
}
.wizard-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
}
.wizard-mock-bar .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--hairline);
}
.wizard-mock-bar .title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.wizard-mock-bar .progress {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.wizard-mock-bar .pg {
  width: 20px; height: 3px;
  background: var(--hairline);
  border-radius: 2px;
}
.wizard-mock-bar .pg.done { background: var(--ink); }
.wizard-mock-body {
  padding: clamp(24px, 3vw, 36px);
  min-height: 420px;
  position: relative;
}
.wizard-pane {
  display: none;
  animation: fadeUp 0.4s ease both;
}
.wizard-pane.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wp-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-ask {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.choice {
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
  text-align: left;
  font-size: 14.5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.18s;
}
.choice:hover { border-color: var(--ink); }
.choice.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.choice .ch-label { font-weight: 500; }
.choice .ch-meta { font-size: 12px; color: var(--ink-soft); }
.choice.selected .ch-meta { color: rgba(244,239,229,0.6); }

.alert-box {
  margin-top: 4px;
  padding: 16px;
  background: var(--warm-orange-bg);
  border-radius: 12px;
  border-left: 3px solid var(--warm-orange);
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  align-items: start;
}
.alert-box svg { color: var(--warm-orange); flex-shrink: 0; margin-top: 2px; }

/* ghost feed */
.ghost-list { display: grid; gap: 10px; margin-bottom: 18px; }
.ghost-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--paper);
  transition: all 0.18s;
  cursor: pointer;
}
.ghost-item.selected { border-color: var(--ink); background: var(--paper-3); }
.ghost-item .gi-tag {
  width: 60px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  background: var(--paper-2);
  color: var(--ink-soft);
  flex-shrink: 0;
}
.ghost-item.t-hire .gi-tag { background: rgba(95,111,251,0.16); color: var(--brand-indigo); }
.ghost-item.t-leave .gi-tag { background: rgba(217,132,42,0.16); color: var(--warm-orange); }
.ghost-item.t-policy .gi-tag { background: rgba(124,142,115,0.18); color: var(--sage); }
.ghost-item .gi-text { font-size: 14px; flex: 1; }
.ghost-item .gi-text small { display: block; color: var(--ink-soft); font-size: 12px; margin-top: 2px; }
.ghost-item .gi-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.18s;
}
.ghost-item.selected .gi-check { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ghost-item .gi-check svg { opacity: 0; transition: opacity 0.18s; }
.ghost-item.selected .gi-check svg { opacity: 1; }

/* ramp slider */
.ramp-card { margin-bottom: 18px; }
.ramp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ramp-label { font-size: 14.5px; }
.ramp-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ramp-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--paper-2);
  border-radius: 3px;
  outline: none;
}
.ramp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--paper-3), 0 8px 16px -4px rgba(20,20,26,0.3);
}
.ramp-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: none;
}
.ramp-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.ramp-week {
  padding: 10px 12px;
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid var(--hairline-2);
}
.ramp-week .wk {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ramp-week .pct {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin-top: 2px;
  font-weight: 400;
}
.ramp-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--brand-grad);
  margin-top: 6px;
}

.wp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.wp-foot .hint {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ========== FEATURE: Rights & Scripts ========== */
.rights { background: var(--paper-2); }
.rights-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .rights-grid { grid-template-columns: 1fr; } }

.canada-map {
  background: var(--paper-3);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.canada-map h4 {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.province-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.province-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  transition: all 0.18s;
  color: var(--ink-2);
}
.province-btn:hover { border-color: var(--hairline); }
.province-btn.active {
  background: var(--ink);
  color: var(--paper);
}
.province-btn .pcode {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.6;
}
.cm-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  color: var(--ink-soft);
}

.cards-stack {
  display: grid;
  gap: 16px;
}
.card-right {
  background: var(--paper-3);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: cardIn 0.4s ease both;
}
.card-right:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(20,20,26,0.15);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.card-right .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.card-right h5 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card-right p { font-size: 14.5px; color: var(--ink-soft); text-wrap: pretty; }
.card-right .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.card-right:hover .arrow {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(-45deg);
}
.card-right.script {
  background: linear-gradient(140deg, var(--paper-3) 0%, rgba(145,82,249,0.04) 100%);
}
.card-right.script .tag { color: var(--brand-violet); }

.script-block {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  border-left: 2px solid var(--brand-violet);
  position: relative;
}

/* ========== HOW IT WORKS / timeline ========== */
.how { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.how::before {
  content: "";
  position: absolute;
  inset: -100px -100px auto -100px;
  height: 600px;
  background: radial-gradient(800px 400px at 30% 0%, rgba(95,111,251,0.25), transparent 60%),
              radial-gradient(600px 400px at 80% 0%, rgba(145,82,249,0.2), transparent 60%);
  pointer-events: none;
}
.how .eyebrow { color: rgba(244,239,229,0.7); }
.how .eyebrow::before { background: rgba(244,239,229,0.5); }
.how-title {
  color: var(--paper);
  margin-bottom: 64px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; } }
.how-cta { display: flex; justify-content: center; margin-top: 56px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,239,229,0.3) 12%, rgba(244,239,229,0.3) 88%, transparent);
}
@media (max-width: 880px) { .timeline::before { display: none; } }
.tl-step {
  position: relative;
}
.tl-step .dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(244,239,229,0.3);
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--paper);
}
.tl-step.active .dot {
  border-color: transparent;
  background: var(--brand-grad);
}
.tl-step .when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.6);
  margin-bottom: 10px;
}
.tl-step h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.tl-step p {
  font-size: 14.5px;
  color: rgba(244,239,229,0.7);
  text-wrap: pretty;
}

/* ========== CTA ========== */
.cta-section {
  padding-block: clamp(80px, 9vw, 140px);
  text-align: center;
}
.cta-inner {
  max-width: 880px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.cta-title .serif { font-size: 1.05em; }
.cta-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ========== footer ========== */
.footer {
  padding: 72px 0 32px;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h6 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer ul a:hover { color: var(--brand-indigo); }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.footer-logo { height: var(--logo-foot-h, 39px); width: auto; align-self: flex-start; transition: height 0.2s ease; }
.footer-tag { font-size: 14.5px; color: var(--ink-soft); }
.footer-bot {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12.5px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.footer-bot .marks {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
}

/* ========== ICP ========== */
.icp { background: var(--paper); padding-block: clamp(80px, 9vw, 130px); }
.icp-inner { display: flex; flex-direction: column; gap: 56px; }
.icp-head { max-width: 760px; }
.icp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .icp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .icp-grid { grid-template-columns: 1fr; } }
.icp-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: var(--paper-3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icp-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -18px rgba(20,20,26,0.18); }
.icp-card h4 { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.icp-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
.icp-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px 5px 8px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink-soft);
}
.icp-card.good .icp-mark { background: rgba(124,142,115,0.16); color: var(--sage); }
.icp-card.ok .icp-mark { background: rgba(47,160,248,0.12); color: var(--brand-indigo); }
.icp-card.no .icp-mark { background: rgba(20,20,26,0.06); color: var(--ink-soft); }
.icp-card.no { opacity: 0.78; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(14,14,18,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.open { display: flex; opacity: 1; }
.modal-inner {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.open .modal-inner { transform: scale(1); }
.modal-inner iframe { width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255,255,255,0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

/* ========== Demo request modal ========== */
.demo-modal { align-items: center; padding: 24px; }
.demo-modal.open .demo-inner { transform: translateY(0); }
.demo-inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.55), 0 0 0 1px var(--hairline);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}
.demo-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(20,20,26,0.12);
  color: var(--ink);
  z-index: 2;
}
.demo-close:hover { background: rgba(20,20,26,0.22); }
.demo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 0;
  flex: 1;
  overflow-y: auto;
}
@media (max-width: 820px) { .demo-grid { grid-template-columns: 1fr; } }

.demo-aside {
  padding: clamp(32px, 4vw, 48px);
  background: var(--paper-2);
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) { .demo-aside { border-right: 0; border-bottom: 1px solid var(--hairline); } }
.demo-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.demo-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 460;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.demo-lede {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.demo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.demo-list li { display: flex; gap: 12px; align-items: start; }
.dl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-grad);
  margin-top: 8px;
  flex-shrink: 0;
}
.demo-trust {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--ink-soft);
}

.demo-form {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.df-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .df-row { grid-template-columns: 1fr; } }
.df-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.df-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.df-label em { color: var(--warm-orange); font-style: normal; }
.df-opt {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.df-field input,
.df-field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  background: var(--paper-3);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14.5px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: var(--font-sans);
}
.df-field textarea { resize: vertical; min-height: 80px; }
.df-field input::placeholder,
.df-field textarea::placeholder { color: rgba(20,20,26,0.32); }
.df-field input:focus,
.df-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(20,20,26,0.06);
}
.df-field.invalid input,
.df-field.invalid textarea {
  border-color: var(--warm-orange);
  background: rgba(217,132,42,0.04);
}
.df-field.invalid input:focus,
.df-field.invalid textarea:focus {
  box-shadow: 0 0 0 4px rgba(217,132,42,0.10);
}
.df-err {
  font-size: 12px;
  color: var(--warm-orange);
  display: none;
}
.df-field.invalid .df-err { display: block; }

.df-submit {
  margin-top: 8px;
  align-self: flex-start;
  padding: 14px 24px;
  font-size: 15px;
}
.df-foot {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.df-foot b { color: var(--ink); font-weight: 500; }

.demo-success {
  grid-column: 1 / -1;
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  animation: fadeUp 0.4s ease both;
}
.ds-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-grad);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(95,111,251,0.5);
}
.demo-success h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 460;
  letter-spacing: -0.02em;
}
.demo-success p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 480px;
  text-wrap: pretty;
}
.demo-success p b { color: var(--ink); font-weight: 500; }

/* ========== Founder's letter modal ========== */
.letter-modal { align-items: stretch; padding: 0; }
.letter-modal.open .letter-inner { transform: translateY(0); }
.letter-inner {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: clamp(24px, 5vw, 80px) auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  max-height: calc(100vh - clamp(48px, 10vw, 160px));
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.55), 0 0 0 1px var(--hairline);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.letter-close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  margin-right: 16px;
  background: rgba(20,20,26,0.6);
  color: var(--paper);
  z-index: 2;
  float: right;
}
.letter-close:hover { background: rgba(20,20,26,0.85); }
.letter {
  padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 76px) clamp(48px, 7vw, 96px);
  color: var(--ink);
}
.letter-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 36px;
}
.letter-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.letter-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.letter-meta {
  font-size: 13px;
  color: var(--ink-soft);
}
.letter-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.letter-body p em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05em;
  background: var(--brand-grad-soft);
  padding: 0 0.15em;
}
.letter-body strong {
  font-weight: 500;
  color: var(--ink);
}
.letter-signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px !important;
  color: var(--ink) !important;
  margin-top: 36px !important;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

/* ========== reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* tiny utility */
.muted { color: var(--ink-soft); }
.nowrap { white-space: nowrap; }
