:root {
      --bg: #07111f;
      --panel: rgba(14, 24, 48, 0.72);
      --line: rgba(158, 185, 255, 0.18);
      --text: #eef4ff;
      --muted: #96a8cf;
      --blue: #7bc6ff;
      --cyan: #6cf2e7;
      --glow: 0 0 80px rgba(123, 198, 255, 0.18);
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
      --max: 1180px;
      --font-display: 'Prata', serif;
      --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 12px;
      padding: 10px 14px;
      background: #0b1830;
      color: #fff;
      border-radius: 10px;
      z-index: 100;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 12px; outline: 2px solid var(--cyan); }

    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
      border-radius: 4px;
    }
    body {
      margin: 0;
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 20%, rgba(123,198,255,0.22), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(108,242,231,0.14), transparent 24%),
        radial-gradient(circle at 70% 60%, rgba(167,139,250,0.14), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #050c17 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
      opacity: 0.38;
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
    main, footer { position: relative; z-index: 1; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 24;
      padding: 18px 0 0;
    }
    .site-header .container {
      display: flex;
      justify-content: center;
    }
    .header-shell {
      width: min(100%, var(--max));
      padding: 18px 24px;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(190, 220, 255, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 28%, rgba(7, 17, 31, 0.2) 100%),
        linear-gradient(135deg, rgba(123, 198, 255, 0.12), rgba(108, 242, 231, 0.08) 46%, rgba(255, 255, 255, 0.04));
      backdrop-filter: blur(26px) saturate(160%);
      -webkit-backdrop-filter: blur(26px) saturate(160%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 18px 50px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.03);
      transition:
        width 0.35s ease,
        padding 0.35s ease,
        border-radius 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
    }
    .header-shell::before,
    .header-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    }
    .header-shell::before {
      inset: -1px;
      background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.35), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(123, 198, 255, 0.22), transparent 28%),
        radial-gradient(circle at 60% 100%, rgba(108, 242, 231, 0.16), transparent 34%);
      opacity: 0.9;
      filter: blur(14px);
      transform: translate3d(0, 0, 0);
      z-index: 0;
    }
    .header-shell::after {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 20%, transparent 44%),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.14), transparent 16%);
      mix-blend-mode: screen;
      opacity: 0.72;
      z-index: 0;
    }
    .header-shell > .nav,
    .header-shell > .mobile-nav {
      position: relative;
      z-index: 1;
    }
    .site-header.is-compact .header-shell {
      width: min(100%, 1040px);
      padding: 12px 18px;
      border-radius: 24px;
      border-color: rgba(210, 232, 255, 0.2);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 30%, rgba(7, 17, 31, 0.22) 100%),
        linear-gradient(135deg, rgba(123, 198, 255, 0.14), rgba(108, 242, 231, 0.1) 46%, rgba(255, 255, 255, 0.06));
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 22px 60px rgba(0, 0, 0, 0.34),
        0 16px 40px rgba(123, 198, 255, 0.08);
      transform: translateY(2px);
    }
    .site-header.is-compact .header-shell::before {
      opacity: 1;
      filter: blur(18px);
      transform: translate3d(0, 2px, 0);
    }
    .site-header.is-compact .header-shell::after {
      opacity: 0.86;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: gap 0.35s ease;
    }
    .site-header.is-compact .nav { gap: 18px; }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: 0.02em;
      transition: gap 0.35s ease, font-size 0.35s ease;
    }
    .site-header.is-compact .brand {
      gap: 12px;
      font-size: 16px;
    }
    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(14,24,48,0.96), rgba(9,18,33,0.98));
      border: 1px solid rgba(154, 180, 255, 0.16);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.04);
      transition: width 0.35s ease, height 0.35s ease, border-radius 0.35s ease;
    }
    .site-header.is-compact .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
    }
    .brand-mark svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .brand-mark-bg {
      fill: rgba(10, 18, 34, 0.94);
      stroke: rgba(154, 180, 255, 0.1);
    }
    .brand-mark-stroke {
      fill: none;
      stroke: #f2f6ff;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .brand-mark-stroke--mid {
      stroke-width: 2;
      opacity: 0.92;
    }
    .brand-mark-accent {
      fill: none;
      stroke: #6cf2e7;
      stroke-width: 1.9;
      stroke-linecap: round;
      opacity: 0.95;
    }
    .brand-mark-dot {
      fill: #6cf2e7;
      filter: drop-shadow(0 0 4px rgba(108, 242, 231, 0.55));
    }
    .nav-links {
      display: flex;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
      transition: gap 0.35s ease, font-size 0.35s ease;
    }
    .site-header.is-compact .nav-links {
      gap: 14px;
      font-size: 13px;
    }
    .nav-links a {
      transition: color 0.2s ease, padding 0.35s ease;
      border-radius: 6px;
      padding: 4px 8px;
    }
    .site-header.is-compact .nav-links a { padding: 3px 6px; }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #fff;
    }
    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-direction: column;
      gap: 5px;
    }
    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: 0.25s ease;
    }
    .burger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 12px 16px 18px;
      border-top: 1px solid rgba(255,255,255,0.06);
      transition: padding 0.35s ease;
    }
    .site-header.is-compact .mobile-nav { padding: 10px 12px 14px; }
    .mobile-nav:not([hidden]) { display: flex; }
    .mobile-nav a {
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 15px;
      color: var(--muted);
      transition: background 0.15s;
    }
    .mobile-nav a:hover,
    .mobile-nav a:focus { background: rgba(255,255,255,0.05); color: var(--text); }
    .mobile-nav .btn { margin-top: 8px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 2rem;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 15px;
      transition: 0.25s ease;
      cursor: pointer;
    }
    .site-header.is-compact .btn {
      min-height: 42px;
      padding: 0 16px;
      font-size: 14px;
    }

    @media (prefers-reduced-motion: reduce) {
      .header-shell,
      .header-shell::before,
      .header-shell::after,
      .nav,
      .brand,
      .brand-mark,
      .nav-links,
      .nav-links a,
      .mobile-nav,
      .site-header .btn {
        transition: none;
      }
    }
    .btn.secondary {
      --shimmer-speed: 2.4s;
      --border-w: 1px;
      background: rgba(255,255,255,0.04);
      border: var(--border-w) solid transparent;
      color: var(--text);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .btn.secondary .shimmer-border {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      pointer-events: none;
      mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      mask-composite: exclude;
      -webkit-mask-composite: xor;
      padding: var(--border-w);
      opacity: 0.35;
      transition: opacity 0.3s;
    }
    .btn.secondary:is(:hover, :focus-visible) .shimmer-border {
      opacity: 1;
    }

    .btn.secondary .shimmer-border::before {
      content: "";
      position: absolute;
      inset: -120%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 260deg,
        var(--cyan) 290deg,
        #fff 310deg,
        var(--cyan) 330deg,
        transparent 360deg
      );
      animation: shimmer-spin var(--shimmer-speed) linear infinite;
    }

    .btn.secondary .shimmer-bg {
      position: absolute;
      inset: var(--border-w);
      border-radius: inherit;
      background: rgba(10, 18, 36, 0.92);
      z-index: -1;
      pointer-events: none;
    }

    .btn.secondary .shimmer-glow {
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      opacity: 0;
      background: radial-gradient(
        ellipse at 50% 50%,
        rgba(108, 242, 231, 0.15) 0%,
        transparent 70%
      );
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: -1;
    }
    .btn.secondary:is(:hover, :focus-visible) .shimmer-glow {
      opacity: 1;
    }

    .btn.secondary .shimmer-text {
      position: relative;
      z-index: 1;
      white-space: nowrap;
      background: linear-gradient(
        90deg,
        hsl(0 0% 80%) 0%,
        hsl(0 0% 95%) 50%,
        hsl(0 0% 80%) 100%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      transition: background-position 0.6s;
    }
    .btn.secondary:is(:hover, :focus-visible) .shimmer-text {
      background-position: -100% 0;
    }

    @keyframes shimmer-spin {
      to { rotate: 360deg; }
    }

    .btn.primary {
      --hue: 190;
      --active: 0;
      --transition: 0.25s;
      --spark: 1.8s;
      --cut: 0.1em;
      --bg:
        radial-gradient(120% 120% at 126% 126%,
          hsl(var(--hue) calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%, transparent 50%
        ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        radial-gradient(120% 120% at 120% 120%,
          hsl(var(--hue) calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%, transparent 70%
        ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
        hsl(var(--hue) calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
      background: var(--bg);
      color: hsl(0 0% calc(60% + (var(--active) * 30%)));
      border: 0;
      position: relative;
      box-shadow:
        0 0 calc(var(--active) * 3em) calc(var(--active) * 1.5em) hsl(var(--hue) 97% 61% / 0.35),
        0 0.05em 0 0 hsl(var(--hue) calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
        0 -0.05em 0 0 hsl(var(--hue) calc(var(--active) * 97%) calc(var(--active) * 10%)) inset;
      transition: box-shadow var(--transition), scale var(--transition), background var(--transition);
      scale: calc(1 + (var(--active) * 0.07));
      transform-style: preserve-3d;
      perspective: 100vmin;
      overflow: hidden;
    }
    .btn.primary:is(:hover, :focus-visible) {
      --active: 1;
    }
    .btn.primary:active { scale: 1; }

    .btn.primary .gbtn-spark {
      position: absolute;
      inset: 0;
      border-radius: 2rem;
      rotate: 0deg;
      overflow: hidden;
      mask: linear-gradient(white, transparent 50%);
      animation: gbtn-flip calc(var(--spark) * 2) infinite steps(2, end);
    }
    .btn.primary .gbtn-spark::before {
      content: "";
      position: absolute;
      width: 200%;
      aspect-ratio: 1;
      top: 0;
      left: 50%;
      z-index: -1;
      translate: -50% -15%;
      rotate: 0;
      transform: rotate(-90deg);
      opacity: calc(var(--active) + 0.4);
      background: conic-gradient(from 0deg, transparent 0 340deg, white 360deg);
      transition: opacity var(--transition);
      animation: gbtn-rotate var(--spark) linear infinite both;
    }
    .btn.primary .gbtn-spark::after {
      content: "";
      position: absolute;
      inset: var(--cut);
      border-radius: 2rem;
    }
    .btn.primary .gbtn-backdrop {
      position: absolute;
      inset: var(--cut);
      background: var(--bg);
      border-radius: 2rem;
      transition: background var(--transition);
    }
    .btn.primary .gbtn-galaxy {
      position: absolute;
      width: 100%;
      aspect-ratio: 1;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      overflow: hidden;
      opacity: var(--active);
      transition: opacity var(--transition);
    }
    .btn.primary .gbtn-ring {
      height: 200%;
      width: 200%;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      transform: translate(-28%, -40%) rotateX(-24deg) rotateY(-30deg) rotateX(90deg);
      transform-style: preserve-3d;
    }
    .btn.primary .gbtn-stars-static {
      position: absolute;
      inset: 0;
      opacity: var(--active);
      transition: opacity var(--transition);
      mask: radial-gradient(white, transparent);
    }
    .btn.primary .gbtn-star {
      height: calc(var(--size) * 1px);
      aspect-ratio: 1;
      background: white;
      border-radius: 50%;
      position: absolute;
      opacity: var(--alpha);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(10deg) rotate(0deg) translateY(calc(var(--distance) * 1px));
      animation: gbtn-orbit calc(var(--duration) * 1s) calc(var(--delay) * -1s) infinite linear;
    }
    .btn.primary .gbtn-star--static {
      animation: none;
      top: 50%;
      left: 50%;
      transform: translate(0, 0);
      max-height: 4px;
      filter: brightness(4);
      opacity: 0.9;
      animation:
        gbtn-mx calc(var(--duration) * 0.1s) calc(var(--delay) * -0.1s) infinite linear,
        gbtn-my calc(var(--duration) * 0.2s) calc(var(--delay) * -0.2s) infinite linear;
    }
    .btn.primary:hover .gbtn-star--static { animation-play-state: paused; }
    .btn.primary .gbtn-text {
      position: relative;
      z-index: 1;
      letter-spacing: 0.01ch;
      white-space: nowrap;
    }

    @keyframes gbtn-flip { to { rotate: 360deg; } }
    @keyframes gbtn-rotate { to { transform: rotate(90deg); } }
    @keyframes gbtn-orbit {
      to { transform: translate(-50%, -50%) rotate(10deg) rotate(360deg) translateY(calc(var(--distance) * 1px)); }
    }
    @keyframes gbtn-mx { 0% { translate: -100px 0; } 100% { translate: 100px 0; } }
    @keyframes gbtn-my { 0% { transform: translate(0, -50px); } 100% { transform: translate(0, 50px); } }

    .hero {
      padding: 72px 0 54px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 36px;
      align-items: center;
    }
    .reveal-on-scroll {
      opacity: 0;
      transform: translate3d(0, 28px, 0) scale(0.985);
      filter: blur(10px);
      transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform, filter;
    }
    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }
    .hero-copy h1 {
      margin: 18px 0 18px;
      font-family: 'Prata', serif;
      font-weight: 400;
      line-height: 1.12;
      font-size: clamp(44px, 6vw, 78px);
      letter-spacing: -0.03em;
      max-width: 13ch;
      padding-bottom: 0.08em;
    }
    .hero-title-line,
    .typewriter-line {
      display: block;
    }
    .typewriter-line {
      min-height: 1.18em;
      white-space: nowrap;
    }
    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #9ddcff 45%, #82ffe5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .typewriter {
      display: inline-block;
      background: linear-gradient(135deg, #9ddcff 0%, #82ffe5 60%, #6cf2e7 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      border-right: 0.06em solid var(--cyan);
      animation: tw-blink 0.7s step-end infinite;
      padding-right: 0.04em;
    }
    .typewriter.typing { animation: none; border-color: var(--cyan); }

    @keyframes tw-blink {
      0%, 100% { border-color: var(--cyan); }
      50% { border-color: transparent; }
    }
    .hero-copy p {
      margin: 0;
      max-width: 660px;
      color: #bfd0f5;
      font-size: 19px;
      line-height: 1.7;
    }
    .hero-actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .mini-proof {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      color: #c9d7f8;
      font-size: 14px;
      list-style: none;
      padding: 0;
    }
    .mini-proof li {
      padding: 10px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .bluf {
      margin: 22px 0 6px;
      padding: 18px 20px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(108,242,231,0.10), rgba(123,198,255,0.08));
      border: 1px solid rgba(108,242,231,0.28);
      box-shadow: 0 12px 36px rgba(108,242,231,0.06);
    }
    .bluf strong {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 8px;
    }
    .bluf p {
      margin: 0;
      color: #e7efff;
      font-size: 17px;
      line-height: 1.65;
    }

    .hero-card {
      position: relative;
      background: rgba(10, 18, 34, 0.92);
      border: 1px solid rgba(154, 180, 255, 0.12);
      border-radius: 16px;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
      padding: 22px 24px;
      overflow: hidden;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(154,180,255,0.08) 0%, transparent 40%);
      pointer-events: none;
    }
    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
      position: relative;
    }
    .dashboard-title {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      color: #c5d4f0;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .dashboard-sub {
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: 11px;
      margin-top: 3px;
      letter-spacing: 0.02em;
    }
    .dashboard-divider {
      height: 1px;
      background: rgba(154, 180, 255, 0.1);
      margin-bottom: 14px;
    }
    .status-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 10px;
      border-radius: 6px;
      background: rgba(108, 242, 231, 0.06);
      border: 1px solid rgba(108, 242, 231, 0.18);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      color: #9eddd6;
      letter-spacing: 0.03em;
    }
    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ddbc5;
      animation: statusPulse 2.5s ease-out infinite;
    }
    @keyframes statusPulse {
      0% { box-shadow: 0 0 0 0 rgba(77, 219, 197, 0.5); }
      70% { box-shadow: 0 0 0 5px rgba(77, 219, 197, 0); }
      100% { box-shadow: 0 0 0 0 rgba(77, 219, 197, 0); }
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-bottom: 14px;
      position: relative;
      background: rgba(154, 180, 255, 0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    .metric {
      background: rgba(10, 18, 34, 0.95);
      padding: 14px;
    }
    .metric:first-child { border-radius: 10px 0 0 10px; }
    .metric:last-child { border-radius: 0 10px 10px 0; }
    .metric-label {
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: 10px;
      margin-bottom: 6px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .metric-value {
      font-family: 'Manrope', sans-serif;
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: #f3f7ff;
      font-variant-numeric: tabular-nums;
    }
    .metric-number {
      display: inline-block;
      min-width: 1ch;
    }
    .metric-unit {
      font-size: 16px;
      color: #7f96c4;
      margin-left: 1px;
    }
    .metric-delta {
      margin-top: 5px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .metric-delta.up { color: #4ddbc5; }
    .metric-delta.down { color: #ff8da1; }
    .metric-delta.neutral { color: #7f96c4; }

    .chart-box {
      border-radius: 10px;
      padding: 14px 16px;
      background: rgba(14, 22, 42, 0.7);
      border: 1px solid rgba(154, 180, 255, 0.08);
      margin-bottom: 10px;
      position: relative;
    }
    .chart-box:last-child { margin-bottom: 0; }
    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }
    .chart-legend {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.02em;
    }
    .legend-line {
      width: 16px;
      height: 2px;
      border-radius: 1px;
      display: inline-block;
    }
    .legend-line--you { background: #6cf2e7; }
    .legend-line--comp { background: rgba(150,168,207,0.45); }

    .chart-wrap {
      display: flex;
      gap: 0;
    }
    .chart-y-axis {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0 8px 0 0;
      font-family: var(--font-mono);
      font-size: 9px;
      color: rgba(150, 168, 207, 0.5);
      letter-spacing: 0.04em;
      text-align: right;
      min-width: 28px;
      user-select: none;
    }
    .chart-grid-lines line {
      stroke: rgba(154, 180, 255, 0.06);
      stroke-width: 1;
    }
    .chart-x-axis {
      display: flex;
      justify-content: space-between;
      padding: 6px 0 0 36px;
      font-family: var(--font-mono);
      font-size: 9px;
      color: rgba(150, 168, 207, 0.5);
      letter-spacing: 0.04em;
      user-select: none;
    }

    .dot-cyan { background: #6cf2e7; }
    .dot-muted { background: rgba(150, 168, 207, 0.55); }

    .hbars {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hbar-row {
      display: grid;
      grid-template-columns: 72px 1fr 36px;
      gap: 8px;
      align-items: center;
    }
    .hbar-name {
      font-family: var(--font-mono);
      font-size: 11px;
      color: #c5d4f0;
      letter-spacing: 0.02em;
      text-align: right;
      white-space: nowrap;
    }
    .hbar-track {
      height: 14px;
      border-radius: 3px;
      background: rgba(154, 180, 255, 0.06);
      position: relative;
      overflow: hidden;
    }
    .hbar-fill {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: var(--pct);
      border-radius: 3px;
      transform-origin: left;
      animation: hbarGrow 15s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .hbar-fill--a { background: linear-gradient(90deg, rgba(108,242,231,0.7), rgba(108,242,231,0.35)); }
    .hbar-fill--b { background: linear-gradient(90deg, rgba(123,198,255,0.6), rgba(123,198,255,0.3)); }
    .hbar-row:nth-child(1) .hbar-fill { animation-delay: 0.15s; }
    .hbar-row:nth-child(2) .hbar-fill { animation-delay: 0.35s; }
    .hbar-row:nth-child(3) .hbar-fill { animation-delay: 0.55s; }
    .hbar-row:nth-child(4) .hbar-fill { animation-delay: 0.75s; }
    .hbar-row:nth-child(5) .hbar-fill { animation-delay: 0.95s; }
    @keyframes hbarGrow {
      from { transform: scaleX(0.5); }
      to { transform: scaleX(1); }
    }
    .hbar-val {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      color: #e0eaff;
      letter-spacing: 0.02em;
      font-variant-numeric: tabular-nums;
    }

    .hero-card:not(.is-visible) .status-dot,
    .hero-card:not(.is-visible) .line-grow,
    .hero-card:not(.is-visible) .line-path,
    .hero-card:not(.is-visible) .line-area,
    .hero-card:not(.is-visible) .line-dot,
    .hero-card:not(.is-visible) .line-pulse,
    .hero-card:not(.is-visible) .hbar-fill,
    .shift-card:not(.is-visible) .shift-line,
    .shift-card:not(.is-visible) .shift-area,
    .fact:not(.is-visible) .donut-fill,
    .fact:not(.is-visible) .gauge-fill,
    .fact:not(.is-visible) .timeline-fill,
    .fact:not(.is-visible) .spark-line {
      animation-play-state: paused !important;
    }

    .line-chart {
      width: 100%;
      height: 110px;
      display: block;
    }
    .line-grow {
      transform-box: fill-box;
      transform-origin: center bottom;
      animation: lineRise 15s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .line-path {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: drawLine 15s 0.2s ease-out forwards;
    }
    .line-competitor { animation-duration: 15s; animation-delay: 0.35s; }
    .line-area {
      opacity: 0;
      animation: fadeIn 8s 1.1s ease-out forwards;
    }
    .line-dot {
      opacity: 0;
      animation: fadeIn 0.6s 14.6s ease-out forwards;
    }
    .line-pulse {
      transform-origin: 320px 18px;
      opacity: 0;
      animation: dotPulse 2s 14.8s ease-out infinite;
    }
    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }
    @keyframes lineRise {
      from { transform: translateY(10px) scaleY(0.5); }
      to { transform: translateY(0) scaleY(1); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes dotPulse {
      0% { transform: scale(0.6); opacity: 0.9; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    /* vertical bars kept for before/after chart only */
    .bars {
      display: flex;
      align-items: end;
      gap: 10px;
      height: 140px;
      margin-top: 14px;
      padding-bottom: 26px;
    }
    .bar {
      flex: 1;
      height: var(--h);
      position: relative;
      min-height: 28px;
    }
    .bar-fill {
      position: absolute;
      inset: 0;
      border-radius: 10px 10px 4px 4px;
      background: linear-gradient(180deg, rgba(123,198,255,0.95), rgba(65,120,255,0.32));
      transform-origin: bottom;
      animation: barGrow 15s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes barGrow {
      from { transform: scaleY(0.5); }
      to { transform: scaleY(1); }
    }
    .bar-label {
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--muted);
      font-size: 10px;
      white-space: nowrap;
    }

    /* Process visual (Workflow section) */
    .process-visual {
      margin: 0 0 36px;
      padding: 28px 22px 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      border-radius: 26px;
      border: 1px solid rgba(154, 180, 255, 0.14);
      background: linear-gradient(180deg, rgba(16,29,57,0.55), rgba(9,18,33,0.82));
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }
    .process-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 20%, rgba(108, 242, 231, 0.08), transparent 60%);
      pointer-events: none;
    }
    .process-spine {
      position: absolute;
      left: 8%;
      right: 8%;
      top: 84px;
      height: 2px;
      background: rgba(154, 180, 255, 0.16);
      border-radius: 999px;
      overflow: hidden;
    }
    .process-spine::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 100%;
      background: linear-gradient(90deg, rgba(123,198,255,0.35), rgba(108,242,231,0.65));
      transform-origin: left;
      transform: scaleX(0.24);
      transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .process-visual.is-visible .process-spine::after {
      transform: scaleX(1);
    }
    .process-stage {
      position: relative;
      z-index: 1;
      padding: 18px 18px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.08);
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }
    .process-stage::before {
      content: "";
      position: absolute;
      top: 63px;
      left: 50%;
      width: 12px;
      height: 12px;
      margin-left: -6px;
      border-radius: 50%;
      background: #6cf2e7;
      box-shadow: 0 0 0 5px rgba(108, 242, 231, 0.14);
    }
    .process-badge {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      margin-bottom: 18px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #07111f;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
    }
    .process-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      margin: 12px 0 18px;
      background: rgba(123,198,255,0.08);
      border: 1px solid rgba(123,198,255,0.16);
      color: #bfe5ff;
    }
    .process-icon svg {
      width: 22px;
      height: 22px;
    }
    .process-title {
      font-size: 18px;
      font-weight: 700;
      color: #eef4ff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .process-stage p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    /* Before/After chart (Features section) */
    .ba-chart {
      margin: 0 0 36px;
      display: grid;
      grid-template-columns: 1fr 120px 1fr;
      gap: 0;
      align-items: stretch;
      position: relative;
    }
    .ba-card {
      padding: 22px 22px 20px;
      border-radius: 22px;
      border: 1px solid rgba(154, 180, 255, 0.14);
      background: linear-gradient(180deg, rgba(16,29,57,0.55), rgba(9,18,33,0.82));
      position: relative;
      overflow: hidden;
    }
    .ba-card--after {
      border-color: rgba(108, 242, 231, 0.28);
      background: linear-gradient(180deg, rgba(16,40,50,0.6), rgba(9,22,33,0.86));
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(108, 242, 231, 0.1) inset;
    }
    .ba-header { margin-bottom: 18px; }
    .ba-title {
      font-size: 15px;
      font-weight: 700;
      color: #f3f7ff;
      letter-spacing: -0.01em;
    }
    .ba-sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }
    .ba-bars {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      align-items: end;
      height: 180px;
      margin-bottom: 18px;
    }
    .ba-bar-col {
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: center;
      height: 100%;
      position: relative;
    }
    .ba-bar {
      width: 100%;
      height: var(--h);
      border-radius: 8px 8px 3px 3px;
      background: linear-gradient(180deg, rgba(150,168,207,0.65), rgba(80,100,150,0.28));
      position: relative;
      animation: barGrow 1.2s ease-out both;
      min-height: 4px;
    }
    .ba-card--after .ba-bar {
      background: linear-gradient(180deg, rgba(108, 242, 231, 0.95), rgba(30, 131, 141, 0.4));
      box-shadow: 0 0 16px rgba(108, 242, 231, 0.18);
    }
    .ba-bar-col:nth-child(1) .ba-bar { animation-delay: 0.1s; }
    .ba-bar-col:nth-child(2) .ba-bar { animation-delay: 0.25s; }
    .ba-bar-col:nth-child(3) .ba-bar { animation-delay: 0.4s; }
    .ba-bar-col:nth-child(4) .ba-bar { animation-delay: 0.55s; }
    .ba-bar-col:nth-child(5) .ba-bar { animation-delay: 0.7s; }
    .ba-eng {
      margin-top: 6px;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.02em;
    }
    .ba-val {
      position: absolute;
      top: -18px;
      font-size: 11px;
      font-weight: 700;
      color: #e0e8ff;
    }
    .ba-summary {
      padding-top: 14px;
      border-top: 1px dashed rgba(255, 255, 255, 0.12);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .ba-summary-label {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .ba-summary-value {
      font-family: 'Manrope', sans-serif;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #f3f7ff;
      font-variant-numeric: tabular-nums;
    }
    .ba-summary-value--big {
      background: linear-gradient(135deg, #6cf2e7 0%, #7bc6ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ba-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .ba-arrow-line {
      position: absolute;
      left: 12px;
      right: 12px;
      top: 50%;
      height: 2px;
      background: linear-gradient(90deg, rgba(150,168,207,0.4), rgba(108,242,231,0.8));
      transform: translateY(-50%);
    }
    .ba-arrow-line::after {
      content: "";
      position: absolute;
      right: -4px;
      top: -5px;
      border: 6px solid transparent;
      border-left-color: rgba(108,242,231,0.9);
    }
    .ba-arrow-badge {
      position: relative;
      background: linear-gradient(135deg, #6cf2e7 0%, #7bc6ff 100%);
      color: #061224;
      font-weight: 800;
      font-size: 15px;
      padding: 10px 14px;
      border-radius: 999px;
      box-shadow: 0 8px 24px rgba(108, 242, 231, 0.35), 0 0 0 4px rgba(108, 242, 231, 0.12);
      letter-spacing: -0.01em;
    }

    .logo-strip {
      padding: 24px 0 18px;
    }
    .logo-panel {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
    }
    .logo-item {
      text-align: center;
      padding: 16px 10px;
      border-radius: 16px;
      color: #dce5ff;
      font-size: 13px;
      font-weight: 700;
      background: rgba(255,255,255,0.025);
    }

    section { padding: 78px 0; }
    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }
    .eyebrow {
      color: var(--cyan);
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 14px;
    }
    h2 {
      margin: 0 0 14px;
      font-family: 'Prata', serif;
      font-weight: 400;
      line-height: 1.08;
      font-size: clamp(30px, 4vw, 52px);
      letter-spacing: -0.03em;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }

    .problem-grid, .feature-grid, .proof-grid, .usecase-grid, .faq-grid {
      display: grid;
      gap: 18px;
    }
    .problem-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: 1fr; }
    .usecase-grid { grid-template-columns: repeat(4, 1fr); }
    .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; }

    .card {
      position: relative;
      border-radius: 24px;
      padding: 24px;
      background: var(--panel);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      box-shadow: 0 16px 50px rgba(0,0,0,0.18);
    }
    .card h3 {
      margin: 0 0 12px;
      font-size: 22px;
      line-height: 1.2;
    }
    .card p, .card li {
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
    }
    .card ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .workflow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 22px;
      list-style: none;
      padding: 0;
    }
    .step {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .step-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      margin-bottom: 16px;
      font-weight: 800;
      color: #07111f;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
    }
    .step p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

    .proof-stat {
      font-size: 56px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }
    .proof-label {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 14px;
    }
    .quote-meta {
      color: var(--muted);
      font-size: 14px;
    }
    .stack-list {
      display: grid;
      gap: 12px;
    }
    .stack-item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      color: #d9e6ff;
      font-size: 14px;
    }
    .stack-item span:last-child { color: var(--muted); }

    .cta {
      padding: 34px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(123,198,255,0.15), rgba(108,242,231,0.08), rgba(167,139,250,0.14));
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      box-shadow: var(--shadow);
    }
    .cta h2 { margin-bottom: 12px; }
    .cta p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 700px; }

    .definition-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .definition-card h3 {
      font-size: 18px;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .definition-card p { color: #dbe6ff; font-size: 16px; }
    .definition-card p strong { color: #fff; }

    .fact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .fact {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.08);
      display: grid;
      grid-template-rows: minmax(84px, auto) minmax(72px, auto) auto;
      gap: 12px;
      align-items: start;
    }
    .fact-value {
      font-family: 'Prata', serif;
      font-size: 42px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      padding-top: 2px;
      background: linear-gradient(135deg, #ffffff 0%, #9ddcff 55%, #82ffe5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .fact-label {
      color: #d6e2ff;
      font-size: 14px;
      line-height: 1.6;
      align-self: start;
      margin: 0;
    }
    .fact-source {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
      margin-top: 0;
      align-self: end;
    }
    .fact-source a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

    .table-wrap {
      width: 100%;
      overflow-x: auto;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      color: #dbe6ff;
      min-width: 720px;
    }
    .compare-table th,
    .compare-table td {
      text-align: left;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      vertical-align: top;
    }
    .compare-table thead th {
      color: var(--cyan);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.03);
    }
    .compare-table tbody th {
      color: #e7efff;
      font-weight: 700;
      background: rgba(255,255,255,0.02);
    }
    .compare-table td:last-child,
    .compare-table thead th:last-child {
      background: linear-gradient(180deg, rgba(108,242,231,0.08), rgba(108,242,231,0.02));
      color: #eaf5ff;
      font-weight: 600;
    }
    .compare-table tr:last-child th,
    .compare-table tr:last-child td { border-bottom: none; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }
    .price-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
    }
    .price-card.highlight {
      border-color: rgba(108,242,231,0.4);
      box-shadow: 0 24px 80px rgba(108,242,231,0.14);
      background: linear-gradient(180deg, rgba(20,36,70,0.85), rgba(9,18,33,0.95));
    }
    .price-tag {
      position: absolute;
      top: -12px;
      right: 18px;
      padding: 6px 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: #07111f;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin: 6px 0 4px;
    }
    .price-value {
      font-family: 'Prata', serif;
      font-size: 40px;
      line-height: 1;
      letter-spacing: -0.03em;
      color: #fff;
    }
    .price-unit { color: var(--muted); font-size: 14px; }
    .price-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 8px;
      display: grid;
      gap: 8px;
    }
    .price-card li {
      color: #dbe6ff;
      font-size: 14px;
      line-height: 1.55;
      padding-left: 22px;
      position: relative;
    }
    .price-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 14px;
      height: 8px;
      border-left: 2px solid var(--cyan);
      border-bottom: 2px solid var(--cyan);
      transform: rotate(-45deg);
    }
    .btn.full { width: 100%; margin-top: auto; }

    .caveats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .caveats-compact .caveat-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(255, 180, 120, 0.04);
      border: 1px solid rgba(255, 180, 120, 0.18);
      border-left: 3px solid rgba(255, 180, 120, 0.5);
      align-items: start;
    }
    .caveats-compact .caveat-icon {
      width: 28px;
      height: 28px;
      color: #ffb57a;
      margin-top: 2px;
    }
    .caveats-compact h3 {
      margin: 0 0 4px;
      font-size: 16px;
      line-height: 1.25;
      color: #ffd6a8;
      font-weight: 700;
    }
    .caveats-compact p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: #e3d3bf;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .about-grid p { color: #dbe6ff; font-size: 15px; }
    .about-grid a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
    .about-grid ul { padding-left: 18px; margin: 10px 0 0; }

    .faq-item {
      padding: 0;
      overflow: hidden;
    }
    .faq-item summary {
      cursor: pointer;
      padding: 22px 24px;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.3;
      color: #eef4ff;
    }
    .faq-item summary::after {
      content: "+";
      font-size: 24px;
      color: var(--cyan);
      font-weight: 400;
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }
    .faq-item[open] summary::after {
      content: "−";
    }
    .faq-item > p {
      margin: 0;
      padding: 0 24px 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    @media (hover: hover) and (pointer: fine) {
      body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(108, 242, 231, 0.55) 1px, transparent 1px),
          linear-gradient(90deg, rgba(108, 242, 231, 0.55) 1px, transparent 1px);
        background-size: 42px 42px;
        -webkit-mask:
          radial-gradient(
            220px circle at var(--mx, -9999px) var(--my, -9999px),
            #000 0%,
            rgba(0, 0, 0, 0.55) 45%,
            transparent 75%
          );
        mask:
          radial-gradient(
            220px circle at var(--mx, -9999px) var(--my, -9999px),
            #000 0%,
            rgba(0, 0, 0, 0.55) 45%,
            transparent 75%
          );
        z-index: 0;
        opacity: 0.9;
        filter: drop-shadow(0 0 4px rgba(108, 242, 231, 0.45));
      }
    }

    .audit-card {
      padding: 48px 36px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(108,242,231,0.10), rgba(123,198,255,0.08), rgba(167,139,250,0.06));
      border: 1px solid rgba(108,242,231,0.22);
      box-shadow: 0 24px 80px rgba(108,242,231,0.08);
    }
    .audit-card-copy {
      margin: 0;
      text-align: left;
    }
    .audit-card-copy h3 {
      margin: 10px 0 10px;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #eef4ff;
    }
    .audit-card-copy p {
      margin: 0;
      max-width: 56ch;
    }
    .audit-form-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      max-width: 640px;
      margin: 0 auto;
    }
    .audit-form-inner--inline {
      width: 100%;
      max-width: none;
    }
    .audit-fields {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: 100%;
      align-items: stretch;
    }
    .audit-fields input {
      width: 100%;
      min-width: 0;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 2rem;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: var(--text);
      font-family: inherit;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .audit-fields input::placeholder {
      color: var(--muted);
    }
    .audit-fields input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(108,242,231,0.15);
    }
    .audit-form-inner .btn {
      width: 100%;
      max-width: 280px;
    }
    .audit-form-inner .btn:disabled {
      cursor: wait;
      opacity: 0.72;
    }
    .audit-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .audit-form-status {
      min-height: 1.4em;
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
    }
    .audit-form-status.is-success {
      color: #86efc9;
    }
    .audit-form-status.is-error {
      color: #ff9db0;
    }

    blockquote.quote {
      margin: 0 0 18px;
      padding-left: 16px;
      border-left: 3px solid var(--cyan);
      font-style: italic;
      font-size: 20px;
      line-height: 1.7;
      color: #eef4ff;
    }

    footer {
      padding: 34px 0 54px;
      color: var(--muted);
      font-size: 14px;
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ==========================================================
       Problem section — "search shift" chart + compact pain items
       ========================================================== */
    .shift-card {
      margin: 0 0 30px;
      padding: 28px 28px 22px;
      border-radius: 26px;
      border: 1px solid rgba(154, 180, 255, 0.14);
      background: linear-gradient(180deg, rgba(16,29,57,0.55), rgba(9,18,33,0.82));
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }
    .shift-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 20%, rgba(108, 242, 231, 0.12), transparent 55%);
      pointer-events: none;
    }
    .shift-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 18px;
      position: relative;
    }
    .shift-title {
      font-size: 16px;
      font-weight: 800;
      color: #f3f7ff;
      letter-spacing: -0.01em;
    }
    .shift-sub {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }
    .shift-legend {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .shift-svg {
      width: 100%;
      height: 220px;
      display: block;
      position: relative;
    }
    .shift-grid line {
      stroke: rgba(154, 180, 255, 0.08);
      stroke-width: 1;
    }
    .shift-line {
      stroke-dasharray: 1400;
      stroke-dashoffset: 1400;
      animation: shiftDraw 2.4s 0.3s ease-out forwards;
    }
    .shift-line--ai { animation-delay: 0.7s; }
    .shift-area { opacity: 0; animation: fadeIn 1.2s 2s ease-out forwards; }
    @keyframes shiftDraw { to { stroke-dashoffset: 0; } }
    .shift-pulse {
      transform-origin: 540px 112px;
      animation: shiftPulse 2.2s ease-out 2.4s infinite;
      opacity: 0;
    }
    @keyframes shiftPulse {
      0% { transform: scale(0.6); opacity: 0.9; }
      100% { transform: scale(2.6); opacity: 0; }
    }
    .shift-axis {
      margin-top: 8px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.04em;
    }
    .shift-axis i { font-style: italic; opacity: 0.7; }
    .shift-callout {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(108, 242, 231, 0.1);
      border: 1px solid rgba(108, 242, 231, 0.25);
      font-size: 13px;
      color: #c6fff5;
    }
    .shift-callout strong { color: #f3f7ff; font-weight: 700; margin-right: 2px; }
    .shift-callout-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #6cf2e7;
      box-shadow: 0 0 8px rgba(108, 242, 231, 0.8);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .pain-item {
      padding: 20px 20px 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }
    .pain-icon {
      width: 34px;
      height: 34px;
      color: #7bc6ff;
      opacity: 0.85;
      margin-bottom: 10px;
    }
    .pain-item h3 {
      margin: 0 0 6px;
      font-size: 17px;
      font-weight: 700;
      color: #eef4ff;
    }
    .pain-item p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: var(--muted);
    }

    /* ==========================================================
       Evidence / Facts — data tiles with mini visualizations
       ========================================================== */
    .fact-visual {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      min-height: 84px;
      margin-bottom: 0;
    }
    .fact-visual .fact-value {
      font-size: 36px;
      padding-top: 0;
    }
    .fact-value--donut { font-size: 28px; }
    .fact-unit {
      font-size: 0.55em;
      margin-left: 2px;
      -webkit-background-clip: inherit;
      background-clip: inherit;
      -webkit-text-fill-color: inherit;
    }
    .fact-unit--lead { margin-left: 0; margin-right: 1px; }

    .donut {
      width: 64px;
      height: 64px;
      transform: rotate(-90deg);
      flex-shrink: 0;
    }
    .donut circle {
      fill: none;
      stroke-width: 4;
      cx: 22; cy: 22; r: 18;
    }
    .donut-track { stroke: rgba(154, 180, 255, 0.15); }
    .donut-fill {
      stroke: #6cf2e7;
      stroke-linecap: round;
      stroke-dasharray: calc(var(--pct) * 1.131) 113.1;
      filter: drop-shadow(0 0 4px rgba(108, 242, 231, 0.5));
      animation: donutDraw 1.4s 0.2s ease-out both;
    }
    @keyframes donutDraw {
      from { stroke-dasharray: 0 113.1; }
    }

    .gauge {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .gauge-track {
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(150,168,207,0.18), rgba(150,168,207,0.08));
      position: relative;
      overflow: hidden;
    }
    .gauge-fill {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: calc(var(--pct) * 1%);
      background: linear-gradient(90deg, #7bc6ff, #6cf2e7);
      border-radius: 999px;
      box-shadow: 0 0 8px rgba(108, 242, 231, 0.6);
      animation: gaugeFill 1.4s 0.2s ease-out both;
      transform-origin: left;
    }
    @keyframes gaugeFill { from { transform: scaleX(0); } }
    .gauge-labels {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .timeline {
      flex: 1;
      position: relative;
      height: 44px;
      min-width: 0;
    }
    .timeline-track {
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(154, 180, 255, 0.14);
      border-radius: 999px;
    }
    .timeline-fill {
      position: absolute;
      top: 20px;
      left: 55%;
      right: 10%;
      height: 4px;
      background: linear-gradient(90deg, rgba(108,242,231,0.6), rgba(108,242,231,1));
      border-radius: 999px;
      box-shadow: 0 0 8px rgba(108, 242, 231, 0.5);
      animation: timelineFill 1.4s 0.3s ease-out both;
      transform-origin: left;
    }
    @keyframes timelineFill { from { transform: scaleX(0); } }
    .timeline-mark {
      position: absolute;
      left: calc(var(--at) - 4px);
      top: 16px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(150, 168, 207, 0.6);
      border: 2px solid #0d1730;
    }
    .timeline-mark--range,
    .timeline-mark--end {
      background: #6cf2e7;
      box-shadow: 0 0 8px rgba(108, 242, 231, 0.6);
    }
    .timeline-mark i {
      position: absolute;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      font-style: normal;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    .sparkline {
      width: 100px;
      height: 34px;
      flex-shrink: 0;
    }
    .spark-line {
      stroke-dasharray: 400;
      stroke-dashoffset: 400;
      animation: shiftDraw 1.8s 0.3s ease-out forwards;
      filter: drop-shadow(0 0 6px rgba(108, 242, 231, 0.5));
    }

    /* ==========================================================
       Comparison table — icon matrix
       ========================================================== */
    .vsr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0);
      white-space: nowrap; border: 0;
    }
    .compare-matrix td,
    .compare-matrix thead th:not(:first-child) { text-align: center; vertical-align: middle; }
    .compare-matrix tbody th { width: 34%; font-size: 14px; }
    .compare-matrix td em {
      font-style: normal;
      display: block;
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: 0.02em;
    }
    .compare-matrix td[data-state]::before {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      font-family: 'Manrope', sans-serif;
    }
    .compare-matrix td[data-state="yes"]::before {
      content: "\2713";
      background: rgba(108, 242, 201, 0.15);
      color: #6cf2c9;
      box-shadow: inset 0 0 0 1px rgba(108, 242, 201, 0.3);
    }
    .compare-matrix td[data-state="no"]::before {
      content: "\2715";
      background: rgba(150, 168, 207, 0.1);
      color: rgba(150, 168, 207, 0.7);
      box-shadow: inset 0 0 0 1px rgba(150, 168, 207, 0.2);
    }
    .compare-matrix td[data-state="partial"]::before {
      content: "\25D0";
      background: rgba(255, 184, 77, 0.12);
      color: #ffb84d;
      box-shadow: inset 0 0 0 1px rgba(255, 184, 77, 0.28);
      font-size: 17px;
    }
    .compare-matrix td[data-state="skip"]::before {
      content: "\2013";
      background: rgba(150, 168, 207, 0.08);
      color: rgba(150, 168, 207, 0.55);
    }
    .compare-matrix .compare-us {
      background: linear-gradient(180deg, rgba(108,242,231,0.1), rgba(108,242,231,0.04));
      position: relative;
    }
    .compare-matrix thead th.compare-us {
      background: linear-gradient(180deg, rgba(108,242,231,0.18), rgba(108,242,231,0.06));
      border-top: 1px solid rgba(108, 242, 231, 0.35);
    }
    .compare-badge {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, #6cf2e7 0%, #7bc6ff 100%);
      color: #061224;
      font-weight: 800;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 6px 18px rgba(108, 242, 231, 0.25);
    }

    /* ==========================================================
       Audience — icon cards
       ========================================================== */
    .use-card {
      padding: 22px;
      text-align: left;
    }
    .use-card h3 { margin: 14px 0 6px; font-size: 18px; }
    .use-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
    .use-icon {
      width: 36px;
      height: 36px;
      color: #6cf2e7;
      padding: 6px;
      border-radius: 12px;
      background: rgba(108, 242, 231, 0.08);
      border: 1px solid rgba(108, 242, 231, 0.2);
    }

    @media (max-width: 1080px) {
      .hero-grid, .proof-grid, .problem-grid, .usecase-grid, .workflow, .logo-panel, .feature-grid, .faq-grid,
      .definition-grid, .fact-grid, .pricing-grid, .caveats-grid, .about-grid, .pain-grid {
        grid-template-columns: 1fr;
      }
      .metric-grid { grid-template-columns: 1fr; }
      .cta { flex-direction: column; align-items: flex-start; }
    }

    @media (min-width: 760px) and (max-width: 1080px) {
      .fact-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .caveats-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: repeat(2, 1fr); }
      .definition-grid { grid-template-columns: repeat(2, 1fr); }
      .pain-grid { grid-template-columns: repeat(3, 1fr); }
      .usecase-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 760px) {
      .site-header {
        top: 0;
        z-index: 24;
        padding-top: 12px;
      }
      .header-shell {
        width: 100%;
        padding: 14px 16px;
        border-radius: 24px;
      }
      .site-header.is-compact .header-shell {
        width: 100%;
        padding: 10px 12px;
        border-radius: 20px;
      }
      .nav-links { display: none; }
      .nav-actions { display: none; }
      .burger { display: flex; }
      .hero { padding-top: 32px; }
      .btn { width: 100%; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .footer-row { flex-direction: column; align-items: flex-start; }

      .logo-strip,
      #comparison,
      #about { display: none; }

      .audit-card { padding: 32px 20px; }
      .audit-card-copy h3 { font-size: 24px; }
      .audit-fields { grid-template-columns: 1fr; }

      /* --- Compact mobile text --- */
      section { padding: 48px 0; }
      h2 { font-size: clamp(24px, 5vw, 36px); }
      .section-head p { font-size: 15px; margin-bottom: 0; }
      .hero-copy h1 { font-size: clamp(32px, 7vw, 48px); }
      .bluf p { font-size: 14px; }
      .hero-copy p, .cta p { font-size: 15px; }

      .mini-proof { display: none; }

      .hero-card {
        padding: 18px;
        border-radius: 22px;
      }
      .dashboard-top {
        gap: 10px;
        margin-bottom: 12px;
      }
      .dashboard-title { font-size: 12px; }
      .dashboard-sub { font-size: 11px; }
      .status-chip {
        padding: 6px 10px;
        font-size: 10px;
        gap: 6px;
      }
      .status-dot {
        width: 6px;
        height: 6px;
      }
      .metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 10px;
      }
      .metric {
        padding: 10px 8px;
        border-radius: 14px;
      }
      .metric-label {
        font-size: 8px;
        margin-bottom: 4px;
        line-height: 1.3;
      }
      .metric-value {
        font-size: 18px;
        line-height: 1.05;
      }
      .metric-unit { font-size: 11px; }
      .metric-delta {
        margin-top: 4px;
        font-size: 9px;
      }
      .chart-box {
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 8px;
      }
      .chart-header {
        margin-bottom: 6px;
        gap: 6px;
      }
      .chart-legend { gap: 6px; }
      .legend-item { font-size: 9px; gap: 4px; }
      .legend-line { width: 12px; }
      .line-chart { height: 72px; }
      .chart-wrap { gap: 0; }
      .chart-y-axis { font-size: 7px; min-width: 22px; padding-right: 4px; }
      .chart-x-axis { font-size: 7px; padding: 4px 0 0 26px; }
      .chart-grid-lines line { stroke-width: 0.5; }
      .hbar-row { grid-template-columns: 56px 1fr 30px; gap: 6px; }
      .hbar-name { font-size: 9px; }
      .hbar-track { height: 10px; }
      .hbar-val { font-size: 9px; }
      .hbars { gap: 5px; }

      .fact-source { display: none; }
      .fact-label { font-size: 13px; }
      .fact-value { font-size: 32px; }
      .fact-visual .fact-value { font-size: 26px; }
      .fact-value--donut { font-size: 24px; }
      .fact {
        padding: 16px;
        gap: 8px;
        grid-template-rows: minmax(60px, auto) auto;
      }
      .fact-visual {
        gap: 10px;
        min-height: 60px;
      }
      .donut { width: 52px; height: 52px; }
      .sparkline { width: 74px; height: 28px; }

      .shift-card { padding: 20px 18px 16px; margin-bottom: 22px; }
      .shift-svg { height: 170px; }
      .shift-head { gap: 10px; margin-bottom: 12px; }
      .shift-title { font-size: 14px; }
      .shift-sub { font-size: 12px; }
      .shift-legend { gap: 10px; }
      .shift-callout { font-size: 12px; padding: 6px 10px; }

      .pain-grid { gap: 10px; }
      .pain-item { padding: 16px; }
      .pain-icon { width: 28px; height: 28px; margin-bottom: 6px; }
      .pain-item h3 { font-size: 15px; }
      .pain-item p { font-size: 13px; }

      .process-visual {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 16px 16px;
        margin-bottom: 24px;
      }
      .process-spine {
        left: 24px;
        right: auto;
        top: 34px;
        bottom: 24px;
        width: 2px;
        height: auto;
      }
      .process-spine::after {
        width: 100%;
        height: 100%;
        transform-origin: top;
        transform: scaleY(0.24);
      }
      .process-visual.is-visible .process-spine::after {
        transform: scaleY(1);
      }
      .process-stage {
        min-height: 0;
        padding: 16px 16px 14px 56px;
      }
      .process-stage::before {
        top: 28px;
        left: 25px;
        margin-left: 0;
        width: 10px;
        height: 10px;
      }
      .process-badge {
        position: absolute;
        left: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        border-radius: 10px;
        font-size: 10px;
      }
      .process-icon {
        width: 36px;
        height: 36px;
        margin: 0 0 12px;
      }
      .process-icon svg {
        width: 18px;
        height: 18px;
      }
      .process-title { font-size: 16px; }
      .process-stage p { font-size: 13px; line-height: 1.55; }

      .ba-chart {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
      }
      .ba-arrow {
        height: 54px;
        transform: rotate(90deg);
      }
      .ba-arrow-line { left: 40%; right: 40%; }
      .ba-card { padding: 18px; }
      .ba-bars { height: 140px; }
      .ba-eng { font-size: 9px; }
      .ba-val { font-size: 10px; top: -16px; }

      .step p { font-size: 13px; }
      .step h3 { font-size: 18px; margin-bottom: 4px; }

      .feature-grid .card ul { display: none; }
      .feature-grid .card p { font-size: 14px; }
      .card h3 { font-size: 18px; }
      .card p, .card li { font-size: 14px; }
      .card { padding: 18px; border-radius: 20px; }

      .proof-stat { font-size: 42px; }
      .quote { font-size: 16px !important; }
      .quote-meta { display: none; }
      .stack-item span:last-child { display: none; }
      .stack-item { padding: 12px; font-size: 13px; }

      .price-card li { font-size: 13px; }

      .faq-grid .card.faq-item:nth-child(n+5) { display: none; }
      .faq-item summary h3 { font-size: 15px; }
      .faq-item > p { font-size: 14px; padding: 0 18px 18px; }
      .faq-item summary { padding: 16px 18px; }
    }
