:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0a;
  --fg: #0a0a0a;
  --fg-dim: #525252;
  --fg-mute: #a3a3a3;
  --line: #ececec;
  --line-soft: #f4f4f4;
  --accent: #4f46e5;
  --accent-2: #818cf8;
  --accent-soft: rgba(79, 70, 229, 0.06);
  --grad-1: #c7d2fe;
  --grad-2: #fbcfe8;
  --grad-3: #fde68a;
  --grad-4: #a5f3fc;
  --shadow-xs: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-sm: 0 1px 3px rgba(10,10,10,0.05), 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 4px 12px rgba(10,10,10,0.06), 0 2px 4px rgba(10,10,10,0.04);
  --shadow-lg: 0 12px 32px rgba(10,10,10,0.08), 0 4px 12px rgba(10,10,10,0.05);
  --shadow-xl: 0 24px 64px rgba(10,10,10,0.10), 0 8px 24px rgba(10,10,10,0.06);
  --max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.011em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.logo-i { position: relative; display: inline-block; }
.logo-i::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--fg-dim); transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--fg); }
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  background: var(--fg);
  color: #ffffff;
  border-radius: 999px;
  transition: all .2s ease;
}
.nav-cta:hover { background: #1f1f1f; transform: translateY(-1px); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero.compact { min-height: auto; padding: 160px 0 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform, opacity;
  transition: opacity 0.6s ease;
}
.blob-1 { width: 600px; height: 600px; background: var(--grad-1); top: -120px; left: -100px; opacity: 0.7; animation: glow1 7s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: var(--grad-2); top: 10%; right: -80px; opacity: 0.65; animation: glow2 9s ease-in-out infinite; }
.blob-3 { width: 420px; height: 420px; background: var(--grad-4); bottom: -100px; left: 30%; opacity: 0.7; animation: glow3 6s ease-in-out infinite; }
.blob-4 { width: 380px; height: 380px; background: var(--grad-3); top: 40%; left: 45%; opacity: 0.45; animation: glow4 8s ease-in-out infinite; }
@keyframes glow1 { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.85; } }
@keyframes glow2 { 0%, 100% { opacity: 0.40; } 50% { opacity: 0.80; } }
@keyframes glow3 { 0%, 100% { opacity: 0.50; } 50% { opacity: 0.85; } }
@keyframes glow4 { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.65; } }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; }
.hero-content.left { text-align: left; margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px 6px 12px;
  color: var(--fg-dim);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
h1.hero-title {
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  color: var(--fg);
}
h1.hero-title.compact { font-size: clamp(40px, 6vw, 76px); margin-bottom: 24px; }
.hero-title .accent {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg-dim);
  max-width: 62ch;
  margin: 0 auto 16px;
  line-height: 1.55;
  font-weight: 400;
}
.hero-content.left .hero-sub { margin-left: 0; margin-right: 0; }
.hero-sub-emph {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg);
  max-width: 62ch;
  margin: 0 auto 44px;
  line-height: 1.55;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-content.left .hero-actions { justify-content: flex-start; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--fg); color: #ffffff; box-shadow: 0 1px 2px rgba(10,10,10,0.08); }
.btn-primary:hover { background: #1f1f1f; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,10,10,0.18); }
.btn-secondary { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-color: var(--line); color: var(--fg); }
.btn-secondary:hover { background: #ffffff; border-color: var(--fg-mute); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.hero-meta {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-meta-item .label { font-size: 12px; color: var(--fg-mute); margin-bottom: 6px; font-weight: 500; }
.hero-meta-item .value { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; color: var(--fg); }
@media (max-width: 768px) { .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; } }

/* === BREADCRUMB === */
.breadcrumb { font-size: 13px; color: var(--fg-mute); margin-bottom: 24px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--fg-mute); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--fg-dim); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb [aria-current="page"] { color: var(--fg); }

/* === SECTION BASE === */
section { padding: 100px 0; position: relative; }
.section-header { margin-bottom: 56px; max-width: 760px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--fg);
}
.section-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--fg-dim);
  max-width: 62ch;
  line-height: 1.6;
}

/* === MARKET / STAT GRID === */
.market { background: var(--bg-soft); border-top: 1px solid var(--line); }
.market-quote { font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.15; max-width: 24ch; margin-bottom: 48px; color: var(--fg); }
.market-quote .accent { background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.market-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.market-stat { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: all .3s ease; }
.market-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.market-stat .num { font-size: 32px; font-weight: 600; letter-spacing: -0.035em; color: var(--fg); margin-bottom: 8px; }
.market-stat .lab { font-size: 13px; color: var(--fg-dim); line-height: 1.45; }
@media (max-width: 768px) { .market-stats { grid-template-columns: repeat(2, 1fr); } }

/* === PROBLEM === */
.problem { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.problem-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: all .3s ease; }
.problem-card:hover { background: #ffffff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.problem-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--fg); color: #ffffff; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.problem-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 8px; letter-spacing: -0.015em; }
.problem-text { font-size: 13px; color: var(--fg-dim); line-height: 1.55; }
@media (max-width: 1100px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }

/* === PHASES === */
.phases { background: var(--bg-soft); border-top: 1px solid var(--line); }
.phase-list { display: flex; flex-direction: column; gap: 20px; }
.phase { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 40px; display: grid; grid-template-columns: 100px 1fr 1fr; gap: 40px; transition: all .3s ease; }
.phase:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.phase-num strong { display: block; font-size: 48px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.phase-num span { font-size: 11px; font-weight: 500; color: var(--fg-mute); letter-spacing: 0.06em; text-transform: uppercase; }
.phase-name { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 12px; }
.phase-name a { color: var(--fg); }
.phase-name a:hover { color: var(--accent); }
.phase-desc { font-size: 15px; color: var(--fg-dim); line-height: 1.6; margin-bottom: 20px; }
.phase-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.phase-meta span { font-size: 12px; font-weight: 500; color: var(--fg-dim); background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line); }
.phase-services { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.phase-services li { font-size: 14px; color: var(--fg-dim); padding-left: 24px; position: relative; line-height: 1.5; }
.phase-services li::before { content: ''; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: contain; background-repeat: no-repeat; }
@media (max-width: 900px) { .phase { grid-template-columns: 1fr; gap: 20px; padding: 28px; } .phase-num strong { font-size: 36px; } }

/* === COMPARE === */
.compare-section { background: var(--bg); border-top: 1px solid var(--line); }
.compare { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare > div { padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5; }
.compare > div:nth-child(5n) { border-right: none; }
.compare-head { font-size: 12px; font-weight: 600; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-soft); }
.compare-row-label { font-weight: 600; color: var(--fg); background: var(--bg-soft); }
.compare-cell { color: var(--fg-dim); }
.compare-cell.us { color: var(--accent); font-weight: 600; background: rgba(79, 70, 229, 0.04); }
@media (max-width: 1100px) { .compare { display: block; border: none; border-radius: 0; box-shadow: none; background: transparent; } .compare > div { border: 1px solid var(--line); margin-bottom: -1px; background: #ffffff; } .compare-head:not(:first-child) { display: none; } .compare-row-label { background: var(--bg-soft); margin-top: 16px; border-radius: var(--radius-md) var(--radius-md) 0 0; } }

/* === REASONS === */
.reasons { background: var(--bg-soft); border-top: 1px solid var(--line); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 36px; transition: all .3s ease; position: relative; overflow: hidden; }
.reason-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #4f46e5, #ec4899); opacity: 0; transition: opacity .3s ease; }
.reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.reason-card:hover::before { opacity: 1; }
.reason-num { font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 14px; letter-spacing: 0.04em; }
.reason-title { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2; }
.reason-text { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }
@media (max-width: 900px) { .reasons-grid { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: all .3s ease; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 22px 28px; cursor: pointer; font-weight: 600; font-size: 17px; color: var(--fg); letter-spacing: -0.015em; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--fg-mute); font-weight: 400; transition: transform .3s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 26px; font-size: 15px; color: var(--fg-dim); line-height: 1.65; }
.faq-answer p + p { margin-top: 12px; }

/* === ARTICLE / INSIGHTS === */
.article-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: all .3s ease; display: block; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--accent-2); }
.article-meta { font-size: 12px; color: var(--fg-mute); margin-bottom: 12px; display: flex; gap: 12px; }
.article-meta time { color: var(--fg-mute); }
.article-title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; color: var(--fg); }
.article-excerpt { font-size: 14px; color: var(--fg-dim); line-height: 1.6; margin-bottom: 16px; }
.article-cta { font-size: 13px; font-weight: 500; color: var(--accent); }
@media (max-width: 900px) { .article-list { grid-template-columns: 1fr; } }

/* === PROSE (article pages, legal pages) === */
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 600; line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 16px; }
.prose .prose-meta { font-size: 14px; color: var(--fg-mute); margin-bottom: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.prose .lede { font-size: 19px; color: var(--fg-dim); line-height: 1.6; margin-bottom: 40px; }
.prose h2 { font-size: 28px; font-weight: 600; letter-spacing: -0.025em; margin: 48px 0 16px; line-height: 1.2; }
.prose h3 { font-size: 20px; font-weight: 600; margin: 32px 0 12px; }
.prose p { font-size: 16px; color: var(--fg-dim); line-height: 1.7; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 18px 0 18px 24px; color: var(--fg-dim); }
.prose li { margin-bottom: 8px; line-height: 1.65; }
.prose strong { color: var(--fg); }
.prose a { color: var(--accent); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin: 28px 0; font-size: 19px; color: var(--fg); font-weight: 500; line-height: 1.45; }

/* === FOUNDER === */
.founder { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; padding: 32px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-xl); margin: 40px 0; }
.founder-avatar { width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-1), var(--grad-2)); display: flex; align-items: center; justify-content: center; font-size: 80px; font-weight: 600; color: var(--accent); }
.founder-name { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.founder-role { font-size: 14px; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.founder-bio { font-size: 15px; color: var(--fg-dim); line-height: 1.65; margin-bottom: 16px; }
.founder-links { display: flex; gap: 12px; flex-wrap: wrap; }
.founder-links a { font-size: 13px; font-weight: 500; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--fg); background: #ffffff; transition: all .2s ease; }
.founder-links a:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; gap: 24px; padding: 24px; } .founder-avatar { width: 120px; height: 120px; font-size: 48px; margin: 0 auto; } }

/* === RELATED === */
.related { padding: 80px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.related-title { font-size: 14px; font-weight: 600; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }

/* === CTA === */
.cta { background: var(--bg-dark); color: #ffffff; padding: 120px 0; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-bg .blob { opacity: 0.25; filter: blur(120px); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-tag { display: inline-block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 999px; margin-bottom: 24px; }
.cta-title { font-size: clamp(36px, 5vw, 64px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 20px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.55; }
.cta .btn-primary { background: #ffffff; color: var(--bg-dark); }
.cta .btn-primary:hover { background: #f0f0f0; box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.cta .btn-secondary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #ffffff; backdrop-filter: none; }
.cta .btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

/* === FOOTER === */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p { font-size: 13px; color: var(--fg-dim); line-height: 1.6; max-width: 36ch; margin-bottom: 16px; }
.foot-brand address { font-size: 12px; color: var(--fg-mute); font-style: normal; line-height: 1.6; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-mute); margin-bottom: 16px; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--fg-dim); transition: color .2s ease; }
.foot-col a:hover { color: var(--fg); }
.foot-bot { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--fg-mute); flex-wrap: wrap; gap: 16px; }
.foot-bot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-bot-links a:hover { color: var(--fg); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .05s; }
.reveal.delay-2 { transition-delay: .12s; }
.reveal.delay-3 { transition-delay: .2s; }
.reveal.delay-4 { transition-delay: .28s; }
.reveal.delay-5 { transition-delay: .36s; }

/* === MODAL === */
.modal-backdrop { position: fixed; inset: 0; background: rgba(10, 10, 10, 0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .25s ease; }
.modal-backdrop.open { display: flex; opacity: 1; }
.modal { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; position: relative; padding: 44px 40px 36px; box-shadow: var(--shadow-xl); transform: translateY(16px); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; font-size: 20px; color: var(--fg-dim); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease; line-height: 1; }
.modal-close:hover { background: var(--bg-soft); color: var(--fg); }
.modal-title { font-size: 28px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 8px; line-height: 1.15; }
.modal-sub { font-size: 14px; color: var(--fg-dim); margin-bottom: 28px; line-height: 1.55; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: 12px; font-weight: 500; color: var(--fg); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: var(--fg); font-family: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23525252' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; cursor: pointer; }
.modal-submit { margin-top: 6px; justify-content: center; width: 100%; }
.modal-thanks { text-align: center; padding: 12px 0 6px; }
.modal-thanks .modal-title { margin-bottom: 10px; }
.modal-thanks-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(79,70,229,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
@media (max-width: 540px) { .modal { padding: 36px 24px 28px; border-radius: var(--radius-lg); } .modal-title { font-size: 24px; } }
