/* Kometa Labs — Main Stylesheet */
/* Theme Version: 1.0.0 */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:       #F7F8FF;
  --white:    #FFFFFF;
  --ink:      #0A0B14;
  --ink2:     #13141F;
  --mid:      #6B7280;
  --muted:    #9CA3AF;
  --border:   #E4E5EF;
  --vio:      #7227FD;
  --vio-dark: #5a1fd4;
  --vio-lite: #F0E9FF;
  --ko:       #F65726;
  --ko-dark:  #d94816;
  --f: 'Inter', system-ui, -apple-system, sans-serif;
  --rad: 8px;
  --rad-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1; }
a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: rgba(247,248,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  height: 100%; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
}
.nav-logo svg { width: 22px; height: auto; flex-shrink: 0; }
.nav-logo-accent { color: var(--vio); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--mid);
  padding: 7px 13px; border-radius: var(--rad-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--border); }
.nav-cta {
  font-size: 14px; font-weight: 700; color: var(--white);
  background: var(--vio); padding: 10px 22px;
  border-radius: var(--rad-sm); transition: background .15s;
}
.nav-cta:hover { background: var(--vio-dark); }

/* ── LAYOUT ─────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
section { scroll-margin-top: 64px; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--rad-sm);
  border: none; cursor: pointer; transition: all .15s;
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--vio); color: var(--white); }
.btn-primary:hover { background: var(--vio-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); }

/* ── TYPE ───────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vio);
  margin-bottom: 14px;
}
.section-h {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.08; color: var(--ink);
}
.section-h em { color: var(--vio); font-style: normal; }
.section-body { font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--mid); }
.section-body strong { color: var(--ink); font-weight: 600; }

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero { padding: 148px 40px 100px; }
.hero-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--mid); background: var(--white); border: 1.5px solid var(--border);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vio); }
.hero-h {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -.05em; line-height: 1.02;
  color: var(--ink); margin-bottom: 24px;
}
.hero-h em { color: var(--vio); font-style: normal; }
.hero-sub {
  font-size: 18px; font-weight: 400; line-height: 1.72;
  color: var(--mid); margin-bottom: 36px; max-width: 490px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted); margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.hero-note-tick {
  width: 18px; height: 18px; border-radius: 50%; background: var(--vio-lite);
  border: 1.5px solid var(--vio); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--vio); font-weight: 800;
}






 50%{opacity:.35} }








/* ════════════════════════════════════════════
   LOGOS
════════════════════════════════════════════ */
#logos {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.logos-label { text-align: center; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 20px; }
.logos-row { max-width: 1160px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.logo-name { font-size: 14px; font-weight: 700; color: var(--border); letter-spacing: -.01em; transition: color .2s; }
.logo-name:hover { color: var(--mid); }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#services { background: var(--white); padding: 112px 40px; }
.svc-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 48px; align-items: end;
}
.svc-header .section-h { color: var(--ink); }
.svc-header .section-h em { color: var(--vio); }
.svc-intro-text { font-size: 16px; font-weight: 400; line-height: 1.78; color: var(--mid); padding-top: 32px; }
.svc-intro-text strong { color: var(--ink); font-weight: 600; }

.svc-callout {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--vio-lite); border: 1px solid rgba(114,39,253,.15);
  border-radius: var(--rad); padding: 20px 24px; margin-bottom: 20px;
}
.svc-callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.svc-callout-text { font-size: 14px; font-weight: 400; line-height: 1.65; color: var(--mid); }
.svc-callout-text strong { color: var(--ink); font-weight: 600; }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: var(--rad); overflow: hidden; border: 1px solid var(--border); }
.svc-card { background: var(--white); padding: 32px 28px; transition: background .15s; }
.svc-card:hover { background: var(--bg); }
.svc-card-n { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--vio); margin-bottom: 18px; }
.svc-card-name { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.svc-card-desc { font-size: 14px; font-weight: 400; line-height: 1.75; color: #4B5563; }
.svc-card-link { margin-top: 20px; font-size: 13px; font-weight: 700; color: var(--vio); display: flex; align-items: center; gap: 4px; }
.svc-card-perf { background: var(--vio-lite); border: 1px solid rgba(114,39,253,.15) !important; }
.svc-card-perf .svc-card-name { color: var(--vio); }

/* ════════════════════════════════════════════
   HOW IT WORKS — scroll timeline
════════════════════════════════════════════ */
#how { padding: 112px 0; background: var(--white); overflow: hidden; }
.how-header {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}

/* Timeline container */
.timeline {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  position: relative;
}

/* Horizontal rule behind steps */
.timeline-track {
  position: absolute;
  top: 18px; /* center of dot */
  left: calc(40px + 18px); /* align with dot center */
  right: calc(40px + 18px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-track-fill {
  height: 100%; width: 0%;
  background: var(--vio);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

.timeline-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }

.t-step { padding: 0 16px; cursor: pointer; }
.t-step:first-child { padding-left: 0; }
.t-step:last-child { padding-right: 0; }

.t-dot-wrap { margin-bottom: 24px; }
.t-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--muted);
  transition: background .3s, border-color .3s, color .3s, transform .2s;
}
.t-step.active .t-dot, .t-step.done .t-dot {
  background: var(--vio); border-color: var(--vio); color: var(--white);
}
.t-step.active .t-dot { transform: scale(1.15); box-shadow: 0 0 0 5px var(--vio-lite); }

.t-when { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; transition: color .3s; }
.t-step.active .t-when { color: var(--vio); }

.t-title { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--border); margin-bottom: 10px; transition: color .3s; }
.t-step.active .t-title, .t-step.done .t-title { color: var(--ink); }

.t-body { font-size: 13px; font-weight: 400; color: transparent; line-height: 1.72; max-height: 0; overflow: hidden; transition: color .3s, max-height .4s ease; }
.t-step.active .t-body { color: var(--mid); max-height: 120px; }
.t-step.done .t-body { color: var(--mid); max-height: 120px; }

/* Detail panel below timeline */
.timeline-panel {
  margin-top: 56px; padding: 36px 40px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  min-height: 180px;
}
.tp-step-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--vio); margin-bottom: 12px; }
.tp-heading { font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin-bottom: 0; }
.tp-body { font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--mid); }
.tp-body strong { color: var(--ink); font-weight: 600; }

/* ════════════════════════════════════════════
   CALCULATOR
════════════════════════════════════════════ */
#calculator { padding: 112px 40px; }
.calc-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; align-items: end; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.calc-inputs { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 32px; }
.calc-inputs-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-bottom: 18px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.calc-field { margin-bottom: 24px; }
.calc-field:last-of-type { margin-bottom: 0; }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.calc-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.calc-val { font-size: 14px; font-weight: 800; color: var(--vio); }
input[type=range] { width: 100%; height: 4px; border-radius: 2px; background: var(--border); outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--vio); border: 2.5px solid var(--white); box-shadow: 0 2px 8px rgba(114,39,253,.3); cursor: pointer; }
.calc-hint { font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: 8px; font-style: italic; }

.calc-results {
  background: var(--white); border-radius: var(--rad); padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(114,39,253,.1), 0 2px 8px rgba(0,0,0,.04);
  position: relative; overflow: hidden;
}
.calc-results::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vio), #a855f7);
}
.calc-results-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--border); }
.result-row:last-of-type { border-bottom: none; margin-bottom: 20px; }
.result-label { font-size: 13px; font-weight: 400; color: var(--mid); }
.result-val { font-size: 22px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.result-val.accent { color: var(--vio); font-size: 26px; }
.result-cta { display: block; text-align: center; padding: 15px 20px; background: var(--vio); color: var(--white); font-size: 14px; font-weight: 700; border-radius: var(--rad-sm); transition: background .15s; }
.result-cta:hover { background: var(--vio-dark); }

/* ════════════════════════════════════════════
   MARKETING & GROWTH
════════════════════════════════════════════ */
#marketing { padding: 112px 40px; background: var(--white); border-top: 1px solid var(--border); }
.mktg-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mktg-eyebrow { color: var(--vio); margin-bottom: 14px; }
.mktg-h { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.mktg-h em { color: var(--vio); font-style: normal; }
.mktg-body { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--mid); margin-bottom: 28px; }
.mktg-body strong { color: var(--ink); font-weight: 600; }
.mktg-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mktg-pill { font-size: 12px; font-weight: 600; color: var(--mid); background: var(--bg); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; }

.mktg-cards { display: flex; flex-direction: column; gap: 1px; }
.mktg-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rad); padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 20px;
}
.mktg-card-num {
  font-size: 36px; font-weight: 800; letter-spacing: -.04em;
  line-height: 1; color: var(--vio); white-space: nowrap; flex-shrink: 0;
  min-width: 64px;
}
.mktg-card-num em { font-size: 20px; font-style: normal; color: var(--vio); }
.mktg-card-text { font-size: 14px; font-weight: 400; line-height: 1.65; color: var(--mid); }
.mktg-card-text strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
#reviews { padding: 112px 40px; background: var(--white); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.reviews-stars { display: flex; gap: 3px; justify-content: flex-end; margin-bottom: 6px; }
.reviews-stars span { color: #F59E0B; font-size: 16px; }
.reviews-num { font-size: 56px; font-weight: 800; letter-spacing: -.05em; color: var(--vio); line-height: 1; }
.reviews-sub { font-size: 13px; color: var(--mid); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rad); padding: 32px; transition: box-shadow .2s, border-color .2s; }
.review-card:hover { box-shadow: 0 8px 32px rgba(114,39,253,.07); border-color: rgba(114,39,253,.2); }
.review-card-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card-stars span { color: #F59E0B; font-size: 14px; }
.review-text { font-size: 14px; font-weight: 400; line-height: 1.78; color: var(--ink2); margin-bottom: 24px; font-style: italic; }
.review-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.review-role { font-size: 12px; color: var(--mid); }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
#faq { padding: 112px 40px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .eyebrow { display: block; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; gap: 20px;
  font-size: 16px; font-weight: 600; letter-spacing: -.02em; color: var(--ink);
  transition: color .15s; user-select: none;
}
.faq-q:hover { color: var(--vio); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--mid);
  transition: background .2s, border-color .2s, transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--vio-lite); border-color: var(--vio); color: var(--vio); transform: rotate(45deg); }
.faq-a {
  font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--mid);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a strong { color: var(--ink); font-weight: 600; }

/* ════════════════════════════════════════════
   BOOK / CALENDAR
════════════════════════════════════════════ */
#book { padding: 112px 40px; background: var(--white); border-top: 1px solid var(--border); }
.book-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.book-eyebrow { color: var(--vio); margin-bottom: 14px; }
.book-h { font-size: clamp(32px, 3.5vw, 50px); font-weight: 800; letter-spacing: -.05em; line-height: 1.08; color: var(--ink); margin-bottom: 20px; }
.book-h em { color: var(--vio); font-style: normal; }
.book-sub { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--mid); margin-bottom: 36px; }
.book-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.book-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--mid); line-height: 1.5; }
.book-check-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--vio-lite); border: 1px solid rgba(114,39,253,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--vio); font-weight: 800; margin-top: 1px;
}
.book-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.book-email-lbl { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.book-email { font-size: 16px; font-weight: 600; color: var(--vio); transition: color .15s; display: block; }
.book-email:hover { color: var(--vio-dark); }
.book-reply { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Calendly placeholder */
.cal-embed {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.12);
  min-height: 660px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { background: #0A0B14; padding: 36px 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-size: 15px; font-weight: 800; letter-spacing: -.03em; color: var(--white); display: flex; align-items: center; gap: 8px; }
.footer-logo svg { width: 18px; opacity: .5; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-email { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.32); transition: color .15s; }
.footer-legal-link { font-size: 12px; color: rgba(255,255,255,.25); transition: color .15s; }
.footer-legal-link:hover { color: rgba(255,255,255,.6); }
.footer-email:hover { color: var(--white); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  #hero { padding: 100px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .svc-header { grid-template-columns: 1fr; gap: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .how-header { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  .timeline { padding: 0 20px; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline-panel { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
  .calc-header { grid-template-columns: 1fr; gap: 20px; }
  .calc-grid { grid-template-columns: 1fr; }
  .mktg-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .reviews-stars { justify-content: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  #services, #book, #marketing, #reviews, #faq { padding: 72px 20px; }
  #calculator { padding: 72px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-right { align-items: center; }
}

/* ════════════════════════════════════════════
   ABOUT — THE PERSON
════════════════════════════════════════════ */
#about { padding: 112px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.about-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start;
}
.about-photo-wrap { }
.about-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--rad); display: block;
}
.about-content { padding-top: 8px; }
.about-name {
  font-size: 32px; font-weight: 800; letter-spacing: -.04em;
  color: var(--ink); margin-bottom: 4px;
}
.about-role { font-size: 14px; font-weight: 500; color: var(--vio); margin-bottom: 32px; letter-spacing: .01em; }
.about-body {
  font-size: 16px; font-weight: 400; line-height: 1.8;
  color: var(--mid); margin-bottom: 16px;
}
.about-body strong { color: var(--ink); font-weight: 600; }
.about-divider { height: 1px; background: var(--border); margin: 32px 0; }
.about-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  #about { padding: 72px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  
  }

/* ── HERO DASHBOARD CARD ─────────────────── */
.dash-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 40px rgba(114,39,253,.1), 0 1px 4px rgba(0,0,0,.05);
}
.dash-topbar {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots .d-r { background: #ff5f57; }
.dash-dots .d-y { background: #ffbd2e; }
.dash-dots .d-g { background: #28c840; }
.dash-topbar-title { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.dash-topbar-badge {
  font-size: 10px; font-weight: 700; color: var(--vio);
  background: var(--vio-lite); padding: 3px 9px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px; letter-spacing: .04em; text-transform: uppercase;
}
.dash-topbar-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--vio); animation: pulse 2s infinite; }
.dash-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.dash-kpi { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rad); padding: 12px 14px; }
.dash-kpi-label { font-size: 10px; font-weight: 500; color: var(--muted); margin-bottom: 4px; letter-spacing: .03em; text-transform: uppercase; }
.dash-kpi-val { font-size: 20px; font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.dash-kpi-val span { font-size: 11px; color: var(--vio); font-weight: 700; }
.dash-kpi-delta { font-size: 10px; font-weight: 600; color: #16a34a; margin-top: 5px; }
.dash-chart-row { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rad); padding: 12px 14px; }
.dash-chart-label { font-size: 10px; font-weight: 600; color: var(--muted); margin-bottom: 10px; letter-spacing: .03em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; }
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.dash-bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--border); }
.dash-bar.active { background: var(--vio); }
.dash-bar.lit { background: rgba(114,39,253,.25); }
.dash-list { display: flex; flex-direction: column; }
.dash-list-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); }
.dash-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.dash-list-left { display: flex; align-items: center; gap: 9px; }
.dash-list-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dash-list-label { font-size: 12px; font-weight: 600; color: var(--ink); }
.dash-list-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.dash-list-val { font-weight: 700; color: var(--ink); }
.dash-list-tag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; letter-spacing: .03em; text-transform: uppercase; }
.dash-list-tag.up { background: #f0fdf4; color: #16a34a; }
.dash-list-tag.new { background: var(--vio-lite); color: var(--vio); }
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}

.about-li-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--white);
  background: #0A66C2; padding: 10px 20px; border-radius: var(--rad-sm);
  transition: background .15s;
}
.about-li-btn:hover { background: #004182; }

.about-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--vio); margin-bottom: 16px;
}
.about-name-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 4px;
}
.about-li-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  color: var(--mid); border: 1.5px solid var(--border);
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
}
.about-li-icon:hover { color: #0A66C2; border-color: #0A66C2; background: #f0f7ff; }

.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.about-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--border);
  padding: 7px 14px; border-radius: 100px;
}

.legal-body h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 28px 0 8px; letter-spacing: -.01em; }
.legal-body p { font-size: 15px; font-weight: 400; line-height: 1.78; color: var(--mid); margin-bottom: 0; }
.legal-body p + p { margin-top: 12px; }