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

  :root {
    --bg: #0C0E12;
    --surface: #14171E;
    --surface-2: #1C2029;
    --border: #2A2E3A;
    --text: #E8E9EC;
    --text-dim: #8B8F9E;
    --accent: #4A9EFF;
    --accent-glow: rgba(74, 158, 255, 0.15);
    --green: #34D399;
    --amber: #FBBF24;
    --red: #F87171;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* --- NAV --- */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
    color: var(--text); text-decoration: none;
  }
  .logo span { color: var(--accent); }
  .logo .logo-tm { color: var(--text); font-size: 0.42em; vertical-align: 0.55em; font-weight: 700; letter-spacing: 0; }

  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--accent) !important; color: var(--bg) !important;
    padding: 0.5rem 1.25rem; border-radius: 6px;
    font-weight: 700 !important; font-size: 0.8rem !important;
    letter-spacing: 0.04em; text-transform: uppercase; transition: all 0.2s;
  }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  .nav-toggle {
    display: none; background: none; border: none;
    color: var(--text); cursor: pointer; padding: 0.25rem; line-height: 0;
  }

  /* --- HERO --- */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 8rem 2rem 4rem; position: relative;
  }

  .hero::before {
    content: ''; position: absolute; top: -20%; left: 50%;
    transform: translateX(-50%); width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; border: 1px solid var(--border);
    border-radius: 100px; font-size: 0.8rem; color: var(--text-dim);
    margin-bottom: 2.5rem; background: var(--surface);
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); animation: pulse 2s infinite;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1;
    font-weight: 700; letter-spacing: -0.03em; max-width: 800px;
    margin-bottom: 1.5rem; animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }

  .hero p {
    font-size: 1.15rem; color: var(--text-dim); max-width: 540px;
    margin-bottom: 2.5rem; animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-actions {
    display: flex; gap: 1rem;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: var(--bg);
    padding: 0.85rem 2rem; border-radius: 8px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    letter-spacing: 0.02em; transition: all 0.25s; border: none; cursor: pointer;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74, 158, 255, 0.25); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--text-dim);
    padding: 0.85rem 2rem; border-radius: 8px;
    font-weight: 500; font-size: 0.9rem; text-decoration: none;
    border: 1px solid var(--border); transition: all 0.25s; cursor: pointer;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }

  /* --- DEMO SECTION --- */
  .demo-section {
    padding: 6rem 2rem;
    display: flex; flex-direction: column; align-items: center;
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center; margin-bottom: 1rem; letter-spacing: -0.02em;
    max-width: 820px; line-height: 1.15;
  }

  .section-sub {
    color: var(--text-dim); text-align: center;
    max-width: 640px; margin-bottom: 3.5rem; font-size: 1rem;
    line-height: 1.7;
  }

  /* --- BROWSER MOCKUP --- */
  .browser-mockup {
    width: 100%; max-width: 940px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  }

  .browser-bar {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1rem; background: var(--surface-2);
    border-bottom: 1px solid var(--border);
  }

  .browser-dots { display: flex; gap: 6px; }
  .browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
  .browser-dots span:nth-child(1) { background: var(--red); opacity: 0.7; }
  .browser-dots span:nth-child(2) { background: var(--amber); opacity: 0.7; }
  .browser-dots span:nth-child(3) { background: var(--green); opacity: 0.7; }

  .browser-url {
    flex: 1; min-width: 0; margin-left: 0.75rem; background: var(--bg);
    padding: 0.4rem 0.75rem; border-radius: 6px;
    font-size: 0.75rem; color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  .browser-content {
    display: grid; grid-template-columns: 1fr 300px; min-height: 440px;
  }

  .profile-mock { padding: 2rem; border-right: 1px solid var(--border); }

  .profile-header-mock { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }

  .avatar-mock {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #374151, #4B5563);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: var(--text-dim);
  }

  .profile-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.15rem; }
  .profile-title { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.25rem; }
  .profile-loc { font-size: 0.75rem; color: var(--text-dim); opacity: 0.7; }

  .profile-section-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-dim); margin-bottom: 0.75rem; font-weight: 500;
  }

  .exp-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
  .exp-icon { width: 32px; height: 32px; border-radius: 4px; background: var(--surface-2); flex-shrink: 0; }
  .exp-role { font-size: 0.85rem; font-weight: 600; }
  .exp-co { font-size: 0.8rem; color: var(--text-dim); }
  .exp-dates { font-size: 0.7rem; color: var(--text-dim); opacity: 0.6; }

  /* --- SIDE PANEL MOCKUP --- */
  .panel-mock {
    padding: 14px; background: var(--bg);
    display: flex; flex-direction: column; gap: 10px;
    font-size: 12px;
  }

  .panel-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 8px; border-bottom: 1px solid var(--border);
  }

  .panel-brand {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700;
  }
  .panel-brand span { color: var(--accent); }
  .panel-brand small {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px; font-weight: 500; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.08em; margin-left: 4px;
  }
  .panel-brand .tm {
    font-family: 'DM Sans', sans-serif;
    font-size: 7px; font-weight: 500; vertical-align: super;
    color: var(--text-dim); margin-left: 1px; letter-spacing: 0;
  }
  .panel-brand small.ver { color: var(--accent); }

  .panel-tabs {
    display: flex; gap: 2px;
  }
  .panel-tab {
    font-size: 10px; padding: 3px 8px; border-radius: 4px;
    color: var(--text-dim); font-weight: 500;
  }
  .panel-tab.active { color: var(--accent); background: var(--surface-2); }

  .panel-field-label {
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-dim); font-weight: 500; margin-bottom: 4px;
  }

  .panel-select {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 10px; color: var(--text); background: var(--surface);
    padding: 6px 8px; border-radius: 6px; border: 1px solid var(--border);
  }
  .panel-select::after { content: '\25BE'; color: var(--text-dim); font-size: 9px; }

  .panel-split { display: flex; gap: 5px; }
  .panel-split .panel-btn { padding: 6px; font-size: 9px; }

  .panel-section-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 4px; border-bottom: 1px solid var(--border);
  }
  .panel-section-title {
    font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  }
  .panel-chip {
    font-size: 9px; color: var(--text-dim); background: var(--surface-2);
    border: 1px solid var(--border); border-radius: 5px; padding: 2px 7px;
  }

  .verdict-row {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px;
  }

  .verdict-badge {
    flex: none; width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
    border: 3px solid var(--green); background: var(--surface-2);
    color: var(--green);
  }

  .verdict-pill {
    flex: none; background: var(--surface-2); border: 1px solid var(--border);
    color: var(--text); padding: 3px 9px; border-radius: 20px;
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
    white-space: nowrap;
  }

  .verdict-star {
    color: var(--amber); font-size: 16px; margin-left: auto; cursor: default;
  }

  .verdict-name { font-weight: 700; font-size: 12px; }
  .verdict-summary { font-size: 11px; color: var(--text-dim); line-height: 1.4; }

  .crit-mock {
    padding: 8px 10px; border-radius: 6px; margin-bottom: 5px;
  }
  .crit-mock:last-child { margin-bottom: 0; }
  .crit-mock.confirmed { background: rgba(52,211,153,.10); border-left: 3px solid var(--green); }
  .crit-mock.unclear { background: rgba(251,191,36,.10); border-left: 3px solid var(--amber); }
  .crit-mock.unlikely { background: rgba(248,113,113,.10); border-left: 3px solid var(--red); }

  .crit-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; font-weight: 700; margin-bottom: 2px; }
  .crit-status { font-size: 9px; padding: 1px 6px; border-radius: 8px; font-weight: 700; letter-spacing: 0.04em; }
  .crit-status.s-confirmed { background: rgba(52,211,153,.12); color: var(--green); }
  .crit-status.s-unclear { background: rgba(251,191,36,.12); color: var(--amber); }
  .crit-status.s-unlikely { background: rgba(248,113,113,.12); color: var(--red); }
  .crit-note { font-size: 10px; color: var(--text-dim); line-height: 1.4; }
  .crit-note .ask { color: var(--accent); font-style: normal; }

  /* company scan cards */
  .co-card-mock {
    background: var(--surface); border: 1px solid var(--border);
    border-left-width: 3px; border-radius: 8px; padding: 8px 10px;
    margin-bottom: 6px;
  }
  .co-card-mock:last-child { margin-bottom: 0; }
  .co-card-mock.v-match { border-left-color: var(--green); }
  .co-card-mock.v-unsure { border-left-color: var(--amber); }
  .co-card-mock.v-nomatch { border-left-color: var(--red); }

  .co-head-mock {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 8px;
  }
  .co-name-mock { font-size: 11px; font-weight: 700; }
  .co-tenure-mock {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; color: var(--text-dim); margin-top: 1px;
  }
  .co-note-mock { font-size: 10px; color: var(--text-dim); line-height: 1.4; margin-top: 5px; }

  .co-data-mock {
    margin-top: 6px; border-top: 1px solid var(--border); padding-top: 5px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .co-data-row { display: flex; justify-content: space-between; gap: 10px; font-size: 10px; }
  .co-data-row .k { color: var(--text-dim); white-space: nowrap; }
  .co-data-row .v { text-align: right; color: var(--text); }

  .co-deep-mock { margin-top: 6px; border-top: 1px dashed var(--border); padding-top: 5px; }
  .co-deep-label {
    color: var(--accent); font-size: 9px; text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 700; margin-bottom: 3px;
  }

  .panel-actions { display: flex; gap: 6px; }
  .panel-actions + .panel-actions { margin-top: -4px; }
  .panel-btn {
    flex: 1; padding: 8px; text-align: center;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 6px; font-size: 10px; font-weight: 700;
    color: var(--text); letter-spacing: 0.04em; text-transform: uppercase;
  }
  .panel-btn.primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }

  /* --- VALUE PROPS --- */
  .value-section {
    padding: 5rem 2rem;
    display: flex; justify-content: center;
  }

  .value-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 960px; width: 100%;
  }

  .value-card {
    text-align: center; padding: 2rem 1.5rem;
    border-right: 1px solid var(--border);
  }
  .value-card:last-child { border-right: none; }

  .value-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--accent);
    margin-bottom: 0.25rem;
  }

  .value-label {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.75rem;
  }

  .value-desc {
    font-size: 0.85rem; color: var(--text-dim); line-height: 1.6;
  }

  /* --- FEATURES --- */
  .features-section {
    padding: 6rem 2rem;
    display: flex; flex-direction: column; align-items: center;
  }

  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 960px; width: 100%;
  }

  .feature-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem 1.5rem; transition: all 0.3s;
  }
  .feature-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 158, 255, 0.08);
  }

  .feature-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1.25rem;
  }
  .feature-icon svg { display: block; }
  .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
  .feature-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.55; }

  /* --- CREDIBILITY --- */
  .cred-section {
    padding: 5rem 2rem;
    display: flex; flex-direction: column; align-items: center;
  }

  .cred-box {
    max-width: 680px; width: 100%;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 3rem; text-align: center; position: relative;
  }

  .cred-box::before {
    content: '\201C'; font-family: 'Playfair Display', serif;
    font-size: 6rem; position: absolute; top: -0.25rem; left: 2rem;
    color: var(--accent); opacity: 0.2; line-height: 1;
  }

  .cred-quote { font-size: 1.15rem; font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; }
  .cred-attr { font-size: 0.85rem; color: var(--text-dim); }

  .cred-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; }
  .cred-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
  .cred-stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

  /* --- CTA --- */
  .cta-section {
    padding: 6rem 2rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative;
  }

  .cta-section::before {
    content: ''; position: absolute; bottom: 10%; left: 50%;
    transform: translateX(-50%); width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem; letter-spacing: -0.02em;
  }
  .cta-section p { color: var(--text-dim); max-width: 440px; margin-bottom: 2rem; }

  .email-form { display: flex; gap: 0.5rem; max-width: 440px; width: 100%; }

  .email-input {
    flex: 1; background: var(--surface); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.85rem 1rem; color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none;
    transition: border-color 0.2s;
  }
  .email-input::placeholder { color: var(--text-dim); opacity: 0.5; }
  .email-input:focus { border-color: var(--accent); }

  /* --- FOOTER --- */
  footer {
    padding: 2rem; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    max-width: 960px; margin: 0 auto; width: 100%;
  }
  .footer-left { font-size: 0.8rem; color: var(--text-dim); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }

  /* --- ANIMATIONS --- */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
    .browser-content { grid-template-columns: 1fr; }
    .panel-mock { border-top: 1px solid var(--border); }
    .profile-mock { border-right: none; }
    .features-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .value-card { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
    .value-card:last-child { border-bottom: none; }
    .cred-stats { gap: 1.5rem; }
    .hero-actions { flex-direction: column; }
    .nav-toggle { display: block; }
    .nav-links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: flex-start; gap: 1.25rem;
      padding: 1.25rem 2rem 1.5rem;
      background: rgba(12, 14, 18, 0.97);
      border-bottom: 1px solid var(--border);
    }
    nav.open .nav-links { display: flex; }
    .nav-links a { font-size: 1rem; }
    .email-form { flex-direction: column; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */

.page-hero {
  padding: 8rem 2rem 3rem;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { font-size: 1.05rem; color: var(--text-dim); line-height: 1.7; }

.hiw-section { padding: 4.5rem 2rem; max-width: 1000px; margin: 0 auto; }
.hiw-section.bordered { border-top: 1px solid var(--border); }

/* .section-title and .section-sub are centred for the flex sections on the
   landing page. .hiw-section is a plain block, so re-align them left and let
   the sub run to a readable measure instead of a 520px column. */
.hiw-section .section-title { text-align: left; }
.hiw-section .section-sub {
  text-align: left; max-width: none; margin-bottom: 0;
}

/* before / after */
.shift-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
.shift-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; background: var(--surface);
}
.shift-card.after { border-color: rgba(74,158,255,0.35); }
.shift-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-dim); margin-bottom: 1rem;
}
.shift-card.after .shift-label { color: var(--accent); }
.shift-card ul { list-style: none; padding: 0; margin: 0; }
.shift-card li {
  font-size: 0.9rem; color: var(--text-dim); line-height: 1.6;
  padding: 0.55rem 0 0.55rem 1.35rem; position: relative;
  border-bottom: 1px solid var(--border);
}
.shift-card li:last-child { border-bottom: none; }
.shift-card li::before {
  content: '·'; position: absolute; left: 0; color: var(--text-dim); opacity: 0.5;
}
.shift-card.after li::before { content: '→'; color: var(--accent); opacity: 1; }

/* numbered steps */
.step {
  display: grid; grid-template-columns: 62px 1fr; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--accent); line-height: 1; opacity: 0.85;
}
.step-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-body p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; }
.step-body p + p { margin-top: 0.75rem; }
.step-aside {
  margin-top: 0.9rem; padding: 0.85rem 1rem;
  background: var(--surface); border-left: 3px solid var(--border);
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.6;
}
.step-aside strong { color: var(--text); font-weight: 700; }

/* worked examples */
.example-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.example-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; background: var(--surface);
}
.example-role {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 700; margin-bottom: 0.2rem;
}
.example-kind {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1.1rem;
}
.example-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-dim); font-weight: 700; margin: 1rem 0 0.5rem;
}
.example-list { list-style: none; padding: 0; margin: 0; }
.example-list li {
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.5;
  padding: 0.3rem 0 0.3rem 0.9rem; position: relative;
}
.example-list li::before {
  content: '·'; position: absolute; left: 0; color: var(--accent);
}
.example-def { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* limits */
.limits-list { margin-top: 2rem; }
.limit-item {
  display: grid; grid-template-columns: 24px 1fr; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.limit-item:last-child { border-bottom: none; }
.limit-x { color: var(--red); font-size: 1.05rem; line-height: 1.4; opacity: 0.8; }
.limit-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.limit-item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }

@media (max-width: 860px) {
  .shift-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .step-num { font-size: 1.5rem; }
  .hiw-section { padding: 3rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 2rem; }
}
