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

:root {
  --white: #ffffff;
  --off-white: #f7f8fc;
  --surface: #f0f2f9;
  --border: #e2e5ef;
  --border-light: #eff1f8;
  --text-primary: #0d1117;
  --text-secondary: #4b5468;
  --text-muted: #8892a4;
  --brand: #5b359d;
  --brand-2: #7c3aed;
  --brand-dark: #211235;
  --brand-light: #f1ecff;
  --brand-mid: #c8b5ff;
  --accent: #0ec97f;
  --accent-bg: #e8faf3;
  --warn: #f59e0b;
  --danger: #ef4444;
  --dark: #0b0615;
  --dark-2: #130b24;
  --dark-3: #1b1032;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 18px 60px rgba(13,17,23,.12), 0 1px 4px rgba(13,17,23,.05);
  --font-sans: 'Bricolage Grotesque', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(91,53,157,.28);
}

.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(91,53,157,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.btn-white {
  background: #fff;
  color: var(--brand);
}

.btn-white:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.32);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* HERO */
.sme-hero {
  min-height: 740px;
  margin-top: 64px;
  padding: 104px max(48px, calc((100vw - 1240px) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sme-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 560px;
  background:
    radial-gradient(circle at 82% 24%, rgba(91,53,157,.24), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(124,58,237,.11), transparent 30%),
    linear-gradient(180deg, rgba(241,236,255,.72), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}

.sme-hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 26px;
  border: 1px solid var(--brand-mid);
}

.sme-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
  margin-bottom: 24px;
}

.sme-hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.14rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.72;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: .86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-note svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* HERO REPORT PANEL */
.sme-hero-panel {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  align-self: center;
  isolation: isolate;
  background: linear-gradient(150deg, rgba(19,11,36,.98), rgba(11,6,21,.96));
  border: 1px solid rgba(200,181,255,.22);
  box-shadow: 0 28px 80px rgba(24,9,49,.32);
  border-radius: 26px;
  overflow: hidden;
  color: #fff;
  position: relative;
}

.sme-hero-panel::before {
  content: '';
  position: absolute;
  inset: 70px 28px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(124,58,237,.18);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.sme-hero-panel::after {
  content: '';
  position: absolute;
  inset: -30% -40% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124,58,237,.38), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.panel-top,
.report-card {
  position: relative;
  z-index: 2;
}

.panel-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
}

.panel-title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-card {
  padding: 30px;
}

.report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.report-kicker {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}

.report-head strong {
  font-size: 1.24rem;
  line-height: 1.2;
}

.risk-pill {
  background: rgba(239,68,68,.16);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,.34);
  font-weight: 900;
  font-size: .76rem;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.risk-score {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.085);
  margin-bottom: 18px;
}

.score-ring {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(#ef4444 0 91%, rgba(255,255,255,.12) 91% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-ring div {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca5a5;
  font-weight: 900;
}

.risk-score strong {
  display: block;
  margin-bottom: 4px;
}

.risk-score p {
  color: rgba(255,255,255,.58);
  font-size: .88rem;
  line-height: 1.55;
}

.signal-list {
  display: grid;
  gap: 8px;
}

.signal-list div {
  min-width: 0;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.70);
  font-family: var(--font-mono);
  overflow-wrap: anywhere;
}

.signal-list span {
  color: var(--brand-mid);
  font-weight: 900;
  margin-right: 8px;
  font-family: var(--font-sans);
}

.soc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.soc-metric {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 12px;
  padding: 14px;
}

.soc-metric span {
  display: block;
  font-family: var(--font-mono);
  color: var(--brand-mid);
  font-size: .72rem;
  margin-bottom: 4px;
}

.soc-metric strong {
  color: #fff;
  font-size: .95rem;
}

/* GLOBAL SECTIONS */
.section {
  padding: 96px 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.eyebrow.muted {
  color: rgba(200,181,255,.82);
}

.section-title {
  font-size: clamp(2rem, 3.25vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 1.03rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.72;
}

.section-sub.left {
  margin: 0;
}

.section-sub.dimmed {
  color: rgba(255,255,255,.68);
}

/* PROBLEMS */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 56px;
}

.pain-card {
  text-align: left;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
  transition: all .2s;
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--brand-mid);
}

.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 900;
  font-family: var(--font-mono);
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.65;
}

/* DARK USE CASES */
.dark-section {
  background:
    radial-gradient(circle at 78% 0%, rgba(124,58,237,.26), transparent 36%),
    radial-gradient(circle at 18% 20%, rgba(91,53,157,.20), transparent 32%),
    linear-gradient(145deg, #080313 0%, #120822 52%, #070311 100%);
  color: #fff;
}

.dark-inner {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 54px;
  background: transparent;
}

.use-card {
  text-align: left;
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(200,181,255,.26);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  color: #fff;
  transition: all .2s ease;
}

.use-card:hover {
  border-color: rgba(200,181,255,.52);
  background: linear-gradient(155deg, rgba(124,58,237,.20), rgba(255,255,255,.07));
  transform: translateY(-2px);
}

.use-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.26);
  border: 1px solid rgba(200,181,255,.36);
  color: #e5d9ff;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.use-card strong {
  display: block;
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.use-card p {
  color: rgba(255,255,255,.76);
  font-size: .88rem;
  line-height: 1.62;
}

/* STEPS */
.steps-bg {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.step-card {
  background: var(--white);
  padding: 40px 36px;
  text-align: left;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: .89rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* VALUE */
.value-wrap {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 54px;
  align-items: center;
}

.check-list {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

.check-list span {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  margin-top: 1px;
}

.pipeline-card {
  background: linear-gradient(155deg, #fff, #faf8ff);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.pipeline-card h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.pipeline-list {
  display: grid;
  gap: 10px;
}

.pipeline-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.pipeline-list span {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--brand);
  font-weight: 700;
}

.pipeline-list strong {
  display: block;
  font-size: .9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pipeline-list p {
  color: var(--text-secondary);
  font-size: .86rem;
  line-height: 1.55;
}

/* CONFIDENTIALITY */
.confidentiality {
  background: linear-gradient(140deg, #0b0615 0%, #130b24 58%, #211235 100%);
  color: #fff;
}

.conf-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.conf-icon {
  font-size: 2.6rem;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.conf-inner p {
  color: rgba(255,255,255,.66);
  line-height: 1.75;
  max-width: 780px;
}

/* PILOT OFFER */
.pilot-card {
  margin-top: 52px;
  border-radius: 26px;
  padding: 34px;
  background: linear-gradient(145deg, #fff, #faf8ff);
  border: 1.5px solid var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
  box-shadow: var(--shadow);
}

.pilot-content h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.pilot-content p {
  color: var(--text-secondary);
  max-width: 690px;
}

.pilot-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pilot-items span {
  font-size: .8rem;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid var(--brand-mid);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 800;
}

/* FAQ */
.faq-bg {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 42px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}

.faq-item h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.65;
}

/* CTA */
.cta-bg {
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.28), transparent 38%),
    linear-gradient(140deg, #0b0615 0%, #130b24 60%, #070311 100%);
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 48px;
}

.cta-inner .section-title {
  color: #fff;
}

.cta-inner .section-sub {
  color: rgba(255,255,255,.62);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.4);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: .82rem;
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}

footer span {
  font-size: .8rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}

.d1 { animation-delay: .08s; }
.d2 { animation-delay: .20s; }

/* RESPONSIVE */
@media(max-width: 980px) {
  .sme-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 20px 64px;
    gap: 32px;
  }

  .sme-hero::before {
    inset: 0;
    height: 520px;
  }

  .sme-hero-panel {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-sub {
    font-size: 1.02rem;
  }

  .section {
    padding: 72px 20px;
  }

  .pain-grid,
  .use-grid,
  .steps-grid,
  .value-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .value-wrap {
    gap: 32px;
  }

  .conf-inner {
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }

  .pilot-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width: 600px) {
  .sme-hero h1 {
    font-size: 2.35rem;
  }

  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .report-card {
    padding: 22px;
  }

  .report-head,
  .risk-score {
    align-items: flex-start;
    flex-direction: column;
  }

  .soc-metrics {
    grid-template-columns: 1fr;
  }

  .pipeline-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pilot-card {
    padding: 24px;
  }
}