@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700;800&display=swap");

:root {
  --so3-bg: #22223b;
  --so3-bg-2: #262640;
  --so3-bg-3: #373755;
  --so3-soft: #f9f8fb;
  --so3-soft-2: #f1f1f1;
  --so3-purple: #8157f6;
  --so3-pink: #e175ff;
  --so3-grad: linear-gradient(90deg, #c55de0 0%, #7f56f6 100%);
  --so3-grad-num: linear-gradient(90deg, #e175ff 0%, #8157f6 100%);
  --so3-white: #fff;
  --so3-text: #111;
  --so3-muted: #8e8e9e;
  --so3-line: rgba(255, 255, 255, 0.12);
  --so3-border: #ececf2;
  --so3-pill: 66px;
  --so3-r-card: 20px;
  --so3-r-panel: 24px;
  --so3-space-band: clamp(72px, 8vw, 96px);
  --so3-font: "Roboto", system-ui, sans-serif;
  --so3-display: "Unbounded", var(--so3-font);
  --so3-wrap: min(1180px, calc(100% - 48px));
  --so3-shadow-soft: 0 8px 32px rgba(34, 34, 59, 0.06);
  --so3-shadow-panel: 0 24px 64px rgba(0, 0, 0, 0.28);
}

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

body.so-site--v3 {
  margin: 0;
  font-family: var(--so3-font);
  color: var(--so3-text);
  background: var(--so3-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.so3-shell {
  overflow-x: clip;
}

.so3-wrap {
  width: var(--so3-wrap);
  margin-inline: auto;
}

/* Header */
.so3-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 16px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.so3-header--solid {
  padding: 10px 0;
  background: rgba(34, 34, 59, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.so3-header__bar {
  width: var(--so3-wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.so3-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.so3-logo img {
  height: 28px;
  width: auto;
}

body.so-page-prod-nav .so3-logo img,
.so3-logo--lg img {
  height: 40px;
}

.so3-logo__text {
  font-family: var(--so3-display);
  font-weight: 700;
  color: var(--so3-white);
}

.so3-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.so3-nav__group {
  position: relative;
}

.so3-nav__label,
.so3-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-family: var(--so3-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-radius: 12px;
  cursor: default;
  white-space: nowrap;
}

.so3-nav__link,
.so3-nav__label--link {
  cursor: pointer;
}

.so3-nav__label:hover,
.so3-nav__link:hover,
.so3-nav__group:focus-within .so3-nav__label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--so3-white);
}

.so3-nav__flyout {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding: 8px;
  background: #2b2b48;
  border: 1px solid var(--so3-line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.so3-nav__group:hover .so3-nav__flyout,
.so3-nav__group:focus-within .so3-nav__flyout {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.so3-nav__flyout a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--so3-display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.so3-nav__flyout a:hover {
  background: rgba(129, 87, 246, 0.22);
}

.so3-nav__flyout--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 460px;
  gap: 0 4px;
}

.so3-nav__flyout a.so3-nav__wide {
  grid-column: 1 / -1;
  font-weight: 600;
  border-bottom: 1px solid var(--so3-line);
  margin-bottom: 4px;
  border-radius: 12px 12px 0 0;
}

.so3-nav__group:last-child .so3-nav__flyout {
  left: auto;
  right: 0;
}

.so3-header__cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.so3-header__cta .so3-btn {
  font-family: var(--so3-display);
}

.so3-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--so3-white);
  cursor: pointer;
}

.so3-search-btn:hover {
  opacity: 0.75;
}

.so3-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--so3-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.so3-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--so3-white);
  border-radius: 2px;
}

.so3-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 190;
  max-height: calc(100vh - 72px);
  overflow: auto;
  padding: 16px;
  background: #2b2b48;
  border-bottom: 1px solid var(--so3-line);
}

.so3-mobile__block {
  border-bottom: 1px solid var(--so3-line);
  padding: 8px 0;
}

.so3-mobile__block summary {
  cursor: pointer;
  color: var(--so3-white);
  font-family: var(--so3-display);
  font-weight: 600;
  padding: 8px 0;
}

.so3-mobile__block a,
.so3-mobile__link {
  display: block;
  padding: 8px 0 8px 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--so3-display);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Buttons */
.so3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--so3-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.so3-btn:hover {
  transform: translateY(-2px);
}

.so3-btn--fill {
  background: var(--so3-grad);
  color: var(--so3-white);
  box-shadow: 0 12px 32px rgba(127, 86, 246, 0.38);
}

.so3-btn--white {
  background: var(--so3-white);
  color: #1c1c30;
}

.so3-btn--line {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--so3-white);
}

.so3-btn--line-dark {
  border-color: rgba(34, 34, 59, 0.18);
  color: var(--so3-bg);
}

.so3-btn--xl {
  min-height: 64px;
  padding: 0 36px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Hero */
.so3-main {
  padding-top: 0;
}

.so3-hero {
  position: relative;
  background: var(--so3-bg);
  color: var(--so3-white);
  padding: 112px 0 48px;
  min-height: min(880px, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.so3-hero__arc {
  position: absolute;
  right: -10%;
  top: 10%;
  width: min(55vw, 640px);
  height: min(55vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 87, 246, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.so3-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(129, 87, 246, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(225, 117, 255, 0.18), transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.so3-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.so3-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cc75ff;
  font-weight: 600;
}

.so3-hero__title {
  margin: 0 0 22px;
  font-family: var(--so3-display);
  font-size: clamp(2rem, 4.8vw, 3.875rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.so3-hero__sub {
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  max-width: 48ch;
}

.so3-hero__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.so3-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.so3-hero__bullets li::before {
  display: none;
}

.so3-hero__bullets .so3-ico {
  color: #cc75ff;
  flex-shrink: 0;
}

.so3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.so3-hero__actions--compact {
  margin-bottom: 0;
}

.so3-hero__statline {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.so3-hero__statnum {
  display: block;
  margin-bottom: 4px;
  font-family: var(--so3-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  background: var(--so3-grad-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.so3-hero__panel {
  justify-self: end;
  width: min(100%, 440px);
}

.so3-panel {
  padding: 24px;
  border-radius: var(--so3-r-panel);
  background: linear-gradient(165deg, rgba(55, 55, 85, 0.96) 0%, rgba(38, 38, 64, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--so3-shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.so3-panel__gauges--figma {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.so3-panel__gauges--figma img {
  width: auto;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.so3-panel--figma {
  position: relative;
  overflow: hidden;
}

.so3-panel__rings {
  position: absolute;
  inset: -20% -30% auto -10%;
  height: 220px;
  pointer-events: none;
}

.so3-panel__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 117, 255, 0.18);
}

.so3-panel__ring--a {
  width: 280px;
  height: 280px;
  right: -40px;
  top: -60px;
  background: radial-gradient(circle, rgba(129, 87, 246, 0.12) 0%, transparent 70%);
}

.so3-panel__ring--b {
  width: 200px;
  height: 200px;
  right: 40px;
  top: 20px;
  border-color: rgba(225, 117, 255, 0.22);
}

.so3-panel__ring--c {
  width: 120px;
  height: 120px;
  right: 100px;
  top: 80px;
  border-color: rgba(255, 255, 255, 0.08);
}

.so3-panel__dashboard {
  position: relative;
  z-index: 1;
}

.so3-panel__counter-figma {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  min-height: 56px;
}

.so3-panel__counter-figma img {
  width: min(100%, 280px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(129, 87, 246, 0.35));
}

.so3-panel__scale {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Pricing */
.so3-pricing {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.so3-pricing__card {
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--so3-white);
  border: 1px solid #ececf2;
  box-shadow: 0 6px 20px rgba(34, 34, 59, 0.04);
}

.so3-pricing__card--featured {
  border-color: rgba(129, 87, 246, 0.45);
  box-shadow: 0 12px 32px rgba(129, 87, 246, 0.12);
}

.so3-pricing__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--so3-grad-num);
  color: var(--so3-white);
}

.so3-pricing__card h3 {
  margin: 0 0 10px;
  font-family: var(--so3-display);
  font-size: 0.95rem;
  line-height: 1.25;
}

.so3-pricing__card p {
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
}

.so3-pricing__card em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--so3-purple);
}

.so3-pricing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Case logos */
.so3-casecard__logo {
  display: flex;
  align-items: center;
  height: 36px;
  margin-bottom: 10px;
}

.so3-casecard__logo img {
  max-height: 32px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* Trust */
.so3-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.so3-trust__card {
  display: block;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--so3-white);
  border: 1px solid #ececf2;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.so3-trust__card:hover {
  border-color: rgba(129, 87, 246, 0.35);
  box-shadow: 0 8px 24px rgba(129, 87, 246, 0.08);
}

.so3-trust__icon {
  display: inline-flex;
  margin-bottom: 12px;
}

.so3-trust__card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--so3-display);
  font-size: 1rem;
}

.so3-trust__card p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.45;
}

/* Compare */
.so3-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.so3-compare__card {
  display: block;
  padding: 20px 18px;
  border-radius: 16px;
  background: var(--so3-soft);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.so3-compare__card:hover {
  background: var(--so3-white);
  border-color: rgba(129, 87, 246, 0.28);
}

.so3-compare__vs {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(129, 87, 246, 0.12);
  color: var(--so3-purple);
}

.so3-compare__card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.so3-compare__card p {
  margin: 0;
  font-size: 0.84rem;
  color: #555;
  line-height: 1.4;
}

/* Sticky CTA */
.so3-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(22, 22, 38, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.so3-sticky-cta[hidden] {
  display: none;
}

.so3-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.so3-sticky-cta__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
}

body.so-page-prod-nav .so3-sticky-cta__text {
  font-family: var(--so3-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
  white-space: nowrap;
}

body.so-page-prod-nav .so3-sticky-cta__actions .so3-btn {
  font-family: var(--so3-display);
}

.so3-sticky-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.so3-sticky-on .so3-footer {
  padding-bottom: calc(78px + 88px + env(safe-area-inset-bottom, 0px));
}

.so3-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.so3-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
}

.so3-panel__gauges {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.so3-gauge {
  width: 50%;
  height: auto;
}

.so3-gauge--sm {
  opacity: 0.85;
  transform: scale(0.92);
  transform-origin: left top;
}

.so3-panel__counter {
  text-align: center;
  margin: 8px 0 20px;
}

.so3-panel__value {
  display: block;
  font-family: var(--so3-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--so3-grad-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.so3-panel__caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.so3-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.so3-panel__tags span {
  padding: 7px 12px;
  border-radius: var(--so3-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.so3-hero__chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--so3-line);
}

.so3-hero__chips a {
  padding: 10px 18px;
  border-radius: var(--so3-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.so3-hero__chips a:hover {
  background: rgba(129, 87, 246, 0.18);
  border-color: rgba(129, 87, 246, 0.45);
}

/* Sections */
.so3-band {
  padding: var(--so3-space-band) 0;
}

.so3-band--soft {
  background: var(--so3-soft);
}

.so3-band--dark {
  background: var(--so3-bg);
  color: var(--so3-white);
}

.so3-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.so3-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.so3-head--light h2,
.so3-head--light p {
  color: var(--so3-white);
}

.so3-head h2 {
  margin: 0 0 10px;
  font-family: var(--so3-display);
  font-size: clamp(1.75rem, 3.2vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.so3-section-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--so3-purple);
}

.so3-section-kicker--light {
  color: #cc75ff;
}

.so3-head p {
  margin: 0;
  color: var(--so3-muted);
  font-size: 1.05rem;
}

.so3-head--light p {
  color: rgba(255, 255, 255, 0.65);
}

.so3-textlink {
  color: var(--so3-purple);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.so3-textlink:hover {
  text-decoration: underline;
}

/* Audience list */
.so3-audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #e8e8ee;
  border-radius: 24px;
  overflow: hidden;
  background: var(--so3-white);
}

.so3-audience__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 28px 28px 28px 24px;
  border-bottom: 1px solid #ececf2;
}

.so3-audience__item:nth-child(odd) {
  border-right: 1px solid #ececf2;
}

.so3-audience__item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.so3-audience__idx {
  font-family: var(--so3-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ddd;
  line-height: 1;
  padding-top: 4px;
}

.so3-audience__item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.so3-audience__item p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

/* Bento */
.so3-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.so3-bento__cell {
  padding: 22px 18px;
  border-radius: 20px;
  background: var(--so3-soft);
  border: 1px solid #ececf2;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.so3-bento__cell:hover {
  border-color: rgba(129, 87, 246, 0.35);
  transform: translateY(-2px);
}

.so3-bento__cell:nth-child(1),
.so3-bento__cell:nth-child(4) {
  background: linear-gradient(135deg, rgba(129, 87, 246, 0.08), rgba(225, 117, 255, 0.06));
}

/* Scenarios */
.so3-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.so3-scenario {
  position: relative;
  display: block;
  padding: 26px 22px 56px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--so3-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.so3-scenario:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(129, 87, 246, 0.45);
  transform: translateY(-3px);
}

.so3-scenario__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cc75ff;
}

.so3-scenario h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.so3-scenario p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.so3-scenario__go {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--so3-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Timeline */
.so3-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.so3-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #c55de0, #7f56f6);
  opacity: 0.35;
}

.so3-timeline li {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.so3-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--so3-white);
  border: 2px solid #d8c9ff;
  font-family: var(--so3-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--so3-purple);
  position: relative;
  z-index: 1;
}

.so3-timeline li strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.so3-timeline li span {
  display: block;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

/* Metrics */
.so3-metrics-band {
  background: linear-gradient(180deg, var(--so3-white) 0%, var(--so3-soft) 100%);
  text-align: center;
}

.so3-metrics-band__quote {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #444;
}

.so3-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.so3-metrics__item {
  padding: 28px 16px;
  border-radius: 22px;
  background: var(--so3-white);
  border: 1px solid #ececf2;
  box-shadow: 0 8px 24px rgba(34, 34, 59, 0.04);
}

.so3-metrics__val {
  font-family: var(--so3-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  background: var(--so3-grad-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.so3-metrics__lbl {
  font-size: 0.78rem;
  color: var(--so3-muted);
  line-height: 1.35;
}

/* Cases */
.so3-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.so3-cases__col h3 {
  margin: 0 0 14px;
  font-family: var(--so3-display);
  font-size: 0.95rem;
  color: var(--so3-purple);
}

.so3-casecard {
  display: block;
  padding: 18px 20px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: var(--so3-soft);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.so3-casecard:hover {
  background: var(--so3-white);
  border-color: rgba(129, 87, 246, 0.28);
}

.so3-casecard__name {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.so3-casecard__txt {
  display: block;
  font-size: 0.88rem;
  color: #555;
}

/* Split / terminal */
.so3-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.so3-split--reverse {
  direction: rtl;
}

.so3-split--reverse > * {
  direction: ltr;
}

.so3-checks {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.so3-checks li {
  position: relative;
  padding: 0 0 12px 28px;
  color: #333;
}

.so3-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--so3-purple);
  font-weight: 700;
}

.so3-terminal {
  border-radius: 20px;
  overflow: hidden;
  background: #141428;
  border: 1px solid #2a2a44;
  box-shadow: 0 24px 48px rgba(20, 20, 40, 0.18);
}

.so3-terminal__bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #1c1c34;
}

.so3-terminal__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.so3-terminal__bar span:first-child {
  background: #ff5f57;
}

.so3-terminal__bar span:nth-child(2) {
  background: #febc2e;
}

.so3-terminal__bar span:nth-child(3) {
  background: #28c840;
}

.so3-terminal pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.so3-terminal code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #d8d8f0;
}

/* Moderation visual */
.so3-moderation-visual ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e8e8ee;
  background: var(--so3-white);
}

.so3-moderation-visual li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f0f5;
  font-size: 0.92rem;
}

.so3-moderation-visual li:last-child {
  border-bottom: 0;
}

.so3-moderation-visual em {
  font-style: normal;
  font-weight: 700;
  color: var(--so3-purple);
  font-size: 0.85rem;
}

/* Not for / bridge */
.so3-notfor__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.so3-notfor__list li {
  padding: 18px 20px 18px 52px;
  border-radius: 16px;
  background: var(--so3-soft);
  position: relative;
  color: #444;
}

.so3-notfor__list li::before {
  content: "→";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--so3-purple);
  font-weight: 700;
}

.so3-bridge {
  padding: 24px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 34, 59, 0.04), rgba(129, 87, 246, 0.06));
  border: 1px solid #e8e4f8;
}

.so3-bridge strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--so3-display);
  font-size: 1rem;
}

.so3-bridge p {
  margin: 0;
  color: #444;
}

.so3-bridge a {
  color: var(--so3-purple);
  font-weight: 600;
}

/* FAQ */
.so3-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.so3-faq__grid details {
  border-bottom: 1px solid #e8e8ee;
  padding: 4px 0;
}

.so3-faq__grid summary {
  padding: 16px 28px 16px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.so3-faq__grid summary::-webkit-details-marker {
  display: none;
}

.so3-faq__grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.2rem;
  color: var(--so3-purple);
}

.so3-faq__grid details[open] summary::after {
  content: "−";
}

.so3-faq__grid p {
  margin: 0 0 16px;
  color: #555;
  font-size: 0.92rem;
}

/* Final CTA */
.so3-final {
  padding: clamp(72px, 10vw, 110px) 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(129, 87, 246, 0.35), transparent 60%),
    var(--so3-bg);
  color: var(--so3-white);
  text-align: center;
}

.so3-final__inner h2 {
  margin: 0 0 12px;
  font-family: var(--so3-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.so3-final__inner p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
  margin-inline: auto;
}

/* Footer */
.so3-footer {
  padding: 40px 0;
  background: #18182c;
  color: rgba(255, 255, 255, 0.65);
}

.so3-footer__grid {
  display: grid;
  gap: 20px;
}

.so3-footer__brand strong {
  display: block;
  font-family: var(--so3-display);
  color: var(--so3-white);
  margin-bottom: 4px;
}

.so3-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.so3-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
}

.so3-footer__links a:hover {
  color: var(--so3-white);
}

.so3-footer__copy {
  margin: 16px auto 0;
  font-size: 0.78rem;
  opacity: 0.55;
}

body.so-page-prod-nav .so3-footer--prod {
  background: #262640;
  padding: 72px 0 40px;
}

body.so-page-prod-nav.so3-sticky-on .so3-footer--prod {
  padding-bottom: calc(50px + 88px + env(safe-area-inset-bottom, 0px));
}

body.so-page-prod-nav .so3-final {
  padding-bottom: 72px;
}

body.so-page-prod-nav .so3-footer__prod {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 32px 40px;
  align-items: start;
}

body.so-page-prod-nav .so3-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

body.so-page-prod-nav .so3-footer__logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
}

body.so-page-prod-nav .so3-footer__lead {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 28ch;
}

body.so-page-prod-nav .so3-footer__accents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

body.so-page-prod-nav .so3-footer__accents a {
  color: #da5fdc;
  text-decoration: none;
  font-family: var(--so3-display);
  font-size: 0.92rem;
  font-weight: 600;
}

body.so-page-prod-nav .so3-footer__accents a:hover {
  color: var(--so3-white);
}

body.so-page-prod-nav .so3-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.so-page-prod-nav .so3-footer__col-title {
  margin: 0 0 6px;
  font-family: var(--so3-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
}

body.so-page-prod-nav .so3-footer__col a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--so3-display);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

body.so-page-prod-nav .so3-footer__col a:hover {
  color: #da5fdc;
}

/* Responsive */
@media (max-width: 1100px) {
  .so3-scenarios,
  .so3-metrics,
  .so3-timeline,
  .so3-pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .so3-trust,
  .so3-compare {
    grid-template-columns: repeat(2, 1fr);
  }

  .so3-timeline::before {
    display: none;
  }

  .so3-timeline li {
    text-align: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 0 0 20px;
  }

  .so3-timeline__dot {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .so3-hero__layout,
  .so3-split,
  .so3-split--reverse {
    grid-template-columns: 1fr;
  }

  .so3-hero__panel {
    justify-self: stretch;
  }

  .so3-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .so3-audience {
    grid-template-columns: 1fr;
  }

  .so3-audience__item:nth-child(odd) {
    border-right: 0;
  }

  .so3-audience__item:nth-last-child(-n+2) {
    border-bottom: 1px solid #ececf2;
  }

  .so3-audience__item:last-child {
    border-bottom: 0;
  }

  .so3-cases,
  .so3-faq__grid,
  .so3-pricing,
  .so3-trust,
  .so3-compare {
    grid-template-columns: 1fr;
  }

  .so3-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .so3-nav,
  .so3-header__cta {
    display: none;
  }

  .so3-menu-btn {
    display: block;
    margin-left: auto;
  }

  .so3-hero {
    padding-top: 96px;
    min-height: auto;
  }

  .so3-hero__actions {
    flex-direction: column;
  }

  .so3-btn--xl {
    width: 100%;
  }

  .so3-sticky-cta__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  body.so-page-prod-nav .so3-sticky-cta__text {
    white-space: normal;
  }

  body.so-page-prod-nav .so3-footer__prod {
    grid-template-columns: 1fr 1fr;
  }

  .so3-sticky-cta__actions {
    justify-content: center;
  }

  .so3-sticky-cta__actions .so3-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .so3-scenarios,
  .so3-metrics,
  .so3-bento {
    grid-template-columns: 1fr;
  }

  .so3-diagram--integration svg {
    min-width: 720px;
  }

  .so3-diagram-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  body.so-page-prod-nav .so3-footer__prod {
    grid-template-columns: 1fr;
  }
}

/* ── Icons & diagrams ── */
.so3-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.so3-ico {
  flex-shrink: 0;
  display: block;
}

.so3-ico-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}

.so3-ico-box--soft {
  background: linear-gradient(135deg, rgba(129, 87, 246, 0.14), rgba(225, 117, 255, 0.08));
  color: var(--so3-purple);
  border: 1px solid rgba(129, 87, 246, 0.18);
}

.so3-ico-box--bento {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: var(--so3-white);
  color: var(--so3-purple);
  border: 1px solid #ececf2;
  box-shadow: 0 4px 14px rgba(34, 34, 59, 0.05);
}

.so3-ico-box--dark {
  background: rgba(129, 87, 246, 0.18);
  color: #e175ff;
  border: 1px solid rgba(129, 87, 246, 0.28);
  margin-bottom: 12px;
}

.so3-ico-box--metric {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: rgba(129, 87, 246, 0.1);
  color: var(--so3-purple);
}

.so3-metrics-footnote {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--so3-muted);
}

.so3-panel__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.so3-panel__tags .so3-ico {
  opacity: 0.85;
}

.so3-panel__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.so3-panel__flow i {
  font-style: normal;
  color: #cc75ff;
}

.so3-panel__flow-brand {
  padding: 4px 10px;
  border-radius: var(--so3-pill);
  background: var(--so3-grad);
  color: var(--so3-white) !important;
}

.so3-audience__item {
  grid-template-columns: 56px 1fr;
  align-items: start;
}

.so3-bento__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 120px;
}

.so3-bento__cell span:last-child {
  line-height: 1.35;
}

.so3-band--diagram {
  background:
    radial-gradient(circle at 10% 20%, rgba(129, 87, 246, 0.06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(225, 117, 255, 0.05), transparent 35%),
    var(--so3-white);
}

.so3-diagram-wrap,
.so3-diagram {
  width: 100%;
}

.so3-diagram svg {
  display: block;
  width: 100%;
  height: auto;
}

.so3-diagram--integration {
  padding: 24px;
  border-radius: 24px;
  background: var(--so3-soft);
  border: 1px solid #ececf2;
  margin-bottom: 32px;
  overflow-x: auto;
}

.so3-diagram--integration svg {
  min-width: 800px;
}

.so3-diagram-duo__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.so3-diagram-duo__item h3 .so3-ico {
  color: var(--so3-purple);
}

.so3-diagram--platform {
  padding: 20px;
  border-radius: 22px;
  background: var(--so3-white);
  border: 1px solid #ececf2;
  box-shadow: 0 12px 40px rgba(34, 34, 59, 0.06);
}

.so3-scenario__icon {
  display: block;
}

.so3-timeline__dot {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid #d8c9ff;
  background: var(--so3-white);
  color: var(--so3-purple);
}

.so3-timeline__dot .so3-ico {
  margin: auto;
}

.so3-metrics__icon {
  display: flex;
  justify-content: center;
}

.so3-casecard {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 14px;
  align-items: start;
}

.so3-casecard__icon {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(129, 87, 246, 0.1);
  color: var(--so3-purple);
}

.so3-casecard__name {
  grid-column: 2;
}

.so3-casecard__txt {
  grid-column: 2;
}

.so3-cases__col h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--so3-grad);
  vertical-align: middle;
}

.so3-checks--icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.so3-checks--icons li::before {
  display: none;
}

.so3-checks--icons .so3-ico {
  margin-top: 2px;
  color: var(--so3-purple);
  flex-shrink: 0;
}

.so3-moderation-visual {
  display: grid;
  gap: 16px;
}

.so3-diagram--moderation svg {
  max-width: 360px;
  margin-inline: auto;
}

.so3-moderation-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8e8ee;
  background: var(--so3-white);
}

.so3-moderation-stats li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f5;
  font-size: 0.88rem;
}

.so3-moderation-stats li:last-child {
  border-bottom: 0;
}

.so3-moderation-stats .so3-ico {
  color: var(--so3-purple);
}

.so3-moderation-stats em {
  font-style: normal;
  font-weight: 700;
  color: var(--so3-purple);
  font-size: 0.82rem;
}

.so3-bridge .so3-diagram--bridge {
  margin: 16px 0;
  padding: 12px;
  border-radius: 16px;
  background: var(--so3-white);
}

.so3-faq__q {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.so3-faq__q .so3-ico {
  margin-top: 2px;
  color: var(--so3-purple);
  flex-shrink: 0;
}

.so3-notfor__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.so3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 70%);
  pointer-events: none;
}

.so3-hero {
  position: relative;
}

.so3-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(225, 117, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(129, 87, 246, 0.15), transparent 40%);
  pointer-events: none;
}

.so3-final {
  position: relative;
}

.so3-final__inner {
  position: relative;
  z-index: 1;
}
