/* Awilix Local — Nexera-inspired, dark navy + electric accent, sans-serif everywhere */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

:root {
  --bg: #0B0814;
  --bg-elev: #140F23;
  --bg-card: #1A1430;
  --line: rgba(255, 255, 255, 0.07);
  --line-soft: rgba(255, 255, 255, 0.03);
  --text: #F2F0F7;
  --text-dim: rgba(242, 240, 247, 0.65);
  --text-mute: rgba(242, 240, 247, 0.45);
  --accent: #C53FE5;
  --accent-bright: #DC68F0;
  --accent-deep: #A21CAF;
  --accent-pink: #DB2777;
  --accent-dim: rgba(197, 63, 229, 0.14);
  --accent-soft: rgba(197, 63, 229, 0.05);
  --grad-ai: linear-gradient(135deg, #B14CFF 0%, #C026D3 45%, #DB2777 100%);
  --grad-soft: linear-gradient(135deg, rgba(177, 76, 255, 0.08), rgba(219, 39, 119, 0.05));
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 980px; }
.center { text-align: center; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 8, 20, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  transition: opacity 0.15s ease;
}
.logo:hover { opacity: 0.85; }
.logo__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(197, 63, 229, 0.25));
}
.logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo__icon--sm { width: 28px; height: 28px; }
.logo__text { line-height: 1; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.logo__sub {
  margin-left: 3px;
  font-weight: 800;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.nav .logo__text {
  color: rgba(242, 240, 247, 0.55);
  font-weight: 500;
  letter-spacing: 0;
}

.nav__menu {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.nav__menu a {
  position: relative;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav__menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav__menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav__menu a.active::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--grad-ai);
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__inner { padding: 12px 20px; gap: 16px; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--grad-ai);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 700;
  transition: all 0.3s ease, background-position 0.4s ease;
}
.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(197, 63, 229, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 15px 26px; font-size: 15px; }
.btn--xl { padding: 18px 32px; font-size: 16px; }
.btn .arrow { font-family: 'Inter', sans-serif; font-size: 1.05em; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── PILL ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pill__dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ─── HEADINGS ─── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  color: var(--text);
  font-weight: 800;
}
h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 20px;
}
h3 { font-size: 20px; color: var(--text); margin-bottom: 10px; }
.accent {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section__lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0 0 40px;
  line-height: 1.6;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: max(520px, calc(100vh - 188px));
  display: flex;
  align-items: center;
  padding: 56px 0;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 760px) {
  .hero { min-height: auto; padding: 72px 0 56px; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 20%, rgba(177, 76, 255, 0.24), transparent 65%),
    radial-gradient(ellipse 600px 400px at 75% 75%, rgba(192, 38, 211, 0.16), transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 15%, rgba(219, 39, 119, 0.10), transparent 60%);
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 63, 229, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 63, 229, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 65%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  margin: 14px auto 12px;
  max-width: 14ch;
}
.hero .lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-dim);
  max-width: 54ch;
  margin: 0 auto;
}
.hero .lead strong { color: var(--text); font-weight: 600; }
.hero__ctas {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 12px;
}
.hero__trust a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }

/* ─── STATS STRIP ─── */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  background: var(--bg-elev);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat__num small {
  font-size: 0.4em;
  color: var(--text-mute);
  font-weight: 500;
  margin-left: 4px;
}
.stat--accent .stat__num {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stat--accent .stat__num small {
  -webkit-text-fill-color: var(--text-mute);
  color: var(--text-mute);
}
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
}
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ─── ORBITAL STACK ─── */
.section--orbital {
  position: relative;
  overflow: hidden;
}
.section--orbital::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -40%);
  background: radial-gradient(circle, rgba(177, 76, 255, 0.15), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section--orbital > * { position: relative; z-index: 1; }
.orbital {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 780px;
  margin: 60px auto 0;
}
.orbital__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(197, 63, 229, 0.18);
  pointer-events: none;
}
.orbital__ring--outer { width: 620px; height: 620px; }
.orbital__ring--inner { width: 380px; height: 380px; border-color: rgba(197, 63, 229, 0.1); }
.orbital__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbital__core {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(177, 76, 255, 0.4), transparent 60%),
    linear-gradient(135deg, rgba(26, 20, 48, 0.95), rgba(11, 8, 20, 0.95));
  border: 1px solid rgba(197, 63, 229, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 0 80px rgba(177, 76, 255, 0.4),
    inset 0 0 40px rgba(197, 63, 229, 0.08);
  z-index: 3;
}
.orbital__core::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(197, 63, 229, 0.25);
  animation: orbital-pulse 3s ease-in-out infinite;
}
@keyframes orbital-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.04); }
}
.orbital__core-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.orbital__core-name {
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.orbital__core-sub {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.4;
}
.orbital__sats {
  position: absolute;
  inset: 0;
}
.orbital__sat {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 80px;
  margin: -40px 0 0 -80px;
  transform: rotate(var(--angle)) translateX(310px) rotate(calc(var(--angle) * -1));
}
.orbital__sat-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 20, 48, 0.95), rgba(20, 15, 35, 0.85));
  border: 1px solid rgba(197, 63, 229, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}
.orbital__sat:hover .orbital__sat-inner {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(197, 63, 229, 0.4);
}
.orbital__sat-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-bright);
  margin-bottom: 4px;
}
.orbital__sat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.orbital__caption {
  text-align: center;
  margin: 40px 0 0;
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* mobile: stack list, kill orbit */
@media (max-width: 920px) {
  .orbital {
    height: auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
  }
  .orbital__ring { display: none; }
  .orbital__center {
    position: static;
    transform: none;
    width: 200px;
    height: 200px;
    margin-bottom: 16px;
  }
  .orbital__sats {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .orbital__sat {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    margin: 0;
  }
  .section--orbital::before { display: none; }
}
@media (max-width: 520px) {
  .orbital__sats { grid-template-columns: 1fr; }
}

/* ─── OUTCOMES ─── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.outcome {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  overflow: hidden;
}
.outcome:hover {
  border-color: rgba(197, 63, 229, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -20px rgba(197, 63, 229, 0.3);
}
.outcome--accent {
  background:
    radial-gradient(ellipse 400px 300px at 100% 0%, rgba(197, 63, 229, 0.14), transparent 70%),
    var(--bg-card);
  border-color: rgba(197, 63, 229, 0.25);
}
.outcome__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.outcome__metric {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.outcome__metric small {
  font-size: 0.5em;
  font-weight: 700;
  -webkit-text-fill-color: var(--accent-bright);
  color: var(--accent-bright);
  margin-left: 2px;
}
.outcome h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.outcome > p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
  flex-grow: 1;
}
.outcome__drivers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.driver {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(197, 63, 229, 0.1);
  border: 1px solid rgba(197, 63, 229, 0.2);
  color: var(--accent-bright);
  letter-spacing: 0.02em;
}
.outcome__proof {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.outcome__proof:hover { color: var(--accent-bright); }
.outcome__proof .arrow { transition: transform 0.18s ease; }
.outcome__proof:hover .arrow { transform: translateX(3px); }
@media (max-width: 760px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* ─── SECTIONS ─── */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section--alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ─── SWAP (paired compare) ─── */
.swap {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 32px 32px;
}
.swap__header {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
}
.swap__header-col {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.swap__header-col--us { color: var(--accent); }
.swap__header-arrow { /* spacer */ }

.swap__row, .swap__total {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.swap__row:last-of-type { border-bottom: none; }

.swap__from, .swap__to {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.swap__from { padding-right: 4px; }
.swap__to {
  padding-left: 4px;
}
.swap__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.swap__from .swap__name { color: var(--text-dim); }
.swap__to .swap__name { color: var(--text); }
.swap__amt {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.swap__amt small {
  font-size: 0.65em;
  color: var(--text-mute);
  font-weight: 500;
  margin-left: 2px;
}
.swap__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #1A0033;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.swap__arrow {
  color: var(--accent);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  justify-self: center;
}

.swap__total {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 2px solid var(--line);
  border-bottom: none;
}
.swap__amt--big {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.swap__amt--us {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.swap__amt--us small { -webkit-text-fill-color: var(--text-mute); color: var(--text-mute); }
.swap__to--total .swap__name,
.swap__from--total .swap__name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-weight: 600;
}
.swap__to--total .swap__name { color: var(--accent); }

@media (max-width: 760px) {
  .swap { padding: 12px 20px 24px; }
  .swap__header { display: none; }
  .swap__row, .swap__total {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .swap__from, .swap__to { padding: 0; }
  .swap__arrow { display: none; }
  .swap__from { padding-bottom: 6px; border-bottom: 1px dashed var(--line-soft); }
  .swap__to::before {
    content: 'Replaced by';
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-right: 6px;
  }
}

/* ─── COMPARE (legacy, kept for backward compat) ─── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.compare__col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.compare__col--us {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-card) 60%);
  box-shadow: 0 0 80px rgba(197, 63, 229, 0.12);
}
.compare__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.compare__heading--us { color: var(--accent); }
.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.compare__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.compare__list li:last-child { border-bottom: none; }
.compare__list li span { color: var(--text); }
.compare__list li b { font-weight: 700; color: var(--text-dim); }
.compare__list li b small { color: var(--text-mute); font-weight: 500; font-size: 12px; margin-left: 2px; }
.compare__list li.muted span { color: var(--text-mute); }
.compare__list li.muted b { color: rgba(255, 100, 100, 0.6); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare__list--us li i {
  font-style: normal;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #1A0033;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.compare__total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.compare__total span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-mute);
}
.compare__total b {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.compare__total b small { font-size: 0.4em; color: var(--text-mute); font-weight: 500; margin-left: 4px; }
.compare__total--us { border-top-color: var(--accent); }
.compare__total--us b { color: var(--accent); }
.compare__total--us span { color: var(--accent); }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
}

/* SAVINGS block */
.savings {
  margin-top: 48px;
  padding: 40px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(177, 76, 255, 0.18), rgba(192, 38, 211, 0.08), rgba(219, 39, 119, 0.06));
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 0 80px rgba(192, 38, 211, 0.15);
}
.savings__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.savings__amt {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.savings__amt small {
  font-size: 0.25em;
  color: var(--accent);
  margin-left: 6px;
  font-weight: 600;
  -webkit-text-fill-color: var(--accent);
}
.savings__pct {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-dim);
}
@media (max-width: 760px) {
  .savings { padding: 32px; flex-direction: column; align-items: flex-start; }
}

/* ─── 7 SYSTEMS ─── */
.systems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.system {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: all 0.22s ease;
}
.section--alt .system { background: var(--bg); }
.system:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.system__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.system h3 { font-size: 18px; margin-bottom: 8px; }
.system p { font-size: 14px; color: var(--text-dim); line-height: 1.55; margin: 0; }
.badge {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 7px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  vertical-align: middle;
}
.system--cta {
  background: var(--grad-ai);
  border-color: transparent;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  gap: 12px;
}
.system--cta:hover { box-shadow: 0 12px 40px rgba(197, 63, 229, 0.45); }
.system__cta-text { font-size: 22px; font-weight: 800; }

/* ─── ADD-ONS ─── */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.addon {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.22s ease;
}
.addon:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.addon__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.addon__icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon__price {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.addon__price small { font-size: 0.4em; color: var(--text-mute); font-weight: 500; margin-left: 2px; }
.addon h3 { font-size: 22px; margin-bottom: 12px; }
.addon p { color: var(--text-dim); font-size: 14px; margin-bottom: 16px; }
.addon__features { list-style: none; padding: 0; margin: 0; }
.addon__features li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-dim);
}
.addon__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── TIMELINE ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent), var(--accent-dim));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.step__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #1A0033;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  border: 4px solid var(--bg);
}
.section--alt .step__node { border-color: var(--bg-elev); }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin: 0; }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
}

/* ─── PRICING ─── */
.price-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-card));
  box-shadow: 0 0 80px rgba(197, 63, 229, 0.12);
}
.price-card__main {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.price-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-card__amt {
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.price-card__amt small {
  font-size: 0.22em;
  color: var(--text-mute);
  font-weight: 500;
  margin-left: 8px;
  -webkit-text-fill-color: var(--text-mute);
}
.price-card__terms { font-size: 14px; color: var(--text-dim); margin-bottom: 10px; }
.price-card__addons {
  padding: 40px 32px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.price-card__addon-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.price-card__addon-row, .price-card__addon-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
}
.price-card__addon-row { padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.price-card__addon-row span { color: var(--text); }
.price-card__addon-row b { color: var(--accent); font-weight: 700; }
.price-card__addon-row b small, .price-card__addon-total b small { font-size: 0.7em; color: var(--text-mute); font-weight: 500; margin-left: 2px; }
.price-card__addon-total { padding-top: 16px; margin-top: 4px; border-top: 2px solid var(--line); }
.price-card__addon-total b { font-size: 19px; color: var(--text); }
@media (max-width: 760px) {
  .price-card { grid-template-columns: 1fr; }
  .price-card__addons { border-left: none; border-top: 1px solid var(--line); }
}

/* ─── FAQ ─── */
.faq {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq p { color: var(--text-dim); font-size: 15px; margin: 14px 0 0; line-height: 1.65; }

/* ─── ABOUT: focus grid + values ─── */
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.focus-col {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.focus-col__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.focus-col__heading--do { color: var(--accent); }
.focus-col__heading--dont { color: var(--text-mute); }
.focus-list { list-style: none; padding: 0; margin: 0; }
.focus-list li {
  padding: 10px 0 10px 22px;
  font-size: 15px;
  color: var(--text);
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.focus-list li:last-child { border-bottom: none; }
.focus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.focus-list--dont li { color: var(--text-dim); }
.focus-list--dont li::before {
  content: '✕';
  color: var(--text-mute);
}
@media (max-width: 760px) {
  .focus-grid { grid-template-columns: 1fr; }
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.22s ease;
}
.value:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.value h3 {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.value p { color: var(--text-dim); font-size: 14px; margin: 0; }
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(177, 76, 255, 0.15), rgba(219, 39, 119, 0.1));
  border: 1px solid rgba(197, 63, 229, 0.25);
  color: var(--accent-bright);
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
}

/* ─── ABOUT: hero variant (no min-height fill) ─── */
.hero--about {
  min-height: auto;
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 7vw, 80px);
}

/* ─── ABOUT: hero centered (single column, awilix.ai/about style) ─── */
.hero--centered {
  min-height: max(520px, calc(100vh - 188px));
  padding: 56px 0;
  text-align: center;
}
.hero-about {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-about__mark {
  width: clamp(80px, 9vw, 110px);
  height: clamp(80px, 9vw, 110px);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 12px 40px rgba(197, 63, 229, 0.5));
}
.hero-about__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-about h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 auto 22px;
  max-width: 18ch;
}
.hero-about .lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 auto 32px;
  max-width: 58ch;
}
.hero-about__cta {
  display: flex;
  justify-content: center;
}

.brand-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 48px 36px 36px;
  background:
    radial-gradient(ellipse 600px 400px at 50% 30%, rgba(197, 63, 229, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(26, 20, 48, 0.85), rgba(20, 15, 35, 0.75));
  border: 1px solid rgba(197, 63, 229, 0.22);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(177, 76, 255, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.4);
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(177, 76, 255, 0.5), rgba(192, 38, 211, 0.2), rgba(219, 39, 119, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.brand-card__halo {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(177, 76, 255, 0.4), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.brand-card > * { position: relative; z-index: 1; }
.brand-card__top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.brand-card__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 12px 40px rgba(197, 63, 229, 0.5));
}
.brand-card__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-card__tag {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.brand-card__pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.brand-card .pillar {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}
.brand-card .pillar--accent {
  background: var(--grad-ai);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(197, 63, 229, 0.5);
}
.brand-card__foot {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.brand-card__foot .dot { color: var(--accent); }

@media (max-width: 920px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-split__left .lead { margin-left: auto; margin-right: auto; }
  .hero-split__left .hero__ctas { justify-content: center; }
  .hero-split__left .pill { margin-left: auto; margin-right: auto; }
}

/* ─── ABOUT: reality cards ─── */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reality-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.reality-card--accent {
  background:
    radial-gradient(ellipse 400px 300px at 50% 0%, rgba(197, 63, 229, 0.18), transparent 70%),
    var(--bg-card);
  border-color: rgba(197, 63, 229, 0.3);
  box-shadow: 0 20px 50px -20px rgba(197, 63, 229, 0.35);
}
.reality-card__num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.reality-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.reality-card > p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.reality-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reality-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
}
.reality-list li:last-child { border-bottom: none; }
.reality-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent-bright);
  font-weight: 700;
}
.reality-list--cross li { color: var(--text-dim); }
.reality-list--cross li::before {
  content: '✕';
  color: var(--text-mute);
}
.reality-card__foot {
  margin: auto 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-style: italic;
  color: var(--text-mute);
}
@media (max-width: 920px) {
  .reality-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── ABOUT: founder card ─── */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-top: 40px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: start;
}
.founder__photo {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: var(--grad-ai);
  padding: 2px;
  position: relative;
  overflow: hidden;
}
.founder__photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 15, 35, 1), rgba(11, 8, 20, 1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__photo-inner span {
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.founder__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.founder__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 4px 0 18px;
}
.founder__body > p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 18px;
}
.founder__quote {
  position: relative;
  margin: 0 0 18px;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--accent);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.founder__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.signal--accent {
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; gap: 24px; padding: 28px; text-align: left; }
  .founder__photo { width: 140px; height: 140px; }
}

/* ─── ABOUT: compare table ─── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.compare__col {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.compare__col--against { opacity: 0.85; }
.compare__col--us {
  background:
    radial-gradient(ellipse 400px 300px at 50% 0%, rgba(197, 63, 229, 0.15), transparent 70%),
    var(--bg-card);
  border-color: rgba(197, 63, 229, 0.3);
  box-shadow: 0 20px 50px -20px rgba(197, 63, 229, 0.3);
}
.compare__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.compare__col--us .compare__heading { color: var(--text); }
.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare__col li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
}
.compare__col li:last-child { border-bottom: none; }
.compare__col--against li { color: var(--text-dim); }
.compare__col--against li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 1px;
  background: var(--text-mute);
}
.compare__col--us li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent-bright);
  font-weight: 700;
}
.compare__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mute);
}
.compare__foot--us {
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 17px;
}
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
}

/* ─── ABOUT: testimonial ─── */
.testimonial {
  position: relative;
  text-align: center;
  padding: 60px 40px;
  background:
    radial-gradient(ellipse 800px 500px at 50% 50%, rgba(197, 63, 229, 0.12), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.testimonial__quote-mark {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
  font-weight: 700;
}
.testimonial__quote {
  position: relative;
  margin: 0 0 28px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
}
.testimonial__quote .accent {
  background: var(--grad-ai);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.testimonial__attr {
  margin-bottom: 24px;
}
.testimonial__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testimonial__role {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .testimonial { padding: 48px 24px 36px; }
  .testimonial__quote-mark { font-size: 80px; left: 20px; top: 12px; }
}

/* ─── LEGAL pages ─── */
.legal-content {
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  font-weight: 700;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  margin: 24px 0 10px;
  font-weight: 600;
}
.legal-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-content ul {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content .legal-meta {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* ─── CASE STUDIES LISTING ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  color: var(--text);
}
.case-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(197, 63, 229, 0.18);
}
.case-card__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 4px 0;
}
.case-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.case-card__metric { text-align: center; }
.case-card__metric b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.case-card__metric span {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.case-card__cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.case-card--soon { opacity: 0.7; }
.case-card--soon:hover { opacity: 1; }

/* ─── CASE STUDY DETAIL ─── */
.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent); }

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.result {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  text-align: center;
  transition: all 0.22s ease;
}
.result:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.result__num {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.result__label {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.result__label small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 400;
}
@media (max-width: 760px) {
  .results { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .results { grid-template-columns: 1fr; }
}

.story {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
.story__block {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.story__block h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.story__block p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.stack-tag {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.stack-tag--accent {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* ─── FINAL CTA ─── */
.section--cta {
  background: var(--bg);
  text-align: center;
}
.cta-card {
  position: relative;
  background:
    radial-gradient(ellipse 700px 500px at 50% 100%, rgba(197, 63, 229, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(20, 15, 35, 0.65), rgba(11, 8, 20, 0.45));
  border: 1px solid rgba(197, 63, 229, 0.22);
  border-radius: 24px;
  padding: 72px 48px 60px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(177, 76, 255, 0.35);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(177, 76, 255, 0.55), rgba(192, 38, 211, 0.25), rgba(219, 39, 119, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.cta-card .eyebrow { display: inline-block; }
.cta-card h2 { margin-top: 14px; }
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.cta-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B14CFF, #C026D3, #DB2777);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(197, 63, 229, 0.5);
}
.cta-microtrust {
  margin: 36px 0 0;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .cta-card { padding: 48px 24px 36px; border-radius: 20px; }
  .cta-bullets { gap: 10px 18px; }
  .cta-bullets li { font-size: 13px; }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p {
  color: var(--text-dim);
  font-size: 13px;
  margin: 10px 0 0;
  max-width: 28ch;
}
.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 13px;
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
