/* Kometa Labs — Main Stylesheet v2.2.0 */


/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:       #FAF8FF;
  --white:    #FFFFFF;
  --ink:      #0A0B14;
  --ink2:     #13141F;
  --mid:      #6B7280;
  --muted:    #67707F;
  --border:   #E4E5EF;
  /* BLUE — structure, action, trust (sampled from logo wordmark) */
  --action:       #0050C7;  /* primary action — slightly brighter than pure logo blue for screen vibrancy */
  --action-hover:  #003D99;  /* hover / pressed */
  --action-tint:  #E5EFFD;  /* light tint — badges, soft surfaces */
  --action-pale:  #F2F6FE;  /* whisper tint — large soft backgrounds */
  --surface-dark:     #001E54;  /* deep navy — dark sections, max contrast text on light */
  --surface-darker:#001233;  /* darkest — footer base, pressed-dark */

  /* PINK — the spark, used deliberately and with its own range */
  --accent:      #E189F5;  /* core brand pink — richer/more saturated than logo tint for legibility at small sizes */
  --accent-strong: #D24BF0;  /* deeper pink — hover states on pink elements, more saturated accent */
  --accent-tint: #F5E4FB;  /* light pink tint — soft badge backgrounds */
  --accent-pale: #FCF5FE;  /* whisper pink — barely-there warmth on light bg */
  --cream:     #F5F0E8;  /* logo mark cream */
  --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;
}
.nav-logo svg { width: 22px; height: auto; flex-shrink: 0; }
.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(--action); padding: 10px 22px;
  border-radius: var(--rad-sm); transition: background .15s;
}
.nav-cta:hover { background: var(--action-hover); }

/* ── 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(--action); color: var(--white); }
.btn-primary:hover { background: var(--action-hover); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent-strong); color: var(--accent-strong); background: var(--accent-pale); }

/* ── TYPE ───────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--action);
  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(--action); 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(--surface-dark); background: var(--accent-tint); border: 1px solid rgba(210,75,240,.3);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-h {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -.06em; line-height: 0.98;
  color: var(--ink); margin-bottom: 24px;
  font-stretch: 95%;
}
.hero-h em { color: var(--action); 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(--accent-tint);
  border: 1px solid rgba(210,75,240,.3); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--accent-strong); font-weight: 800;
}






@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}








/* ════════════════════════════════════════════
   LOGOS
════════════════════════════════════════════ */
.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(--action); }
.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-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(--accent-strong); 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(--action); display: flex; align-items: center; gap: 4px; }
.svc-card-perf { background: var(--accent-pale); border: 1px solid rgba(210,75,240,.18) !important; }
.svc-card-perf .svc-card-name { color: var(--action); }

/* ════════════════════════════════════════════
   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(--action);
  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(--action); border-color: var(--action); color: var(--white);
}
.t-step.active .t-dot { transform: scale(1.15); box-shadow: 0 0 0 5px var(--action-tint); }

.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(--action); }

.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(--action); 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(--action); }
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(--accent-strong); border: 2.5px solid var(--white); box-shadow: 0 2px 8px rgba(210,75,240,.35); 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(--action), #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(--accent-strong); font-size: 26px; }
.result-cta { display: block; text-align: center; padding: 15px 20px; background: var(--action); color: var(--white); font-size: 14px; font-weight: 700; border-radius: var(--rad-sm); transition: background .15s; }
.result-cta:hover { background: var(--action-hover); }

/* ════════════════════════════════════════════
   MARKETING & GROWTH
════════════════════════════════════════════ */
#marketing { padding: 112px 40px; background: var(--white); border-top: 1px solid var(--border); }
/* ════════════════════════════════════════════
   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(--accent-strong); 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(--action); }
.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(--action-tint); border-color: var(--action); color: var(--action); 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(--action); 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(--action); 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(--accent-tint); border: 1px solid rgba(210,75,240,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--accent-strong); 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(--accent-strong); transition: color .15s; display: block; }
.book-email:hover { color: var(--accent); }
.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: #1B2FA6;
  background-image: url("assets/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 40px;
  border-top: none;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15, 20, 80, 0.45);
  pointer-events: none;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.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,.75); }
.footer-email { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .15s; }
.footer-legal-link { font-size: 12px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-legal-link:hover { color: rgba(255,255,255,.6); }
.footer-email:hover { color: var(--white); }
.footer-li-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .15s; margin-bottom: 6px; }
.footer-li-link:hover { color: var(--white); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */


/* ════════════════════════════════════════════
   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(--action); 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; }



/* ── 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(--action);
  background: var(--action-tint); 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(--action); 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(--action); 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(--action); }
.dash-bar.lit:nth-child(even) { background: rgba(216,138,237,.35); }
.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(--action-tint); color: var(--action); }
@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-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: #0A66C2; border: 1.5px solid var(--border); background: #f0f7ff;
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
}
.about-li-icon:hover { color: #fff; border-color: #0A66C2; background: #0A66C2; }

.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(--surface-dark);
  background: var(--accent-tint); border: 1px solid rgba(210,75,240,.3);
  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; }
.svc-card-timeline {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--accent-strong); background: var(--accent-tint);
  border: 1px solid rgba(210,75,240,.3);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}

.review-author-row {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.review-author-info { flex: 1; }
.review-li-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  color: #0A66C2; border: 1.5px solid var(--border); background: #f0f7ff;
  flex-shrink: 0; transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
}
.review-li-icon:hover { color: #fff; border-color: #0A66C2; background: #0A66C2; }

.how-steps { display: grid; grid-template-columns: repeat(4,1fr); }
.how-step { padding: 36px 24px; border: 1px solid var(--border); border-right: none; background: var(--white); transition: background .15s; }
.how-step:last-child { border-right: 1px solid var(--border); }
.how-step:hover { background: var(--bg); }
.step-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--action); color: var(--white); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step-when { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.step-title { font-size: 16px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; }
.step-desc { font-size: 13px; font-weight: 400; color: var(--mid); line-height: 1.72; }



/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .svc-grid         { grid-template-columns: repeat(2,1fr); }
  .reviews-grid     { grid-template-columns: repeat(2,1fr); }
  .about-inner      { grid-template-columns: 280px 1fr; gap: 48px; }
  .timeline-panel   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  nav               { padding: 0; }
  .nav-inner        { padding: 0 20px; }
  .nav-links        { display: none; }
  #hero             { padding: 96px 20px 52px; }
  .hero-grid        { grid-template-columns: 1fr; gap: 32px; }
  .dash-card        { display: none; }
  .hero-h           { font-size: 38px; line-height: 1.05; }
  .hero-sub         { font-size: 16px; max-width: 100%; margin-bottom: 28px; }
  .hero-btns        { flex-direction: column; align-items: stretch; }
  .hero-btns .btn   { text-align: center; justify-content: center; }

  #services         { padding: 60px 20px; }
  .svc-header       { grid-template-columns: 1fr; gap: 16px; }
  .svc-intro-text   { padding-top: 0; }
  .svc-grid         { grid-template-columns: 1fr; }
  #how              { padding: 60px 0; }
  .how-header       { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; margin-bottom: 40px; }
  .timeline         { padding: 0 20px; }
  .timeline-track   { display: none; }
  .timeline-steps   { grid-template-columns: 1fr; }
  .t-step           { padding: 14px 0 !important; border-bottom: 1px solid var(--border); }
  .t-step:last-child{ border-bottom: none; }
  .t-body           { max-height: 200px !important; color: var(--mid) !important; }
  .timeline-panel   { grid-template-columns: 1fr; gap: 10px; padding: 20px; margin-top: 28px; }

  #calculator       { padding: 60px 20px; }
  .calc-header      { grid-template-columns: 1fr; gap: 16px; }
  .calc-grid        { grid-template-columns: 1fr; }

  #about            { padding: 60px 20px; }
  .about-inner      { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { position: static; }
  .about-photo-frame{ max-width: 240px; aspect-ratio: 1/1; }
  .about-name       { font-size: 26px; }
  .about-stats      { grid-template-columns: repeat(3,1fr); }

  #reviews          { padding: 60px 20px; }
  .reviews-header   { flex-direction: column; gap: 12px; align-items: flex-start; }
  .reviews-stars    { justify-content: flex-start; }
  .reviews-grid     { grid-template-columns: 1fr; }

  #faq              { padding: 60px 20px; }
  .faq-inner        { max-width: 100%; }

  #book             { padding: 60px 20px; }
  .book-grid        { grid-template-columns: 1fr; gap: 36px; }
  .book-h           { font-size: 32px; }

  footer            { padding: 28px 20px; }
  .footer-inner     { flex-direction: column; gap: 16px; text-align: center; }
  .footer-right     { align-items: center; }

  .wrap             { padding: 0 20px; }
  .section-h        { font-size: clamp(24px, 7vw, 38px); }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-h           { font-size: 32px; }
  .svc-card         { padding: 24px 18px; }
  .review-card      { padding: 20px 18px; }
  .about-stats      { grid-template-columns: 1fr; }
  .about-chips      { flex-direction: column; align-items: flex-start; }
  #book, #faq, #reviews, #calculator, #about, #services { padding: 48px 16px; }
}

/* ── COSMIC IDENTITY ───────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
}
/* Radial glow — top right */
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,80,199,.09) 0%, rgba(216,138,237,.07) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
/* Second subtle glow — bottom left */
#hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216,138,237,.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }

/* Orbiting dots — cosmic particles */
.hero-cosmos {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-cosmos span {
  position: absolute;
  border-radius: 50%;
  background: var(--action);
  opacity: 0;
  animation: float-particle 8s infinite ease-in-out;
}
.hero-cosmos span:nth-child(odd) { background: var(--accent-strong); }
.hero-cosmos span:nth-child(1) { width:4px;height:4px; top:15%; left:8%;  animation-delay:0s;   animation-duration:9s; }
.hero-cosmos span:nth-child(2) { width:3px;height:3px; top:25%; left:85%; animation-delay:1.5s; animation-duration:7s; }
.hero-cosmos span:nth-child(3) { width:5px;height:5px; top:60%; left:12%; animation-delay:3s;   animation-duration:11s; }
.hero-cosmos span:nth-child(4) { width:2px;height:2px; top:75%; left:75%; animation-delay:0.8s; animation-duration:8s; }
.hero-cosmos span:nth-child(5) { width:4px;height:4px; top:40%; left:92%; animation-delay:2s;   animation-duration:10s; }
.hero-cosmos span:nth-child(6) { width:3px;height:3px; top:85%; left:45%; animation-delay:4s;   animation-duration:9s; }
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0px) scale(1); }
  20%  { opacity: .6; }
  50%  { opacity: .3; transform: translateY(-18px) scale(1.2); }
  80%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-36px) scale(0.8); }
}

/* Large Kometa mark watermark */
.hero-mark-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: auto;
  opacity: .025;
  pointer-events: none; z-index: 0;
}

/* ── ABOUT section — subtle lab grid ──── */
#about {
  background-image:
    linear-gradient(rgba(114,39,253,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,39,253,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── FAQ — lab notebook lines ────────── */
#faq { position: relative; }
#faq::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    transparent,
    transparent 39px,
    rgba(114,39,253,.03) 39px,
    rgba(114,39,253,.03) 40px
  );
  pointer-events: none;
}
.faq-inner { position: relative; z-index: 1; }

/* ── Book section — starfield ─────────── */
#book { position: relative; overflow: hidden; }
#book::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 85% 35%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 70%, rgba(255,255,255,.2)  0%, transparent 100%),
    radial-gradient(2px 2px at 20% 85%, rgba(255,255,255,.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 40%, rgba(255,255,255,.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 78% 15%, rgba(255,255,255,.2)  0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.book-grid { position: relative; z-index: 1; }

/* ── Section mark accent ─────────────── */
.section-mark {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-mark svg {
  width: 16px; height: auto; opacity: .4;
  flex-shrink: 0;
}

/* Orbit ring around about photo */
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 18px;
  border: 1px solid rgba(0,80,199,.16);
  z-index: -1;
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 22px;
  border: 1px dashed rgba(216,138,237,.22);
  z-index: -1;
}

/* 4-point star sparkles — like the LinkedIn banner */
.hero-sparkle {
  position: absolute;
  pointer-events: none; z-index: 0;
}
.hero-sparkle::before,
.hero-sparkle::after {
  content: '✦';
  position: absolute;
  color: var(--accent);
  animation: sparkle-pulse 4s infinite ease-in-out;
}
.hero-sparkle-1 { top: 18%; right: 22%; }
.hero-sparkle-1::before { font-size: 18px; opacity: .5; animation-delay: 0s; }
.hero-sparkle-1::after  { font-size: 10px; top: 30px; left: 20px; opacity: .3; animation-delay: 1.5s; }
.hero-sparkle-2 { top: 55%; right: 8%; }
.hero-sparkle-2::before { font-size: 12px; opacity: .35; animation-delay: 2s; }
.hero-sparkle-2::after  { display: none; }
@keyframes sparkle-pulse {
  0%,100% { opacity: .1; transform: scale(.8) rotate(0deg); }
  50%      { opacity: .6; transform: scale(1.1) rotate(15deg); }
}

.svc-card-examples {
  font-size: 12px; font-weight: 400; line-height: 1.6;
  color: var(--muted); font-style: italic;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 21px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.25));
}

/* ── SUBTLE ATMOSPHERE — quiet bookend echo for mid-page sections ── */
#services, #how, #calculator, #reviews {
  position: relative;
}
#services::before, #how::before, #calculator::before, #reviews::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--action-pale) 0%, transparent 70%);
  opacity: .5;
  pointer-events: none; z-index: 0;
}
#services > *, #how > *, #calculator > *, #reviews > * {
  position: relative; z-index: 1;
}
