/* Kerem Albayrak Consulting. shared site CSS v3 */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --line: rgba(255,255,255,0.08);
  --line-mid: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.30);
}
html, body {
  background: #000; color: #c8c8c8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
  min-height: 100vh; line-height: 1.5;
}
a { color: #c8c8c8; text-decoration: none; transition: color 0.12s; }
a:hover { color: #d4d4d4; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* =====================================================================
   BRAND MARK + WORDMARK
   Mark: 4 white dots in 2x2 grid (mark size = 1.4 × cap height)
   Wordmark: KEREM ALBAYRAK, Inter 400, all caps, +0.16em letter-spacing
   ===================================================================== */
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  color: #d4d4d4; text-decoration: none;
  line-height: 1;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 11px; height: 11px;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: -0.005em;
  color: currentColor; white-space: nowrap;
}
.brand--small .brand-mark { width: 9px; height: 9px; }
.brand--small .brand-wordmark { font-size: 11px; }
.brand--large .brand-mark { width: 14px; height: 14px; }
.brand--large .brand-wordmark { font-size: 16px; }

/* NAV */
nav.knav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; background: rgba(0,0,0,0.88);
  border-bottom: 0.5px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.knav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #d4d4d4; text-decoration: none;
  line-height: 1;
  transition: color 0.18s;
}
.knav-brand:hover { color: #ffffff; }
.knav-brand .brand-mark {
  width: 20px; height: 20px; flex-shrink: 0;
  color: #c8c8c8;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.18s ease;
}
.knav-brand:hover .brand-mark { color: #ffffff; }
.knav-brand .brand-mark svg { width: 100%; height: 100%; display: block; }
.knav-brand .brand-wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.008em;
  color: currentColor; white-space: nowrap;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.knav-name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; color: #d4d4d4; }
.knav-links { display: flex; gap: 22px; align-items: center; }
.knav-link {
  font-size: 12.5px; font-weight: 400; color: #888;
  background: none; border: none; padding: 0;
  letter-spacing: 0.005em;
  transition: color 0.12s;
}
.knav-link:hover, .knav-link.active { color: #d4d4d4; }
.knav-cta {
  font-size: 12px; color: #c8c8c8;
  padding: 9px 18px; border: 0.5px solid rgba(255,255,255,0.30);
  font-weight: 400; background: transparent;
  transition: all 0.12s; border-radius: 1px;
  letter-spacing: 0.005em;
}
.knav-cta:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* NAV DROPDOWNS */
.knav-group {
  position: relative;
  display: inline-flex; align-items: center;
}
.knav-link--drop {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 0;
  font-family: inherit;
}
.knav-link--drop::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 0.5px solid currentColor;
  border-bottom: 0.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.5;
  transition: transform 0.15s, opacity 0.15s;
}
.knav-group:hover .knav-link--drop,
.knav-group:focus-within .knav-link--drop,
.knav-group.open .knav-link--drop {
  color: #d4d4d4;
}
.knav-group:hover .knav-link--drop::after,
.knav-group:focus-within .knav-link--drop::after,
.knav-group.open .knav-link--drop::after {
  opacity: 1;
  transform: translateY(1px) rotate(225deg);
}
.knav-drop {
  display: none;
  position: absolute; top: calc(100% + 14px); right: -16px;
  min-width: 300px;
  max-width: 360px;
  background: #000000;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 18px 22px;
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
}
/* The Watch is leftmost, align left so it doesn't fly off-screen on narrow desktops */
.knav-group:first-child .knav-drop { left: -16px; right: auto; }
/* Bridge the gap so hover doesn't drop */
.knav-group::before {
  content: '';
  position: absolute; top: 100%; left: 0; right: 0;
  height: 14px;
}
.knav-group:hover .knav-drop,
.knav-group:focus-within .knav-drop {
  display: block;
}
.knav-drop a {
  display: block; padding: 6px 0;
  font-size: 13px; color: #c8c8c8;
  letter-spacing: -0.003em; font-weight: 400;
  transition: color 0.12s;
}
.knav-drop a:hover { color: #fff; }
.knav-drop-desc {
  display: block;
  font-size: 11.5px; color: #777;
  padding: 0 0 10px;
  line-height: 1.4;
}
.knav-drop-secondary {
  font-size: 12px !important;
  color: #888 !important;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  margin-top: 6px;
  padding-top: 12px !important;
}
.knav-drop-secondary + .knav-drop-secondary {
  border-top: none; margin-top: 0; padding-top: 4px !important;
}

/* PORTAL, quiet, off to the side */
.knav-portal {
  font-size: 11px;
  color: #666;
  padding: 9px 6px;
  margin-left: 4px;
  letter-spacing: 0.005em;
  font-weight: 400;
  transition: color 0.12s;
}
.knav-portal:hover { color: #c8c8c8; }

/* Mobile burger menu */
.knav-burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.20);
  border-radius: 1px;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
  transition: border-color 0.15s;
}
.knav-burger:hover { border-color: rgba(255,255,255,0.45); }
.knav-burger span {
  display: block; width: 14px; height: 0.5px;
  background: #c8c8c8;
  transition: transform 0.15s, opacity 0.15s;
}
.knav-burger.open span:nth-child(1) { transform: translateY(2.25px) rotate(45deg); }
.knav-burger.open span:nth-child(2) { transform: translateY(-2.25px) rotate(-45deg); }

/* Mobile sheet */
.knav-sheet[hidden] { display: none; }
.knav-sheet {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
}
.knav-sheet-inner {
  padding: 64px 24px 40px;
  max-width: 640px; margin: 0 auto;
}
.knav-sheet-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.20);
  color: #c8c8c8; font-size: 22px; line-height: 1;
  cursor: pointer; border-radius: 1px;
}
.knav-sheet-section {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.knav-sheet-section:last-child { border-bottom: none; padding-bottom: 0; }
.knav-sheet-eye {
  font-size: 11.5px; color: #888;
  letter-spacing: -0.003em;
  margin-bottom: 14px; font-weight: 400;
}
.knav-sheet-section a {
  display: block;
  font-size: 17px; color: #c8c8c8;
  letter-spacing: -0.012em; font-weight: 400;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.knav-sheet-section a:last-child { border-bottom: none; }
.knav-sheet-foot { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.knav-sheet-cta {
  display: inline-block !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  border: 0.5px solid rgba(255,255,255,0.45) !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.45) !important;
  border-radius: 1px;
  color: #c8c8c8 !important;
}
.knav-sheet-portal {
  font-size: 13px !important;
  color: #888 !important;
  padding: 12px 0 !important;
}

@media (max-width: 1100px) {
  nav.knav { padding: 16px 24px; }
  .knav-links { gap: 16px; }
}
@media (max-width: 900px) {
  nav.knav { padding: 14px 18px; }
  .knav-links { display: none; }
  .knav-burger { display: inline-flex; }
}

/* CONTAINER */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .wrap { padding: 0 20px; } }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* HERO */
.k-hero { padding: 32px 0 24px; max-width: 920px; }
@media (max-width: 600px) { .k-hero { padding: 60px 0 40px; } }

/* Home hero with two-column layout and Circle visual */
.k-hero--home { max-width: 1280px; padding: 96px 0 64px; }
.k-hero-grid {
  display: block;
}
.k-hero-cta-row {
  display: flex; gap: 14px; margin-top: 36px;
  flex-wrap: wrap; align-items: stretch;
}
.k-hero-cta-primary,
.k-hero-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px;
  background: transparent;
  border-radius: 1px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.005em;
  transition: all 0.18s;
  min-width: 168px; text-align: center;
  height: 44px; box-sizing: border-box;
  white-space: nowrap;
}
.k-hero-cta-primary {
  color: #c8c8c8;
  border: 0.5px solid rgba(255,255,255,0.45);
}
.k-hero-cta-primary:hover {
  background: rgba(168,196,206,0.06);
  border-color: rgba(168,196,206,0.6);
  color: #fff;
}
.k-hero-cta-secondary {
  color: #c8c8c8;
  border: 0.5px solid rgba(255,255,255,0.20);
}
.k-hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  color: #c8c8c8;
}
.k-hero-right {
  display: flex; align-items: center; justify-content: center;
}
.k-circle-visual {
  width: 100%; max-width: 320px;
  aspect-ratio: 1; position: relative;
  animation: circ-breathe 6s ease-in-out infinite;
}
.k-circle-visual svg { width: 100%; height: 100%; display: block; }
@keyframes circ-breathe {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.018); opacity: 1; }
}
.k-eye {
  font-size: 12px; letter-spacing: 0.005em; color: #888;
  margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
  font-weight: 400;
}
.k-eye::before {
  content: ''; width: 6px; height: 6px; background: #c8c8c8;
  display: inline-block; border-radius: 50%;
  position: relative;
  animation: eye-pulse 2.4s ease-in-out infinite;
}
@keyframes eye-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(237,237,237,0.6); }
  50%      { opacity: 0.55; box-shadow: 0 0 0 5px rgba(237,237,237,0); }
}
.k-name {
  font-size: clamp(34px, 5.2vw, 52px);
  font-weight: 500; letter-spacing: -0.040em; line-height: 1.05;
  color: #e8e8e8; margin: 0 0 36px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
}
.k-tag {
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.4; color: #c8c8c8; font-weight: 400;
  margin: 0 0 26px; max-width: 720px; letter-spacing: -0.018em;
}
.k-bio {
  font-size: 16px; line-height: 1.7;
  color: #a8a8a8; margin: 0 0 18px; max-width: 660px;
  letter-spacing: -0.005em;
}
.k-bio strong { color: #c8c8c8; font-weight: 500; }
.k-bio a { color: #c8c8c8; border-bottom: 0.5px solid var(--line-mid); padding-bottom: 1px; }
.k-bio a:hover { border-bottom-color: rgba(255,255,255,0.5); }
.k-meta {
  font-size: 13px; color: #888; margin-top: 32px;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.k-meta a {
  color: #c8c8c8; border-bottom: 0.5px solid var(--line-mid);
  padding-bottom: 2px;
}

/* SECTIONS */
.k-section { padding: 32px 0 0; }
.k-section-title {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.018em; color: #c8c8c8; margin: 0 0 14px;
}
.k-section-sub {
  font-size: 15px; line-height: 1.65;
  color: #a8a8a8; margin: 0 0 32px; max-width: 580px;
}

/* ROW (journal entries) */

/* === JOURNAL CONTROLS === */
.journal-controls {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.journal-search { margin-bottom: 16px; }
.journal-search-input {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.10);
  color: #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  letter-spacing: -0.005em;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.18s ease;
}
.journal-search-input:focus { border-color: rgba(255,255,255,0.22); }
.journal-search-input::placeholder { color: #6a6a6a; }
.journal-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.journal-filter {
  padding: 7px 12px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.10);
  color: #a8a8a8;
  font-size: 12.5px;
  font-family: inherit;
  letter-spacing: -0.003em;
  cursor: pointer;
  border-radius: 1px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.journal-filter:hover { color: #d4d4d4; border-color: rgba(255,255,255,0.20); }
.journal-filter.active {
  color: #e0e0e0;
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.04);
}
.journal-filter-count {
  color: #6a6a6a;
  font-size: 11px;
  margin-left: 2px;
}
.journal-filter.active .journal-filter-count { color: #888; }
.journal-empty {
  padding: 32px 0;
  text-align: center;
  color: #888;
  font-size: 13.5px;
}

.k-row {
  display: grid; grid-template-columns: 1fr 24px; align-items: start;
  padding: 22px 0; border-top: 0.5px solid var(--line);
  transition: padding 0.18s ease; gap: 16px;
}
.k-row:hover { padding-left: 6px; }
.k-row-meta {
  font-size: 12px; color: #888;
  margin-bottom: 6px; display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.k-row-cat {
  font-size: 12px; color: #c8c8c8;
  font-weight: 400; letter-spacing: -0.003em;
}
.k-row-cat::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(200,200,200,0.5);
  margin-right: 8px; vertical-align: 2px;
}
.k-row-title {
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em; color: #c8c8c8; line-height: 1.35; margin-bottom: 6px;
}
.k-row-sub {
  font-size: 14px; line-height: 1.55;
  color: #a8a8a8; margin: 0;
}
.k-row-arrow { font-size: 18px; color: #888; text-align: right; padding-top: 22px; }
.k-row:hover .k-row-arrow { color: #c8c8c8; }
.k-all-link {
  display: inline-block; margin-top: 28px;
  font-size: 13px; color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid); padding-bottom: 2px;
  font-weight: 500;
}

/* STATS STRIP */
.k-stats { padding: 56px 0 0; }
.k-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
@media (max-width: 600px) {
  .k-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .k-stats-grid > .k-stat:nth-child(1),
  .k-stats-grid > .k-stat:nth-child(2) { border-bottom: 0.5px solid var(--line); }
}
.k-stat { padding: 24px 16px 24px 0; border-right: 0.5px solid var(--line); }
.k-stat:last-child { border-right: none; }
@media (max-width: 600px) { .k-stat:nth-child(2n) { border-right: none; padding-right: 0; } }
.k-stat-num {
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.025em; color: #c8c8c8; line-height: 1; margin-bottom: 8px;
}
.k-stat-label { font-size: 11px; color: #888; }

/* TIER CARDS */
.k-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 28px;
}
.k-tiers--four { grid-template-columns: repeat(4, 1fr); }
.k-tiers--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .k-tiers, .k-tiers--four, .k-tiers--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .k-tiers, .k-tiers--four, .k-tiers--three { grid-template-columns: 1fr; }
}
.k-tier--once {
  border-color: rgba(255,255,255,0.16);
  background: transparent;
}
.k-tier--once::before { display: none; }
.k-tier {
  position: relative;
  padding: 28px 24px;
  border: 0.5px solid rgba(255,255,255,0.08);
  background: transparent;
  display: flex; flex-direction: column;
  border-radius: 2px; transition: border-color 0.18s;
  outline: none;
}
.k-tier:target { outline: none; }
.k-tier:hover { border-color: rgba(255,255,255,0.16); }
{
  font-size: 10.5px; color: #888; margin-bottom: 16px; font-weight: 500;
  letter-spacing: 0.005em; 
  }
.k-tier-name {
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.028em; color: #e0e0e0; margin: 0 0 10px; line-height: 1;
}
.k-tier-tag {
  font-size: 13.5px; line-height: 1.5;
  color: #c8c8c8; margin: 0 0 10px; font-weight: 400;
}
.k-tier-for {
  font-size: 12.5px; line-height: 1.55;
  color: #888; margin: 0 0 22px; min-height: 36px;
}
.k-tier-price-block {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--line);
}
.k-tier-price {
  font-size: 30px; font-weight: 500;
  color: #e0e0e0; letter-spacing: -0.022em; line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.k-tier-price-unit { font-size: 13px; color: #888; font-weight: 400; letter-spacing: 0; }
.k-tier-price-sub {
  font-size: 11.5px; color: #888;
  margin-top: 6px; letter-spacing: 0.005em;
}
.k-tier-feats { margin-bottom: 22px; flex-grow: 1; }

/* Accordion groups inside tier card */
.tier-group {
  border-top: 0.5px solid var(--line);
}
.tier-group:last-child { border-bottom: 0.5px solid var(--line); }
.tier-group-summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 2px; cursor: pointer;
  font-size: 12.5px; color: #c8c8c8; font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s;
  user-select: none;
}
.tier-group-summary::-webkit-details-marker { display: none; }
.tier-group-summary::marker { display: none; }
.tier-group-summary:hover { color: #d4d4d4; }
.tier-group-toggle {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
}
.tier-group-toggle::before, .tier-group-toggle::after {
  content: ''; position: absolute;
  background: #888; transition: transform 0.2s, background 0.15s;
}
.tier-group-toggle::before {
  width: 10px; height: 0.5px;
  top: 50%; left: 2px;
  transform: translateY(-50%);
}
.tier-group-toggle::after {
  width: 0.5px; height: 10px;
  left: 50%; top: 2px;
  transform: translateX(-50%);
}
.tier-group[open] .tier-group-toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.tier-group:hover .tier-group-toggle::before,
.tier-group:hover .tier-group-toggle::after { background: #c8c8c8; }
.tier-group-body { padding: 0 0 14px; }
.tier-feat {
  padding: 8px 0; border-top: 0.5px dashed rgba(255,255,255,0.06);
}
.tier-feat:first-child { border-top: none; padding-top: 4px; }
.tier-feat-name {
  font-size: 12px; color: #c8c8c8;
  font-weight: 500; margin-bottom: 4px; line-height: 1.4;
  letter-spacing: -0.005em;
}
.tier-feat-desc {
  font-size: 11.5px; line-height: 1.55;
  color: #888;
}

/* Compact bullets used on home tier preview */
.k-tier-bullets { list-style: none; margin: 0 0 22px; padding: 0; }
.k-tier-bullets li {
  font-size: 12.5px; line-height: 1.45;
  color: #c8c8c8; padding: 9px 0 9px 14px;
  border-top: 0.5px solid var(--line);
  position: relative;
}
.k-tier-bullets li:last-child { border-bottom: 0.5px solid var(--line); }
.k-tier-bullets li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 6px; height: 0.5px; background: #888;
}
.k-tier-cta {
  display: inline-block; margin-top: auto;
  padding: 11px 16px; font-size: 12.5px;
  color: #c8c8c8; border: 0.5px solid rgba(255,255,255,0.34);
  font-weight: 500; text-align: center;
  background: transparent;
  transition: all 0.15s; border-radius: 1px;
  letter-spacing: -0.003em;
}
.k-tier-cta:hover { background: #d4d4d4; border-color: #d4d4d4; color: #000; }
.k-tier--featured {
  border-color: rgba(255,255,255,0.42);
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.04);
}
/* MOST CHOSEN badge intentionally removed */

/* MODULES */
.k-modules {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 24px;
  align-items: stretch;
}
@media (max-width: 800px) { .k-modules { grid-template-columns: 1fr; } }
.k-module {
  padding: 22px 20px; border: 0.5px solid rgba(255,255,255,0.08);
  background: transparent;
}
.k-module-name {
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em; color: #d4d4d4; margin-bottom: 4px;
}
.k-module-price { font-size: 12px; color: #888; margin-bottom: 14px; letter-spacing: 0.01em; }
.k-module-tag {
  font-size: 13px; line-height: 1.55;
  color: #a8a8a8; margin-bottom: 12px;
}
.k-module ul { list-style: none; padding: 0; margin: 0; }
.k-module li {
  font-size: 12.5px; line-height: 1.55;
  color: #a8a8a8; padding: 8px 0;
  border-top: 0.5px solid rgba(255,255,255,0.05);
}
.k-module li:first-child { border-top: none; padding-top: 4px; }
/* dash removed */

/* ARTICLE */
/* Article banner at top */
.art-banner {
  width: 100%;
  max-width: 1100px;
  margin: 32px auto 0;
  border-radius: 2px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.10);
  aspect-ratio: 1200 / 630;
  background: #000;
  position: relative;
}
.art-banner img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
@media (max-width: 700px) {
  .art-banner { margin: 20px auto 0; border-radius: 1px; }
}


/* === DOC VIEWER === */
.doc-wrap {
  max-width: 800px;
  margin: 64px auto;
  padding: 0 24px;
}
.doc-eye {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.doc-h1 {
  font-size: 36px; font-weight: 500;
  color: #e0e0e0; letter-spacing: -0.022em;
  margin: 0 0 18px; line-height: 1.15;
}
.doc-sub {
  font-size: 16px; font-weight: 400;
  color: #a8a8a8; line-height: 1.55;
  margin: 0 0 32px; letter-spacing: -0.005em;
  max-width: 62ch;
}
.doc-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.doc-action {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: -0.003em;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.18);
  color: #c8c8c8;
  border-radius: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.doc-action:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.32);
}
.doc-action--primary {
  border-color: rgba(255,255,255,0.30);
  color: #e0e0e0;
}
.doc-action--primary:hover {
  border-color: rgba(255,255,255,0.45);
}
.doc-preview {
  width: 100%;
  background: #0a0a0a;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 36px;
}
.doc-preview-frame {
  width: 100%;
  height: 760px;
  border: none;
  display: block;
  background: #f5f5f0;
}
.doc-preview-fallback {
  padding: 80px 32px;
  text-align: center;
  color: #888;
}
.doc-preview-fallback a {
  color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid);
  text-decoration: none;
}
.doc-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.doc-foot-link {
  font-size: 13.5px;
  color: #a8a8a8;
  text-decoration: none;
  letter-spacing: -0.003em;
  transition: color 0.15s ease;
}
.doc-foot-link:hover {
  color: #ffffff;
}

@media (max-width: 700px) {
  .doc-wrap { margin: 36px auto; padding: 0 18px; }
  .doc-h1 { font-size: 28px; }
  .doc-sub { font-size: 15px; }
  .doc-preview-frame { height: 520px; }
  .doc-actions { gap: 6px; }
  .doc-action { padding: 10px 14px; font-size: 12.5px; }
}

.art-wrap { padding: 28px 0 24px; max-width: 760px; margin: 0 auto; }
.art-eye {
  font-size: 12px; color: #6a6a6a;
  margin: 0 0 10px;
  letter-spacing: -0.003em;
  font-weight: 400;
}
.art-h1 {
  font-size: clamp(24px, 3.8vw, 34px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.14; color: #e0e0e0;
  margin: 0 0 18px;
}
.art-sub {
  font-size: 15px; line-height: 1.55;
  color: #909090; margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -0.008em;
}
@media (max-width: 700px) {
  .art-sub { font-size: 14px; line-height: 1.5; margin: 0 0 12px; }
}

/* === ARTICLE ENHANCEMENTS === */
.art-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.04);
  z-index: 100;
  pointer-events: none;
}
.art-progress-bar {
  height: 100%;
  width: 0;
  background: rgba(255,255,255,0.55);
  transition: width 0.05s linear;
  will-change: width;
}
.art-meta-time {
  color: #888;
  font-size: 12px;
}
.art-share {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.12);
  color: #a8a8a8;
  font-family: inherit;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.003em;
  transition: color 0.15s ease, border-color 0.15s ease;
  margin-left: 4px;
}
.art-share:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.30);
}

.art-meta {
  font-size: 12px; color: #6a6a6a;
  margin: 0 0 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
@media (max-width: 700px) { .art-meta { font-size: 11.5px; margin-bottom: 12px; } }
.art-meta-cat {
  font-size: 12px; color: #c8c8c8;
  font-weight: 400; letter-spacing: -0.003em;
}
.art-meta-sep { color: #555; font-size: 12px; }
.art-section {
  display: grid; grid-template-columns: 36px 1fr; column-gap: 20px;
  padding: 26px 0; border-top: 0.5px solid var(--line);
  align-items: start;
}
.art-num { font-size: 11px; color: #888; padding-top: 4px; font-weight: 500; }
.art-block {
  padding: 28px 0;
  border-top: 0.5px solid var(--line);
}
.art-block:first-of-type { border-top: 0.5px solid var(--line-mid); }
.art-h2 {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.018em; line-height: 1.3; color: #c8c8c8; margin: 0 0 12px;
}
@media (max-width: 700px) {
  .art-h2 { font-size: 16.5px; margin-bottom: 10px; }
}
.art-p {
  font-size: 15px; line-height: 1.72;
  color: #b0b0b0; margin: 0 0 14px;
  letter-spacing: -0.005em;
}
@media (max-width: 700px) { .art-p { font-size: 13.5px; line-height: 1.65; } }
.art-p:last-child { margin-bottom: 0; }
.art-foot {
  margin-top: 56px; padding-top: 28px;
  border-top: 0.5px solid var(--line-mid);
  display: flex; gap: 24px; flex-wrap: wrap; align-items: baseline;
}
.art-foot a {
  font-size: 14px; color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid); padding-bottom: 2px;
}

/* PERSON */
.k-person {
  display: grid; grid-template-columns: 36px 1fr;
  column-gap: 20px; padding: 28px 0;
  border-top: 0.5px solid var(--line); align-items: start;
  text-decoration: none;
}
.k-person:hover { background: rgba(255,255,255,0.012); padding-left: 6px; padding-right: 6px; margin-left: -6px; margin-right: -6px; }
.k-person-num { font-size: 11px; color: #888; padding-top: 4px; font-weight: 500; }
.k-person-name {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.014em; color: #c8c8c8; margin: 0 0 4px;
}
.k-person-role {
  font-size: 12px; color: #c8c8c8; margin-bottom: 14px;
  font-weight: 500;
}
.k-person-specs {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px; margin: 0 0 16px; max-width: 540px;
}
@media (max-width: 600px) { .k-person-specs { grid-template-columns: 1fr; gap: 6px; } }
.k-person-spec { font-size: 12px; line-height: 1.5; }
.k-person-spec-key { color: #777; display: block; margin-bottom: 1px; }
.k-person-spec-val { color: #c8c8c8; }
.k-person-bio {
  font-size: 14px; line-height: 1.65;
  color: #a8a8a8; max-width: 580px; margin-bottom: 10px;
}
.k-person-link {
  font-size: 12px; color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid); padding-bottom: 1px;
}

/* CARD */
.k-card {
  padding: 32px; border: 0.5px solid var(--line);
  background: rgba(255,255,255,0.012); border-radius: 2px;
  margin-top: 56px;
}
.k-card-eye { font-size: 11px; color: #888; margin-bottom: 14px; font-weight: 500; }
.k-card-h {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.018em; color: #c8c8c8; margin: 0 0 12px; line-height: 1.35;
}
.k-card-p {
  font-size: 14.5px; line-height: 1.65;
  color: #a8a8a8; margin: 0 0 22px; max-width: 540px;
}
.k-card-cta {
  display: inline-block; padding: 10px 20px;
  border: 0.5px solid var(--line-strong);
  font-size: 12.5px; color: #c8c8c8;
  font-weight: 500; background: none; transition: all 0.12s; border-radius: 1px;
}
.k-card-cta:hover { background: #c8c8c8; border-color: #c8c8c8; color: #000; }

/* FOOTER */
footer.k-foot {
  padding-top: 56px; padding-bottom: 40px; margin-top: 56px;
  border-top: 0.5px solid var(--line);
  display: flex; flex-direction: column; gap: 48px;
}
@media (max-width: 700px) {
  footer.k-foot { padding-top: 40px; padding-bottom: 32px; margin-top: 40px; gap: 32px; }
}
.k-foot-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  padding-bottom: 12px;
}
.brand--footer {
  color: #d4d4d4;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  transition: color 0.18s;
}
.brand--footer:hover { color: #ffffff; }
.brand--footer .brand-mark {
  width: 14px; height: 14px; flex-shrink: 0;
  color: #d4d4d4;
}
.brand--footer .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand--footer .brand-wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.010em;
  color: currentColor;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.k-foot-tagline {
  font-size: 13px; color: #888; line-height: 1.55;
  margin: 0; max-width: 360px; letter-spacing: -0.003em;
  text-align: right;
}
@media (max-width: 800px) {
  .k-foot-tagline { text-align: left; max-width: 100%; }
}
.k-foot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 980px) {
  .k-foot-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 480px) {
  .k-foot-grid { grid-template-columns: 1fr; gap: 32px; }
}
.k-foot-col { display: flex; flex-direction: column; gap: 13px; }
.k-foot-col-title {
  font-size: 12px; color: #757575;
  letter-spacing: -0.003em;
  margin-bottom: 6px; font-weight: 400;
}
.k-foot-col a {
  font-size: 13.5px; color: #c8c8c8;
  text-decoration: none; transition: color 0.15s;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.k-foot-col a:hover { color: #c8c8c8; }
.k-foot-legal {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 40px; border-top: 0.5px solid var(--line);
}
.k-foot-legal-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 12px; color: #888;
  letter-spacing: -0.003em; line-height: 1.5;
}
.k-foot-legal-row--quiet {
  font-size: 11px; color: #555;
}

/* === EXAMPLE READ CARDS === */
.home-section--examples {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 72px;
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 980px) {
  .example-grid { grid-template-columns: 1fr; gap: 20px; }
}
.example-card {
  padding: 28px 26px;
  border: 0.5px solid rgba(255,255,255,0.10);
  background: transparent;
  display: flex; flex-direction: column;
}
.example-card-tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 16px;
  border: 0.5px solid;
  align-self: flex-start;
}
.example-card-tag--identity { color: #c8c8c8; border-color: rgba(200,200,200,0.30); }
.example-card-tag--wealth { color: #c8c8c8; border-color: rgba(200,200,200,0.30); }
.example-card-tag--structural { color: #c8c8c8; border-color: rgba(200,200,200,0.30); }
.example-card-title {
  font-size: 16px; font-weight: 500;
  line-height: 1.35; color: #c8c8c8;
  margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.example-card-body {
  font-size: 13.5px; line-height: 1.55;
  color: #a8a8a8; margin: 0 0 20px;
  letter-spacing: -0.003em;
}
.example-conf {
  padding: 14px 0;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.example-conf-row {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 8px;
}
.example-conf-label {
  font-size: 11px; color: #888;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.example-conf-pct {
  font-size: 14px; color: #c8c8c8;
  font-weight: 500; font-variant: tabular-nums;
  letter-spacing: -0.01em;
}
.example-conf-bar {
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 10px;
}
.example-conf-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(168,196,206,0.45), #c8c8c8);
  border-radius: 1px;
}
.example-conf-why {
  font-size: 11.5px; color: #757575;
  line-height: 1.5; margin: 0;
  letter-spacing: -0.003em;
}
.example-action {
  margin-top: auto;
}
.example-action-label {
  display: block;
  font-size: 10.5px; color: #888;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.example-action p {
  font-size: 13px; color: #c8c8c8;
  line-height: 1.5; margin: 0;
  letter-spacing: -0.003em;
}

/* === FAMILY PRICING === */
.family-pricing {
  margin: 20px 0 24px;
  max-width: 880px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.family-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 2.2fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13.5px;
  letter-spacing: -0.003em;
}
.family-row:last-child { border-bottom: none; }
.family-row--head {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.family-row-tier { color: #d4d4d4; font-weight: 500; }
.family-row-price { color: #d4d4d4; font-variant: tabular-nums; }
.family-row-inc { color: #a8a8a8; }
@media (max-width: 700px) {
  .family-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .family-row--head { display: none; }
  .family-row-tier { font-size: 14px; }
  .family-row-price { font-size: 14px; color: #c8c8c8; }
  .family-row-inc { font-size: 12.5px; }
}
.family-note {
  max-width: 720px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.family-note p {
  font-size: 14px; line-height: 1.65;
  color: #a8a8a8; margin: 0 0 14px;
  letter-spacing: -0.003em;
}
.family-note strong { color: #c8c8c8; font-weight: 500; }

/* === PAUSED NOTE === */
.paused-note {
  font-style: normal;
  font-size: 11px;
  color: #757575;
  letter-spacing: 0;
  padding-left: 4px;
}

/* === INVESTORS / DIRECTION PAGE === */
.invest-prose {
  max-width: 720px;
}
.invest-lead {
  font-size: 17px; line-height: 1.6;
  color: #c8c8c8; margin: 0 0 32px;
  letter-spacing: -0.008em;
}
.invest-prose p {
  font-size: 15px; line-height: 1.7;
  color: #c8c8c8; margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.invest-prose h2.content-h2 {
  margin-top: 36px;
}
.invest-gate {
  margin-top: 64px;
  padding: 40px;
  border: 0.5px solid rgba(255,255,255,0.12);
  max-width: 560px;
  background: transparent;
}
@media (max-width: 600px) {
  .invest-gate { padding: 28px 22px; margin-top: 48px; }
}
.invest-gate-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.invest-gate-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.invest-gate-title {
  font-size: 22px; font-weight: 500;
  color: #c8c8c8; margin: 0 0 6px;
  letter-spacing: -0.014em;
}
.invest-gate-sub {
  font-size: 13px; color: #888;
  margin: 0; letter-spacing: -0.003em;
}
.invest-form { display: flex; flex-direction: column; gap: 18px; }
.invest-field { display: flex; flex-direction: column; gap: 6px; }
.invest-field label {
  font-size: 11px; color: #888;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.invest-field-opt { text-transform: none; letter-spacing: 0; color: #555; }
.invest-field input {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
  color: #c8c8c8;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  padding: 8px 0;
  letter-spacing: -0.005em;
}
.invest-field input:focus {
  outline: none;
  border-bottom-color: rgba(255,255,255,0.50);
}
.invest-submit {
  margin-top: 8px;
  align-self: flex-start;
  background: transparent;
  color: #c8c8c8;
  border: 0.5px solid rgba(255,255,255,0.30);
  padding: 11px 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.invest-submit:hover {
  border-color: rgba(255,255,255,0.60);
  color: #ffffff;
}
.invest-foot {
  font-size: 11.5px; color: #757575;
  line-height: 1.5; margin: 8px 0 0;
  letter-spacing: -0.003em;
}
.invest-success {
  padding: 20px 0;
}
.invest-success-h {
  font-size: 18px; color: #c8c8c8;
  font-weight: 500; margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.invest-success p {
  font-size: 14px; color: #a8a8a8;
  line-height: 1.6; margin: 0 0 10px;
  letter-spacing: -0.003em;
}
.invest-success a {
  color: #c8c8c8;
  border-bottom: 0.5px solid rgba(255,255,255,0.20);
  text-decoration: none;
}

/* === PAGE PULL (subscription CTA at page bottoms) === */
.page-pull {
  margin: 96px 0 16px;
  padding: 56px 0;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
@media (max-width: 700px) {
  .page-pull { margin: 64px 0 8px; padding: 40px 0; }
}
.page-pull-inner {
  max-width: 720px;
}
.page-pull-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.page-pull-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.2; letter-spacing: -0.018em;
  margin: 0 0 12px;
}
.page-pull-sub {
  font-size: 15px; line-height: 1.6;
  color: #a8a8a8; margin: 0 0 28px;
  max-width: 580px; letter-spacing: -0.003em;
}
.page-pull-actions {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
.page-pull-btn {
  display: inline-block;
  font-size: 13px; color: #c8c8c8;
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.30);
  padding: 12px 22px;
  transition: border-color 0.15s, color 0.15s;
  letter-spacing: -0.003em;
}
.page-pull-btn:hover { border-color: rgba(255,255,255,0.60); color: #ffffff; }
.page-pull-link {
  font-size: 13px; color: #c8c8c8;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.page-pull-link:hover { color: #c8c8c8; border-bottom-color: rgba(255,255,255,0.40); }

/* ============================================================
   WELCOME PAGE (post-Stripe checkout)
   ============================================================ */
.welcome-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
@media (max-width: 700px) {
  .welcome-wrap { padding: 32px 0 56px; }
}
.welcome-state {
  display: block;
}
.welcome-state[hidden] {
  display: none;
}
.welcome-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #c8c8c8;
  margin-bottom: 28px;
}
.welcome-dot--pulse {
  animation: kapulse 1.5s ease-in-out infinite;
}
@keyframes kapulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.welcome-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.welcome-h {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.16; letter-spacing: -0.024em;
  margin: 0 0 18px;
}
.welcome-h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.28; letter-spacing: -0.014em;
  margin: 48px 0 12px;
}
.welcome-lead {
  font-size: 17px; line-height: 1.6;
  color: #c8c8c8; margin: 0 0 36px;
  letter-spacing: -0.008em;
}
.welcome-p {
  font-size: 15px; line-height: 1.65;
  color: #a8a8a8; margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.welcome-p2 {
  font-size: 14.5px; line-height: 1.65;
  color: #a8a8a8; margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.welcome-card {
  border: 0.5px solid rgba(255,255,255,0.10);
  padding: 24px 28px;
  max-width: 540px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .welcome-card { padding: 20px 22px; }
}
.welcome-card-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13.5px;
  letter-spacing: -0.003em;
}
.welcome-card-row:last-child { border-bottom: none; }
.welcome-card-k {
  color: #888;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.welcome-card-v {
  color: #c8c8c8;
  font-variant: tabular-nums;
}

.welcome-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 36px;
}
@media (max-width: 700px) {
  .welcome-paths { grid-template-columns: 1fr; gap: 16px; }
}
.welcome-path {
  display: flex; flex-direction: column;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.16);
  padding: 28px 26px;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  text-decoration: none;
  color: #c8c8c8;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  min-height: 210px;
  position: relative;
}
.welcome-path:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.015);
  transform: translateY(-1px);
}
.welcome-path--primary {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.012);
}
.welcome-path--primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
.welcome-path--primary:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.025);
}
.welcome-path-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.welcome-path--primary .welcome-path-eye { color: #c8c8c8; }
.welcome-path-h {
  font-size: 19px; font-weight: 500;
  line-height: 1.3; letter-spacing: -0.014em;
  margin: 0 0 12px;
}
.welcome-path-p {
  font-size: 13.5px; line-height: 1.55;
  color: #a8a8a8; margin: 0 0 18px;
  flex: 1;
  letter-spacing: -0.003em;
}
.welcome-path-arr {
  font-size: 13px; color: #c8c8c8;
  margin-top: auto;
  letter-spacing: -0.003em;
  transition: transform 0.25s, color 0.25s;
}
.welcome-path--primary .welcome-path-arr {
  color: #c8c8c8;
  font-weight: 500;
}
.welcome-path:hover .welcome-path-arr {
  color: #ffffff;
  transform: translateX(3px);
}

.welcome-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.welcome-meta p {
  font-size: 12.5px; line-height: 1.6;
  color: #757575; margin: 0 0 10px;
  letter-spacing: -0.003em;
}
.welcome-meta a {
  color: #c8c8c8;
  border-bottom: 0.5px solid rgba(255,255,255,0.16);
  text-decoration: none;
}
.welcome-inline-link {
  color: #c8c8c8;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
}

/* ============================================================
   ONBOARDING FORM
   ============================================================ */
.onb-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 80px;
  position: relative;
}
@media (max-width: 700px) {
  .onb-wrap { padding-bottom: 60px; }
}

/* Sticky header */
.onb-head {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px 0;
  margin-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 700px) {
  .onb-head {
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.onb-eye-row {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.onb-eye {
  font-size: 10.5px; color: #888;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.onb-tier-badge {
  font-size: 10px; color: #c8c8c8;
  padding: 3px 8px;
  border: 0.5px solid rgba(255,255,255,0.20);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.onb-tier-badge[hidden] { display: none; }
.onb-section-name {
  font-size: 14px; color: #c8c8c8;
  letter-spacing: -0.006em;
}
.onb-head-right {
  display: flex; align-items: center;
  gap: 24px;
  min-width: 280px;
}
@media (max-width: 700px) {
  .onb-head-right { width: 100%; min-width: 0; }
}
.onb-progress {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 6px;
}
.onb-progress-bar {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.onb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(168,196,206,0.4), #c8c8c8);
  transition: width 0.4s ease;
}
.onb-progress-text {
  font-size: 10.5px; color: #757575;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-variant: tabular-nums;
}
.onb-save {
  font-size: 11px; color: #757575;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
  font-variant: tabular-nums;
}
.onb-save--active { color: #c8c8c8; }
.onb-save--error { color: #c8946a; }

/* Sections */
.onb-section {
  padding: 16px 0 80px;
  animation: onbfade 0.4s ease;
}
.onb-section[hidden] { display: none; }
@keyframes onbfade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.onb-intro-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.onb-intro-h {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.18; letter-spacing: -0.022em;
  margin: 0 0 18px;
}
.onb-intro-p {
  font-size: 16px; line-height: 1.6;
  color: #c8c8c8; margin: 0 0 36px;
  max-width: 56ch; letter-spacing: -0.006em;
}
.onb-intro-sections {
  border-top: 0.5px solid rgba(255,255,255,0.10);
  margin-bottom: 36px;
}
.onb-intro-row {
  display: grid;
  grid-template-columns: 40px 1fr 80px;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.onb-intro-n {
  color: #555; font-size: 11px;
  letter-spacing: 0.06em;
  font-variant: tabular-nums;
}
.onb-intro-l { color: #c8c8c8; }
.onb-intro-t {
  color: #888; font-size: 11.5px;
  letter-spacing: 0.04em;
  text-align: right;
  font-variant: tabular-nums;
}
.onb-intro-note {
  margin-top: 32px;
  padding: 22px 24px;
  border: 0.5px solid rgba(255,255,255,0.08);
  background: transparent;
}
.onb-intro-note p {
  font-size: 13px; line-height: 1.6;
  color: #a8a8a8; margin: 0 0 10px;
  letter-spacing: -0.003em;
}
.onb-intro-note p:last-child { margin-bottom: 0; }
.onb-intro-note strong { color: #c8c8c8; font-weight: 500; }

.onb-eyebrow {
  font-size: 11px; color: #888;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.onb-h {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.22; letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.onb-sub {
  font-size: 15px; line-height: 1.6;
  color: #a8a8a8; margin: 0 0 36px;
  max-width: 60ch; letter-spacing: -0.005em;
}

/* Path cards */
.onb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 700px) {
  .onb-cards { grid-template-columns: 1fr; gap: 16px; }
}
.onb-card {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.16);
  padding: 28px 24px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: #c8c8c8;
  transition: border-color 0.2s, background 0.2s;
}
.onb-card:hover {
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.01);
}
.onb-card--reco {
  border-color: rgba(255,255,255,0.30);
}
.onb-card--selected {
  border-color: #c8c8c8;
  background: transparent;
}
.onb-card-eye {
  font-size: 10.5px; color: #888;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.onb-card-h {
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.32;
  margin: 0 0 12px;
}
.onb-card-p {
  font-size: 13.5px; line-height: 1.55;
  color: #a8a8a8; margin: 0;
  letter-spacing: -0.003em;
}

/* Field structure */
.onb-fields {
  display: flex; flex-direction: column;
  gap: 32px;
}
.onb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 600px) {
  .onb-field-row { grid-template-columns: 1fr; gap: 28px; }
}
.onb-field[hidden] { display: none; }
.onb-label {
  display: block;
  font-size: 12px; color: #c8c8c8;
  letter-spacing: -0.003em;
  margin-bottom: 12px;
  font-weight: 500;
}
.onb-input, .onb-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.16);
  color: #c8c8c8;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  padding: 10px 0;
  letter-spacing: -0.005em;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.onb-input:focus, .onb-textarea:focus {
  outline: none;
  border-bottom-color: #c8c8c8;
}
.onb-input::placeholder, .onb-textarea::placeholder {
  color: #555; letter-spacing: -0.003em;
}
.onb-textarea {
  resize: vertical;
  min-height: 56px;
  line-height: 1.55;
  font-family: 'Inter', system-ui, sans-serif;
  border: 0.5px solid rgba(255,255,255,0.10);
  padding: 12px 14px;
}
.onb-textarea:focus {
  border-color: rgba(255,255,255,0.30);
  border-bottom-color: rgba(255,255,255,0.30);
}
/* DOB trio */
.onb-dob {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.onb-dob-input {
  flex: 0 0 60px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.onb-dob-input--y {
  flex: 0 0 90px;
}
.onb-dob-sep {
  color: #555;
  font-size: 18px;
  user-select: none;
}
.onb-hint {
  margin-top: 10px;
  font-size: 11.5px; line-height: 1.55;
  color: #757575;
  letter-spacing: -0.003em;
}
.onb-helper-row {
  margin-bottom: 12px;
}
.onb-helper-row span {
  font-size: 11.5px; color: #888;
  letter-spacing: -0.003em;
  font-style: italic;
}

/* Chips */
.onb-chips {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.onb-chip {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.16);
  color: #c8c8c8;
  padding: 8px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: all 0.18s;
  border-radius: 0;
}
.onb-chip:hover {
  border-color: rgba(255,255,255,0.40);
  color: #c8c8c8;
}
.onb-chip--on {
  background: #c8c8c8;
  color: #000;
  border-color: #c8c8c8;
}
.onb-chip--on:hover {
  background: #ffffff;
  color: #000;
}

/* Segmented control */
.onb-segmented {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.onb-segmented button {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.16);
  color: #c8c8c8;
  padding: 10px 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: all 0.18s;
  border-radius: 0;
}
.onb-segmented button:hover {
  border-color: rgba(255,255,255,0.40);
  color: #c8c8c8;
}
.onb-seg--on {
  border-color: #c8c8c8 !important;
  color: #c8c8c8 !important;
  background: rgba(255,255,255,0.04);
}

/* Footer nav */
.onb-foot {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
}
.onb-back, .onb-next {
  background: transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  letter-spacing: -0.003em;
  cursor: pointer;
  padding: 12px 22px;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
.onb-back {
  border: none;
  color: #888;
}
.onb-back:hover { color: #c8c8c8; }
.onb-next {
  border: 0.5px solid rgba(255,255,255,0.30);
  color: #c8c8c8;
}
.onb-next:hover {
  border-color: #ffffff;
  background: transparent;
}
.onb-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Review */
.onb-review {
  margin-bottom: 32px;
}
.onb-review-section {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.onb-review-h {
  font-size: 11px; color: #888;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; justify-content: space-between;
  align-items: baseline;
}
.onb-review-count {
  font-size: 10.5px; color: #555;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.onb-review-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 8px 0;
  font-size: 13.5px;
  letter-spacing: -0.003em;
}
@media (max-width: 600px) {
  .onb-review-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.onb-review-row span:first-child {
  color: #888; font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.onb-review-row span:last-child {
  color: #c8c8c8;
  word-break: break-word;
}
.onb-disclaim {
  margin: 24px 0;
  padding: 18px 20px;
  border: 0.5px solid rgba(255,255,255,0.08);
}
.onb-disclaim p {
  font-size: 12px; line-height: 1.6;
  color: #888; margin: 0;
  letter-spacing: -0.003em;
}
.onb-disclaim a {
  color: #c8c8c8;
  border-bottom: 0.5px solid rgba(255,255,255,0.16);
  text-decoration: none;
}

/* Done */
.onb-done-mark {
  margin: 24px 0 36px;
  display: flex;
  justify-content: center;
}
.onb-done-dots {
  display: inline-grid;
  grid-template-columns: 14px 14px;
  gap: 8px;
}
.onb-done-dots span {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #c8c8c8;
  display: block;
  animation: onbdotFade 1.2s ease-in-out infinite;
}
.onb-done-dots span:nth-child(1) { animation-delay: 0s; }
.onb-done-dots span:nth-child(2) { animation-delay: 0.15s; }
.onb-done-dots span:nth-child(3) { animation-delay: 0.3s; }
.onb-done-dots span:nth-child(4) { animation-delay: 0.45s; }
@keyframes onbdotFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.onb-done-h {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500; color: #c8c8c8;
  line-height: 1.18; letter-spacing: -0.022em;
  margin: 0 0 16px;
  text-align: center;
}
.onb-done-p {
  font-size: 16px; line-height: 1.65;
  color: #c8c8c8; margin: 0 auto 36px;
  max-width: 56ch; text-align: center;
  letter-spacing: -0.006em;
}
.onb-done-card {
  max-width: 480px;
  margin: 0 auto 28px;
  border: 0.5px solid rgba(255,255,255,0.10);
  padding: 24px 28px;
}
.onb-done-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13.5px;
}
.onb-done-row:last-child { border-bottom: none; }
.onb-done-k {
  color: #888;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.onb-done-v {
  color: #c8c8c8;
  text-align: right;
  font-variant: tabular-nums;
  letter-spacing: -0.003em;
}
.onb-done-meta {
  font-size: 12.5px; color: #757575;
  text-align: center;
  margin: 24px 0 0;
  letter-spacing: -0.003em;
}

/* ============================================================
   END WELCOME + ONBOARDING
   ============================================================ */

/* === ABOUT PAGE === */

/* Honeypot field, invisible to humans, catches naive bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Subscribe direct (secondary CTA below the application CTA) */


/* === PIPELINE STACK (editorial big numbers) === */

/* === SYSTEM VISUALIZATIONS === */

.sec-viz {
  margin: 18px 0 24px;
  max-width: 920px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sec-viz svg {
  width: 100%; height: auto; display: block;
  min-width: 580px;
}
@media (max-width: 700px) {
  .sec-viz { margin: 12px -16px 20px; padding: 0 16px; }
}

.pipe-viz, .conf-viz {
  margin: 24px 0 28px;
  max-width: 920px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pipe-viz svg, .conf-viz svg {
  width: 100%;
  height: auto;
  display: block;
  min-width: 600px;
}
@media (max-width: 700px) {
  .pipe-viz, .conf-viz {
    margin: 16px -16px 22px;
    padding: 0 16px;
  }
  .pipe-viz svg, .conf-viz svg { min-width: 560px; }
}

.pipe-stack {
  margin-top: 20px;
  max-width: 920px;
}
.pipe-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
}
.pipe-row:first-child { border-top: none; padding-top: 8px; }
.pipe-row:last-child { border-bottom: 0.5px solid var(--line); }
@media (max-width: 700px) {
  .pipe-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}
.pipe-stage {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  padding-top: 4px;
}
.pipe-name {
  font-size: 17px; color: #d4d4d4;
  font-weight: 500; letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.pipe-desc {
  font-size: 13.5px; color: #a8a8a8;
  line-height: 1.55;
  letter-spacing: -0.003em;
  margin: 0;
  max-width: 500px;
}
.pipe-count {
  font-size: 30px; color: #d4d4d4;
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1; font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.pipe-count-unit {
  display: block;
  font-size: 10px; color: #6a6a6a;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}
@media (max-width: 700px) {
  .pipe-count {
    text-align: left;
    font-size: 24px;
    margin-top: 6px;
  }
  .pipe-count-unit { margin-top: 4px; }
}

/* === CONFIDENCE STACK === */
.conf-stack {
  margin-top: 20px;
  max-width: 920px;
}
.conf-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
}
.conf-row:first-child { border-top: none; padding-top: 8px; }
.conf-row:last-child { border-bottom: 0.5px solid var(--line); }
@media (max-width: 700px) {
  .conf-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}
.conf-range {
  font-size: 16px; color: #d4d4d4;
  font-weight: 500; letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.conf-name {
  font-size: 16px; color: #d4d4d4;
  font-weight: 500; letter-spacing: -0.012em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.conf-desc {
  font-size: 13.5px; color: #a8a8a8;
  line-height: 1.55;
  letter-spacing: -0.003em;
  margin: 0;
  max-width: 620px;
}

/* === SPOT CHECK BOX === */
.content-section--spot { margin-top: 28px; }
.spot-box {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "head foot" "body foot";
  gap: 0 32px;
  padding: 24px 28px;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  max-width: 760px;
}
.spot-box-head { grid-area: head; }
.spot-box-body { grid-area: body; padding-top: 8px; }
.spot-box-foot {
  grid-area: foot;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  gap: 14px; min-width: 130px;
}
@media (max-width: 700px) {
  .spot-box {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "body" "foot";
    padding: 22px 20px; gap: 0;
  }
  .spot-box-foot {
    flex-direction: row; justify-content: space-between;
    align-items: center; padding-top: 16px; margin-top: 14px;
    border-top: 0.5px solid rgba(255,255,255,0.06); min-width: 0;
  }
}
.spot-box-eye {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.spot-box-name {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.020em; color: #e0e0e0;
  margin: 0; line-height: 1.15;
}
.spot-box-tag {
  font-size: 13.5px; color: #a8a8a8;
  line-height: 1.55; margin: 0;
  letter-spacing: -0.003em;
}
.spot-box-price {
  font-size: 22px; font-weight: 500;
  color: #e0e0e0; letter-spacing: -0.020em;
  white-space: nowrap; text-align: right;
}
@media (max-width: 700px) { .spot-box-price { text-align: left; font-size: 20px; } }
.spot-box-once { font-size: 12px; color: #6a6a6a; font-weight: 400; }
.spot-box-cta {
  display: inline-block;
  font-size: 12.5px; color: #c8c8c8;
  border: 0.5px solid rgba(255,255,255,0.14);
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  letter-spacing: -0.003em;
  white-space: nowrap;
}
.spot-box-cta:hover { color: #ffffff; border-color: rgba(255,255,255,0.30); }

.k-tier-direct {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  color: #888;
  letter-spacing: -0.003em;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.16);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.k-tier-direct:hover {
  color: #c8c8c8;
  border-bottom-color: #c8c8c8;
}

/* Legal table of contents */
.legal-toc {
  display: flex; flex-wrap: wrap;
  gap: 6px 16px;
  margin: 32px 0 48px;
  padding: 20px 0;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.legal-toc a {
  font-size: 12px;
  color: #888;
  letter-spacing: -0.003em;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.legal-toc a:hover {
  color: #c8c8c8;
}
@media (max-width: 600px) {
  .legal-toc { gap: 4px 12px; padding: 14px 0; }
  .legal-toc a { font-size: 11.5px; }
}
.k-section[id] {
  scroll-margin-top: 90px;
}
.about-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 32px 0 80px;
  max-width: 1080px;
}
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; gap: 24px; padding: 8px 0 32px; }
}
.about-portrait {
  position: sticky; top: 100px;
  height: 320px;
  border: 0.5px solid rgba(168,196,206,0.20);
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-portrait { position: static; height: 200px; }
}
.about-portrait-svg {
  width: 100%; height: 100%; display: block;
}
.about-prose {
  font-size: 15.5px; line-height: 1.72; color: #c8c8c8;
  letter-spacing: -0.005em;
}
.about-lead {
  font-size: 17px; color: #c8c8c8; line-height: 1.6;
  margin: 0 0 36px; letter-spacing: -0.008em;
}
.about-h2 {
  font-size: 22px; color: #c8c8c8; font-weight: 500;
  letter-spacing: -0.018em;
  margin: 40px 0 14px;
}
.about-prose p { margin: 0 0 18px; }
.about-actions {
  display: flex; gap: 18px; margin-top: 40px; flex-wrap: wrap;
}

/* === TEAM PAGE === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
  max-width: 1000px;
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
}
.team-card {
  padding: 28px;
  border: 0.5px solid var(--line);
  background: transparent;
}
.team-card-role {
  font-size: 11px; color: #a8a8a8;
  letter-spacing: -0.003em; margin-bottom: 10px;
  font-weight: 400;
}
.team-card-name {
  font-size: 22px; color: #c8c8c8; font-weight: 500;
  letter-spacing: -0.018em; margin: 0 0 14px;
}
.team-card-bio {
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  margin: 0; letter-spacing: -0.003em;
}
.team-card-link {
  color: #a8a8a8; text-decoration: none;
  border-bottom: 0.5px solid rgba(168,196,206,0.30);
  padding-bottom: 1px;
}
.team-card-link:hover { color: #c8d8de; border-bottom-color: rgba(200,216,222,0.6); }
.team-note {
  margin-top: 48px; padding: 28px 0; border-top: 0.5px solid var(--line);
  max-width: 720px;
}
.team-note p {
  font-size: 14.5px; line-height: 1.65; color: #888;
  margin: 0; letter-spacing: -0.003em;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 32px;
  max-width: 1000px;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
.contact-block {
  padding: 32px 0;
  border-top: 0.5px solid var(--line);
}
.contact-eye {
  font-size: 11px; color: #a8a8a8;
  letter-spacing: -0.003em; margin-bottom: 12px;
}
.contact-h2 {
  font-size: 22px; color: #c8c8c8; font-weight: 500;
  letter-spacing: -0.018em; margin: 0 0 14px;
}
.contact-block p {
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  margin: 0 0 14px; letter-spacing: -0.003em;
}
.contact-link {
  display: inline-block;
  font-size: 13px; color: #c8c8c8;
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.30);
  padding: 11px 20px;
  margin-top: 8px;
  transition: border-color 0.18s, color 0.18s;
}
.contact-link:hover { border-color: rgba(168,196,206,0.6); color: #fff; }
.contact-meta {
  font-size: 13px; color: #888; margin-top: 16px !important;
}
.contact-meta a {
  color: #c8c8c8; text-decoration: none;
  border-bottom: 0.5px solid var(--line-mid);
}
.contact-meta a:hover { color: #c8c8c8; }
.contact-address {
  font-style: normal;
  font-size: 14.5px; line-height: 1.7;
  color: #c8c8c8;
}

/* === FAQ PAGE === */
.faq-list {
  margin: 32px 0 0; padding: 0;
  max-width: 800px;
}
.faq-item {
  padding: 28px 0;
  border-top: 0.5px solid var(--line);
}
.faq-item:first-child { border-top: none; padding-top: 8px; }
.faq-q {
  font-size: 16.5px; color: #c8c8c8;
  font-weight: 500; letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.faq-a {
  font-size: 14.5px; line-height: 1.7; color: #a8a8a8;
  margin: 0; letter-spacing: -0.003em;
}

/* === PRESS PAGE === */
.press-empty {
  padding: 28px 0; border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  max-width: 720px;
}
.press-empty p {
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  margin: 0 0 12px; letter-spacing: -0.003em;
}
.press-empty-cta a {
  color: #c8c8c8; border-bottom: 0.5px solid var(--line-mid);
}
.press-topics { margin-top: 56px; max-width: 800px; }
.press-topic-list {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.press-topic-list li {
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  letter-spacing: -0.003em;
}
.press-topic-list li strong { color: #c8c8c8; font-weight: 500; }

/* === SPEAKING PAGE === */
.speaking-intro {
  padding: 28px 0; border-top: 0.5px solid var(--line);
  max-width: 720px;
}
.speaking-intro p {
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  margin: 0; letter-spacing: -0.003em;
}
.speaking-formats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 24px;
  max-width: 900px;
}
@media (max-width: 760px) {
  .speaking-formats { grid-template-columns: 1fr; gap: 24px; }
}
.speaking-format {
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
}
.speaking-format-name {
  font-size: 14.5px; color: #c8c8c8;
  font-weight: 500; letter-spacing: -0.008em; margin-bottom: 8px;
}
.speaking-format p {
  font-size: 14px; line-height: 1.65; color: #a8a8a8;
  margin: 0; letter-spacing: -0.003em;
}
.speaking-cta {
  margin-top: 56px; padding-top: 28px;
  border-top: 0.5px solid var(--line);
  max-width: 720px;
}
.speaking-cta p {
  font-size: 14.5px; line-height: 1.65; color: #a8a8a8;
  margin: 0; letter-spacing: -0.003em;
}
.speaking-cta a {
  color: #c8c8c8; border-bottom: 0.5px solid var(--line-mid);
}

/* === CREDENTIALS PAGE === */
.creds-list {
  margin-top: 16px;
  max-width: 900px;
}
.creds-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 0.5px solid var(--line);
}
@media (max-width: 760px) {
  .creds-row { grid-template-columns: 1fr; gap: 8px; }
}
.creds-row-label {
  font-size: 13px; color: #a8a8a8;
  letter-spacing: -0.005em; font-weight: 400;
}
.creds-row-detail {
  font-size: 14.5px; line-height: 1.7; color: #c8c8c8;
  letter-spacing: -0.003em;
}
.creds-row-detail strong { color: #c8c8c8; font-weight: 500; }
.creds-row-detail a {
  color: #a8a8a8; text-decoration: none;
  border-bottom: 0.5px solid rgba(168,196,206,0.30);
  padding-bottom: 1px;
}
.creds-row-detail a:hover { color: #c8d8de; }

/* === AUTHOR / TEAM-MEMBER PAGES === */
.author-section {
  padding: 16px 0 32px;
  max-width: 720px;
}
.author-bio {
  font-size: 15.5px; line-height: 1.7; color: #c8c8c8;
  letter-spacing: -0.005em;
}
.author-bio p { margin: 0 0 16px; }
.author-bio a {
  color: #a8a8a8; text-decoration: none;
  border-bottom: 0.5px solid rgba(168,196,206,0.30);
}
.author-bio a:hover { color: #c8d8de; }
.author-cta { margin-top: 28px; }
.author-aside {
  font-size: 14px; color: #888; margin: 28px 0 0;
  padding: 18px 0 0; border-top: 0.5px solid var(--line);
  letter-spacing: -0.003em;
}
.author-aside a {
  color: #c8c8c8; text-decoration: none;
  border-bottom: 0.5px solid var(--line-mid);
}
.author-aside a:hover { color: #c8c8c8; }

/* Article author byline links */
.art-meta-author {
  color: #c8c8c8; text-decoration: none;
  border-bottom: 0.5px solid var(--line-mid);
  transition: color 0.15s, border-color 0.15s;
}
.art-meta-author:hover {
  color: #a8a8a8;
  border-bottom-color: rgba(168,196,206,0.40);
}

/* === HTML SITEMAP PAGE === */
.sitemap-section {
  padding: 32px 0;
  border-top: 0.5px solid var(--line);
}
.sitemap-section:first-child { border-top: none; padding-top: 8px; }
.sitemap-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.sitemap-list li {
  font-size: 14.5px; line-height: 1.5;
  letter-spacing: -0.003em;
}
.sitemap-list a {
  color: #c8c8c8; text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: color 0.15s, border-color 0.15s;
}
.sitemap-list a:hover {
  color: #c8c8c8;
  border-bottom-color: rgba(168,196,206,0.40);
}
.sitemap-list--compact li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 13.5px; padding: 6px 0;
}
.sitemap-meta {
  font-size: 11.5px; color: #757575;
  letter-spacing: -0.003em; white-space: nowrap;
  flex-shrink: 0;
}

/* DOCS / NUMBERED */
.docs-row {
  padding: 22px 0; border-top: 0.5px solid var(--line);
  display: block;
}
.docs-num { display: none; }
.docs-name {
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.012em; color: #c8c8c8; margin-bottom: 4px;
}
.docs-detail {
  font-size: 14px; line-height: 1.65;
  color: #a8a8a8; max-width: 580px;
}
.docs-tag {
  display: inline-block;
  font-size: 12px; color: #888;
  margin-left: 14px;
  padding-left: 14px;
  vertical-align: 1px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-left: 0.5px solid rgba(255,255,255,0.14);
}

/* CATEGORY FILTER */
.cat-filter {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-bottom: 32px; padding: 14px 0 18px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.cat-pill {
  font-size: 12.5px; color: #777;
  padding: 0; border: none;
  background: transparent; cursor: pointer;
  letter-spacing: -0.003em; font-weight: 400;
  transition: color 0.12s;
  position: relative;
}
.cat-pill:hover { color: #c8c8c8; }
.cat-pill.active {
  color: #c8c8c8;
}
.cat-pill.active::after {
  content: '';
  position: absolute; bottom: -19px; left: 0; right: 0;
  height: 0.5px; background: #c8c8c8;
}
@media (max-width: 600px) {
  .cat-filter { gap: 16px 14px; }
  .cat-pill { font-size: 12px; }
}

/* APPLY / JOIN FLOW */
.apply-wrap { padding: 56px 0 80px; }

/* === APPLY FORM SUCCESS PATHS === */
.success-paths-h {
  margin: 36px 0 14px;
  font-size: 14px; color: #c8c8c8;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.success-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.success-path {
  display: block;
  text-align: left;
  width: 100%;
  padding: 22px 0;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s ease;
}
.success-path:hover { opacity: 0.85; }
.success-path-eye {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.success-path-h {
  font-size: 17px; font-weight: 500;
  color: #e0e0e0; margin: 0 0 6px;
  letter-spacing: -0.018em;
}
.success-path-p {
  font-size: 13.5px; color: #a8a8a8;
  margin: 0 0 8px; line-height: 1.55;
  letter-spacing: -0.003em;
}
.success-path-arr {
  font-size: 12.5px; color: #c8c8c8;
  letter-spacing: -0.003em;
}
.success-path:hover .success-path-arr { color: #ffffff; }
.success-fallback {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.success-fallback-summary {
  cursor: pointer;
  font-size: 12.5px; color: #888;
  letter-spacing: -0.003em;
  padding: 6px 0;
  list-style: none;
}
.success-fallback-summary::-webkit-details-marker { display: none; }
.success-fallback-summary::before {
  content: "+ "; color: #6a6a6a; font-family: monospace;
}
.success-fallback[open] .success-fallback-summary::before {
  content: ", "; color: #6a6a6a;
}
.success-fallback-body {
  padding-top: 14px;
}
.success-fallback-body p {
  font-size: 13.5px; color: #a8a8a8; line-height: 1.55;
  margin: 0 0 14px;
}
.success-fallback-link {
  color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid);
  text-decoration: none;
}

.apply-progress { display: flex; gap: 6px; margin-bottom: 14px; }

/* === APPLY FORM TRANSITIONS === */
.apply-step {
  animation: applyStepIn 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity, transform;
}
@keyframes applyStepIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.apply-step.fading-out { animation: applyStepOut 0.18s ease-out both; }
@keyframes applyStepOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}
.apply-loader {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  display: none; pointer-events: none;
  z-index: 100;
}
.apply-loader.active { display: block; }
.apply-loader-ring {
  width: 24px; height: 24px;
  border: 1.5px solid rgba(255,255,255,0.10);
  border-top-color: #d4d4d4;
  border-radius: 50%;
  animation: applySpinner 0.7s linear infinite;
}
@keyframes applySpinner { to { transform: rotate(360deg); } }
.chip {
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.10s ease;
}
.chip:active { transform: scale(0.98); }
.btn-back, .btn-next {
  transition: background-color 0.20s ease, border-color 0.20s ease, color 0.20s ease;
}

.apply-bar { flex: 1; height: 1px; background: var(--line-mid); transition: background 0.3s; }
.apply-bar.active { background: #c8c8c8; }
.apply-bar.complete { background: #888; }
.apply-stepmeta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #888; margin-bottom: 48px;
}
.apply-q-eye { font-size: 11.5px; color: #c8c8c8; margin-bottom: 14px; font-weight: 500; }
.apply-q-h {
  font-size: clamp(24px, 3.8vw, 32px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.18;
  color: #d4d4d4; margin: 0 0 16px;
}
.apply-q-p {
  font-size: 15px; line-height: 1.65;
  color: #a8a8a8; max-width: 60ch; margin: 0 0 32px;
}

.path-pick {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 24px 0;
}
@media (max-width: 700px) { .path-pick { grid-template-columns: 1fr; } }
.path-card {
  padding: 28px 24px; border: 0.5px solid var(--line-mid);
  background: rgba(255,255,255,0.012);
  text-align: left; cursor: pointer;
  font-family: inherit; color: inherit;
  transition: all 0.15s; border-radius: 2px;
}
.path-card:hover { border-color: #c8c8c8; background: rgba(255,255,255,0.025); }
.path-card.selected { border-color: #c8c8c8; background: rgba(255,255,255,0.04); }
.path-card-eye { font-size: 11px; color: #888; margin-bottom: 10px; font-weight: 500; }
.path-card-name {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.014em; color: #c8c8c8; margin-bottom: 10px;
}
.path-card-p {
  font-size: 13.5px; line-height: 1.6;
  color: #a8a8a8; margin: 0;
}

.field { margin-bottom: 24px; }
.field-label {
  display: block; font-size: 11.5px;
  color: #888; margin-bottom: 8px; font-weight: 500;
}
.field-input {
  width: 100%; background: transparent; border: 0;
  border-bottom: 0.5px solid var(--line-mid);
  padding: 12px 0; font-family: 'Inter', sans-serif; font-size: 16px;
  color: #c8c8c8; transition: border-color 0.2s ease;
}
.field-input:focus { outline: none; border-bottom-color: #c8c8c8; }
.field-input::placeholder { color: #555; }
.field-help { font-size: 12px; color: #888; margin-top: 8px; line-height: 1.5; }
.field-error { font-size: 12px; color: #c89090; margin-top: 8px; display: none; }
.field-error.show { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block; padding: 9px 14px;
  border: 0.5px solid var(--line-mid); background: transparent;
  color: #c8c8c8; font-size: 13px;
  cursor: pointer; transition: all 0.15s; border-radius: 1px;
  font-family: inherit;
}
.chip:hover { border-color: #c8c8c8; color: #c8c8c8; }
.chip.selected { background: rgba(255,255,255,0.06); border-color: #c8c8c8; color: #c8c8c8; }

.tier-pick {
  border: 0; border-top: 0.5px solid var(--line);
  padding: 24px 0; cursor: pointer; background: transparent;
  text-align: left; color: inherit; font-family: inherit;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  transition: padding 0.18s ease; width: 100%;
}
.tier-pick:hover { padding-left: 6px; }
.tier-pick.selected {
  background: rgba(255,255,255,0.04);
  padding-left: 12px; padding-right: 12px;
  margin-left: -12px;
}
.tier-pick-name {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.014em; color: #c8c8c8; margin-bottom: 6px;
}
.tier-pick-pos {
  font-size: 13px; line-height: 1.55;
  color: #a8a8a8; max-width: 480px;
}
.tier-pick-price {
  font-size: 14px; color: #c8c8c8;
  white-space: nowrap; font-weight: 500;
}

.creds-card {
  border: 0.5px solid #c8c8c8; padding: 36px 24px;
  text-align: center; margin: 24px 0;
  background: rgba(255,255,255,0.04); border-radius: 2px;
}
.creds-label { font-size: 11px; color: #888; font-weight: 500; }
.creds-handle {
  font-size: 30px; color: #c8c8c8;
  letter-spacing: 0.005em; margin: 12px 0;
  font-weight: 500;
}
.creds-pwd {
  font-size: 17px; color: #c8c8c8;
  letter-spacing: 0.005em; background: #000;
  padding: 10px 16px; border: 0.5px solid var(--line-mid);
  display: inline-block; margin: 12px 0; border-radius: 1px;
}

.apply-foot {
  margin-top: 56px; padding-top: 24px;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.apply-foot button, .apply-foot a {
  font-size: 12.5px; padding: 10px 20px;
  cursor: pointer; transition: all 0.15s; background: none;
  border: 0.5px solid var(--line-mid); color: #c8c8c8;
  font-family: inherit; font-weight: 500;
  border-radius: 1px; text-decoration: none;
  display: inline-block;
}
.btn-back { color: #888; }
.btn-back:hover { color: #c8c8c8; border-color: var(--line-strong); }
.btn-next:hover { background: #c8c8c8; border-color: #c8c8c8; color: #000; }
@media (max-width: 480px) {
  .apply-foot { flex-direction: column-reverse; align-items: stretch; }
  .apply-foot button, .apply-foot a { width: 100%; text-align: center; }
}

/* SIGN IN */
.signin-wrap { max-width: 480px; margin: 0 auto; padding: 80px 28px; }

/* DASHBOARD */
.dash-wrap { padding: 56px 0 40px; }
.dash-handle-block {
  padding-bottom: 28px; border-bottom: 0.5px solid var(--line);
  margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
}
@media (max-width: 600px) { .dash-handle-block { grid-template-columns: 1fr; } }
.dash-greet-eye { font-size: 11px; color: #888; margin-bottom: 8px; font-weight: 500; }
.dash-handle {
  font-size: 28px; color: #c8c8c8;
  letter-spacing: 0.005em; font-weight: 500;
}
.dash-greet-line { font-size: 14px; color: #a8a8a8; margin-top: 10px; }
.dash-stage { border: 0.5px solid var(--line-mid); padding: 14px 18px; min-width: 200px; border-radius: 1px; }
.dash-stage-eye { font-size: 11px; color: #888; font-weight: 500; }
.dash-stage-name { font-size: 14px; font-weight: 500; color: #c8c8c8; margin-top: 6px; }
.dash-stage-day { font-size: 12px; color: #c8c8c8; margin-top: 4px; }

.prot-row {
  display: grid; grid-template-columns: 36px 1fr auto;
  column-gap: 20px; padding: 22px 0;
  border-top: 0.5px solid var(--line); align-items: start;
}
.prot-num { font-size: 11px; color: #888; padding-top: 4px; font-weight: 500; }
.prot-name {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.012em; color: #c8c8c8; margin-bottom: 6px;
}
.prot-summary {
  font-size: 13px; line-height: 1.55;
  color: #a8a8a8; max-width: 460px;
}
.prot-status {
  font-size: 11px; padding-top: 6px;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-weight: 500;
}
.prot-dot { width: 6px; height: 6px; border-radius: 50%; border: 0.5px solid currentColor; }
.prot-status--notyet { color: #555; }

.sig-row {
  display: grid; grid-template-columns: 90px 100px 1fr;
  column-gap: 18px; padding: 18px 0;
  border-top: 0.5px solid var(--line); align-items: start;
}
@media (max-width: 600px) { .sig-row { grid-template-columns: 1fr; gap: 4px; } }
.sig-time { font-size: 11px; color: #888; font-weight: 500; }
.sig-cat { font-size: 11px; color: #c8c8c8; font-weight: 500; }
.sig-body { font-size: 14px; line-height: 1.6; color: #c8c8c8; }
.sig-body strong { color: #c8c8c8; font-weight: 500; }

.dash-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 600px) { .dash-actions { grid-template-columns: 1fr; } }
.dash-action {
  border: 0.5px solid var(--line-mid); padding: 18px;
  text-align: left; background: rgba(255,255,255,0.012);
  transition: all 0.15s; font-family: inherit; color: inherit;
  border-radius: 1px;
}
.dash-action:hover { border-color: #c8c8c8; background: rgba(255,255,255,0.04); }
.dash-action-eye { font-size: 11px; color: #888; margin-bottom: 8px; font-weight: 500; }
.dash-action-name { font-size: 14px; font-weight: 500; color: #c8c8c8; }

.dash-foot {
  margin-top: 64px; padding-top: 20px;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 11px; color: #888; font-weight: 500;
}
.dash-foot button {
  background: none; border: 0; color: #a8a8a8;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  border-bottom: 0.5px solid var(--line-mid); padding: 0 0 1px;
  cursor: pointer;
}

/* DOWNLOADS */
.dl-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 24px;
}
@media (max-width: 700px) { .dl-grid { grid-template-columns: 1fr; } }
.dl-card {
  padding: 22px; border: 0.5px solid var(--line-mid);
  background: rgba(255,255,255,0.012);
  text-decoration: none; color: inherit;
  transition: all 0.15s; border-radius: 2px;
  display: block;
}
.dl-card:hover { border-color: #c8c8c8; background: rgba(255,255,255,0.025); }
.dl-card-eye { font-size: 11px; color: #888; margin-bottom: 8px; font-weight: 500; }
.dl-card-name {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.012em; color: #c8c8c8; margin-bottom: 6px;
}
.dl-card-desc {
  font-size: 13px; line-height: 1.55;
  color: #a8a8a8; margin-bottom: 12px;
}
.dl-card-meta { font-size: 11px; color: #c8c8c8; font-weight: 500; }

.notice {
  border-left: 1px solid var(--line-strong);
  padding: 14px 0 14px 18px; margin: 24px 0;
  font-size: 14px; line-height: 1.6; color: #a8a8a8;
}
.notice strong { color: #c8c8c8; font-weight: 500; }

.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 56px; }

/* =====================================================================
   DASHBOARD CSS
   ===================================================================== */

.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 0.5px solid var(--line);
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.dash-topbar-left { display: flex; align-items: center; gap: 12px; }
.dash-brand {
  display: flex; align-items: center; gap: 8px;
  color: #c8c8c8; font-size: 14px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.01em;
}
.dash-brand:hover { color: #fff; }
.dash-brand svg { color: #c8c8c8; }
.dash-topbar-sep { color: #555; font-size: 14px; }
.dash-topbar-page { color: #888; font-size: 13px; }
.dash-topbar-right { display: flex; align-items: center; gap: 14px; }
.dash-handle-mini {
  font-size: 12px; color: #c8c8c8; letter-spacing: 0.005em;
  padding: 4px 10px; border: 0.5px solid var(--line-mid); border-radius: 1px;
}
.dash-signout {
  background: transparent; border: 0.5px solid var(--line-mid);
  color: #c8c8c8; padding: 6px 14px; font-size: 12px; cursor: pointer;
  font-family: inherit; letter-spacing: 0.03em;
}
.dash-signout:hover { color: #fff; border-color: var(--line-strong); }

.dash-layout {
  display: grid; grid-template-columns: 240px 1fr;
  min-height: calc(100vh. 110px);
  max-width: 1320px; margin: 0 auto;
}
.dash-sidebar {
  border-right: 0.5px solid var(--line);
  padding: 32px 24px 24px;
  position: sticky; top: 56px; align-self: start;
  height: fit-content;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 12px; border: none; background: transparent;
  text-align: left; cursor: pointer; color: #888; width: 100%;
  font-family: inherit; font-size: 14px; letter-spacing: 0;
  border-radius: 1px;
  transition: color 120ms, background 120ms;
}
.dash-nav-item:hover { color: #c8c8c8; background: rgba(255,255,255,0.022); }
.dash-nav-item.active { color: #d4d4d4; background: rgba(255,255,255,0.04); }
.dash-nav-num {
  font-size: 10px; color: #555; letter-spacing: 0.005em;
  min-width: 18px;
}
.dash-nav-item.active .dash-nav-num { color: #888; }
.dash-nav-label { font-weight: 400; }

.dash-tier-card {
  margin-top: 32px;
  padding: 18px 16px;
  border: 0.5px solid var(--line);
  background: rgba(255,255,255,0.012);
}
.dash-tier-eye { font-size: 10px; color: #888; letter-spacing: 0.005em; margin-bottom: 6px; }
.dash-tier-name { font-size: 18px; color: #d4d4d4; font-weight: 500; letter-spacing: -0.015em; }
.dash-tier-stage { font-size: 12px; color: #888; margin-top: 4px; }
.dash-tier-link {
  display: inline-block; margin-top: 12px; font-size: 11px; color: #c8c8c8;
  border-bottom: 0.5px solid var(--line-mid); padding-bottom: 1px;
  text-decoration: none; letter-spacing: 0.02em;
}
.dash-tier-link:hover { color: #d4d4d4; border-color: var(--line-strong); }

.dash-main {
  padding: 40px 56px 64px;
  min-width: 0;
}

.dash-section-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--line);
  position: relative;
}
.dash-section-eye {
  font-size: 10px; color: #888; letter-spacing: 0.005em; margin-bottom: 12px;
}
.dash-section-title {
  font-size: 30px; font-weight: 500; letter-spacing: -0.025em;
  color: #d4d4d4; line-height: 1.15; margin: 0 0 8px;
}
.dash-section-sub { font-size: 15px; color: #a8a8a8; line-height: 1.55; max-width: 64ch; }

.set-saved {
  position: absolute; top: 0; right: 0;
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--line-mid);
  padding: 6px 12px; font-size: 11px; color: #c8c8c8; letter-spacing: 0.02em;
  opacity: 0; transition: opacity 200ms;
  border-radius: 1px;
}
.set-saved.show { opacity: 1; }

.dash-stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 0.5px solid var(--line);
  margin-bottom: 32px;
}
.dash-stat {
  padding: 24px 22px; background: #000;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-stat-num { font-size: 28px; color: #d4d4d4; font-weight: 500; letter-spacing: -0.025em; }
.dash-stat-label { font-size: 11px; color: #888; letter-spacing: 0.005em; }

.dash-card {
  border: 0.5px solid var(--line);
  background: transparent;
  margin-bottom: 24px;
}
.dash-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 0.5px solid var(--line);
}
.dash-card-title { font-size: 14px; color: #c8c8c8; font-weight: 500; letter-spacing: 0; margin: 0; }
.dash-card-link {
  background: transparent; border: none; color: #888; font-size: 12px;
  cursor: pointer; font-family: inherit; letter-spacing: 0.02em;
}
.dash-card-link:hover { color: #c8c8c8; }

.dash-empty {
  padding: 32px 24px; color: #888; font-size: 13px; text-align: center;
  font-style: normal;
}

.dash-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.dash-action {
  padding: 20px 22px; background: #000; border: none; text-align: left;
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  text-decoration: none; color: inherit; font-family: inherit;
  transition: background 120ms;
}
.dash-action:hover { background: rgba(255,255,255,0.022); }
.dash-action-eye { font-size: 10px; color: #888; letter-spacing: 0.005em; }
.dash-action-name { font-size: 14px; color: #c8c8c8; font-weight: 500; }
.dash-action-detail { font-size: 12px; color: #888; line-height: 1.45; }

.sig-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.sig-pill {
  background: transparent; border: 0.5px solid var(--line);
  color: #888; padding: 6px 12px; font-size: 12px; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em;
  border-radius: 1px;
}
.sig-pill:hover { color: #c8c8c8; border-color: var(--line-mid); }
.sig-pill.active { color: #d4d4d4; border-color: var(--line-strong); background: rgba(255,255,255,0.022); }

.sig-card {
  border: 0.5px solid var(--line);
  padding: 18px 22px;
  margin-bottom: 12px;
  background: transparent;
}
.sig-card-meta { display: flex; gap: 12px; font-size: 11px; color: #888; margin-bottom: 8px; }
.sig-card-time { letter-spacing: 0.02em; }
.sig-card-cat {
  border: 0.5px solid var(--line-mid); padding: 1px 8px;
  border-radius: 1px; text-transform: capitalize;
}
.sig-card-sev { letter-spacing: 0.005em; font-size: 10px; }
.sig-sev-info .sig-card-sev { color: #888; }
.sig-sev-low .sig-card-sev { color: #c8c8c8; }
.sig-sev-medium .sig-card-sev { color: #c8c8c8; }
.sig-sev-high .sig-card-sev { color: #d4d4d4; }
.sig-sev-critical .sig-card-sev { color: #fff; }
.sig-card-title { font-size: 15px; color: #c8c8c8; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.005em; }
.sig-card-body { font-size: 13px; color: #a8a8a8; line-height: 1.55; }

.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 0.5px solid var(--line); }
.cov-card { padding: 24px 26px; background: #000; }
.cov-card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.cov-card-num {
  font-size: 11px; color: #888; letter-spacing: 0.005em;
  flex-shrink: 0; padding-top: 3px;
}
.cov-card-title { font-size: 16px; color: #c8c8c8; font-weight: 500; flex: 1; line-height: 1.3; }
.cov-status {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  letter-spacing: 0.02em; flex-shrink: 0;
}
.cov-status-active { color: #c8c8c8; }
.cov-status-pending { color: #888; }
.cov-status-locked { color: #555; }
.cov-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cov-desc { font-size: 13px; color: #a8a8a8; line-height: 1.55; margin: 0 0 14px; }
.cov-list { list-style: none; padding: 0; margin: 0; font-size: 12px; color: #888; }
.cov-list li { padding: 4px 0 4px 14px; position: relative; line-height: 1.5; }
.cov-list li::before { content: '.'; position: absolute; left: 4px; color: #555; font-weight: 700; }

.set-group {
  border: 0.5px solid var(--line);
  margin-bottom: 28px;
  background: transparent;
}
.set-group-head { padding: 22px 28px; border-bottom: 0.5px solid var(--line); }
.set-group-eye {
  font-size: 10px; color: #888; letter-spacing: 0.005em; margin-bottom: 8px;
}
.set-group-title { font-size: 18px; color: #c8c8c8; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 6px; }
.set-group-desc { font-size: 13px; color: #a8a8a8; line-height: 1.55; max-width: 64ch; margin: 0; }

.set-rows { display: flex; flex-direction: column; }
.set-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 24px;
  padding: 18px 28px;
  border-bottom: 0.5px solid var(--line);
}
.set-row:last-child { border-bottom: none; }
.set-row-meta { min-width: 0; }
.set-row-name { font-size: 14px; color: #c8c8c8; font-weight: 500; margin-bottom: 4px; }
.set-row-desc { font-size: 12px; color: #888; line-height: 1.5; }
.set-row-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.set-na { font-size: 11px; color: #555; letter-spacing: 0.02em; }

.set-toggle { position: relative; display: inline-block; width: 36px; height: 20px; cursor: pointer; }
.set-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.set-toggle-track {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--line-mid);
  border-radius: 12px;
  transition: background 160ms, border-color 160ms;
}
.set-toggle-track::before {
  content: ''; position: absolute;
  left: 2px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background: #888;
  border-radius: 50%;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), background 200ms;
}
.set-toggle input:checked ~ .set-toggle-track {
  background: rgba(240, 240, 240, 0.08);
  border-color: var(--line-strong);
}
.set-toggle input:checked ~ .set-toggle-track::before {
  background: #d4d4d4;
  transform: translateY(-50%) translateX(16px);
}
.set-toggle-locked { cursor: not-allowed; opacity: 0.6; }

.set-select {
  background: transparent;
  border: 0.5px solid var(--line-mid);
  color: #c8c8c8;
  padding: 6px 24px 6px 10px;
  font-size: 12px; font-family: inherit;
  -webkit-appearance: none; appearance: none;
  border-radius: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.set-select:hover { color: #c8c8c8; border-color: var(--line-strong); }
.set-select-wide { min-width: 220px; padding-right: 30px; }

.set-time, .set-input {
  background: transparent;
  border: 0.5px solid var(--line-mid);
  color: #c8c8c8;
  padding: 6px 10px;
  font-size: 12px; font-family: inherit;
  border-radius: 1px;
  letter-spacing: 0.02em;
}
.set-input { min-width: 240px; }
.set-time { min-width: 100px; color-scheme: dark; }
.set-time:hover, .set-input:hover { border-color: var(--line-strong); color: #c8c8c8; }
.set-time:focus, .set-input:focus { outline: none; border-color: #c8c8c8; color: #d4d4d4; }
.set-sep { color: #555; font-size: 12px; }

.set-empty {
  padding: 32px 28px; color: #888; font-size: 13px;
  font-style: normal; text-align: center;
}

.dash-add-btn {
  background: transparent; border: 0.5px solid var(--line-mid);
  color: #c8c8c8; padding: 8px 14px; font-size: 12px; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em; border-radius: 1px;
}
.dash-add-btn:hover { color: #d4d4d4; border-color: var(--line-strong); }

.sub-card {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px;
  padding: 24px 28px;
  border-bottom: 0.5px solid var(--line);
}
.sub-current-eye { font-size: 10px; color: #888; letter-spacing: 0.005em; margin-bottom: 4px; }
.sub-current-name { font-size: 22px; color: #d4d4d4; font-weight: 500; letter-spacing: -0.015em; }
.sub-current-price { font-size: 13px; color: #c8c8c8; margin-top: 4px; }
.sub-current-renew { font-size: 11px; color: #888; margin-top: 6px; }
.sub-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.dash-action-btn {
  background: transparent; border: 0.5px solid var(--line-mid);
  color: #c8c8c8; padding: 7px 14px; font-size: 12px; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em; border-radius: 1px;
  white-space: nowrap;
}
.dash-action-btn:hover { color: #d4d4d4; border-color: var(--line-strong); }
.dash-action-btn-warn { color: #888; border-color: var(--line); }
.dash-action-btn-warn:hover { color: #c8c8c8; }

.act-row {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 24px; padding: 16px 0;
  border-bottom: 0.5px solid var(--line);
}
.act-row:last-child { border-bottom: none; }
.act-time { font-size: 12px; color: #888; letter-spacing: 0.02em; padding-top: 2px; }
.act-actor { font-size: 11px; color: #c8c8c8; letter-spacing: 0.005em; margin-bottom: 4px; }
.act-action { font-size: 13px; color: #c8c8c8; line-height: 1.55; }

.dash-footer {
  display: flex; flex-direction: column; gap: 4px;
  padding: 24px 56px;
  border-top: 0.5px solid var(--line);
  font-size: 11px; color: #555;
  max-width: 1320px; margin: 0 auto;
}

.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
}
.modal-card {
  background: #000;
  border: 0.5px solid var(--line-strong);
  padding: 32px 36px;
  max-width: 460px; width: 92%;
}

@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar {
    border-right: none; border-bottom: 0.5px solid var(--line);
    position: static; padding: 16px;
  }
  .dash-nav { flex-direction: row; overflow-x: auto; gap: 4px; }
  .dash-nav-item { flex-shrink: 0; padding: 8px 12px; }
  .dash-tier-card { display: none; }
  .dash-main { padding: 24px 18px 48px; }
  .dash-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-actions { grid-template-columns: 1fr; }
  .cov-grid { grid-template-columns: 1fr; }
  .set-row { grid-template-columns: 1fr; align-items: flex-start; }
  .set-row-controls { flex-wrap: wrap; }
  .sub-card { grid-template-columns: 1fr; }
  .dash-topbar { padding: 12px 18px; }
  .dash-topbar-page { display: none; }
  .dash-footer { padding: 18px; }
  .act-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =====================================================================
   END DASHBOARD CSS
   ===================================================================== */

/* =====================================================================
   CONTENT PAGES , security, due-diligence, strategies, resources
   Hero, principle cards, rules, anti-cards, step flow
   ===================================================================== */

.content-hero { padding: 28px 0 20px; margin-bottom: 24px; border-bottom: 0.5px solid var(--line); }
.content-eye {
  font-size: 12px; color: #888; letter-spacing: 0.005em; 
  margin-bottom: 18px; font-weight: 500;
}
.content-title {
  font-size: clamp(28px, 4.4vw, 38px); font-weight: 500;
  letter-spacing: -0.030em; line-height: 1.10;
  color: #e0e0e0; margin: 0 0 16px;
  max-width: 22ch;
}
.content-sub {
  font-size: 16px; line-height: 1.6;
  color: #c8c8c8; margin: 0; max-width: 64ch;
  letter-spacing: -0.005em;
}

.content-section { margin-bottom: 36px; }
.content-h2 {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.2;
  color: #c8c8c8; margin: 0 0 16px;
}
.content-p {
  font-size: 14.5px; line-height: 1.7;
  color: #c8c8c8; margin-bottom: 14px;
  max-width: 70ch;
}
.content-link-btn {
  display: inline-block; padding: 11px 20px;
  border: 0.5px solid rgba(255,255,255,0.34);
  color: #c8c8c8; font-size: 13px; font-weight: 500;
  background: transparent;
  letter-spacing: -0.003em; transition: all 0.15s;
  text-decoration: none; border-radius: 1px;
}
.content-link-btn:hover { background: #d4d4d4; color: #000; border-color: #d4d4d4; }

/* PRINCIPLE GRID (security page) */
.principles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 0.5px solid var(--line);
}
@media (max-width: 800px) { .principles-grid { grid-template-columns: 1fr; } }
.principle-card {
  background: #000; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.principle-card-icon {
  width: 36px; height: 36px;
  border: 0.5px solid var(--line-mid);
  display: flex; align-items: center; justify-content: center;
  color: #c8c8c8; flex-shrink: 0;
  border-radius: 1px; background: rgba(255,255,255,0.012);
}
.principle-card-name {
  font-size: 17px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.015em;
}
.principle-card-desc { font-size: 13px; line-height: 1.6; color: #a8a8a8; }

/* RULE STACK (operational rules) */
.rule-stack { margin-top: 20px; max-width: 920px; }
.rule-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
  align-items: start;
}
.rule-row:first-child { border-top: none; padding-top: 8px; }
@media (max-width: 700px) {
  .rule-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}
@media (max-width: 800px) {
  .rule-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 4px; }
}
.rule-row-label {
  font-size: 13px; color: #d4d4d4;
  font-weight: 500; letter-spacing: -0.005em; padding-top: 2px;
}
.rule-row-body {
  font-size: 14px; color: #a8a8a8;
  line-height: 1.62; letter-spacing: -0.003em;
}

/* ANTI-CARDS (what we do not) */
.anti-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 22px;
}
@media (max-width: 700px) { .anti-grid { grid-template-columns: 1fr; } }
.anti-card {
  display: flex; gap: 14px;
  padding: 18px 18px;
  border: 0.5px solid var(--line);
  background: transparent;
  border-radius: 1px;
}
.anti-card-x {
  font-size: 16px; color: #888; flex-shrink: 0;
  font-weight: 400; line-height: 1.4;
}
.anti-card-text { font-size: 13px; line-height: 1.6; color: #a8a8a8; }

/* DD TABLE (due diligence) */
.dd-table {
  margin-top: 22px;
  border: 0.5px solid var(--line);
  background: transparent;
}
.dd-row {
  display: grid; grid-template-columns: 180px 1fr 1fr;
  gap: 24px; padding: 16px 22px;
  border-bottom: 0.5px solid var(--line);
  font-size: 13px; line-height: 1.55; color: #c8c8c8;
}
.dd-row:last-child { border-bottom: none; }
.dd-row-head {
  background: transparent;
  font-size: 11px; color: #888; letter-spacing: 0.005em;
  font-weight: 500;
}
.dd-row-label {
  font-size: 12.5px; color: #c8c8c8; font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 800px) {
  .dd-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .dd-row-head { display: none; }
  .dd-row-label { color: #888; font-size: 11px; letter-spacing: 0.005em; }
}

/* STRATEGY GRID (strategies page) */
.strategy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 0.5px solid var(--line);
}
@media (max-width: 1000px) { .strategy-grid { grid-template-columns: 1fr; } }
.strategy-card {
  background: #000; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.strategy-card-num {
  font-size: 11px; color: #888; letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.strategy-card-title {
  font-size: 19px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.018em; margin: 0;
}
.strategy-card-method {
  font-size: 13px; line-height: 1.65;
  color: #a8a8a8; margin: 0;
}
.strategy-card-output {
  font-size: 12px; line-height: 1.55;
  color: #888; margin: 0; padding-top: 14px;
  border-top: 0.5px solid var(--line);
  font-style: normal;
}

/* STEP FLOW (signal to brief) */
.step-flow {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 22px;
}
.step-flow-card {
  padding: 22px 24px;
  border: 0.5px solid var(--line);
  background: transparent;
  border-radius: 1px;
}
{
  font-size: 10.5px; color: #888; letter-spacing: 0.005em; 
  margin-bottom: 8px;
}
.step-flow-name {
  font-size: 16px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.step-flow-desc {
  font-size: 13px; line-height: 1.65; color: #a8a8a8; margin: 0;
}
.step-flow-arrow { display: none; }

/* RES GRID (resources page) */
.res-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 0.5px solid var(--line);
}
@media (max-width: 900px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  background: #000; padding: 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.res-card:hover { background: transparent; }
.res-card-eye {
  font-size: 10.5px; color: #888; letter-spacing: 0.005em; margin-bottom: 4px;
}
.res-card-name {
  font-size: 17px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.2;
}
.res-card-desc {
  font-size: 12.5px; line-height: 1.6; color: #a8a8a8;
  margin-bottom: 4px; flex-grow: 1;
}
.res-card-meta {
  font-size: 11.5px; color: #c8c8c8; margin-top: 8px;
  letter-spacing: 0.01em;
}

/* HOME CAPABILITY GRID */
.cap-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 0.5px solid var(--line);
}
@media (max-width: 800px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  padding: 30px 28px; background: #000;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.15s;
}
.cap-card:hover {
  background: transparent;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.32);
}
.cap-card-eye {
  font-size: 11.5px; color: #888; letter-spacing: 0.005em;
  margin-bottom: 4px;
}
.cap-card-name {
  font-size: 22px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.022em; line-height: 1.15;
  margin: 0;
}
.cap-card-desc { font-size: 14px; line-height: 1.6; color: #a8a8a8; margin: 4px 0 0; }

/* HOME REASON CARDS (replace .art-section 01/02/03) */
.reason-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 0.5px solid var(--line);
}
@media (max-width: 900px) { .reason-grid { grid-template-columns: 1fr; } }
.reason-card {
  padding: 26px 24px; background: #000;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 0;
}
.reason-card:not(.reason-grid .reason-card) {
  border: 0.5px solid var(--line);
  margin-bottom: 12px;
}
.reason-card-icon {
  width: 36px; height: 36px;
  border: 0.5px solid var(--line-mid);
  display: flex; align-items: center; justify-content: center;
  color: #c8c8c8; flex-shrink: 0;
  border-radius: 1px; background: rgba(255,255,255,0.012);
}
.reason-card-body {}
.reason-card-title {
  font-size: 17px; color: #d4d4d4; font-weight: 500;
  letter-spacing: -0.015em; margin: 0 0 8px; line-height: 1.25;
}
.reason-card-desc { font-size: 13.5px; line-height: 1.65; color: #a8a8a8; margin: 0; }

/* RICHER CIRCLE DIAGRAM */
.circle-diagram {
  margin: 32px auto;
  max-width: 540px;
}

/* =============== HOME =============== */
.k-hero--home {
  max-width: 980px; padding: 110px 0 56px;
}
.home-h {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08; font-weight: 500;
  letter-spacing: -0.028em; color: #c8c8c8;
  margin: 0 0 28px;
}
.home-tag {
  font-size: 17px; line-height: 1.55;
  color: #a8a8a8; margin: 0 0 38px;
  max-width: 640px; font-weight: 400;
  letter-spacing: -0.005em;
}

/* === Home jurisdictions section === */
.home-section {
  padding: 72px 0 80px;
  max-width: 1080px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  margin-top: 24px;
}
@media (max-width: 700px) {
  .home-section { padding: 48px 0 56px; margin-top: 8px; }
}
.home-section-head {
  margin-bottom: 36px;
  max-width: 720px;
}
.home-section-eye {
  font-size: 11px; color: #888;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 400;
}
.home-section-title {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.18; font-weight: 500;
  letter-spacing: -0.020em; color: #c8c8c8;
  margin: 0 0 14px;
}
.home-section-sub {
  font-size: 15.5px; line-height: 1.6;
  color: #a8a8a8; margin: 0;
  letter-spacing: -0.005em;
}
@media (max-width: 700px) {
  .home-section-sub { font-size: 14.5px; }
}
.home-section-foot {
  font-size: 13px; color: #757575;
  margin: 32px 0 0; letter-spacing: -0.003em;
  font-style: italic;
}

.home-juris-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  border-left: 0.5px solid rgba(255,255,255,0.08);
}
@media (max-width: 1000px) {
  .home-juris-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .home-juris-grid { grid-template-columns: repeat(2, 1fr); }
}
.home-juris {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
@media (max-width: 640px) {
  .home-juris { padding: 16px 14px; gap: 10px; }
}
.home-juris:hover { background: rgba(255,255,255,0.020); }
.home-juris-flag {
  font-size: 24px; line-height: 1; flex-shrink: 0;
  filter: saturate(0.85);
}
@media (max-width: 640px) {
  .home-juris-flag { font-size: 22px; }
}
.home-juris-name {
  font-size: 13px; color: #c8c8c8;
  letter-spacing: -0.005em; line-height: 1.25;
  flex: 1;
}
@media (max-width: 640px) {
  .home-juris-name { font-size: 12.5px; }
}
.home-juris-code {
  font-size: 10.5px; color: #6a6a6a;
  letter-spacing: 0.05em; font-weight: 400;
  font-variant: tabular-nums;
}

/* Prose sections with eyebrow and body, two-column on wide */
.home-prose {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  padding: 48px 0;
  max-width: 1000px;
}
.home-prose + .home-prose { border-top: 0.5px solid rgba(255,255,255,0.06); }
@media (max-width: 800px) {
  .home-prose { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
}
.home-prose-eye {
  font-size: 12px; color: #888; font-weight: 400;
  letter-spacing: -0.003em; padding-top: 4px;
}
.home-prose-body {
  max-width: 680px;
}
.home-prose-body p {
  font-size: 16px; line-height: 1.65; color: #c8c8c8;
  margin: 0 0 18px; letter-spacing: -0.005em;
}
.home-prose-body p:last-child { margin-bottom: 0; }
.home-prose-body strong { color: #c8c8c8; font-weight: 500; }
.home-prose-actions {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  margin-top: 22px;
}
.home-prose-link {
  background: transparent; border: none;
  color: #c8c8c8; font-size: 14px; font-family: inherit; font-weight: 400;
  border-bottom: 0.5px solid rgba(255,255,255,0.30);
  padding: 0 0 2px; cursor: pointer;
  letter-spacing: -0.003em;
  transition: border-color 0.15s;
}
.home-prose-link:hover { border-bottom-color: rgba(255,255,255,0.7); }
.home-prose-link-quiet {
  font-size: 14px; color: #888;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  letter-spacing: -0.003em;
}
.home-prose-link-quiet:hover {
  color: #c8c8c8; border-bottom-color: rgba(255,255,255,0.4);
}

/* Home divider, quiet hairline rule for visual rhythm */
.home-divider {
  height: 0.5px;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.20) 16%,
    rgba(255,255,255,0.20) 84%,
    rgba(255,255,255,0) 100%);
  margin: 16px 0 0;
  max-width: 1000px;
}

/* Home figures, interactive hairline cells, clickable, centered */
.home-figures {
  padding: 48px 0 24px;
  max-width: 1000px;
}
.home-figures-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(168,196,206,0.18);
  border-bottom: 0.5px solid rgba(168,196,206,0.18);
}
@media (max-width: 820px) {
  .home-figures-row { grid-template-columns: repeat(2, 1fr); }
}
.home-figure {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 8px;
  padding: 28px 22px;
  text-decoration: none;
  color: inherit;
  border-right: 0.5px solid rgba(168,196,206,0.10);
  position: relative;
  transition: background 0.22s, transform 0.22s;
  min-height: 124px;
}
.home-figure:last-child { border-right: none; }
@media (max-width: 820px) {
  .home-figure:nth-child(2n) { border-right: none; }
  .home-figure:nth-child(1), .home-figure:nth-child(2) {
    border-bottom: 0.5px solid rgba(168,196,206,0.10);
  }
}
.home-figure::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, #a8a8a8 0%, transparent 100%);
  transition: width 0.32s ease;
}
.home-figure:hover, .home-figure:focus-visible {
  background: rgba(168,196,206,0.025);
  outline: none;
}
.home-figure:hover::after, .home-figure:focus-visible::after {
  width: 100%;
}
.home-figure:hover .home-figure-arrow,
.home-figure:focus-visible .home-figure-arrow {
  opacity: 1; transform: translateX(0);
}
.home-figure-num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500; color: #d4d4d4;
  letter-spacing: -0.028em; line-height: 1;
  font-feature-settings: 'tnum' 1;
}
.home-figure-label {
  font-size: 12px; color: #9c9c9c;
  letter-spacing: -0.003em;
  font-weight: 400;
  line-height: 1.35;
}
.home-figure-arrow {
  position: absolute; top: 22px; right: 22px;
  font-size: 13px; color: #a8a8a8;
  opacity: 0; transform: translateX(-3px);
  transition: opacity 0.22s, transform 0.22s;
}

/* Legacy home-stats kept hidden in case any old refs exist */
.home-stats { display: none; }
.home-stat-num, .home-stat-label { display: none; }

/* Quiet bottom line */
.home-quiet {
  margin: 72px 0 100px; padding: 28px 0 0;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap;
  max-width: 1000px;
}
.home-quiet p {
  font-size: 14px; color: #888; margin: 0;
  line-height: 1.55; max-width: 480px;
  letter-spacing: -0.003em;
}
.home-quiet-link {
  font-size: 13px; color: #c8c8c8;
  border-bottom: 0.5px solid rgba(255,255,255,0.30);
  padding-bottom: 2px;
  letter-spacing: -0.003em;
}
.home-quiet-link:hover { border-bottom-color: rgba(255,255,255,0.7); }

/* (legacy block classes kept as no-ops for any older pages) */
.home-line { display: none; }
.home-block { display: none; }
.home-link-btn {
  background: transparent; border: none;
  color: #c8c8c8; font-size: inherit; font-family: inherit;
  border-bottom: 0.5px solid rgba(255,255,255,0.25);
  padding: 0 0 1px; cursor: pointer;
  letter-spacing: -0.005em;
  transition: border-color 0.15s;
}
.home-link-btn:hover { border-bottom-color: rgba(255,255,255,0.6); }

/* Home content blocks (text-only, no boxes) */
.home-block {
  padding: 56px 0 0;
  max-width: 720px;
}
.home-block-eye {
  font-size: 11.5px; color: #888; letter-spacing: 0.005em;
  margin-bottom: 12px; font-weight: 400;
}
.home-block-h {
  font-size: 22px; line-height: 1.25; font-weight: 400;
  letter-spacing: -0.012em; color: #c8c8c8;
  margin: 0 0 18px;
}
.home-block-p {
  font-size: 15px; line-height: 1.7; color: #a8a8a8;
  margin: 0 0 16px; max-width: 660px;
}
.home-block-p a {
  color: #c8c8c8; border-bottom: 0.5px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
}
.home-block-p a:hover { border-bottom-color: rgba(255,255,255,0.6); }
.home-block-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.home-block-list li {
  font-size: 14px; color: #a8a8a8; line-height: 1.55;
  padding-left: 22px; position: relative;
}
.home-block-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 12px; height: 0.5px; background: rgba(255,255,255,0.32);
}
.home-block-list li strong { color: #c8c8c8; font-weight: 500; margin-right: 6px; }
.home-link-btn {
  background: transparent; border: none;
  color: #c8c8c8; font-size: inherit; font-family: inherit;
  border-bottom: 0.5px solid rgba(255,255,255,0.25);
  padding: 0 0 1px; cursor: pointer;
  letter-spacing: -0.005em;
  transition: border-color 0.15s;
}
.home-link-btn:hover { border-bottom-color: rgba(255,255,255,0.6); }

/* =============== TIER PREVIEW (subscriptions page card) =============== */
.k-tier-preview {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  padding-top: 16px;
}
.k-tier-preview li {
  font-size: 12.5px; color: #a8a8a8; line-height: 1.5;
  padding-left: 14px; position: relative;
}
.k-tier-preview li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 0.5px; background: rgba(255,255,255,0.32);
}
.k-tier-actions {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.k-tier-detail-btn {
  display: block; width: 100%;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.20);
  color: #c8c8c8;
  font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.005em;
  padding: 11px 16px; border-radius: 1px;
  cursor: pointer; transition: all 0.15s;
}
.k-tier-detail-btn:hover {
  border-color: rgba(255,255,255,0.45);
  color: #c8c8c8;
}
.k-tier-cta {
  display: block; width: 100%;
  border: 0.5px solid rgba(255,255,255,0.40);
  color: #c8c8c8; font-size: 13px;
  padding: 12px 16px; border-radius: 1px;
  text-align: center; transition: all 0.15s;
  letter-spacing: 0.005em;
  background: transparent;
}
.k-tier-cta:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* k-tier-eye explicit styling (no caps) */
.k-tier-eye {
  font-size: 11.5px; color: #888;
  letter-spacing: 0.005em; font-weight: 400;
  margin-bottom: 8px;
}

/* =============== PER-TIER DETAIL MODAL =============== */
.modal-panel--tier { max-width: 760px; }
.tdm-price-block {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0 22px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.tdm-price {
  font-size: 28px; font-weight: 400; color: #c8c8c8;
  letter-spacing: -0.018em;
}
.tdm-price span { font-size: 13px; color: #888; font-weight: 400; }
.tdm-price-sub {
  font-size: 12.5px; color: #888;
}
.tdm-groups {
  display: flex; flex-direction: column; gap: 26px;
  margin-bottom: 26px;
}
.tdm-group-title {
  font-size: 11.5px; color: #888; letter-spacing: 0.005em;
  margin-bottom: 12px; font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.tdm-group-body {
  display: flex; flex-direction: column; gap: 14px;
}
.tdm-feat-name {
  font-size: 14px; font-weight: 500; color: #c8c8c8;
  letter-spacing: -0.005em; margin-bottom: 4px;
}
.tdm-feat-desc {
  font-size: 13px; color: #a8a8a8; line-height: 1.6;
}

/* =============== SUBSCRIPTIONS MODAL =============== */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 24px;
  overflow-y: auto;
}
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  background: #000000;
  border: 0.5px solid rgba(255,255,255,0.08);
  max-width: 760px; width: 92%;
  max-height: 88vh; overflow-y: auto;
  padding: 32px 28px 28px;
  border-radius: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a transparent;
}
.modal-panel::-webkit-scrollbar { width: 6px; }
.modal-panel::-webkit-scrollbar-track { background: transparent; }
.modal-panel::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
@media (max-width: 600px) {
  .modal-panel { padding: 24px 20px 20px; width: 94%; max-height: 92vh; }
}
.modal-tier:focus, .modal-tier:focus-visible { outline: none; }
@media (max-width: 600px) {
  .modal { padding: 24px 12px; }
  .modal-panel { padding: 28px 22px 24px; }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: transparent; border: none;
  color: #888; font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  outline: none;
}
.modal-close:focus, .modal-close:focus-visible { outline: none; box-shadow: none; }
.modal-close:hover { color: #ffffff; }
.modal-eye {
  font-size: 11px; color: #888; letter-spacing: 0.005em;
  margin-bottom: 10px;
}
.modal-title {
  font-size: 24px; font-weight: 400; line-height: 1.25;
  letter-spacing: -0.015em; color: #c8c8c8;
  margin: 0 0 10px;
}
.modal-sub {
  font-size: 13.5px; color: #888; line-height: 1.6;
  margin: 0 0 28px;
}
.modal-tiers {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 28px;
}
@media (max-width: 600px) {
  .modal-tiers { grid-template-columns: 1fr; }
}
.modal-tier {
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 18px 20px; border-radius: 2px;
}
.modal-tier--once { border-style: dashed; }
.modal-tier-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 8px;
}
.modal-tier-name {
  font-size: 17px; font-weight: 500; color: #c8c8c8;
  margin: 0; letter-spacing: -0.01em;
}
.modal-tier-price {
  font-size: 17px; font-weight: 500; color: #c8c8c8;
  letter-spacing: -0.012em;
}
.modal-tier-price span {
  font-size: 11.5px; color: #888;
  font-weight: 400; margin-left: 2px;
}
.modal-tier-tag {
  font-size: 12.5px; color: #a8a8a8; line-height: 1.5;
  margin: 0 0 12px;
}
.modal-tier-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.modal-tier-list li {
  font-size: 12px; color: #888; line-height: 1.5;
  padding-left: 14px; position: relative;
}
.modal-tier-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 0.5px; background: rgba(255,255,255,0.35);
}
.modal-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding-top: 22px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.modal-link {
  font-size: 13px; color: #c8c8c8;
  border-bottom: 0.5px solid rgba(255,255,255,0.20);
  padding-bottom: 1px;
}
.modal-link:hover { color: #c8c8c8; border-bottom-color: rgba(255,255,255,0.5); }
.modal-cta {
  display: inline-block; font-size: 13px; color: #c8c8c8;
  padding: 11px 22px; border: 0.5px solid rgba(255,255,255,0.45);
  border-radius: 1px;
  transition: all 0.15s;
  letter-spacing: 0.005em;
  min-width: 160px; text-align: center;
}
.modal-cta:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* =============== COOKIE BANNER =============== */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px;
  z-index: 150;
  max-width: 380px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 16px 18px 14px;
}
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}
.cookie-text {
  font-size: 12px; color: #a8a8a8;
  margin: 0; line-height: 1.5;
}
.cookie-actions { display: flex; gap: 12px; align-items: center; }
.cookie-btn {
  font-size: 12px; padding: 7px 14px;
  border-radius: 1px; cursor: pointer;
  letter-spacing: 0.005em; font-weight: 400;
  transition: all 0.12s;
  background: transparent; color: #c8c8c8;
  border: 0.5px solid rgba(255,255,255,0.30);
}
.cookie-btn-accept:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cookie-btn-link {
  border: none !important; padding: 8px 4px !important;
  color: #888 !important;
}
.cookie-btn-link:hover { color: #c8c8c8 !important; }

/* HOW IT WORKS DIAGRAM */
.how-diagram {
  margin: 36px 0 12px;
  max-width: 760px;
}
.how-diagram svg {
  width: 100%; height: auto; display: block;
  border: 0.5px solid var(--line);
  border-radius: 2px;
  background: transparent;
}

.k-section-tight { padding: 32px 0 16px; }

