:root {
  --paper: #f7f5ef;
  --ink: #202124;
  --muted: #6b6f76;
  --blue: #315cff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  font: inherit;
}
button {
  color: inherit;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
.not-found .eyebrow {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(49, 92, 255, 0.2);
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.not-found h1 {
  margin: 18px 0;
  font-size: clamp(54px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.not-found p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.not-found .button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 800;
}
.not-found .button-primary {
  background: linear-gradient(135deg, var(--blue), #5338e8);
  color: #fff;
  box-shadow: 0 14px 30px rgba(49, 92, 255, 0.25);
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: optional;
  src: url("/fonts/playfair-display-cyrillic-600-italic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: optional;
  src: url("/fonts/playfair-display-latin-600-italic.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url("/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url("/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --neo-ink: #101018;
  --neo-paper: #f4f2ec;
  --neo-blue: #3154ff;
  --neo-coral: #ff6857;
  --neo-lime: #d8ff54;
  --neo-violet: #6b3cff;
  --neo-line: rgba(16, 16, 24, 0.15);
}
.mouse-aura {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  overflow: hidden;
}
.mouse-aura-shadow,
.mouse-aura-glow {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, width, height, opacity;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.25s ease,
    filter 0.3s ease;
}
.mouse-aura-shadow {
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(19, 20, 46, 0.2) 0,
    rgba(28, 33, 76, 0.12) 26%,
    rgba(49, 84, 255, 0.07) 48%,
    transparent 73%
  );
  filter: blur(18px);
  mix-blend-mode: multiply;
}
.mouse-aura-glow {
  width: 74px;
  height: 74px;
  background: radial-gradient(
    circle,
    rgba(216, 255, 84, 0.3) 0,
    rgba(49, 84, 255, 0.13) 38%,
    transparent 72%
  );
  filter: blur(8px);
  mix-blend-mode: screen;
}
.mouse-aura-shadow[data-visible="true"],
.mouse-aura-glow[data-visible="true"] {
  opacity: 1;
}
.mouse-aura-shadow[data-active="true"] {
  width: 260px;
  height: 260px;
  filter: blur(25px);
  opacity: 0.9;
}
.mouse-aura-glow[data-active="true"] {
  width: 112px;
  height: 112px;
  filter: blur(12px);
  opacity: 1;
}
html {
  scroll-behavior: smooth;
}
body:has(.neo-site) {
  margin: 0;
  background: var(--neo-paper);
  color: var(--neo-ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}
.neo-site * {
  box-sizing: border-box;
}
.neo-site a {
  color: inherit;
}
.neo-site img {
  display: block;
  max-width: 100%;
}
.neo-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1320px, calc(100% - 32px));
  height: 70px;
  margin: 14px auto 0;
  padding: 0 12px 0 24px;
  display: flex;
  align-items: center;
  gap: 42px;
  background: rgba(250, 249, 246, 0.87);
  border: 1px solid rgba(16, 16, 24, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 50px rgba(31, 30, 48, 0.12);
  backdrop-filter: blur(18px);
}
.neo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.neo-brand > img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 0;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}
.neo-brand span {
  font-weight: 500;
}
.neo-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.neo-header nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.25s;
}
.neo-header nav a:hover {
  opacity: 1;
  color: var(--neo-blue);
}
.neo-button {
  min-height: 52px;
  padding: 0 21px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--neo-blue);
  color: white !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(49, 84, 255, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.neo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(49, 84, 255, 0.32);
}
.neo-button > svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}
.neo-button-light {
  background: white;
  color: var(--neo-ink) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.neo-header .neo-button {
  position: relative;
  isolation: isolate;
  animation: neoCtaGlow 4.2s ease-in-out infinite;
}
.neo-header .neo-button:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 2px solid rgba(49, 84, 255, 0.34);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  animation: neoCtaRing 4.2s ease-out infinite;
}
.neo-hero {
  min-height: 770px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 58px;
  align-items: center;
  padding: 10px 0 50px;
}
.neo-hero-copy {
  position: relative;
  z-index: 2;
}
.neo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.neo-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(49, 84, 255, 0.11);
}
.neo-hero h1,
.neo-section-head h2,
.neo-dark-copy h2,
.neo-compare h2,
.neo-honest h2,
.neo-final h2 {
  margin: 24px 0 26px;
  font-size: clamp(54px, 6.35vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 700;
}
.neo-hero h1 em,
.neo-section-head h2 em,
.neo-dark-copy h2 em,
.neo-compare h2 em,
.neo-honest h2 em,
.neo-final h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}
.neo-hero h1 em {
  color: var(--neo-blue);
}
.neo-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.neo-link-icon svg {
  width: 20px;
  height: 20px;
}
.neo-live-headline {
  position: relative;
}
.neo-headline-topic {
  display: block;
  max-width: 570px;
  margin-bottom: 18px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #262735;
}
.neo-headline-stage {
  position: relative;
  display: block;
}
.neo-headline-placeholder {
  display: block;
  visibility: visible;
}
.has-js .neo-headline-placeholder {
  visibility: hidden;
}
.neo-headline-typing {
  position: absolute;
  inset: 0;
  display: block;
}
.neo-typed-line {
  white-space: nowrap;
}
.neo-headline-cursor {
  display: inline-block;
  width: 0.055em;
  height: 0.78em;
  margin-left: 0.055em;
  border-radius: 99px;
  background: var(--neo-blue);
  box-shadow: 0 0 18px rgba(49, 84, 255, 0.38);
  vertical-align: -0.02em;
  animation: neoCursor 0.72s steps(1) infinite;
}
.neo-typed-line em .neo-headline-cursor {
  height: 0.68em;
  vertical-align: 0.02em;
}
.neo-hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: #5e5e68;
  font-size: 18px;
  line-height: 1.7;
}
.neo-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.neo-text-link {
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 6px;
}
.neo-text-link-light {
  display: inline-flex;
  margin-top: 20px;
  color: white !important;
}
.neo-proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.neo-proof-row span {
  padding: 10px 13px;
  border: 1px solid var(--neo-line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.neo-hero-intent {
  max-width: 560px;
  margin: -2px 0 14px;
  font-family: "Unbounded", Manrope, sans-serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: #262735;
}
.neo-hero-art {
  position: relative;
  width: min(100%, 620px);
  margin: 0;
  justify-self: end;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(27, 29, 80, 0.25);
  transform: rotate(1.5deg);
  isolation: isolate;
}
.neo-hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    transparent 50%,
    rgba(216, 255, 84, 0.12)
  );
  pointer-events: none;
}
.neo-hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.42;
  object-fit: cover;
}
.neo-hero-art figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  background: rgba(7, 11, 46, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  backdrop-filter: blur(14px);
  font-size: 12px;
}
.neo-hero-art figcaption b {
  font-size: 16px;
}
.neo-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--neo-lime);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  animation: neoFloat 4s ease-in-out infinite;
}
.neo-float-a {
  right: 18px;
  top: 20px;
  padding: 12px 16px;
  border-radius: 17px;
}
.neo-float-a b {
  font-size: 28px;
}
.neo-float-a span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.neo-float-b {
  right: 28%;
  bottom: 16px;
  width: 47px;
  height: 47px;
  justify-content: center;
  border-radius: 50%;
  background: var(--neo-coral);
  color: white;
  animation-delay: -1.4s;
}
.neo-float-b i {
  font-style: normal;
  font-weight: 800;
}
.neo-hero-art.is-visible {
  animation: neoHeroEnter 1.15s cubic-bezier(0.16, 0.85, 0.25, 1) both;
}
.neo-hero-art.is-visible img {
  animation:
    neoHeroImageEnter 1.55s cubic-bezier(0.16, 0.8, 0.22, 1) both,
    neoHeroImageDrift 10s 1.6s ease-in-out infinite alternate;
}
.neo-hero-glow {
  position: absolute;
  z-index: 1;
  inset: -35%;
  background: conic-gradient(
    from 210deg,
    transparent 0 27%,
    rgba(82, 115, 255, 0.3) 34%,
    transparent 41% 69%,
    rgba(216, 255, 84, 0.18) 76%,
    transparent 83%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  animation: neoHeroGlow 11s linear infinite;
}
.neo-paper-storm {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.neo-sheet-flight {
  position: absolute;
  opacity: 0;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 30, 0.28));
  will-change: transform, opacity;
}
.neo-sheet-flight > i {
  display: block;
  width: 74px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(62, 91, 155, 0.13) 0 2px,
      transparent 2px 9px
    ),
    linear-gradient(145deg, #fff 0 76%, #d9e2ff 77%);
  box-shadow: inset 0 0 20px rgba(66, 91, 175, 0.1);
  animation: neoSheetFlutter 2.2s ease-in-out infinite alternate;
}
.neo-sheet-flight > i:after {
  content: "";
  display: block;
  width: 26px;
  height: 4px;
  margin: 14px 0 0 10px;
  border-radius: 5px;
  background: #6688ff;
  box-shadow: 0 8px 0 rgba(255, 104, 91, 0.72);
}
.neo-hero-art.is-visible .neo-sheet-flight-1 {
  left: -12%;
  top: 7%;
  animation: neoSheetFlyOne 2.2s 0.08s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-2 {
  left: 23%;
  top: -25%;
  animation: neoSheetFlyTwo 2.45s 0.2s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-3 {
  right: -13%;
  top: 22%;
  animation: neoSheetFlyThree 2.3s 0.36s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-4 {
  left: -14%;
  bottom: 3%;
  animation: neoSheetFlyFour 2.55s 0.48s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-5 {
  right: 7%;
  bottom: -30%;
  animation: neoSheetFlyFive 2.25s 0.62s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-6 {
  right: -15%;
  bottom: 8%;
  animation: neoSheetFlySix 2.4s 0.72s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-hero-art.is-visible .neo-sheet-flight-7 {
  left: 45%;
  top: -30%;
  animation: neoSheetFlySeven 2.15s 0.84s cubic-bezier(0.14, 0.72, 0.2, 1) both;
}
.neo-sheet-flight-2 > i,
.neo-sheet-flight-5 > i {
  width: 58px;
  height: 76px;
}
.neo-sheet-flight-4 > i,
.neo-sheet-flight-7 > i {
  width: 48px;
  height: 64px;
}
.neo-hero-terminal {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  width: min(330px, 47%);
  padding: 15px 17px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(8, 14, 55, 0.9),
    rgba(24, 30, 91, 0.72)
  );
  box-shadow: 0 20px 45px rgba(0, 0, 40, 0.32);
  color: white;
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
}
.neo-hero-art.is-visible .neo-hero-terminal {
  animation: neoTerminalEnter 0.75s 1.15s cubic-bezier(0.16, 0.8, 0.25, 1)
    forwards;
}
.neo-terminal-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #bfcaff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.neo-terminal-label > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neo-lime);
  box-shadow: 0 0 0 0 rgba(216, 255, 84, 0.55);
  animation: neoTerminalPulse 1.8s infinite;
}
.neo-hero-terminal strong {
  min-height: 40px;
  margin-top: 9px;
  display: block;
  font-size: 13px;
  line-height: 1.4;
}
.neo-typed-text > i {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--neo-lime);
  animation: neoCursor 0.72s steps(1) infinite;
}
.neo-hero-terminal > div {
  display: flex;
  gap: 4px;
}
.neo-hero-terminal > div span {
  width: 20%;
  height: 3px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.neo-hero-terminal > div span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6888ff, var(--neo-lime));
  transform: translateX(-105%);
  animation: neoProgress 0.65s forwards;
}
.neo-hero-terminal > div span:nth-child(1):after {
  animation-delay: 1.25s;
}
.neo-hero-terminal > div span:nth-child(2):after {
  animation-delay: 1.55s;
}
.neo-hero-terminal > div span:nth-child(3):after {
  animation-delay: 1.85s;
}
.neo-hero-terminal > div span:nth-child(4):after {
  animation-delay: 2.15s;
}
.neo-hero-terminal > div span:nth-child(5):after {
  animation-delay: 2.45s;
}
.neo-ticker {
  overflow: hidden;
  background: var(--neo-ink);
  color: white;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
  padding: 18px 0;
}
.neo-ticker div {
  width: max-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  word-spacing: 2em;
  animation: neoTicker 22s linear infinite;
}
.neo-ticker i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 36px;
  background: var(--neo-lime);
  transform: rotate(45deg);
}
.neo-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0;
}
.neo-section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: start;
}
.neo-section-head > span,
.neo-compare-copy > span,
.neo-honest > div > span,
.neo-final > div > span {
  padding-top: 10px;
  color: var(--neo-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.neo-section-head h2 {
  margin: 0;
  font-size: clamp(45px, 5.7vw, 78px);
  max-width: 930px;
}
.neo-intro .neo-lead,
.neo-prompts .neo-lead {
  width: min(690px, 100%);
  margin: 42px 0 50px auto;
  color: #5b5a64;
  font-size: 18px;
  line-height: 1.75;
}
.neo-cap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.neo-cap-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--neo-line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.neo-cap-card:nth-child(1),
.neo-cap-card:nth-child(2) {
  grid-column: span 6;
}
.neo-cap-card:nth-child(n + 3) {
  grid-column: span 4;
}
.neo-cap-card:before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -65px;
  top: -70px;
  border-radius: 50%;
  background: var(--neo-blue);
  filter: blur(0);
  opacity: 0.06;
  transition: 0.35s;
}
.neo-cap-card:nth-child(2):before,
.neo-cap-card:nth-child(4):before {
  background: var(--neo-coral);
}
.neo-cap-card:nth-child(3):before,
.neo-cap-card:nth-child(5):before {
  background: var(--neo-lime);
  opacity: 0.25;
}
.neo-cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(28, 27, 39, 0.12);
  border-color: transparent;
}
.neo-cap-card:hover:before {
  transform: scale(1.35);
  opacity: 0.18;
}
.neo-cap-card > span {
  color: #96949c;
  font-size: 12px;
  font-weight: 800;
}
.neo-cap-card h3 {
  margin: 26px 0 14px;
  font-size: 31px;
  letter-spacing: -0.05em;
}
.neo-cap-card p {
  margin: 0 0 26px;
  max-width: 490px;
  color: #686772;
  font-size: 14px;
  line-height: 1.65;
}
.neo-cap-card b {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.neo-cap-card b svg {
  width: 20px;
  height: 20px;
}
.neo-dark-split {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 95px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  background: var(--neo-ink);
  color: white;
  border-radius: 42px;
}
.neo-kicker-coral {
  color: var(--neo-coral);
}
.neo-dark-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}
.neo-dark-copy > p {
  color: #aaaab4;
  font-size: 16px;
  line-height: 1.75;
}
.neo-dark-copy ul {
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
}
.neo-dark-copy li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.neo-dark-copy li b {
  font-size: 13px;
}
.neo-dark-copy li span {
  color: #aaaab4;
  font-size: 13px;
  line-height: 1.5;
}
.neo-analysis-art {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.neo-analysis-art img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.neo-analysis-art figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}
.neo-analysis-art figcaption span {
  padding: 8px 11px;
  background: rgba(8, 8, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.neo-analysis-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(125deg, #111936 0%, #162b4d 46%, #093d3d 100%);
  box-shadow: 0 32px 90px rgba(11, 32, 60, 0.2);
}
.neo-analysis-section:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  animation: neoGridDrift 18s linear infinite;
}
.neo-analysis-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.68;
  animation: neoAnalysisOrb 9s ease-in-out infinite alternate;
}
.neo-analysis-orb-a {
  width: 420px;
  height: 420px;
  top: -240px;
  right: 18%;
  background: radial-gradient(
    circle,
    rgba(95, 235, 202, 0.42),
    transparent 68%
  );
}
.neo-analysis-orb-b {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -210px;
  background: radial-gradient(
    circle,
    rgba(126, 111, 255, 0.5),
    transparent 68%
  );
  animation-delay: -4s;
}
.neo-analysis-section .neo-dark-copy {
  position: relative;
  z-index: 2;
}
.neo-analysis-section .neo-kicker {
  color: #68f0cf;
  font-family: "Unbounded", Manrope, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.neo-analysis-section .neo-dark-copy h2 {
  max-width: 570px;
  margin: 27px 0 27px;
  font-family: "Unbounded", Manrope, sans-serif;
  font-size: clamp(35px, 3.9vw, 57px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.055em;
}
.neo-analysis-section .neo-dark-copy h2 em {
  font-family: inherit;
  font-style: normal;
  color: #9c8cff;
  background: linear-gradient(90deg, #9c8cff, #68f0cf);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.neo-analysis-section .neo-dark-copy > p {
  max-width: 610px;
  color: #cbd5e4;
  font-size: 15px;
  line-height: 1.78;
}
.neo-analysis-section .neo-analysis-list {
  padding-top: 18px;
}
.neo-analysis-section .neo-analysis-list li {
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-color: rgba(255, 255, 255, 0.13);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.neo-analysis-section .neo-analysis-list li:hover {
  transform: translateX(7px);
  border-color: rgba(104, 240, 207, 0.55);
}
.neo-analysis-list li > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(104, 240, 207, 0.55);
  border-radius: 50%;
  color: #68f0cf;
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
  font-style: normal;
}
.neo-analysis-list li > div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 13px;
  align-items: start;
}
.neo-analysis-section .neo-analysis-list b {
  font-size: 13px;
  color: #fff;
}
.neo-analysis-section .neo-analysis-list span {
  color: #aebdd1;
  font-size: 12px;
  line-height: 1.55;
}
.neo-analysis-link {
  align-items: center;
  gap: 8px;
  text-decoration-color: #68f0cf;
  text-decoration-thickness: 2px;
  transition:
    color 0.25s,
    transform 0.25s;
}
.neo-analysis-link:hover {
  color: #68f0cf !important;
  transform: translateX(5px);
}
.neo-analysis-link svg {
  width: 20px;
}
.neo-analysis-section .neo-analysis-art {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.4);
  transform: perspective(1100px) rotateY(-2deg);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.8s;
}
.neo-analysis-section .neo-analysis-art:hover {
  transform: perspective(1100px) rotateY(0) translateY(-8px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
}
.neo-analysis-section .neo-analysis-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(104, 240, 207, 0.12),
    transparent 38%,
    rgba(156, 140, 255, 0.12)
  );
  pointer-events: none;
}
.neo-analysis-section .neo-analysis-art img {
  aspect-ratio: 1.42;
  transform: scale(1.015);
  animation: neoImageBreathe 8s ease-in-out infinite alternate;
}
.neo-analysis-section .neo-analysis-art figcaption {
  z-index: 3;
  bottom: 20px;
  left: 20px;
  flex-wrap: wrap;
}
.neo-analysis-section .neo-analysis-art figcaption span {
  background: rgba(8, 18, 35, 0.76);
  border-color: rgba(104, 240, 207, 0.32);
  color: #e8fff9;
}
.neo-analysis-status {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(8, 18, 35, 0.7);
  backdrop-filter: blur(15px);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.neo-analysis-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #68f0cf;
  box-shadow: 0 0 0 0 rgba(104, 240, 207, 0.55);
  animation: neoStatusPulse 2s infinite;
}
.neo-analysis-status b {
  color: #68f0cf;
}
.neo-scan-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #68f0cf 25%,
    #9c8cff 75%,
    transparent
  );
  box-shadow: 0 0 20px #68f0cf;
  opacity: 0.75;
  animation: neoScan 5.5s ease-in-out infinite;
  pointer-events: none;
}
.neo-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 65px;
}
.neo-step-grid article {
  position: relative;
  min-height: 440px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neo-line);
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s,
    border-color 0.5s;
}
.neo-step-grid article:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 290px;
  height: 290px;
  right: -145px;
  top: -145px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 84, 255, 0.18), transparent 68%);
  transition: transform 0.8s;
}
.neo-step-grid article:nth-child(2):before {
  background: radial-gradient(circle, rgba(255, 104, 87, 0.2), transparent 68%);
}
.neo-step-grid article:nth-child(3):before {
  background: radial-gradient(circle, rgba(178, 222, 16, 0.3), transparent 68%);
}
.neo-step-grid article:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 28px 65px rgba(26, 29, 57, 0.14);
}
.neo-step-grid article:hover:before {
  transform: scale(1.45) translate(-20px, 20px);
}
.neo-step-number {
  position: absolute;
  top: 17px;
  right: 22px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(49, 84, 255, 0.45);
  font-family: "Unbounded", Manrope, sans-serif;
  font-size: clamp(66px, 7vw, 104px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.09em;
  opacity: 0.75;
  transform: translateY(-18px);
  transition:
    transform 0.6s,
    opacity 0.6s;
}
.neo-step-grid article:nth-child(2) .neo-step-number {
  -webkit-text-stroke-color: rgba(255, 104, 87, 0.5);
}
.neo-step-grid article:nth-child(3) .neo-step-number {
  -webkit-text-stroke-color: rgba(95, 118, 8, 0.55);
}
.neo-step-grid article:hover .neo-step-number {
  transform: translateY(-10px) translateX(-5px);
  opacity: 1;
}
.neo-step-icon {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 55px 0 34px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: linear-gradient(145deg, #4965ff, #243ff3);
  color: white;
  box-shadow: 0 18px 35px rgba(49, 84, 255, 0.28);
  animation: neoStepFloat 4.5s ease-in-out infinite;
}
.neo-step-icon:before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(49, 84, 255, 0.25);
  border-radius: 38px;
  transform: rotate(8deg);
  transition: transform 0.5s;
}
.neo-step-icon i {
  position: absolute;
  width: 24px;
  height: 24px;
  right: -9px;
  top: -9px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--neo-lime);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
  animation: neoStepDot 2.6s ease-in-out infinite;
}
.neo-step-icon svg {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  stroke-width: 1.7;
  transition: transform 0.5s;
}
.neo-step-grid article:nth-child(2) .neo-step-icon {
  background: linear-gradient(145deg, #ff7d70, #f24c42);
  box-shadow: 0 18px 35px rgba(255, 104, 87, 0.28);
  animation-delay: -1.5s;
}
.neo-step-grid article:nth-child(2) .neo-step-icon:before {
  border-color: rgba(255, 104, 87, 0.28);
  transform: rotate(-8deg);
}
.neo-step-grid article:nth-child(2) .neo-step-icon i {
  background: #9c8cff;
  animation-delay: -0.7s;
}
.neo-step-grid article:nth-child(3) .neo-step-icon {
  background: linear-gradient(145deg, #ddff61, #bce82e);
  color: var(--neo-ink);
  box-shadow: 0 18px 35px rgba(128, 150, 35, 0.23);
  animation-delay: -3s;
}
.neo-step-grid article:nth-child(3) .neo-step-icon:before {
  border-color: rgba(104, 130, 7, 0.3);
}
.neo-step-grid article:nth-child(3) .neo-step-icon i {
  background: #3154ff;
  animation-delay: -1.4s;
}
.neo-step-grid article:hover .neo-step-icon:before {
  transform: rotate(25deg) scale(1.06);
}
.neo-step-grid article:hover .neo-step-icon svg {
  transform: scale(1.12) rotate(-4deg);
}
.neo-step-grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.neo-step-grid p {
  margin: 0;
  color: #686772;
  font-size: 14px;
  line-height: 1.65;
}
.neo-step-grid small {
  margin-top: auto;
  padding-top: 22px;
  color: #98969d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.neo-svg-icon {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 23px;
  background: #e9edff;
  color: var(--neo-blue);
}
.neo-svg-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.65;
}
.neo-svg-icon-large {
  width: 96px;
  height: 96px;
  border-radius: 27px;
}
.neo-svg-icon-large svg {
  width: 56px;
  height: 56px;
}
.neo-svg-icon-xl {
  width: 112px;
  height: 112px;
  border-radius: 31px;
}
.neo-svg-icon-xl svg {
  width: 65px;
  height: 65px;
  stroke-width: 1.55;
}
.neo-cap-card:nth-child(2) .neo-svg-icon,
.neo-cap-card:nth-child(4) .neo-svg-icon {
  background: #ffe6e1;
  color: #dc4e3e;
}
.neo-cap-card:nth-child(3) .neo-svg-icon,
.neo-cap-card:nth-child(5) .neo-svg-icon {
  background: #efffbc;
  color: #465600;
}
.neo-studio .neo-lead,
.neo-audiences .neo-lead {
  width: min(720px, 100%);
  margin: 42px 0 50px auto;
  color: #5b5a64;
  font-size: 18px;
  line-height: 1.75;
}
.neo-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.neo-output-grid article {
  position: relative;
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neo-line);
  border-radius: 24px;
  background: white;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s;
}
.neo-output-grid article:nth-child(2),
.neo-output-grid article:nth-child(5) {
  background: #e5e9ff;
}
.neo-output-grid article:nth-child(3),
.neo-output-grid article:nth-child(6) {
  background: #f0ffc1;
}
.neo-output-grid article:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -115px;
  top: -115px;
  border-radius: 50%;
  border: 1px solid rgba(49, 84, 255, 0.15);
  transition: transform 0.7s;
}
.neo-output-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(31, 35, 74, 0.13);
}
.neo-output-grid article:hover:after {
  transform: scale(1.55);
}
.neo-output-grid h3 {
  margin: auto 0 14px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.neo-output-grid p {
  margin: 0;
  color: #62616a;
  font-size: 14px;
  line-height: 1.7;
}
.neo-studio-icon {
  width: 110px;
  height: 110px;
  border-radius: 32px;
  background: linear-gradient(145deg, #fff, #dce4ff);
  box-shadow:
    0 18px 35px rgba(49, 84, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  overflow: visible;
  transition: transform 0.5s;
}
.neo-studio-icon:before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 25px;
  background: linear-gradient(
    145deg,
    rgba(49, 84, 255, 0.16),
    rgba(255, 255, 255, 0.35)
  );
}
.neo-studio-icon > svg {
  z-index: 2;
  width: 56px;
  height: 56px;
  stroke-width: 1.7;
  filter: drop-shadow(0 6px 8px rgba(49, 84, 255, 0.18));
  animation: neoIconGlyph 4s ease-in-out infinite;
}
.neo-studio-icon > b {
  position: absolute;
  z-index: 3;
  right: -7px;
  bottom: -7px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: #3154ff;
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  box-shadow: 0 6px 15px rgba(19, 27, 74, 0.2);
}
.neo-icon-orbit {
  position: absolute;
  inset: -10px;
  z-index: 1;
  border: 1px solid rgba(49, 84, 255, 0.24);
  border-radius: 38px;
  animation: neoIconOrbit 8s linear infinite;
}
.neo-icon-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3154ff;
  box-shadow: 0 0 0 4px rgba(49, 84, 255, 0.1);
}
.neo-icon-orbit i:first-child {
  top: -5px;
  left: 48%;
}
.neo-icon-orbit i:last-child {
  right: -5px;
  bottom: 28%;
}
.neo-output-grid article:nth-child(2) .neo-studio-icon,
.neo-output-grid article:nth-child(5) .neo-studio-icon {
  background: linear-gradient(145deg, #fff, #cfd8ff);
}
.neo-output-grid article:nth-child(3) .neo-studio-icon,
.neo-output-grid article:nth-child(6) .neo-studio-icon {
  background: linear-gradient(145deg, #fff, #e4ff83);
  color: #345000;
}
.neo-output-grid article:nth-child(3) .neo-studio-icon > b,
.neo-output-grid article:nth-child(6) .neo-studio-icon > b {
  background: #6d8a00;
}
.neo-output-grid article:nth-child(3) .neo-icon-orbit,
.neo-output-grid article:nth-child(6) .neo-icon-orbit {
  border-color: rgba(85, 110, 0, 0.3);
}
.neo-output-grid article:nth-child(3) .neo-icon-orbit i,
.neo-output-grid article:nth-child(6) .neo-icon-orbit i {
  background: #7d9e00;
}
.neo-output-grid article:nth-child(even) .neo-studio-icon > svg {
  animation-delay: -2s;
}
.neo-output-grid article:hover .neo-studio-icon {
  transform: scale(1.06) rotate(-3deg);
}
.neo-output-grid article:hover .neo-studio-icon > svg {
  animation-duration: 1.2s;
}
.neo-source-note {
  margin-top: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 23px;
  background: var(--neo-ink);
  color: white;
}
.neo-source-note > svg {
  width: 68px;
  height: 68px;
  color: var(--neo-lime);
  stroke-width: 1.6;
}
.neo-source-note b {
  font-size: 20px;
}
.neo-source-note p {
  margin: 8px 0 0;
  max-width: 850px;
  color: #b8b7c2;
  line-height: 1.65;
}
.neo-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.neo-audience-grid article {
  position: relative;
  min-height: 210px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--neo-line);
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.48s,
    border-color 0.48s;
}
.neo-audience-grid article:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  right: -145px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 84, 255, 0.18), transparent 68%);
  transition: transform 0.8s;
}
.neo-audience-grid article:nth-child(2) {
  background: #e4e9ff;
}
.neo-audience-grid article:nth-child(3) {
  background: #ffe0da;
}
.neo-audience-grid article:nth-child(4) {
  background: #edffad;
}
.neo-audience-grid article:nth-child(2):before {
  background: radial-gradient(
    circle,
    rgba(108, 77, 255, 0.21),
    transparent 68%
  );
}
.neo-audience-grid article:nth-child(3):before {
  background: radial-gradient(
    circle,
    rgba(255, 104, 87, 0.25),
    transparent 68%
  );
}
.neo-audience-grid article:nth-child(4):before {
  background: radial-gradient(circle, rgba(103, 133, 0, 0.24), transparent 68%);
}
.neo-audience-grid article:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(28, 31, 64, 0.14);
}
.neo-audience-grid article:hover:before {
  transform: scale(1.5) translate(-18px, -14px);
}
.neo-audience-grid h3 {
  margin: 0 0 10px;
  font-size: 25px;
}
.neo-audience-grid p {
  margin: 0;
  color: #63616b;
  font-size: 14px;
  line-height: 1.65;
}
.neo-role-icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 36px;
  background: linear-gradient(145deg, #fff, #dce4ff);
  color: #3154ff;
  box-shadow:
    0 20px 40px rgba(49, 84, 255, 0.2),
    inset 0 1px 0 white;
  isolation: isolate;
  overflow: visible;
  animation: neoRoleFloat 5s ease-in-out infinite;
  transition: transform 0.5s;
}
.neo-role-icon:before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 29px;
  background: linear-gradient(
    145deg,
    rgba(49, 84, 255, 0.16),
    rgba(255, 255, 255, 0.3)
  );
}
.neo-role-icon > svg {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  stroke-width: 1.65;
  filter: drop-shadow(0 7px 10px rgba(49, 84, 255, 0.2));
  animation: neoRoleGlyph 4s ease-in-out infinite;
}
.neo-role-icon > b {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: -8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: #3154ff;
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  box-shadow: 0 7px 16px rgba(20, 28, 71, 0.22);
}
.neo-role-orbit {
  position: absolute;
  inset: -11px;
  z-index: 1;
  border: 1px solid rgba(49, 84, 255, 0.26);
  border-radius: 43px;
  animation: neoRoleOrbit 9s linear infinite;
}
.neo-role-orbit:before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(49, 84, 255, 0.16);
  border-radius: 34px;
}
.neo-role-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3154ff;
  box-shadow: 0 0 0 4px rgba(49, 84, 255, 0.11);
}
.neo-role-orbit i:first-child {
  left: 22%;
  top: -5px;
}
.neo-role-orbit i:last-child {
  right: -5px;
  bottom: 23%;
}
.neo-audience-grid article:nth-child(2) .neo-role-icon {
  background: linear-gradient(145deg, #fff, #d0d8ff);
  color: #6549f7;
  animation-delay: -1.2s;
}
.neo-audience-grid article:nth-child(2) .neo-role-icon > b,
.neo-audience-grid article:nth-child(2) .neo-role-orbit i {
  background: #6549f7;
}
.neo-audience-grid article:nth-child(3) .neo-role-icon {
  background: linear-gradient(145deg, #fff, #ffd0c8);
  color: #e55143;
  animation-delay: -2.4s;
}
.neo-audience-grid article:nth-child(3) .neo-role-icon > b,
.neo-audience-grid article:nth-child(3) .neo-role-orbit i {
  background: #e55143;
}
.neo-audience-grid article:nth-child(3) .neo-role-orbit {
  border-color: rgba(229, 81, 67, 0.3);
}
.neo-audience-grid article:nth-child(4) .neo-role-icon {
  background: linear-gradient(145deg, #fff, #deff74);
  color: #567100;
  animation-delay: -3.6s;
}
.neo-audience-grid article:nth-child(4) .neo-role-icon > b,
.neo-audience-grid article:nth-child(4) .neo-role-orbit i {
  background: #688800;
}
.neo-audience-grid article:nth-child(4) .neo-role-orbit {
  border-color: rgba(86, 113, 0, 0.32);
}
.neo-audience-grid article:hover .neo-role-icon {
  transform: scale(1.06) rotate(-3deg);
}
.neo-audience-grid article:hover .neo-role-icon > svg {
  animation-duration: 1.15s;
}
.neo-audience-grid article:nth-child(even) .neo-role-orbit {
  animation-direction: reverse;
}
.neo-compare {
  position: relative;
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 100px 95px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 65px;
  background: #dbe0ff;
  border-radius: 42px;
  overflow: hidden;
}
.neo-compare-copy {
  position: relative;
  z-index: 2;
}
.neo-compare h2 {
  font-size: clamp(42px, 5vw, 70px);
}
.neo-compare-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: #505267;
}
.neo-compare-copy > a {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 800;
  text-underline-offset: 7px;
}
.neo-compare figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(46, 31, 106, 0.25);
}
.neo-compare figure img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.neo-matrix {
  position: absolute;
  right: 55px;
  bottom: 42px;
  width: 420px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid white;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(37, 23, 88, 0.18);
  backdrop-filter: blur(14px);
}
.neo-matrix > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 9px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 10px;
}
.neo-matrix > div:last-child {
  border: 0;
}
.neo-matrix i {
  height: 7px;
  border-radius: 99px;
}
.neo-matrix .blue {
  width: 80%;
  background: var(--neo-blue);
}
.neo-matrix .coral {
  width: 65%;
  background: var(--neo-coral);
}
.neo-matrix .short {
  width: 45%;
}
.neo-matrix .long {
  width: 95%;
}
.neo-proof-flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.neo-proof-flow > div {
  min-height: 112px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(49, 84, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px);
}
.neo-proof-flow > div:last-child {
  background: var(--neo-ink);
  color: white;
}
.neo-proof-flow small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.62;
}
.neo-proof-flow b {
  margin-top: 9px;
  font-size: 17px;
}
.neo-proof-flow em {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
  font-style: normal;
  opacity: 0.68;
}
.neo-proof-flow > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--neo-lime);
  font-style: normal;
  font-weight: 800;
  animation: neoProofPulse 2.6s ease-in-out infinite;
}
.neo-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.neo-prompt-grid article {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--neo-ink);
  color: white;
  border-radius: 23px;
}
.neo-prompt-grid article:nth-child(2) {
  background: var(--neo-blue);
}
.neo-prompt-grid article:nth-child(3) {
  background: var(--neo-coral);
}
.neo-prompt-grid article:nth-child(4) {
  background: #d9ff5d;
  color: var(--neo-ink);
}
.neo-prompt-grid article > span {
  opacity: 0.6;
  font-size: 12px;
  font-weight: 800;
}
.neo-prompt-grid h3 {
  margin: 35px 0 16px;
  font-size: 16px;
}
.neo-prompt-grid blockquote {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.neo-prompt-grid small {
  margin-top: auto;
  padding-top: 30px;
  opacity: 0.65;
  font-weight: 700;
}
.neo-honest {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 100px 95px;
  background: #ffd9d2;
  border-radius: 42px;
}
.neo-honest > div:first-child {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
}
.neo-honest h2 {
  margin: 0;
  font-size: clamp(43px, 5.5vw, 76px);
}
.neo-honest-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.neo-honest-grid article {
  padding: 30px;
  border: 1px solid rgba(16, 16, 24, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}
.neo-honest-grid article > b {
  font-size: 22px;
}
.neo-honest-grid ul {
  padding-left: 20px;
  margin: 24px 0 0;
}
.neo-honest-grid li {
  padding: 7px;
  font-size: 14px;
  line-height: 1.5;
}
.neo-faq-list {
  margin: 65px 0 0 216px;
  border-top: 1px solid var(--neo-line);
}
.neo-faq-list details {
  border-bottom: 1px solid var(--neo-line);
}
.neo-faq-list summary {
  padding: 27px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.neo-faq-list summary::-webkit-details-marker {
  display: none;
}
.neo-faq-list summary b {
  font-weight: 400;
  transition: 0.25s;
}
.neo-faq-list details[open] summary b {
  transform: rotate(45deg);
}
.neo-faq-list details p {
  max-width: 760px;
  margin: -5px 0 28px;
  color: #62616a;
  font-size: 15px;
  line-height: 1.75;
}
.neo-final {
  position: relative;
  width: min(1400px, calc(100% - 28px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2445ff, #6a36ef 60%, #8a3fff);
  color: white;
  border-radius: 42px;
}
.neo-final > div:not(.neo-final-orb) {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 90px 30px;
}
.neo-final > div > span {
  color: var(--neo-lime);
}
.neo-final h2 {
  margin: 22px 0;
  font-size: clamp(48px, 6vw, 84px);
}
.neo-final p {
  max-width: 650px;
  margin: 0 auto 33px;
  color: #d8dbff;
  font-size: 16px;
  line-height: 1.7;
}
.neo-final-orb {
  position: absolute;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: neoSpin 22s linear infinite;
}
.neo-final-orb:before,
.neo-final-orb:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 115px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}
.neo-final-orb:before {
  top: 40px;
  left: 95px;
  transform: rotate(-24deg);
}
.neo-final-orb:after {
  right: 35px;
  bottom: 145px;
  transform: rotate(19deg);
}
.neo-footer {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 85px 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.neo-footer > div > p {
  max-width: 270px;
  color: #6e6c75;
  font-size: 13px;
  line-height: 1.6;
}
.neo-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 25px;
}
.neo-footer nav a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.neo-footer-note {
  margin: 0;
  color: #77757d;
  font-size: 11px;
  line-height: 1.65;
}
[data-reveal] {
  opacity: 1;
  transform: none;
}
.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.neo-cap-grid [data-reveal]:nth-child(2),
.neo-step-grid [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.neo-cap-grid [data-reveal]:nth-child(3),
.neo-step-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.neo-cap-grid [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}
.neo-cap-grid [data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}
@keyframes neoFloat {
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}
@keyframes neoTicker {
  to {
    transform: translateX(-40%);
  }
}
@keyframes neoSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes neoGridDrift {
  to {
    background-position: 52px 52px;
  }
}
@keyframes neoAnalysisOrb {
  to {
    transform: translate3d(45px, 35px, 0) scale(1.16);
  }
}
@keyframes neoImageBreathe {
  to {
    transform: scale(1.06);
  }
}
@keyframes neoScan {
  0%,
  12% {
    top: 4%;
    opacity: 0;
  }
  28% {
    opacity: 0.8;
  }
  78% {
    opacity: 0.8;
  }
  92%,
  100% {
    top: 96%;
    opacity: 0;
  }
}
@keyframes neoStatusPulse {
  70% {
    box-shadow: 0 0 0 8px rgba(104, 240, 207, 0);
  }
}
@keyframes neoStepFloat {
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}
@keyframes neoStepDot {
  50% {
    transform: scale(0.7);
    box-shadow: 0 5px 22px currentColor;
  }
}
@keyframes neoIconOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes neoIconGlyph {
  50% {
    transform: translateY(-5px) scale(1.04);
  }
}
@keyframes neoRoleFloat {
  50% {
    transform: translateY(-7px) rotate(1.5deg);
  }
}
@keyframes neoRoleOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes neoRoleGlyph {
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}
@keyframes neoHeroEnter {
  0% {
    opacity: 0;
    transform: perspective(1100px) rotateY(8deg) rotate(3deg) translateY(34px)
      scale(0.94);
  }
  100% {
    opacity: 1;
    transform: rotate(1.5deg);
  }
}
@keyframes neoHeroImageEnter {
  0% {
    filter: blur(12px) saturate(0.6);
    transform: scale(1.16);
  }
  100% {
    filter: blur(0) saturate(1);
    transform: scale(1.02);
  }
}
@keyframes neoHeroImageDrift {
  to {
    transform: scale(1.07) translate3d(-1%, 1%, 0);
  }
}
@keyframes neoHeroGlow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes neoSheetFlutter {
  to {
    transform: rotateY(16deg) rotateX(-7deg) skewY(2deg);
  }
}
@keyframes neoSheetFlyOne {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(-32deg) scale(0.7);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate3d(390px, 230px, 0) rotate(42deg) scale(0.42);
  }
}
@keyframes neoSheetFlyTwo {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(24deg) scale(0.8);
  }
  20% {
    opacity: 0.95;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(180px, 330px, 0) rotate(-48deg) scale(0.38);
  }
}
@keyframes neoSheetFlyThree {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(34deg) scale(0.7);
  }
  20% {
    opacity: 0.95;
  }
  82% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translate3d(-370px, 175px, 0) rotate(-38deg) scale(0.4);
  }
}
@keyframes neoSheetFlyFour {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-20deg) scale(0.75);
  }
  20% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(460px, -180px, 0) rotate(54deg) scale(0.35);
  }
}
@keyframes neoSheetFlyFive {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(14deg) scale(0.7);
  }
  20% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(-180px, -350px, 0) rotate(-46deg) scale(0.34);
  }
}
@keyframes neoSheetFlySix {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(28deg) scale(0.76);
  }
  18% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(-420px, -150px, 0) rotate(-50deg) scale(0.36);
  }
}
@keyframes neoSheetFlySeven {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-10deg) scale(0.7);
  }
  20% {
    opacity: 0.88;
  }
  80% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translate3d(-110px, 360px, 0) rotate(48deg) scale(0.3);
  }
}
@keyframes neoTerminalEnter {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes neoTerminalPulse {
  70% {
    box-shadow: 0 0 0 8px rgba(216, 255, 84, 0);
  }
}
@keyframes neoCursor {
  50% {
    opacity: 0;
  }
}
@keyframes neoProgress {
  to {
    transform: none;
  }
}
@keyframes neoCtaGlow {
  0%,
  12%,
  32%,
  100% {
    box-shadow: 0 12px 30px rgba(49, 84, 255, 0.25);
  }
  20% {
    box-shadow:
      0 13px 38px rgba(49, 84, 255, 0.48),
      0 0 0 5px rgba(49, 84, 255, 0.08);
  }
}
@keyframes neoCtaRing {
  0%,
  10% {
    opacity: 0;
    transform: scale(0.96);
  }
  18% {
    opacity: 0.58;
  }
  32%,
  100% {
    opacity: 0;
    transform: scale(1.11);
  }
}
@keyframes neoProofPulse {
  50% {
    transform: translateX(3px);
    box-shadow: 0 0 0 7px rgba(216, 255, 84, 0.18);
  }
}

/* Internal landing pages */
.guide-site {
  min-height: 100vh;
  background: var(--neo-paper);
  color: var(--neo-ink);
  font-family: Manrope, Arial, sans-serif;
}
.guide-site * {
  box-sizing: border-box;
}
.guide-hero {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
}
.guide-hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.guide-hero-copy > p {
  color: #5f5e67;
  font-size: 17px;
  line-height: 1.72;
}
.guide-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 35px;
  font-size: 11px;
  font-weight: 700;
  color: #7b7980;
}
.guide-breadcrumbs a {
  text-underline-offset: 4px;
}
.guide-art {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(30, 30, 65, 0.24);
}
.guide-art img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.guide-art figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.guide-art figcaption span {
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(8, 8, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.guide-nav {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  overflow: auto;
  border: 1px solid var(--neo-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}
.guide-nav a {
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 9px;
}
.guide-nav a:hover {
  background: white;
}
.guide-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}
.guide-section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
}
.guide-section-head > span {
  padding-top: 8px;
  color: var(--neo-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.guide-section-head h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.guide-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 55px;
}
.guide-problem article {
  padding: 34px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--neo-line);
}
.guide-problem article:last-child {
  background: var(--neo-lime);
}
.guide-problem b {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.guide-problem p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.guide-step {
  min-height: 420px;
  padding: 28px;
  border-radius: 23px;
  background: #fff;
  border: 1px solid var(--neo-line);
}
.guide-step > span {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--neo-blue);
  color: white;
  font-weight: 800;
}
.guide-step .neo-svg-icon {
  margin-bottom: 34px;
}
.guide-step h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.guide-step p {
  color: #676570;
  font-size: 14px;
  line-height: 1.65;
}
.guide-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.guide-feature-grid article {
  min-height: 350px;
  padding: 30px;
  border-radius: 23px;
  background: var(--neo-ink);
  color: white;
}
.guide-feature-grid article:nth-child(2) {
  background: var(--neo-blue);
}
.guide-feature-grid article:nth-child(3) {
  background: var(--neo-coral);
  color: var(--neo-ink);
}
.guide-feature-grid .neo-svg-icon {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.guide-feature-grid article:nth-child(3) .neo-svg-icon {
  background: rgba(16, 16, 24, 0.1);
  color: var(--neo-ink);
}
.guide-feature-grid h3 {
  margin-top: 58px;
  font-size: 24px;
}
.guide-feature-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.68;
}
.guide-feature-grid article:nth-child(3) p {
  color: #3b2325;
}
.guide-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.guide-use-grid article {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--neo-line);
  border-radius: 24px;
  background: white;
}
.guide-use-grid article:nth-child(2) {
  background: #e7ebff;
}
.guide-use-grid article:nth-child(3) {
  background: #efffc0;
}
.guide-use-grid h3 {
  margin: 50px 0 13px;
  font-size: 25px;
}
.guide-use-grid p {
  margin: 0;
  color: #66646d;
  font-size: 14px;
  line-height: 1.68;
}
.guide-prompt {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  border-radius: 40px;
  background: #24243a;
  color: white;
}
.guide-prompt h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.guide-prompt > div > p {
  color: #bdbcca;
  line-height: 1.7;
}
.guide-prompt blockquote {
  position: relative;
  margin: 0;
  padding: 45px;
  border-radius: 25px;
  background: var(--neo-lime);
  color: var(--neo-ink);
  font-size: 25px;
  line-height: 1.48;
  letter-spacing: -0.035em;
}
.guide-prompt blockquote:before {
  content: "“";
  position: absolute;
  right: 25px;
  top: 6px;
  font: 80px Georgia;
  color: rgba(0, 0, 0, 0.12);
}
.guide-result-table {
  margin: 55px 0 0 216px;
  border: 1px solid var(--neo-line);
  border-radius: 25px;
  background: white;
  overflow: hidden;
}
.guide-result-title {
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--neo-blue);
  color: white;
}
.guide-result-title > svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.6;
}
.guide-result-title b {
  font-size: 22px;
}
.guide-result-title p {
  margin: 6px 0 0;
  max-width: 700px;
  color: #dbe0ff;
  font-size: 14px;
  line-height: 1.55;
}
.guide-result-row {
  padding: 23px 30px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  border-top: 1px solid var(--neo-line);
}
.guide-result-row b {
  font-size: 14px;
}
.guide-result-row p {
  margin: 0;
  color: #65636d;
  font-size: 14px;
  line-height: 1.55;
}
.guide-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 55px;
}
.guide-check-grid article {
  padding: 30px;
  border: 1px solid var(--neo-line);
  border-radius: 22px;
  background: white;
}
.guide-check-grid article:nth-child(2) {
  background: #fff0ed;
}
.guide-check-grid .neo-svg-icon {
  margin-bottom: 28px;
}
.guide-check-grid b {
  font-size: 22px;
}
.guide-check-grid ul {
  padding-left: 20px;
  margin: 22px 0 0;
}
.guide-check-grid li {
  padding: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.guide-warning {
  margin-top: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  background: #fff1b5;
}
.guide-warning > svg {
  width: 52px;
  height: 52px;
  color: #745d00;
  stroke-width: 1.7;
}
.guide-warning p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.guide-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.guide-related a {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid var(--neo-line);
  border-radius: 20px;
  background: white;
  font-weight: 800;
}
.guide-related a span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  font-size: 24px;
}
.guide-related a span svg {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
}
.guide-related a small {
  color: #77747d;
}
.guide-final {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .neo-header {
    height: 62px;
    padding-left: 17px;
  }
  .neo-header nav {
    display: none;
  }
  .neo-header .neo-button {
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
  .neo-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 75px 0;
  }
  .neo-hero h1 {
    font-size: clamp(54px, 14vw, 82px);
  }
  .neo-hero-art {
    width: min(100%, 680px);
    justify-self: center;
    transform: none;
  }
  .neo-section {
    padding: 95px 0;
  }
  .neo-section-head,
  .neo-honest > div:first-child,
  .guide-section-head {
    grid-template-columns: 1fr;
  }
  .neo-section-head h2 {
    font-size: clamp(42px, 10vw, 67px);
  }
  .neo-intro .neo-lead,
  .neo-prompts .neo-lead,
  .neo-studio .neo-lead,
  .neo-audiences .neo-lead {
    margin-left: 0;
  }
  .neo-cap-card:nth-child(n) {
    grid-column: span 6;
  }
  .neo-dark-split,
  .neo-compare {
    padding: 55px 32px;
    grid-template-columns: 1fr;
  }
  .neo-analysis-section .neo-analysis-art {
    transform: none;
  }
  .neo-step-grid {
    grid-template-columns: 1fr;
  }
  .neo-output-grid {
    grid-template-columns: 1fr 1fr;
  }
  .neo-audience-grid {
    grid-template-columns: 1fr;
  }
  .neo-compare figure img {
    min-height: 0;
  }
  .neo-matrix {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    grid-column: 1/-1;
  }
  .neo-honest {
    padding: 65px 32px;
  }
  .neo-honest-grid {
    grid-template-columns: 1fr;
  }
  .neo-faq-list {
    margin-left: 0;
  }
  .neo-footer {
    grid-template-columns: 1fr 1fr;
  }
  .neo-footer-note {
    grid-column: 1/-1;
  }
  .guide-hero {
    grid-template-columns: 1fr;
  }
  .guide-steps,
  .guide-feature-grid,
  .guide-use-grid {
    grid-template-columns: 1fr;
  }
  .guide-prompt {
    padding: 55px 32px;
    grid-template-columns: 1fr;
  }
  .guide-result-table {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .neo-header {
    width: calc(100% - 20px);
    top: 10px;
    margin-top: 10px;
  }
  .neo-brand {
    font-size: 18px;
  }
  .neo-header .neo-button {
    padding: 0 11px;
  }
  .neo-header .neo-button > svg {
    display: none;
  }
  .neo-hero {
    width: calc(100% - 28px);
    gap: 40px;
    padding-top: 65px;
  }
  .neo-hero h1 {
    font-size: 15.2vw;
  }
  .neo-hero-copy > p {
    font-size: 16px;
  }
  .neo-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .neo-actions .neo-text-link {
    justify-content: center;
    text-align: center;
  }
  .neo-proof-row {
    margin-top: 28px;
  }
  .neo-proof-row span {
    font-size: 9px;
  }
  .neo-hero-art img {
    aspect-ratio: 1/1;
    object-position: 47% center;
  }
  .neo-float-a {
    right: 8px;
    top: 8px;
  }
  .neo-ticker {
    padding: 14px 0;
  }
  .neo-section {
    width: calc(100% - 28px);
    padding: 78px 0;
  }
  .neo-section-head h2 {
    font-size: 12vw;
  }
  .neo-cap-grid {
    grid-template-columns: 1fr;
  }
  .neo-cap-card:nth-child(n) {
    grid-column: auto;
    min-height: 360px;
  }
  .neo-dark-split,
  .neo-compare,
  .neo-honest,
  .neo-final {
    width: calc(100% - 16px);
    padding: 48px 20px;
    border-radius: 28px;
  }
  .neo-dark-copy h2,
  .neo-compare h2,
  .neo-honest h2 {
    font-size: 11vw;
  }
  .neo-analysis-section .neo-dark-copy h2 {
    font-size: 9.3vw;
    line-height: 1.12;
  }
  .neo-analysis-section .neo-analysis-list li {
    grid-template-columns: 38px 1fr;
  }
  .neo-analysis-list li > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .neo-analysis-status {
    top: 10px;
    right: 10px;
  }
  .neo-analysis-art img {
    aspect-ratio: 1/1.05;
    object-fit: cover;
  }
  .neo-dark-copy li {
    grid-template-columns: 1fr;
  }
  .neo-step-grid {
    margin-top: 42px;
  }
  .neo-output-grid,
  .neo-audience-grid {
    grid-template-columns: 1fr;
  }
  .neo-output-grid article {
    min-height: 320px;
  }
  .neo-audience-grid article {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 30px;
  }
  .neo-role-icon {
    width: 108px;
    height: 108px;
  }
  .neo-source-note {
    grid-template-columns: 1fr;
  }
  .neo-prompt-grid {
    grid-template-columns: 1fr;
  }
  .neo-prompt-grid article {
    min-height: 290px;
  }
  .neo-honest-grid {
    margin-top: 42px;
  }
  .neo-faq-list summary {
    font-size: 17px;
  }
  .neo-final {
    min-height: 580px;
    padding: 0;
  }
  .neo-final h2 {
    font-size: 12vw;
  }
  .neo-footer {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .neo-footer nav {
    grid-template-columns: 1fr;
  }
  .guide-hero {
    width: calc(100% - 28px);
    padding: 65px 0 50px;
  }
  .guide-hero h1 {
    font-size: 12.5vw;
  }
  .guide-art img {
    aspect-ratio: 1/1;
  }
  .guide-nav {
    width: calc(100% - 28px);
  }
  .guide-section {
    width: calc(100% - 28px);
    padding: 80px 0;
  }
  .guide-section-head h2 {
    font-size: 11vw;
  }
  .guide-problem,
  .guide-check-grid {
    grid-template-columns: 1fr;
  }
  .guide-prompt {
    width: calc(100% - 16px);
    padding: 48px 20px;
  }
  .guide-prompt blockquote {
    padding: 30px 24px;
    font-size: 19px;
  }
  .guide-result-row {
    grid-template-columns: 1fr;
  }
  .guide-result-title {
    grid-template-columns: 1fr;
  }
  .guide-warning {
    grid-template-columns: 1fr;
  }
  .guide-related {
    grid-template-columns: 1fr;
  }
}
/* Clearer section rhythm and numbering */
.neo-section {
  padding-block: 165px;
}
.neo-section-head {
  grid-template-columns: 220px 1fr;
  gap: 52px;
  margin-bottom: 66px;
}
.neo-section-head > span,
.neo-compare-copy > span,
.neo-honest > div > span,
.neo-final > div > span,
.guide-section-head > span {
  width: max-content;
  padding: 13px 17px;
  border: 1px solid rgba(49, 84, 255, 0.24);
  border-radius: 999px;
  background: rgba(49, 84, 255, 0.07);
  color: var(--neo-blue);
  font-family: "Unbounded", Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.neo-intro .neo-lead,
.neo-prompts .neo-lead,
.neo-studio .neo-lead,
.neo-audiences .neo-lead {
  margin-top: -18px;
  margin-bottom: 62px;
}
.neo-step-grid,
.neo-output-grid,
.neo-audience-grid,
.neo-prompt-grid {
  margin-top: 4px;
}
.neo-honest {
  padding-block: 115px;
}
.neo-honest > div:first-child {
  grid-template-columns: 220px 1fr;
  gap: 52px;
}
.neo-honest-grid {
  margin-top: 82px;
  gap: 20px;
}
.neo-compare {
  padding-block: 115px;
}
.neo-compare-copy > span {
  margin-bottom: 12px;
}
.neo-final > div > span {
  color: var(--neo-lime);
  border-color: rgba(216, 255, 84, 0.3);
  background: rgba(216, 255, 84, 0.1);
}
.guide-hero {
  padding-block: 105px 95px;
  gap: 75px;
}
.guide-breadcrumbs {
  margin-bottom: 40px;
}
.guide-nav {
  padding: 17px 20px;
  gap: 12px;
  border-radius: 18px;
}
.guide-nav a {
  padding: 10px 14px;
  font-size: 12px;
}
.guide-section {
  padding-block: 135px;
}
.guide-section-head {
  grid-template-columns: 220px 1fr;
  gap: 52px;
  margin-bottom: 66px;
}
.guide-problem,
.guide-steps,
.guide-feature-grid,
.guide-use-grid,
.guide-check-grid,
.guide-related {
  margin-top: 4px;
}
.guide-result-table {
  margin-top: 4px;
}
@media (max-width: 900px) {
  .neo-section {
    padding-block: 110px;
  }
  .neo-section-head,
  .neo-honest > div:first-child,
  .guide-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .neo-section-head > span,
  .guide-section-head > span {
    font-size: 12px;
  }
  .neo-intro .neo-lead,
  .neo-prompts .neo-lead,
  .neo-studio .neo-lead,
  .neo-audiences .neo-lead {
    margin-top: 0;
  }
  .guide-section {
    padding-block: 100px;
  }
}
@media (max-width: 600px) {
  .neo-section {
    padding-block: 88px;
  }
  .neo-section-head,
  .guide-section-head {
    gap: 22px;
    margin-bottom: 38px;
  }
  .neo-section-head > span,
  .guide-section-head > span,
  .neo-honest > div > span,
  .neo-final > div > span {
    padding: 11px 14px;
    font-size: 10px;
  }
  .neo-honest {
    padding-block: 65px;
  }
  .neo-honest-grid {
    margin-top: 48px;
  }
  .guide-section {
    padding-block: 86px;
  }
  .guide-nav {
    padding: 12px;
  }
  .guide-nav a {
    padding: 9px 11px;
  }
}
@media (max-width: 600px) {
  .neo-hero-terminal {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 12px 13px;
  }
  .neo-hero-terminal strong {
    min-height: 34px;
    font-size: 11px;
  }
  .neo-hero-art figcaption {
    display: none;
  }
  .neo-sheet-flight > i {
    width: 46px;
    height: 60px;
  }
  .neo-sheet-flight-4,
  .neo-sheet-flight-6,
  .neo-sheet-flight-7 {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .neo-headline-cursor {
    display: none;
  }
}
/* Mobile-first refinement */
@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }
  .neo-site,
  .guide-site {
    overflow-x: clip;
  }
  .neo-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 64px;
    margin-top: 8px;
    padding: 7px 9px 7px 12px;
    gap: 8px;
    border-radius: 19px;
  }
  .neo-brand {
    gap: 7px;
    font-size: 18px;
    letter-spacing: -0.045em;
  }
  .neo-brand > img {
    width: 34px;
    height: 34px;
  }
  .neo-header .neo-button {
    min-height: 44px;
    margin-left: auto;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }
  .neo-header .neo-button:before {
    inset: -3px;
    border-radius: 15px;
  }
  .neo-header .neo-button > svg {
    display: none;
  }
  .neo-hero {
    width: calc(100% - 24px);
    padding: 58px 0 66px;
    gap: 34px;
  }
  .neo-kicker {
    gap: 8px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.105em;
  }
  .neo-kicker i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(49, 84, 255, 0.1);
  }
  .neo-hero h1 {
    margin: 22px 0 22px;
    font-size: clamp(49px, 14.7vw, 68px);
    line-height: 0.91;
  }
  .neo-hero-intent {
    margin: 0 0 13px;
    font-size: 14px;
    line-height: 1.45;
  }
  .neo-hero-copy > p {
    font-size: 16px;
    line-height: 1.68;
  }
  .neo-actions {
    margin-top: 28px;
    gap: 15px;
  }
  .neo-actions .neo-button {
    width: 100%;
    min-height: 52px;
  }
  .neo-actions .neo-text-link {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .neo-proof-row {
    gap: 8px;
    margin-top: 25px;
  }
  .neo-proof-row span {
    padding: 9px 11px;
    font-size: 8px;
    line-height: 1.2;
    text-align: center;
  }
  .neo-hero-art {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 24px 55px rgba(27, 29, 80, 0.22);
  }
  .neo-float-a {
    padding: 9px 11px;
    border-radius: 13px;
  }
  .neo-float-a b {
    font-size: 23px;
  }
  .neo-float-a span {
    font-size: 8px;
  }
  .neo-ticker {
    padding: 13px 0;
  }
  .neo-ticker div {
    font-size: 10px;
    word-spacing: 1em;
  }
  .neo-ticker i {
    margin: 0 22px;
  }
  .neo-section {
    width: calc(100% - 24px);
    padding-block: 74px;
  }
  .neo-section-head {
    gap: 20px;
    margin-bottom: 34px;
  }
  .neo-section-head h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.98;
  }
  .neo-section-head > span,
  .guide-section-head > span,
  .neo-honest > div > span,
  .neo-final > div > span {
    padding: 10px 12px;
    font-size: 9px;
    line-height: 1.15;
    white-space: normal;
  }
  .neo-intro .neo-lead,
  .neo-prompts .neo-lead,
  .neo-studio .neo-lead,
  .neo-audiences .neo-lead {
    margin: 0 0 38px;
    font-size: 16px;
    line-height: 1.7;
  }
  .neo-cap-grid,
  .neo-output-grid,
  .neo-audience-grid,
  .neo-prompt-grid {
    gap: 12px;
  }
  .neo-cap-card:nth-child(n) {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }
  .neo-cap-card h3 {
    margin: 22px 0 11px;
    font-size: 27px;
  }
  .neo-cap-card p {
    margin-bottom: 27px;
  }
  .neo-cap-card b {
    min-height: 38px;
  }
  .neo-svg-icon {
    width: 72px;
    height: 72px;
  }
  .neo-svg-icon svg {
    width: 38px;
    height: 38px;
  }
  .neo-dark-split,
  .neo-compare,
  .neo-honest,
  .neo-final {
    width: calc(100% - 12px);
    padding: 38px 18px;
    border-radius: 25px;
  }
  .neo-dark-split {
    gap: 34px;
  }
  .neo-dark-copy h2,
  .neo-compare h2,
  .neo-honest h2 {
    font-size: clamp(35px, 10vw, 47px);
    line-height: 1.03;
  }
  .neo-analysis-section .neo-dark-copy h2 {
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.1;
  }
  .neo-analysis-section .neo-dark-copy > p,
  .neo-compare-copy p {
    font-size: 14px;
    line-height: 1.72;
  }
  .neo-analysis-section .neo-analysis-list {
    padding-top: 12px;
  }
  .neo-analysis-section .neo-analysis-list li {
    gap: 10px;
    padding: 14px 0;
  }
  .neo-analysis-list li > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .neo-analysis-section .neo-analysis-art {
    border-radius: 20px;
  }
  .neo-analysis-art figcaption {
    display: none;
  }
  .neo-analysis-status {
    max-width: calc(100% - 20px);
    font-size: 8px;
  }
  .neo-analysis-status span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .neo-step-grid {
    gap: 12px;
    margin-top: 0;
  }
  .neo-step-grid article {
    min-height: 350px;
    padding: 24px;
    border-radius: 21px;
  }
  .neo-step-number {
    font-size: clamp(56px, 20vw, 78px);
  }
  .neo-step-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 26px;
  }
  .neo-step-grid h3 {
    font-size: 25px;
  }
  .neo-step-grid p {
    font-size: 14px;
  }
  .neo-output-grid article {
    min-height: 300px;
    padding: 24px;
    border-radius: 21px;
  }
  .neo-studio-icon {
    width: 94px;
    height: 94px;
    border-radius: 27px;
  }
  .neo-studio-icon > svg {
    width: 48px;
    height: 48px;
  }
  .neo-output-grid h3 {
    font-size: 23px;
  }
  .neo-source-note {
    padding: 23px;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 20px;
  }
  .neo-source-note > svg {
    width: 50px;
    height: 50px;
  }
  .neo-source-note b {
    font-size: 18px;
  }
  .neo-compare {
    gap: 30px;
  }
  .neo-compare figure {
    border-radius: 20px;
  }
  .neo-matrix {
    padding: 10px;
    overflow-x: auto;
  }
  .neo-matrix > div {
    min-width: 292px;
    gap: 8px;
    padding: 8px 5px;
  }
  .neo-prompt-grid article {
    min-height: 270px;
    padding: 24px;
    border-radius: 20px;
  }
  .neo-prompt-grid blockquote {
    font-size: 19px;
  }
  .neo-audience-grid article {
    min-height: auto;
    padding: 24px;
    gap: 24px;
    border-radius: 21px;
  }
  .neo-role-icon {
    width: 96px;
    height: 96px;
    border-radius: 29px;
  }
  .neo-role-icon > svg {
    width: 52px;
    height: 52px;
  }
  .neo-audience-grid h3 {
    font-size: 23px;
  }
  .neo-honest {
    padding-block: 48px;
  }
  .neo-honest-grid {
    gap: 12px;
    margin-top: 38px;
  }
  .neo-honest-grid article {
    padding: 24px;
    border-radius: 19px;
  }
  .neo-honest-grid article > b {
    font-size: 20px;
  }
  .neo-honest-grid ul {
    margin-top: 18px;
  }
  .neo-honest-grid li {
    padding: 5px 2px;
  }
  .neo-faq-list {
    margin-top: 0;
  }
  .neo-faq-list summary {
    min-height: 66px;
    padding: 20px 0;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    line-height: 1.35;
  }
  .neo-faq-list summary b {
    flex: 0 0 auto;
  }
  .neo-faq-list details p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.68;
  }
  .neo-final {
    min-height: 520px;
    padding: 44px 18px;
  }
  .neo-final > div {
    padding: 0;
  }
  .neo-final h2 {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1;
  }
  .neo-final p {
    font-size: 15px;
    line-height: 1.7;
  }
  .neo-final .neo-button {
    width: 100%;
    min-height: 52px;
  }
  .neo-footer {
    width: calc(100% - 24px);
    padding: 56px 0 34px;
    gap: 34px;
  }
  .neo-footer nav {
    gap: 0;
  }
  .neo-footer nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--neo-line);
    font-size: 13px;
  }
  .guide-hero {
    width: calc(100% - 24px);
    padding: 52px 0 60px;
    gap: 32px;
  }
  .guide-breadcrumbs {
    margin-bottom: 28px;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .guide-hero h1 {
    margin: 18px 0 21px;
    font-size: clamp(43px, 12.3vw, 58px);
    line-height: 0.96;
  }
  .guide-hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }
  .guide-art {
    border-radius: 24px;
  }
  .guide-art figcaption {
    inset: auto 10px 10px;
    gap: 5px;
  }
  .guide-art figcaption span {
    padding: 6px 8px;
    font-size: 8px;
  }
  .guide-nav {
    width: calc(100% - 24px);
    padding: 8px;
    gap: 6px;
    border-radius: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .guide-nav::-webkit-scrollbar {
    display: none;
  }
  .guide-nav a {
    min-height: 42px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
  }
  .guide-section {
    width: calc(100% - 24px);
    padding-block: 74px;
  }
  .guide-section-head {
    gap: 20px;
    margin-bottom: 34px;
  }
  .guide-section-head h2 {
    font-size: clamp(37px, 10.7vw, 50px);
    line-height: 1.02;
  }
  .guide-problem,
  .guide-steps,
  .guide-feature-grid,
  .guide-use-grid,
  .guide-check-grid,
  .guide-related {
    gap: 12px;
  }
  .guide-problem article,
  .guide-step,
  .guide-feature-grid article,
  .guide-use-grid article,
  .guide-check-grid article {
    padding: 24px;
    border-radius: 20px;
  }
  .guide-problem p {
    font-size: 15px;
  }
  .guide-step,
  .guide-feature-grid article,
  .guide-use-grid article {
    min-height: auto;
  }
  .guide-step .neo-svg-icon {
    margin-bottom: 25px;
  }
  .guide-step h3 {
    font-size: 21px;
  }
  .guide-feature-grid h3,
  .guide-use-grid h3 {
    margin: 30px 0 11px;
    font-size: 22px;
  }
  .guide-prompt {
    width: calc(100% - 12px);
    padding: 42px 18px;
    gap: 28px;
    border-radius: 25px;
  }
  .guide-prompt h2 {
    font-size: clamp(37px, 10.5vw, 48px);
    line-height: 1.03;
  }
  .guide-prompt blockquote {
    padding: 27px 21px;
    font-size: 18px;
    line-height: 1.52;
    border-radius: 20px;
  }
  .guide-result-table {
    margin: 0;
    border-radius: 20px;
  }
  .guide-result-title {
    padding: 24px;
    gap: 16px;
  }
  .guide-result-title > svg {
    width: 52px;
    height: 52px;
  }
  .guide-result-title b {
    font-size: 19px;
  }
  .guide-result-row {
    padding: 20px 24px;
    gap: 8px;
  }
  .guide-check-grid b {
    font-size: 20px;
  }
  .guide-check-grid ul {
    margin-top: 18px;
  }
  .guide-warning {
    padding: 22px;
    gap: 14px;
    border-radius: 18px;
  }
  .guide-warning > svg {
    width: 44px;
    height: 44px;
  }
  .guide-related a {
    min-height: 145px;
    padding: 21px;
    border-radius: 18px;
  }
  .guide-related a span {
    font-size: 21px;
  }
  .guide-final {
    margin-top: 0;
  }
}

/* Final cascade guard for contrast-critical text. */
.guide-site .guide-step > span {
  color: #fff !important;
}
.neo-final h2 em {
  color: var(--neo-lime) !important;
}

/* Mobile contrast fixes: readable step badges and final headline. */
.guide-step > * {
  position: relative;
  z-index: 1;
}
.guide-site .guide-step > span {
  z-index: 2;
  width: 52px;
  height: 52px;
  background: var(--guide-accent);
  color: #fff;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px rgba(var(--guide-accent-rgb), 0.2),
    0 12px 28px rgba(var(--guide-accent-rgb), 0.28);
  font-size: 17px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.neo-final h2 em {
  color: var(--neo-lime);
  text-shadow: 0 8px 30px rgba(216, 255, 84, 0.2);
}
.guide-section {
  scroll-margin-top: 170px;
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 165px;
  }
  .guide-section {
    scroll-margin-top: 165px;
  }
  .guide-site .guide-step > span {
    width: 56px;
    height: 56px;
    margin-bottom: 26px;
    font-size: 19px;
  }
}

/* 2026 visual system: clearer hierarchy, richer surfaces and route accents. */
:root {
  --neo-violet: #7447f5;
  --neo-coral: #ff665c;
  --neo-sky: #61b8ff;
  --neo-shadow: 0 24px 70px rgba(25, 29, 67, 0.11);
  --neo-shadow-hover: 0 30px 80px rgba(28, 34, 88, 0.17);
}
.neo-site,
.guide-site {
  background:
    radial-gradient(
      circle at 8% 11%,
      rgba(216, 255, 84, 0.18),
      transparent 18rem
    ),
    radial-gradient(
      circle at 92% 7%,
      rgba(49, 84, 255, 0.12),
      transparent 24rem
    ),
    var(--neo-paper);
}
.neo-header {
  border-color: rgba(49, 84, 255, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(28, 33, 76, 0.12);
  backdrop-filter: blur(20px) saturate(150%);
}
.neo-header nav a {
  position: relative;
}
.neo-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--neo-blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.neo-header nav a:hover:after {
  transform: scaleX(1);
}
.neo-button {
  box-shadow: 0 13px 30px rgba(49, 84, 255, 0.22);
}
.neo-button:hover {
  box-shadow: 0 18px 42px rgba(49, 84, 255, 0.32);
}
.neo-button:focus-visible,
.neo-text-link:focus-visible,
.neo-header a:focus-visible,
.guide-nav a:focus-visible,
.guide-related a:focus-visible {
  outline: 3px solid var(--neo-lime);
  outline-offset: 4px;
}
.neo-section,
.guide-section {
  position: relative;
}
.neo-section-head h2 em,
.neo-final h2 em {
  color: var(--neo-blue);
}
.neo-section-head > span,
.guide-section-head > span {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 10px 24px rgba(49, 84, 255, 0.08);
}
.neo-cap-card,
.neo-step-grid article,
.neo-output-grid article,
.neo-audience-grid article,
.neo-method-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 42px rgba(29, 34, 72, 0.075);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.neo-cap-card:after,
.neo-step-grid article:after,
.neo-output-grid article:after,
.neo-audience-grid article:after,
.neo-method-grid article:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -105px;
  top: -110px;
  border-radius: 50%;
  background: var(--neo-blue);
  opacity: 0.075;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.neo-cap-card:nth-child(2):after,
.neo-step-grid article:nth-child(2):after,
.neo-output-grid article:nth-child(2n):after,
.neo-audience-grid article:nth-child(3):after {
  background: var(--neo-coral);
}
.neo-cap-card:nth-child(3):after,
.neo-step-grid article:nth-child(3):after,
.neo-output-grid article:nth-child(3n):after,
.neo-audience-grid article:nth-child(4):after {
  background: #afd91d;
}
.neo-cap-card:hover,
.neo-step-grid article:hover,
.neo-output-grid article:hover,
.neo-audience-grid article:hover,
.neo-method-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 84, 255, 0.28);
  box-shadow: var(--neo-shadow-hover);
}
.neo-cap-card:hover:after,
.neo-step-grid article:hover:after,
.neo-output-grid article:hover:after,
.neo-audience-grid article:hover:after,
.neo-method-grid article:hover:after {
  transform: scale(1.24);
  opacity: 0.12;
}
.neo-step-number {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(49, 84, 255, 0.65);
  text-shadow: 0 12px 30px rgba(49, 84, 255, 0.12);
}
.neo-dark-split {
  box-shadow: 0 38px 95px rgba(16, 18, 37, 0.23);
}
.neo-analysis-art:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(97, 184, 255, 0.12) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: neo-art-scan 7s ease-in-out infinite;
}
@keyframes neo-art-scan {
  0%,
  45% {
    transform: translateX(-130%);
  }
  70%,
  100% {
    transform: translateX(130%);
  }
}
.neo-source-note,
.neo-method-sources {
  box-shadow: var(--neo-shadow);
}
.neo-faq-list {
  display: grid;
  gap: 12px;
}
.neo-faq-list details {
  border: 1px solid rgba(45, 48, 72, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(28, 32, 72, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.neo-faq-list details[open] {
  border-color: rgba(49, 84, 255, 0.28);
  box-shadow: 0 18px 42px rgba(49, 84, 255, 0.09);
}
.neo-faq-list summary {
  padding-inline: 22px;
}
.neo-faq-list details p {
  padding-inline: 22px;
}
.neo-faq-list summary b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #edf0ff;
  color: var(--neo-blue);
}

/* Each scenario gets its own accent without breaking the shared system. */
.guide-site {
  --guide-accent: #3154ff;
  --guide-accent-rgb: 49, 84, 255;
  --guide-soft: #e8edff;
}
.guide-site-proverit-dokument {
  --guide-accent: #3154ff;
  --guide-accent-rgb: 49, 84, 255;
  --guide-soft: #e8edff;
}
.guide-site-analiz-dokumenta {
  --guide-accent: #7447f5;
  --guide-accent-rgb: 116, 71, 245;
  --guide-soft: #eee7ff;
}
.guide-site-sravnit-dokumenty {
  --guide-accent: #e95147;
  --guide-accent-rgb: 233, 81, 71;
  --guide-soft: #ffe8e4;
}
.guide-site-kratkiy-pereskaz {
  --guide-accent: #078f82;
  --guide-accent-rgb: 7, 143, 130;
  --guide-soft: #dff8f1;
}
.guide-site-pdf-v-doc {
  --guide-accent: #8e6800;
  --guide-accent-rgb: 142, 104, 0;
  --guide-soft: #fff1bf;
}
.guide-site .neo-kicker i {
  background: var(--guide-accent);
  box-shadow: 0 0 0 6px rgba(var(--guide-accent-rgb), 0.11);
}
.guide-site .neo-kicker,
.guide-site .guide-breadcrumbs a,
.guide-site .guide-section-head > span,
.guide-site .guide-step > span {
  color: var(--guide-accent);
}
.guide-site .guide-section-head > span {
  border-color: rgba(var(--guide-accent-rgb), 0.24);
  background: rgba(var(--guide-accent-rgb), 0.07);
}
.guide-hero {
  position: relative;
}
.guide-hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  right: 32%;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--guide-accent-rgb), 0.12),
    transparent 68%
  );
  filter: blur(10px);
}
.guide-art {
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 75px rgba(var(--guide-accent-rgb), 0.2);
}
.guide-art:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 42%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 58%
  );
  transform: translateX(-120%);
  animation: guide-art-glint 8s ease-in-out infinite;
}
@keyframes guide-art-glint {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}
.guide-nav {
  position: sticky;
  top: 92px;
  z-index: 30;
  border-color: rgba(var(--guide-accent-rgb), 0.15);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(28, 32, 72, 0.1);
  backdrop-filter: blur(18px) saturate(145%);
}
.guide-nav a {
  border-radius: 10px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.guide-nav a:hover {
  background: var(--guide-soft);
  color: var(--guide-accent);
}
.guide-quick-value {
  width: min(1360px, calc(100% - 40px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(var(--guide-accent-rgb), 0.16);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    var(--guide-soft)
  );
  box-shadow: 0 18px 55px rgba(var(--guide-accent-rgb), 0.09);
}
.guide-quick-value > div {
  min-height: 105px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(var(--guide-accent-rgb), 0.13);
}
.guide-quick-value > div:last-child {
  border-right: 0;
}
.guide-quick-value small {
  color: var(--guide-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guide-quick-value strong {
  font-size: 18px;
  line-height: 1.25;
}
.guide-problem article,
.guide-step,
.guide-feature-grid article,
.guide-use-grid article,
.guide-check-grid article,
.guide-result-table,
.guide-related a {
  box-shadow: 0 16px 44px rgba(28, 32, 72, 0.07);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.guide-problem article:hover,
.guide-step:hover,
.guide-feature-grid article:hover,
.guide-use-grid article:hover,
.guide-check-grid article:hover,
.guide-related a:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--guide-accent-rgb), 0.28);
  box-shadow: 0 24px 60px rgba(var(--guide-accent-rgb), 0.13);
}
.guide-step {
  position: relative;
  overflow: hidden;
}
.guide-step:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  top: -85px;
  border-radius: 50%;
  background: var(--guide-soft);
}
.guide-step .neo-svg-icon {
  color: var(--guide-accent);
  background: var(--guide-soft);
}
.guide-prompt {
  border-color: rgba(var(--guide-accent-rgb), 0.24);
  background: linear-gradient(
    145deg,
    #15182b,
    #202b58 62%,
    rgba(var(--guide-accent-rgb), 0.95)
  );
  box-shadow: 0 35px 80px rgba(var(--guide-accent-rgb), 0.2);
}
.guide-result-row {
  transition: background 0.2s ease;
}
.guide-result-row:hover {
  background: var(--guide-soft);
}
.guide-warning {
  border-color: rgba(var(--guide-accent-rgb), 0.18);
  background: linear-gradient(135deg, #fff9df, var(--guide-soft));
}
.guide-final {
  box-shadow: 0 36px 90px rgba(var(--guide-accent-rgb), 0.22);
}

@media (max-width: 900px) {
  .guide-quick-value {
    grid-template-columns: 1fr;
  }
  .guide-quick-value > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--guide-accent-rgb), 0.13);
  }
  .guide-quick-value > div:last-child {
    border-bottom: 0;
  }
  .guide-nav {
    top: 82px;
  }
}
@media (max-width: 700px) {
  .neo-site,
  .guide-site {
    background:
      radial-gradient(
        circle at 100% 2%,
        rgba(49, 84, 255, 0.11),
        transparent 18rem
      ),
      var(--neo-paper);
  }
  .neo-header nav {
    display: none;
  }
  .guide-nav {
    top: 78px;
  }
  .guide-quick-value {
    width: calc(100% - 24px);
    margin-top: 14px;
    border-radius: 18px;
  }
  .guide-quick-value > div {
    min-height: 76px;
    padding: 18px 20px;
    gap: 5px;
  }
  .guide-quick-value strong {
    font-size: 16px;
  }
  .guide-quick-value small {
    font-size: 9px;
  }
  .neo-faq-list {
    gap: 9px;
  }
  .neo-faq-list details {
    border-radius: 15px;
  }
  .neo-faq-list summary,
  .neo-faq-list details p {
    padding-inline: 17px;
  }
  .guide-hero:before {
    width: 220px;
    height: 220px;
    right: -70px;
  }
  .guide-art {
    box-shadow: 0 24px 50px rgba(var(--guide-accent-rgb), 0.18);
  }
}
@media (prefers-reduced-motion: reduce) {
  .guide-site * {
    animation: none !important;
    transition: none !important;
  }
  .neo-analysis-art:before,
  .guide-art:after {
    display: none;
  }
}
@media (max-width: 380px) {
  .neo-header {
    padding-left: 10px;
  }
  .neo-brand {
    font-size: 16px;
  }
  .neo-brand > img {
    width: 31px;
    height: 31px;
  }
  .neo-header .neo-button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 10px;
  }
  .neo-hero {
    padding-top: 50px;
  }
  .neo-hero h1 {
    font-size: 14.4vw;
  }
  .neo-kicker {
    font-size: 9px;
  }
  .neo-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .neo-proof-row span:last-child {
    grid-column: 1/-1;
  }
  .neo-hero-terminal strong {
    font-size: 10px;
  }
  .neo-section-head h2 {
    font-size: 11.2vw;
  }
  .neo-actions .neo-button {
    font-size: 13px;
  }
  .guide-hero h1 {
    font-size: 11.7vw;
  }
  .guide-section-head h2 {
    font-size: 10.4vw;
  }
  .guide-prompt blockquote {
    font-size: 17px;
  }
}
@media (max-width: 700px) {
  .neo-proof-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .neo-proof-flow > div {
    min-height: 98px;
  }
  .neo-proof-flow > i {
    transform: rotate(90deg);
    justify-self: center;
  }
}
@media (max-width: 700px) and (orientation: landscape) {
  .neo-header {
    position: relative;
  }
  .neo-hero,
  .guide-hero {
    padding-top: 36px;
  }
}
@media (hover: none), (pointer: coarse) {
  .neo-cap-card:hover,
  .neo-step-grid article:hover,
  .neo-output-grid article:hover,
  .neo-audience-grid article:hover,
  .neo-analysis-section .neo-analysis-art:hover {
    transform: none;
    box-shadow: initial;
  }
}
@media (hover: none), (pointer: coarse) {
  .mouse-aura {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .mouse-aura {
    display: none;
  }
  .neo-site * {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.neo-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.neo-method-grid article {
  min-height: 285px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neo-line);
  border-radius: 24px;
  background: #fff;
}
.neo-method-grid article:nth-child(2) {
  background: #e9edff;
}
.neo-method-grid article:nth-child(3) {
  background: #efffc0;
}
.neo-method-grid article > b {
  color: var(--neo-blue);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 12px;
}
.neo-method-grid h3 {
  margin: 70px 0 13px;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.neo-method-grid p {
  margin: 0;
  color: #676570;
  font-size: 14px;
  line-height: 1.68;
}
.neo-method-sources {
  margin-top: 18px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  border: 1px solid rgba(216, 255, 84, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, #171a2d, #26325e);
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 26, 45, 0.14);
}
.neo-method-sources > div {
  display: flex;
  align-items: flex-start;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.neo-method-sources strong {
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-lime);
}
.neo-method-sources time,
.neo-method-sources a {
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
.neo-method-sources a {
  text-decoration-color: rgba(216, 255, 84, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.neo-method-sources a:hover {
  color: var(--neo-lime);
}
.neo-footer time {
  display: block;
  margin-top: 10px;
  color: #77747d;
  font-size: 12px;
}
.neo-footer-sources {
  grid-column: 1/-1;
  padding-top: 20px;
  display: flex;
  gap: 12px 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--neo-line);
}
.neo-footer-sources a {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .neo-method-grid {
    grid-template-columns: 1fr;
  }
  .neo-method-grid article {
    min-height: auto;
  }
  .neo-method-grid h3 {
    margin-top: 38px;
  }
  .neo-method-sources {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .neo-method-grid article {
    padding: 24px;
  }
  .neo-method-sources {
    padding: 22px;
  }
  .neo-footer-sources {
    flex-direction: column;
  }
}

/* Stable mobile typography: fixed metrics, safe wrapping and no late font swap. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body:has(.neo-site),
body:has(.guide-site) {
  font-synthesis: none;
}
@media (max-width: 700px) {
  .neo-site h1,
  .neo-site h2,
  .neo-site h3,
  .guide-site h1,
  .guide-site h2,
  .guide-site h3 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
  .neo-site p,
  .neo-site li,
  .neo-site summary,
  .neo-site blockquote,
  .guide-site p,
  .guide-site li,
  .guide-site summary,
  .guide-site blockquote {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .neo-live-headline {
    margin-block: 20px 22px !important;
    font-size: clamp(44px, 13vw, 58px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.055em !important;
  }
  .neo-headline-topic {
    max-width: 32rem;
    margin-bottom: 14px;
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.48;
    letter-spacing: -0.012em;
    text-wrap: balance;
  }
  .neo-headline-stage {
    min-height: 2.82em;
  }
  .neo-typed-line {
    white-space: nowrap;
  }
  .neo-hero-intent {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  .neo-section-head h2 {
    font-size: clamp(34px, 9.2vw, 45px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.052em;
  }
  .neo-dark-copy h2,
  .neo-compare h2,
  .neo-honest h2 {
    font-size: clamp(33px, 8.9vw, 44px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.05em;
  }
  .neo-analysis-section .neo-dark-copy h2 {
    font-size: clamp(29px, 7.9vw, 39px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.042em;
  }
  .neo-final h2 {
    font-size: clamp(35px, 9.5vw, 46px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.052em;
  }
  .guide-hero h1 {
    font-size: clamp(36px, 9.6vw, 47px) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.052em;
  }
  .guide-section-head h2,
  .guide-prompt h2 {
    font-size: clamp(33px, 8.9vw, 44px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.048em;
  }
  .neo-section-head > span,
  .guide-section-head > span,
  .neo-honest > div > span,
  .neo-final > div > span {
    width: fit-content;
    max-width: 100%;
    letter-spacing: 0.045em;
    overflow-wrap: anywhere;
  }
  .neo-cap-card h3,
  .neo-output-grid h3,
  .neo-audience-grid h3,
  .neo-method-grid h3,
  .guide-step h3,
  .guide-feature-grid h3,
  .guide-use-grid h3 {
    line-height: 1.18;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  .neo-header .neo-brand {
    flex: 0 1 auto;
    min-width: 0;
    font-size: clamp(15px, 4.4vw, 18px);
    letter-spacing: -0.035em;
  }
  .neo-header .neo-button {
    flex: 0 0 auto;
    max-width: 48vw;
    white-space: normal;
    text-wrap: balance;
  }
}
@media (max-width: 360px) {
  .neo-live-headline {
    font-size: clamp(40px, 12.8vw, 46px) !important;
    letter-spacing: -0.05em !important;
  }
  .neo-headline-topic {
    font-size: 11px;
  }
  .neo-section-head h2,
  .guide-section-head h2,
  .guide-prompt h2 {
    font-size: clamp(31px, 8.8vw, 36px) !important;
  }
  .neo-header .neo-button {
    max-width: 45vw;
    padding-inline: 9px;
    font-size: 9.5px;
  }
}

/* Brighter mobile rhythm and clearer interactive cards. */
.neo-proof-flow > i {
  width: auto;
  min-width: 70px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--neo-lime);
  color: #202214;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(136, 166, 24, 0.18);
}
.neo-proof-flow > i:before {
  content: "сверка";
}
.guide-related a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.guide-related a:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -75px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
}
.guide-related a:nth-child(2) {
  background: #e8ecff;
  color: #182661;
}
.guide-related a:nth-child(3) {
  background: #efffbd;
  color: #293600;
}
.guide-related a > b {
  width: max-content;
  margin-top: 28px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--neo-ink);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-related a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(28, 30, 54, 0.12);
}
.neo-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 44px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, #15182c, #26366b);
  color: #fff;
}
.neo-footer:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -170px;
  border: 1px solid rgba(216, 255, 84, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(216, 255, 84, 0.04);
}
.neo-footer > div,
.neo-footer nav {
  position: relative;
  z-index: 1;
}
.neo-footer > div > p,
.neo-footer time {
  color: #cbd1e6;
}
.neo-footer nav a {
  color: #fff;
}
.neo-footer nav a:hover {
  color: var(--neo-lime);
}

@media (max-width: 700px) {
  .neo-cap-grid {
    gap: 16px;
  }
  .neo-cap-card:nth-child(n) {
    min-height: 315px;
    padding: 26px;
    border: 0;
    box-shadow: 0 18px 45px rgba(25, 27, 56, 0.1);
  }
  .neo-cap-card:nth-child(1) {
    background: linear-gradient(145deg, #fff 25%, #e7edff);
  }
  .neo-cap-card:nth-child(2) {
    background: linear-gradient(145deg, #fff 25%, #ffe2dd);
  }
  .neo-cap-card:nth-child(3) {
    background: linear-gradient(145deg, #fff 20%, #efffba);
  }
  .neo-cap-card:nth-child(4) {
    background: linear-gradient(145deg, #1b1e34, #303e75);
    color: #fff;
  }
  .neo-cap-card:nth-child(5) {
    background: linear-gradient(145deg, #3154ff, #6a43f2);
    color: #fff;
  }
  .neo-cap-card:nth-child(4) p,
  .neo-cap-card:nth-child(5) p {
    color: #d9def1;
  }
  .neo-cap-card:nth-child(4) > span,
  .neo-cap-card:nth-child(5) > span {
    color: var(--neo-lime);
  }
  .neo-cap-card:nth-child(4) .neo-svg-icon,
  .neo-cap-card:nth-child(5) .neo-svg-icon {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
  }
  .neo-cap-card h3 {
    margin-top: 25px;
    font-size: 29px;
  }
  .neo-cap-card b {
    width: max-content;
    min-height: auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(49, 84, 255, 0.1);
    color: inherit;
  }
  .neo-cap-card:nth-child(4) b,
  .neo-cap-card:nth-child(5) b {
    background: rgba(255, 255, 255, 0.13);
  }
  .neo-compare {
    background: linear-gradient(155deg, #dce3ff, #e9ddff 58%, #f0ffc2);
  }
  .neo-proof-flow > i {
    justify-self: start;
    transform: none;
  }
  .neo-proof-flow > div {
    box-shadow: 0 12px 28px rgba(38, 42, 88, 0.08);
  }
  .neo-compare-copy > a {
    width: max-content;
    padding: 11px 14px;
    border-radius: 999px;
    background: var(--neo-ink);
    color: #fff;
    text-decoration: none;
  }
  .neo-prompt-grid {
    gap: 16px;
  }
  .neo-prompt-grid article {
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 42px rgba(28, 30, 60, 0.13);
  }
  .guide-related {
    gap: 15px;
  }
  .guide-related a {
    min-height: 180px;
    padding: 24px;
    border: 0;
    box-shadow: 0 16px 36px rgba(27, 30, 62, 0.1);
  }
  .guide-related a:first-child {
    background: linear-gradient(145deg, #fff, #e8edff);
  }
  .guide-related a:nth-child(2) {
    background: linear-gradient(145deg, #3154ff, #6146ee);
    color: #fff;
  }
  .guide-related a:nth-child(3) {
    background: linear-gradient(145deg, #eaff9b, #c9f04d);
  }
  .guide-related a span {
    max-width: 90%;
    font-size: 24px;
    line-height: 1.08;
  }
  .guide-related a:nth-child(2) > b {
    background: var(--neo-lime);
    color: #202214;
  }
  .neo-footer {
    width: calc(100% - 12px);
    margin-top: 18px;
    padding: 44px 22px 30px;
    gap: 30px;
    border-radius: 28px 28px 0 0;
  }
  .neo-footer .neo-brand {
    color: #fff;
  }
  .neo-footer .neo-brand > img {
    mix-blend-mode: normal;
    background: #fff;
    border-radius: 9px;
  }
  .neo-footer > div > p {
    max-width: 310px;
    color: #cbd1e6;
    font-size: 14px;
  }
  .neo-footer nav a {
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
  }
  .neo-footer nav a:after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--neo-lime);
  }
}

/* Unified readable typography: strong Manrope rhythm across every page. */
.neo-site,
.guide-site {
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.012em;
}
.neo-site h1,
.neo-site h2,
.neo-site h3,
.guide-site h1,
.guide-site h2,
.guide-site h3 {
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.neo-site h1 em,
.neo-site h2 em,
.neo-site h3 em,
.guide-site h1 em,
.guide-site h2 em,
.guide-site h3 em {
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  font-style: normal;
  letter-spacing: inherit;
}
.neo-site p,
.neo-site li,
.neo-site blockquote,
.neo-site summary,
.guide-site p,
.guide-site li,
.guide-site blockquote,
.guide-site summary {
  font-family: inherit;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.neo-site b,
.neo-site strong,
.guide-site b,
.guide-site strong {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.neo-button,
.neo-text-link,
.neo-cap-card b,
.guide-related a > b,
.neo-footer nav a {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: none;
}
.neo-section-head > span,
.guide-section-head > span,
.neo-compare-copy > span,
.neo-honest > div > span,
.neo-final > div > span,
.neo-kicker {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.055em;
}
.neo-lead,
.neo-hero-copy > p,
.guide-hero-copy > p {
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.018em;
}
.neo-cap-card h3,
.neo-output-grid h3,
.neo-audience-grid h3,
.neo-method-grid h3,
.guide-step h3,
.guide-feature-grid h3,
.guide-use-grid h3 {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.neo-cap-card p,
.neo-output-grid p,
.neo-audience-grid p,
.neo-method-grid p,
.guide-step p,
.guide-feature-grid p,
.guide-use-grid p {
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.012em;
}
.neo-faq-list summary {
  font-weight: 800;
  letter-spacing: -0.035em;
}
.neo-faq-list details p {
  font-weight: 500;
  line-height: 1.65;
}
.neo-footer .neo-brand {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.neo-footer > div > p {
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.018em;
}
.neo-footer nav a {
  font-size: 14px;
}

@media (max-width: 700px) {
  .neo-site,
  .guide-site {
    font-size: 16px;
    line-height: 1.6;
  }
  .neo-hero h1 {
    font-size: clamp(43px, 12vw, 54px) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.055em !important;
  }
  .neo-section-head h2,
  .neo-dark-copy h2,
  .neo-compare h2,
  .neo-honest h2,
  .neo-final h2,
  .guide-section-head h2,
  .guide-prompt h2 {
    font-family: Manrope, "Segoe UI", Arial, sans-serif !important;
    font-size: clamp(34px, 9.5vw, 43px) !important;
    font-weight: 800 !important;
    line-height: 1.07 !important;
    letter-spacing: -0.048em !important;
  }
  .guide-hero h1 {
    font-family: Manrope, "Segoe UI", Arial, sans-serif !important;
    font-size: clamp(38px, 10.5vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.04 !important;
    letter-spacing: -0.052em !important;
  }
  .neo-headline-topic,
  .neo-hero-intent {
    font-family: Manrope, "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .neo-hero-copy > p,
  .guide-hero-copy > p,
  .neo-intro .neo-lead,
  .neo-prompts .neo-lead,
  .neo-studio .neo-lead,
  .neo-audiences .neo-lead {
    font-size: 16px;
    line-height: 1.62;
  }
  .neo-cap-card h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .neo-cap-card p {
    font-size: 16px;
    line-height: 1.58;
  }
  .neo-step-grid h3,
  .neo-output-grid h3,
  .neo-audience-grid h3,
  .neo-method-grid h3 {
    font-size: 24px;
    line-height: 1.12;
  }
  .neo-step-grid p,
  .neo-output-grid p,
  .neo-audience-grid p,
  .neo-method-grid p {
    font-size: 15px;
    line-height: 1.6;
  }
  .neo-prompt-grid h3 {
    font-size: 17px;
    font-weight: 800;
  }
  .neo-prompt-grid blockquote {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.025em;
  }
  .neo-prompt-grid small {
    font-size: 13px;
    font-weight: 700;
  }
  .guide-step h3,
  .guide-feature-grid h3,
  .guide-use-grid h3 {
    font-size: 23px;
    line-height: 1.12;
  }
  .guide-step p,
  .guide-feature-grid p,
  .guide-use-grid p,
  .guide-problem p,
  .guide-result-row p,
  .guide-warning p {
    font-size: 15px;
    line-height: 1.6;
  }
  .neo-faq-list summary {
    font-size: 18px;
    line-height: 1.3;
  }
  .neo-faq-list details p {
    font-size: 15px;
    line-height: 1.62;
  }
  .neo-button {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .neo-footer > div > p {
    font-size: 16px;
    line-height: 1.55;
  }
  .neo-footer nav a {
    font-size: 15px;
    font-weight: 800;
  }
}

/* Final authoritative audit layer. */
.guide-site {
  --guide-text-accent: var(--guide-accent);
}
.guide-site-sravnit-dokumenty {
  --guide-text-accent: #a92f28;
}
.guide-site-kratkiy-pereskaz {
  --guide-text-accent: #006d64;
}
.guide-site .neo-kicker,
.guide-site .guide-breadcrumbs a,
.guide-site .guide-section-head > span,
.guide-site .guide-quick-value small,
.guide-site .guide-nav a:hover {
  color: var(--guide-text-accent);
}
.guide-site .guide-step > span {
  background: #171a2d !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow:
    0 0 0 3px var(--guide-accent),
    0 14px 30px rgba(23, 26, 45, 0.24) !important;
}
.neo-final h2 em {
  color: #d8ff54 !important;
  -webkit-text-fill-color: #d8ff54 !important;
  background: none !important;
}
.neo-final p {
  color: #fff !important;
}
.neo-cap-card > span,
.neo-step-grid small {
  color: #5d5b64;
}
.neo-float-b {
  background: #d83f36;
  color: #fff;
}
.neo-step-number {
  color: #5b67b7;
  -webkit-text-stroke: 0;
  text-shadow: none;
  opacity: 0.92;
}
.neo-step-grid article:nth-child(2) .neo-step-number {
  color: #b94b42;
}
.neo-step-grid article:nth-child(3) .neo-step-number {
  color: #52680d;
}
.neo-prompt-grid article:nth-child(3) {
  color: var(--neo-ink);
}
.neo-prompt-grid article:nth-child(3) > span,
.neo-prompt-grid article:nth-child(3) small {
  opacity: 0.82;
}
.neo-prompt-grid article:nth-child(2) > span,
.neo-prompt-grid article:nth-child(2) small {
  opacity: 1;
}
.neo-honest > div:first-child > span {
  color: #243aa8;
  border-color: rgba(36, 58, 168, 0.35);
  background: #fff;
}
.guide-feature-grid article:nth-child(2) p,
.guide-result-title p {
  color: #fff;
}
.guide-prompt {
  scroll-margin-top: 185px;
}
.neo-site {
  overflow-x: clip;
}
@media (max-width: 900px) {
  .neo-header .neo-button {
    white-space: nowrap;
    overflow: hidden;
    transform: translateZ(0);
  }
  .neo-header .neo-button,
  .neo-header .neo-button:before {
    animation: none !important;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 88px;
  }
  .guide-nav {
    position: static;
    top: auto;
  }
  .guide-section,
  .guide-prompt {
    scroll-margin-top: 88px;
  }
  .neo-cap-card:nth-child(5) p {
    color: #fff;
  }
  .guide-related a:nth-child(2) small {
    color: #fff;
  }
  .guide-breadcrumbs a,
  .neo-method-sources a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .guide-nav a {
    min-height: 44px;
  }
}
@media (max-width: 360px) {
  .neo-typed-line {
    white-space: normal;
  }
}

/* Premium CTA system: brighter surfaces, tactile depth and inviting motion. */
.neo-button {
  position: relative;
  isolation: isolate;
  min-width: 220px;
  min-height: 60px;
  padding: 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 19px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 45%),
    linear-gradient(135deg, #5270ff 0%, #2c51ff 48%, #7447f5 100%);
  color: #fff !important;
  cursor: pointer;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
  text-shadow:
    0 2px 3px rgba(13, 24, 92, 0.36),
    0 0 16px rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -7px 16px rgba(23, 38, 162, 0.2),
    0 7px 0 rgba(35, 57, 185, 0.12),
    0 20px 42px rgba(49, 84, 255, 0.34);
  transform: translateZ(0);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.34s ease,
    filter 0.34s ease,
    border-color 0.34s ease;
  will-change: transform;
}
.neo-button > span,
.neo-button > svg {
  position: relative;
  z-index: 2;
}
.neo-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 17px;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(216, 255, 84, 0.34),
    transparent 48%
  );
  opacity: 0.45;
  pointer-events: none;
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}
.neo-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -45%;
  bottom: -45%;
  left: -34%;
  width: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.66),
    transparent
  );
  filter: blur(1px);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-280%);
  transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.neo-button:hover {
  border-color: rgba(255, 255, 255, 0.86);
  filter: saturate(1.15) brightness(1.06);
  transform: translateY(-5px) scale(1.025);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -8px 18px rgba(23, 38, 162, 0.18),
    0 9px 0 rgba(35, 57, 185, 0.1),
    0 27px 58px rgba(49, 84, 255, 0.46),
    0 0 0 5px rgba(216, 255, 84, 0.12);
}
.neo-button:hover:before {
  opacity: 1;
  transform: scale(1.08);
}
.neo-button:hover:after {
  transform: skewX(-18deg) translateX(760%);
}
.neo-button:active {
  filter: saturate(1.08) brightness(0.98);
  transform: translateY(1px) scale(0.985);
  box-shadow:
    inset 0 2px 8px rgba(20, 34, 134, 0.22),
    0 9px 20px rgba(49, 84, 255, 0.28);
  transition-duration: 0.1s;
}
.neo-button:focus-visible {
  outline: 3px solid var(--neo-lime);
  outline-offset: 5px;
  box-shadow:
    0 0 0 7px rgba(49, 84, 255, 0.2),
    0 24px 54px rgba(49, 84, 255, 0.4);
}
.neo-button-light {
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 58%, #e8ecff 100%);
  color: #171a2d !important;
  text-shadow: 0 1px 0 #fff;
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -7px 15px rgba(49, 84, 255, 0.09),
    0 7px 0 rgba(255, 255, 255, 0.12),
    0 22px 48px rgba(8, 13, 45, 0.28);
}
.neo-button-light:before {
  background: radial-gradient(
    circle at 50% 120%,
    rgba(216, 255, 84, 0.72),
    transparent 50%
  );
}
.neo-button-light:after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(49, 84, 255, 0.2),
    transparent
  );
}
.neo-button-light:hover {
  border-color: var(--neo-lime);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -7px 15px rgba(49, 84, 255, 0.1),
    0 7px 0 rgba(255, 255, 255, 0.1),
    0 28px 60px rgba(8, 13, 45, 0.36),
    0 0 0 5px rgba(216, 255, 84, 0.18);
}
.neo-actions .neo-button {
  animation: neoCtaBreathe 4.6s ease-in-out infinite;
}
.neo-final .neo-button {
  animation: neoCtaBreatheLight 4.6s ease-in-out infinite;
}
.neo-actions .neo-text-link {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  text-decoration: none;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.neo-actions .neo-text-link:hover {
  color: var(--neo-blue);
  background: rgba(49, 84, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(49, 84, 255, 0.13);
  transform: translateY(-2px);
}
@keyframes neoCtaBreathe {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 -7px 16px rgba(23, 38, 162, 0.2),
      0 7px 0 rgba(35, 57, 185, 0.12),
      0 18px 38px rgba(49, 84, 255, 0.3);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      inset 0 -7px 16px rgba(23, 38, 162, 0.18),
      0 7px 0 rgba(35, 57, 185, 0.1),
      0 24px 52px rgba(49, 84, 255, 0.43),
      0 0 0 4px rgba(49, 84, 255, 0.07);
  }
}
@keyframes neoCtaBreatheLight {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 #fff,
      inset 0 -7px 15px rgba(49, 84, 255, 0.09),
      0 7px 0 rgba(255, 255, 255, 0.1),
      0 19px 42px rgba(8, 13, 45, 0.26);
  }
  50% {
    box-shadow:
      inset 0 1px 0 #fff,
      inset 0 -7px 15px rgba(49, 84, 255, 0.11),
      0 7px 0 rgba(255, 255, 255, 0.08),
      0 27px 58px rgba(8, 13, 45, 0.34),
      0 0 0 4px rgba(216, 255, 84, 0.13);
  }
}
@media (max-width: 900px) {
  .neo-header .neo-button {
    min-width: clamp(154px, 43vw, 184px);
    min-height: 48px;
    padding: 0 16px;
    border-radius: 15px;
    font-size: 11.5px;
    letter-spacing: -0.025em;
  }
  .neo-header .neo-button:before {
    inset: 1px;
    border-radius: 13px;
  }
  .neo-actions .neo-button,
  .neo-final .neo-button {
    min-height: 60px;
  }
}
@media (max-width: 700px) {
  .neo-actions .neo-button,
  .neo-final .neo-button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    border-radius: 18px;
    font-size: 16px;
  }
  .neo-actions .neo-text-link {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .neo-header .neo-button {
    min-width: 145px;
    max-width: 44vw;
    min-height: 46px;
    padding-inline: 11px;
    font-size: 10.5px;
  }
}
@media (hover: none), (pointer: coarse) {
  .neo-button:hover {
    filter: none;
    transform: none;
  }
  .neo-button:hover:before {
    opacity: 0.45;
    transform: none;
  }
  .neo-button:hover:after {
    transform: skewX(-18deg) translateX(-280%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .neo-header .neo-button:hover,
  .neo-actions .neo-button:hover,
  .neo-final .neo-button:hover {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .neo-button,
  .neo-button:before,
  .neo-button:after,
  .neo-actions .neo-button,
  .neo-final .neo-button {
    animation: none !important;
    transition: none !important;
  }
}

/* High-contrast small numbering across cards, prompts and supporting blocks. */
.neo-number-badge {
  position: relative;
  z-index: 3;
  width: max-content;
  min-width: 45px;
  min-height: 34px;
  padding: 7px 11px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: linear-gradient(145deg, #4565ff, #2849ee);
  color: #fff !important;
  font-family: Manrope, "Segoe UI", Arial, sans-serif !important;
  font-size: 13px !important;
  font-style: normal;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.035em !important;
  text-shadow: 0 2px 3px rgba(13, 24, 92, 0.35);
  box-shadow:
    0 0 0 3px rgba(49, 84, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 9px 20px rgba(49, 84, 255, 0.24);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}
.neo-cap-card:nth-child(2) > .neo-number-badge,
.neo-prompt-grid article:nth-child(3n) > .neo-number-badge {
  background: linear-gradient(145deg, #ff766b, #d9473d);
  box-shadow:
    0 0 0 3px rgba(217, 71, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 9px 20px rgba(217, 71, 61, 0.22);
}
.neo-cap-card:nth-child(3) > .neo-number-badge,
.neo-prompt-grid article:nth-child(2) > .neo-number-badge {
  background: linear-gradient(145deg, #805cf9, #5c34dd);
  box-shadow:
    0 0 0 3px rgba(116, 71, 245, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 9px 20px rgba(116, 71, 245, 0.22);
}
.neo-cap-card:nth-child(4) > .neo-number-badge {
  background: linear-gradient(145deg, #ff766b, #d9473d);
}
.neo-cap-card:nth-child(5) > .neo-number-badge {
  background: linear-gradient(145deg, #8cab11, #607c00);
}
.neo-number-badge-dark {
  background: linear-gradient(145deg, #d8ff54, #a8d51b);
  color: #171a2d !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 3px rgba(216, 255, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 9px 20px rgba(0, 0, 0, 0.25);
}
.neo-cap-card:hover > .neo-number-badge,
.neo-prompt-grid article:hover > .neo-number-badge,
.neo-method-grid article:hover > .neo-number-badge,
.guide-related a:hover > .neo-number-badge {
  filter: saturate(1.15) brightness(1.05);
  transform: translateY(-3px) rotate(-2deg);
  box-shadow:
    0 0 0 4px rgba(216, 255, 84, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 27px rgba(49, 84, 255, 0.3);
}
.neo-analysis-list .neo-number-badge {
  flex: 0 0 auto;
  align-self: start;
  margin-top: 2px;
}
.neo-studio-icon > b,
.neo-role-icon > b {
  width: 38px;
  height: 38px;
  border-width: 3px;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 3px rgba(49, 84, 255, 0.13),
    0 9px 18px rgba(20, 28, 71, 0.28);
}
.guide-related > a > .neo-number-badge {
  margin-bottom: 22px;
  color: #fff !important;
}
.neo-analysis-status > b {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--neo-lime);
  color: #171a2d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}
@media (max-width: 700px) {
  .neo-number-badge {
    min-width: 48px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 13px;
    font-size: 14px !important;
  }
  .neo-cap-card > .neo-number-badge {
    margin-bottom: 4px;
  }
  .neo-studio-icon > b,
  .neo-role-icon > b {
    width: 40px;
    height: 40px;
    font-size: 10px !important;
  }
}
@media (hover: none), (pointer: coarse) {
  .neo-cap-card:hover > .neo-number-badge,
  .neo-prompt-grid article:hover > .neo-number-badge,
  .neo-method-grid article:hover > .neo-number-badge,
  .guide-related a:hover > .neo-number-badge {
    filter: none;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .neo-number-badge {
    transition: none !important;
  }
}

/* Shared motion language for repeated content cards on every route. */
.neo-motion-card {
  --card-accent-rgb: 49, 84, 255;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-origin: 50% 72%;
  backface-visibility: hidden;
  box-shadow: 0 17px 44px rgba(28, 32, 72, 0.08);
  transition:
    transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.48s ease,
    border-color 0.38s ease,
    filter 0.38s ease !important;
}
.neo-motion-card:nth-child(2n) {
  --card-accent-rgb: 255, 102, 92;
}
.neo-motion-card:nth-child(3n) {
  --card-accent-rgb: 116, 71, 245;
}
.guide-site .neo-motion-card {
  --card-accent-rgb: var(--guide-accent-rgb);
}
.neo-prompt-grid .neo-motion-card:before,
.neo-honest-grid .neo-motion-card:before,
.guide-problem .neo-motion-card:before,
.guide-feature-grid .neo-motion-card:before,
.guide-use-grid .neo-motion-card:before,
.guide-check-grid .neo-motion-card:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  right: -150px;
  top: -155px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--card-accent-rgb), 0.24),
    rgba(var(--card-accent-rgb), 0.05) 54%,
    transparent 70%
  );
  opacity: 0.48;
  pointer-events: none;
  transform: scale(0.82);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.55s ease;
}
.neo-prompt-grid .neo-motion-card:after,
.neo-honest-grid .neo-motion-card:after,
.guide-problem .neo-motion-card:after,
.guide-feature-grid .neo-motion-card:after,
.guide-use-grid .neo-motion-card:after,
.guide-check-grid .neo-motion-card:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -28% -55%;
  background: linear-gradient(
    112deg,
    transparent 39%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.12) 53%,
    transparent 61%
  );
  pointer-events: none;
  opacity: 0;
  transform: translateX(-52%) rotate(2deg);
  transition:
    transform 0.88s cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 0.32s ease;
}
.neo-prompt-grid .neo-motion-card > *,
.neo-honest-grid .neo-motion-card > *,
.guide-problem .neo-motion-card > *,
.guide-feature-grid .neo-motion-card > *,
.guide-use-grid .neo-motion-card > *,
.guide-check-grid .neo-motion-card > * {
  position: relative;
  z-index: 2;
}
.neo-motion-card.is-visible {
  animation: neoCardSettle 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.neo-cap-grid .neo-motion-card:nth-child(2),
.neo-steps .neo-motion-card:nth-child(2),
.neo-output-grid .neo-motion-card:nth-child(2),
.neo-audience-grid .neo-motion-card:nth-child(2),
.neo-prompt-grid .neo-motion-card:nth-child(2),
.neo-method-grid .neo-motion-card:nth-child(2),
.guide-problem .neo-motion-card:nth-child(2),
.guide-steps .neo-motion-card:nth-child(2),
.guide-feature-grid .neo-motion-card:nth-child(2),
.guide-use-grid .neo-motion-card:nth-child(2),
.guide-check-grid .neo-motion-card:nth-child(2),
.guide-related .neo-motion-card:nth-child(2) {
  animation-delay: 0.08s;
}
.neo-cap-grid .neo-motion-card:nth-child(3),
.neo-steps .neo-motion-card:nth-child(3),
.neo-output-grid .neo-motion-card:nth-child(3),
.neo-audience-grid .neo-motion-card:nth-child(3),
.neo-prompt-grid .neo-motion-card:nth-child(3),
.neo-method-grid .neo-motion-card:nth-child(3),
.guide-steps .neo-motion-card:nth-child(3),
.guide-feature-grid .neo-motion-card:nth-child(3),
.guide-use-grid .neo-motion-card:nth-child(3),
.guide-related .neo-motion-card:nth-child(3) {
  animation-delay: 0.16s;
}
@keyframes neoCardSettle {
  0% {
    filter: saturate(0.88);
    transform: translateY(26px) scale(0.975);
    box-shadow: 0 9px 25px rgba(28, 32, 72, 0.03);
  }
  68% {
    transform: translateY(-4px) scale(1.006);
  }
  100% {
    filter: none;
    transform: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .neo-motion-card:hover {
    z-index: 4;
    border-color: rgba(var(--card-accent-rgb), 0.34) !important;
    filter: saturate(1.06);
    transform: translateY(-9px) scale(1.018) !important;
    box-shadow:
      0 30px 72px rgba(var(--card-accent-rgb), 0.19),
      0 9px 24px rgba(25, 29, 67, 0.12) !important;
  }
  .neo-prompt-grid .neo-motion-card:hover:before,
  .neo-honest-grid .neo-motion-card:hover:before,
  .guide-problem .neo-motion-card:hover:before,
  .guide-feature-grid .neo-motion-card:hover:before,
  .guide-use-grid .neo-motion-card:hover:before,
  .guide-check-grid .neo-motion-card:hover:before {
    opacity: 0.95;
    transform: scale(1.65) translate(-18px, 18px);
  }
  .neo-prompt-grid .neo-motion-card:hover:after,
  .neo-honest-grid .neo-motion-card:hover:after,
  .guide-problem .neo-motion-card:hover:after,
  .guide-feature-grid .neo-motion-card:hover:after,
  .guide-use-grid .neo-motion-card:hover:after,
  .guide-check-grid .neo-motion-card:hover:after {
    opacity: 1;
    transform: translateX(52%) rotate(2deg);
  }
  .neo-motion-card:hover .neo-svg-icon {
    transform: translateY(-4px) rotate(-2deg) scale(1.055);
  }
}
@media (max-width: 700px) {
  .neo-motion-card {
    box-shadow: 0 18px 42px rgba(28, 32, 72, 0.1);
  }
  .neo-motion-card.is-visible {
    animation-duration: 0.62s;
  }
}
@media (hover: none), (pointer: coarse) {
  .neo-motion-card:hover {
    filter: none;
    transform: none !important;
  }
  .neo-motion-card:after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .neo-motion-card,
  .neo-motion-card.is-visible,
  .neo-motion-card:before,
  .neo-motion-card:after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Layout guards for the honest-section label and the final mobile headline. */
.neo-honest > div:first-child > span {
  align-self: start;
  width: max-content !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 13px 17px !important;
  display: inline-flex !important;
  align-items: center;
  border-radius: 999px !important;
  aspect-ratio: auto !important;
  white-space: nowrap;
}
.neo-final > div:not(.neo-final-orb) {
  width: min(940px, 100%);
  box-sizing: border-box;
}
.neo-final h2 {
  max-width: 900px;
  margin-inline: auto;
  text-wrap: balance;
}
.neo-final h2 br {
  display: none;
}
@media (max-width: 700px) {
  .neo-honest > div:first-child > span {
    max-width: 100%;
    padding: 10px 12px !important;
    font-size: 9px !important;
    white-space: normal;
  }
  .neo-final {
    min-height: auto;
    padding: 0 !important;
  }
  .neo-final > div:not(.neo-final-orb) {
    width: 100%;
    max-width: none;
    padding: 58px 20px 62px !important;
  }
  .neo-final > div > span {
    display: inline-flex;
    max-width: 290px;
    margin-inline: auto;
    padding: 10px 13px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    text-align: center;
    white-space: normal;
  }
  .neo-final h2 {
    max-width: min(100%, 350px);
    margin: 30px auto 24px;
    font-size: clamp(34px, 9.2vw, 42px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
  }
  .neo-final h2 em {
    display: block;
    margin-top: 7px;
  }
  .neo-final p {
    max-width: 340px;
    margin-inline: auto;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.62;
  }
}
@media (max-width: 360px) {
  .neo-final > div:not(.neo-final-orb) {
    padding-inline: 16px !important;
  }
  .neo-final h2 {
    max-width: 310px;
    font-size: clamp(31px, 9vw, 36px) !important;
  }
}

/* Final authoritative spacing rhythm. Keep adjacent sections to one clear interval. */
.neo-section {
  padding-block: 112px;
}
.guide-section {
  padding-block: 104px;
}
.neo-section-head,
.guide-section-head {
  margin-bottom: 52px;
}
.neo-faq-list {
  margin-top: 0;
  margin-left: 272px;
}
.guide-result-table {
  margin-left: 272px;
}
.neo-footer {
  margin-top: 24px;
}
.guide-final {
  margin-top: 0;
}
.neo-section[id] {
  scroll-margin-top: 96px;
}
main > .neo-section + .neo-section,
main > .guide-section + .guide-section {
  padding-block-start: 0;
}

@media (max-width: 900px) {
  .neo-section {
    padding-block: 84px;
  }
  .guide-section {
    padding-block: 80px;
  }
  .neo-section-head,
  .guide-section-head {
    margin-bottom: 40px;
  }
  .neo-faq-list,
  .guide-result-table {
    margin-left: 0;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .guide-hero {
    padding-block: 76px 68px;
  }
  .neo-compare,
  .neo-honest {
    padding-block: 80px;
  }
}

@media (max-width: 700px) {
  .neo-section,
  .guide-section {
    padding-block: 60px;
  }
  .neo-section-head,
  .guide-section-head {
    margin-bottom: 30px;
  }
  .neo-section[id] {
    scroll-margin-top: 88px;
  }
}

/* Keep guide labels compact and remove the long empty desktop gutter. */
.guide-section-head {
  align-items: start;
}
.guide-section-head > span {
  align-self: start;
  height: auto;
}
.guide-site .guide-result-table,
.guide-site .neo-faq-list {
  margin-left: 0;
}

@media (min-width: 901px) {
  .neo-faq .neo-section-head {
    display: block;
    position: relative;
  }
  .neo-faq .neo-section-head > span {
    position: absolute;
    top: 10px;
    left: 0;
  }
  .neo-faq .neo-section-head h2,
  .neo-faq .neo-faq-list {
    width: calc(100% - 272px);
    margin-inline: auto;
  }
  .neo-faq .neo-section-head h2 {
    text-align: center;
  }
}

/* Preserve motion-rich desktop presentation while avoiding permanent mobile paint/layout work. */
@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .neo-float,
  .neo-hero-art,
  .neo-hero-art > img,
  .neo-hero-glow,
  .neo-sheet-flight,
  .neo-sheet-flight i,
  .neo-hero-terminal,
  .neo-terminal-label i,
  .neo-hero-terminal > div span,
  .neo-analysis-orb,
  .neo-analysis-art > img,
  .neo-analysis-art:before,
  .neo-scan-line,
  .neo-analysis-status i,
  .neo-step-icon,
  .neo-step-icon i,
  .neo-studio-icon > svg,
  .neo-icon-orbit,
  .neo-role-icon,
  .neo-role-icon > svg,
  .neo-role-orbit,
  .neo-proof-flow > i,
  .neo-final-orb,
  .guide-art:after,
  .neo-actions .neo-button,
  .neo-final .neo-button {
    animation: none !important;
  }
}
