    :root {
      --bg-primary: #07070d;
      --bg-secondary: #0c0c14;
      --bg-card: #12121c;
      --purple-core: #7c3aed;
      --purple-bright: #a855f7;
      --purple-electric: #c026d3;
      --purple-neon: #d946ef;
      --purple-light: #c4b5fd;
      --purple-glow: rgba(124, 58, 237, 0.15);
      --purple-glow-strong: rgba(168, 85, 247, 0.25);
      --neon-glow: rgba(217, 70, 239, 0.12);
      --text-primary: #eeecf5;
      --text-secondary: #9593a8;
      --text-muted: #686680;
      --border-subtle: rgba(124, 58, 237, 0.1);
      --border-active: rgba(168, 85, 247, 0.35);
      --gradient-purple: linear-gradient(135deg, #7c3aed, #a855f7, #c026d3);
      --gradient-text: linear-gradient(135deg, #a855f7, #d946ef, #f0abfc);
      --font-body: 'DM Sans', sans-serif;
      --font-heading: 'DM Sans', sans-serif;
      --font-mono: 'Space Mono', monospace;
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 100px 0;
    }

    .label {
      font-family: var(--font-mono);
      font-size: 14px;
      text-transform: uppercase;
      color: var(--purple-bright);
      margin-bottom: 20px;
      text-align: center;
      width: 100%;
      display: inline-block;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      text-align: center;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.7;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    /* LANG SWITCHER */
    .lang-switch {
      display: flex;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 9999px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
    }

    .lang-btn {
      padding: 8px 14px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1px;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .lang-btn.active {
      background: var(--purple-core);
      color: #fff;
    }

    .lang-btn:hover:not(.active) {
      color: var(--text-primary);
    }

    /* Language visibility */
    [data-lang="es"] {
      display: none !important;
    }

    body.lang-es [data-lang="en"] {
      display: none !important;
    }

    body.lang-es [data-lang="es"] {
      display: block !important;
    }

    body.lang-es span[data-lang="es"],
    body.lang-es strong[data-lang="es"] {
      display: inline !important;
    }

    body.lang-es a[data-lang="es"] {
      display: inline-flex !important;
    }

    body.lang-es div[data-lang="es"].hero-banner__ctas {
      display: flex !important;
    }

    /* LOGO */
    .logo {
      font-family: var(--font-mono);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
      letter-spacing: 2px;
    }

    .logo em {
      font-style: normal;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: var(--gradient-purple);
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 0 24px var(--purple-glow), 0 0 60px var(--neon-glow);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 40px var(--purple-glow-strong), 0 0 80px var(--neon-glow);
    }

    /* ==========================================
       HERO BANNER
       ========================================== */
    .hero-banner {
      width: 100%;
      isolation: isolate;
      min-height: 100vh;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 900px;
    }

    .hero-banner__bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .hero-banner__overlay {
      pointer-events: none;
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
      background: linear-gradient(180deg, rgba(7, 7, 13, 0.4) 0%, rgba(7, 7, 13, 0.6) 50%, rgba(7, 7, 13, 0.85) 100%);
    }

    /* HEADER */
    .hero-banner__header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: transparent;
      transition: background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
    }

    .hero-banner__header.scrolled {
      background: var(--bg-primary);
      box-shadow: 0 1px 0 0 var(--border-subtle);
    }

    .hero-banner__header.scrolled .hero-banner__nav-pill {
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .hero-banner__header-inner {
      margin: 0 24px;
    }

    .hero-banner__header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    /* NAV PILL */
    .hero-banner__nav {
      display: none;
    }

    .hero-banner__nav-pill {
      display: flex;
      align-items: center;
      gap: 4px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.05);
      padding: 4px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }

    .hero-banner__nav-link {
      padding: 8px 12px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-family: var(--font-heading);
      transition: color 0.2s;
    }

    .hero-banner__nav-link:hover {
      color: #fff;
    }

    .hero-banner__nav-cta {
      margin-left: 4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      background: #fff;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 500;
      color: #171717;
      text-decoration: none;
      font-family: var(--font-heading);
      transition: background 0.2s;
    }

    .hero-banner__nav-cta:hover {
      background: rgba(255, 255, 255, 0.9);
    }

    .hero-banner__icon-sm {
      width: 16px;
      height: 16px;
    }

    /* MOBILE TOGGLE */
    .hero-banner__mobile-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lang-switch--mobile {
      display: flex;
    }

    .lang-switch--desktop {
      display: none;
    }

    .hero-banner__mobile-toggle {
      display: inline-flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 10px;
    }

    .hamburger-line {
      display: block;
      width: 18px;
      height: 2px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hero-banner__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hero-banner__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .hero-banner__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE MENU */
    .hero-banner__mobile-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 50;
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .hero-banner__mobile-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .hero-banner__mobile-menu-inner {
      margin: 8px 24px;
      background: rgba(7, 7, 13, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 16px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-banner__mobile-link {
      display: block;
      padding: 12px 16px;
      font-size: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-family: var(--font-heading);
      border-radius: 8px;
      transition: background 0.2s;
    }

    .hero-banner__mobile-link:hover {
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
    }

    .hero-banner__mobile-cta {
      margin-left: 0;
      margin-top: 8px;
      justify-content: center;
    }

    /* HERO CONTENT */
    .hero-banner__content {
      z-index: 10;
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-banner__container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-banner__center {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
    }

    /* BADGE */
    .hero-banner__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      padding: 5px 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      margin-bottom: 24px;
      max-width: 100%;
      flex-wrap: wrap;
      padding-left: 5px;
      justify-content: center;
    }

    .hero-banner__badge-label {
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 500;
      color: #171717;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 9999px;
      padding: 2px 8px;
      font-family: var(--font-heading);
    }

    .hero-banner__badge-text {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      font-family: var(--font-heading);
    }

    /* TITLE */
    .hero-banner__title {
      font-family: var(--font-heading);
      font-size: clamp(35px, 7vw, 72px);
      line-height: 1.05;
      color: #fff;
      letter-spacing: -1px;
      font-weight: 500;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .hero-banner__br-desktop {
      display: none;
    }

    /* DESCRIPTION */
    .hero-banner__desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 640px;
      margin: 20px auto 0;
      line-height: 1.7;
      font-family: var(--font-heading);
    }

    /* CTA BUTTONS */
    .hero-banner__ctas {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .hero-banner__btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
      border-radius: 9999px;
      padding: 12px 20px;
      font-family: var(--font-heading);
      text-decoration: none;
      transition: background 0.2s;
    }

    .hero-banner__btn-primary:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .hero-banner__btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      background: transparent;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-family: var(--font-heading);
      transition: color 0.2s;
    }

    .hero-banner__btn-secondary:hover {
      color: #fff;
    }

    /* PARTNERS */
    .hero-banner__partners {
      margin: 80px auto 0;
      padding: 0 24px;
      max-width: calc(100vw - 50px);
    }

    .hero-banner__partners-title {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      font-family: var(--font-heading);
    }

    /* INFINITE LOGO SCROLLER */
    .hero-banner__scroller {
      position: relative;
      overflow: hidden;
      margin: 24px -24px 0;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .hero-banner__scroller-track {
      display: flex;
      align-items: center;
      gap: 32px;
      width: max-content;
      animation: scrollLogos 25s linear infinite;
    }

    @media (min-width: 640px) {
      .hero-banner__scroller-track {
        gap: 48px;
      }
    }

    .hero-banner__partner-img {
      height: 24px;
      width: auto;
      opacity: 0.5;
      filter: brightness(0) invert(1);
      transition: opacity 0.3s;
      flex-shrink: 0;
    }

    .hero-banner__partner-img:hover {
      opacity: 0.85;
    }

    .logo-badge {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--text-muted);
      padding: 8px 18px;
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      flex-shrink: 0;
      transition: color 0.3s, border-color 0.3s;
      white-space: nowrap;
    }

    .logo-badge:hover {
      color: var(--text-secondary);
      border-color: var(--border-active);
    }

    .logo-img {
      height: 28px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
      opacity: 1;
      flex-shrink: 0;
    }

    .logos-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: center;
      align-items: center;
      margin-top: 48px;
      padding: 32px 0;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    @keyframes scrollLogos {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ANIMATIONS */
    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-banner__animate-1 {
      opacity: 0;
      animation: fadeSlideIn 0.8s 0.2s forwards;
    }

    .hero-banner__animate-2 {
      opacity: 0;
      animation: fadeSlideIn 0.8s 0.4s forwards;
    }

    .hero-banner__animate-3 {
      opacity: 0;
      animation: fadeSlideIn 0.8s 0.6s forwards;
    }

    .hero-banner__animate-4 {
      opacity: 0;
      animation: fadeSlideIn 0.8s 0.8s forwards;
    }

    /* RESPONSIVE: SM+ */
    @media (min-width: 640px) {
      .hero-banner__badge-text {
        font-size: 14px;
      }

      .hero-banner__br-desktop {
        display: block;
      }

      .hero-banner__desc {
        font-size: 16px;
      }

      .hero-banner__ctas {
        flex-direction: row;
        gap: 16px;
      }
    }

    /* RESPONSIVE: MD+ */
    @media (min-width: 768px) {
      .hero-banner__header-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
      }

      .hero-banner__header-row .logo {
        justify-self: start;
      }

      .hero-banner__nav {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .lang-switch--desktop {
        display: flex;
        justify-self: end;
      }

      .hero-banner__mobile-actions {
        display: none;
      }

    }


    /* RESPONSIVE: XL+ */
    @media (min-width: 1280px) {
      .hero-banner__header:not(.scrolled) {
        top: 16px;
      }
    }

    /* ==========================================
       FEATURES / PAIN POINTS GRID
       ========================================== */
    .pain-section {
      background: var(--bg-secondary);
    }

    .features__container {
      max-width: 1024px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .features__header {
      margin-bottom: 48px;
    }

    /* Grid: 6 columns on desktop */
    .features__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    /* Card base */
    .features__card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .features__card:hover {
      border-color: var(--border-active);
      box-shadow: 0 8px 40px rgba(124, 58, 237, 0.06);
    }

    .features__card-inner {
      padding: 24px;
    }

    .features__card-inner--centered {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      height: 100%;
    }

    /* Card text */
    .features__card-text h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .features__card-text p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ---- Card 1: Stat ---- */
    .features__stat-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 224px;
      height: 96px;
    }

    .features__stat-blob {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      color: var(--border-subtle);
    }

    .features__stat-number {
      display: block;
      margin: 0 auto;
      font-size: 48px;
      font-weight: 700;
      color: var(--text-primary);
      position: relative;
    }

    .features__stat-title {
      margin-top: 20px;
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .features__stat-sub {
      margin-top: 8px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 220px;
    }

    /* ---- Card 2 & 3: Mid cards ---- */
    .features__icon-circle {
      margin-bottom: 20px;
    }

    .features__icon-circle-ring {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--border-subtle);
      color: var(--purple-light);
    }

    .features__icon-circle-ring::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 1px solid var(--border-subtle);
    }

    /* Chart visual */
    .features__chart-visual {
      padding: 24px 24px 0;
    }

    .features__mini-chart {
      width: 100%;
    }

    .features__chart-line {
      color: var(--purple-bright);
    }

    .features__card--mid .features__card-text {
      text-align: center;
      margin-top: 20px;
    }

    .features__card--mid .features__icon-circle {
      display: flex;
      justify-content: center;
    }

    .features__card--mid .features__icon-circle-ring {
      width: 128px;
      height: 128px;
      margin: 0 auto;
    }

    .features__card--mid .features__icon-circle-ring svg {
      width: 48px;
      height: 48px;
    }

    .features__card--mid .features__icon-circle-ring::before {
      inset: -10px;
    }

    /* ---- Cards 4 & 5: Wide split cards ---- */
    .features__card-inner--split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 24px;
    }

    .features__split-text {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
    }

    .features__split-text .features__icon-circle {
      margin-bottom: 0;
    }

    .features__split-text .features__icon-circle-ring {
      width: 48px;
      height: 48px;
    }

    .features__split-text .features__icon-circle-ring svg {
      width: 20px;
      height: 20px;
    }

    /* Code window visual */
    .features__split-visual {
      min-height: 200px;
    }

    .features__code-window {
      background: var(--bg-primary);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 16px;
      font-family: var(--font-mono);
      font-size: 12px;
      line-height: 1.8;
      height: 100%;
    }

    .features__code-dots {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
    }

    .features__code-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid var(--border-subtle);
      background: rgba(255, 255, 255, 0.05);
    }

    .features__code-line {
      color: var(--text-secondary);
    }

    .features__code-indent {
      padding-left: 20px;
    }

    .features__code-kw {
      color: var(--purple-light);
    }

    .features__code-err {
      color: #f87171;
    }

    .features__code-dim {
      opacity: 0.6;
    }

    /* Integrations visual */
    .features__integrations {
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 100%;
      justify-content: center;
    }

    .features__integration-row {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .features__integration-pill {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      padding: 6px 14px;
      border-radius: 6px;
      border: 1px solid;
      white-space: nowrap;
    }

    .features__integration--ok {
      color: var(--purple-light);
      border-color: var(--border-active);
      background: var(--purple-glow);
    }

    .features__integration--err {
      color: #f87171;
      border-color: rgba(248, 113, 113, 0.3);
      background: rgba(248, 113, 113, 0.06);
    }

    .features__integration--warn {
      color: #fbbf24;
      border-color: rgba(251, 191, 36, 0.3);
      background: rgba(251, 191, 36, 0.06);
    }

    .features__integration-connector {
      flex: 1;
      height: 1px;
      min-width: 24px;
      position: relative;
    }

    .features__integration-connector--ok {
      background: var(--border-active);
    }

    .features__integration-connector--err {
      background: rgba(248, 113, 113, 0.3);
      background-image: repeating-linear-gradient(90deg,
          rgba(248, 113, 113, 0.4) 0px,
          rgba(248, 113, 113, 0.4) 6px,
          transparent 6px,
          transparent 12px);
      background-size: 100% 1px;
      background-repeat: no-repeat;
    }

    .features__integration-connector--warn {
      background: rgba(251, 191, 36, 0.3);
      background-image: repeating-linear-gradient(90deg,
          rgba(251, 191, 36, 0.4) 0px,
          rgba(251, 191, 36, 0.4) 6px,
          transparent 6px,
          transparent 12px);
      background-size: 100% 1px;
      background-repeat: no-repeat;
    }

    /* ---- Responsive: SM+ ---- */
    @media (min-width: 640px) {
      .features__grid {
        grid-template-columns: repeat(6, 1fr);
      }

      .features__card--stat {
        grid-column: span 6;
      }

      .features__card--mid {
        grid-column: span 3;
      }

      .features__card--wide {
        grid-column: span 6;
      }

      .features__card-inner--split {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ---- Responsive: LG+ ---- */
    @media (min-width: 1024px) {
      .features__container {
        max-width: 1024px;
      }

      .features__card--stat {
        grid-column: span 2;
      }

      .features__card--mid {
        grid-column: span 2;
      }

      .features__card--wide {
        grid-column: span 3;
      }
    }

    /* ==========================================
       BENTO SERVICES
       ========================================== */
    .bento-services {
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }

    /* Dashed grid background */
    .bento-services__grid-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 22px 22px;
      -webkit-mask-image:
        repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px),
        repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px);
      mask-image:
        repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px),
        repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
    }

    .bento-services__grid-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(7, 7, 13, 0.92) 0%, rgba(7, 7, 13, 0.7) 45%, rgba(7, 7, 13, 0.92) 100%);
    }

    .bento-services__inner {
      position: relative;
      z-index: 2;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: clamp(48px, 6vw, 80px);
    }

    .bento-services__header {
      margin-bottom: 0;
    }

    /* Bento grid */
    .bento-services__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(16px, 4vw, 24px);
    }

    /* Cards */
    .bento-card {
      position: relative;
      overflow: hidden;
      border-radius: clamp(20px, 4vw, 28px);
      border: 1px solid var(--border-subtle);
      background: rgba(18, 18, 28, 0.55);
      padding: clamp(20px, 3vw, 36px);
      transition: border-color 0.4s, background 0.4s;
      opacity: 0;
      transform: translateY(28px);
      filter: blur(12px);
    }

    .bento-card.visible {
      animation: bentoCardIn 760ms cubic-bezier(0.22, 0.68, 0, 1) forwards;
    }

    @keyframes bentoCardIn {
      0% {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
        filter: blur(12px);
      }

      60% {
        filter: blur(0);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    .bento-card:hover {
      border-color: var(--border-active);
      background: rgba(18, 18, 28, 0.7);
    }

    /* Card content layout */
    .bento-card__content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .bento-card__number {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.4;
    }

    .bento-card__body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .bento-card__meta {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      border-radius: 9999px;
      border: 1px solid var(--border-subtle);
      padding: 4px 12px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--text-muted);
    }

    .bento-card__title {
      font-size: clamp(20px, 2.5vw, 24px);
      font-weight: 600;
      line-height: 1.25;
      color: var(--text-primary);
    }

    .bento-card__desc {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    /* Animated icon */
    .bento-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--border-subtle);
      background: rgba(18, 18, 28, 0.55);
      flex-shrink: 0;
      margin-top: 0;
      order: -1;
      margin-bottom: 4px;
    }

    .bento-card__number {
      order: -2;
    }

    .bento-card__icon-anim {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 40px;
      border-radius: 9999px;
      overflow: hidden;
      isolation: isolate;
    }

    .bento-card__icon-anim::before,
    .bento-card__icon-anim::after {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: inherit;
      border: 1px solid rgba(148, 163, 184, 0.55);
      opacity: 0.45;
    }

    .bento-card__icon-anim::after {
      inset: 10px;
      opacity: 0.2;
    }

    /* Icon variants */
    .bento-card__icon-anim[data-variant="orbit"]>span {
      position: absolute;
      height: 140%;
      width: 3px;
      background: linear-gradient(180deg, transparent, var(--purple-light) 55%, transparent);
      transform-origin: center;
      animation: bentoFlare 8s linear infinite;
    }

    @keyframes bentoFlare {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .bento-card__icon-anim[data-variant="relay"]>span {
      position: absolute;
      inset: 14px;
      border-top: 1px solid var(--purple-light);
      border-bottom: 1px solid var(--purple-light);
      transform: skewX(-15deg);
    }

    .bento-card__icon-anim[data-variant="relay"]>span::before,
    .bento-card__icon-anim[data-variant="relay"]>span::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 120%;
      left: -10%;
      background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
      animation: bentoDash 2.6s ease-in-out infinite;
    }

    .bento-card__icon-anim[data-variant="relay"]>span::after {
      top: 70%;
      animation-delay: 0.9s;
    }

    @keyframes bentoDash {
      0% {
        transform: translateX(-25%);
        opacity: 0;
      }

      30% {
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      100% {
        transform: translateX(25%);
        opacity: 0;
      }
    }

    .bento-card__icon-anim[data-variant="wave"]>span {
      position: absolute;
      inset: 10px;
      border-radius: 999px;
      overflow: hidden;
    }

    .bento-card__icon-anim[data-variant="wave"]>span::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 5%, var(--purple-light) 50%, transparent 95%);
      transform: translateX(-45%);
      animation: bentoWave 2.8s ease-in-out infinite alternate;
    }

    @keyframes bentoWave {
      0% {
        transform: translateX(-45%);
      }

      100% {
        transform: translateX(45%);
      }
    }

    .bento-card__icon-anim[data-variant="loop"]>span {
      position: absolute;
      inset: 10px;
    }

    .bento-card__icon-anim[data-variant="loop"]>span::before,
    .bento-card__icon-anim[data-variant="loop"]>span::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 100%;
      top: 50%;
      left: 0;
      background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
    }

    .bento-card__icon-anim[data-variant="loop"]>span::before {
      transform: rotate(90deg);
    }

    .bento-card__icon-anim[data-variant="loop"]>span::after {
      opacity: 0.4;
      transform: rotate(0deg);
    }

    /* Card stat */
    .bento-card__stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-top: 28px;
      padding-top: 16px;
      border-top: 1px dashed var(--border-subtle);
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.65;
    }

    .bento-card__stat strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 1px;
    }

    /* Glow on hover */
    .bento-card__glow {
      pointer-events: none;
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s;
      background: radial-gradient(200px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(168, 85, 247, 0.12), transparent 68%);
    }

    .bento-card:hover .bento-card__glow {
      opacity: 1;
    }

    /* Responsive: SM+ */
    @media (min-width: 640px) {
      .bento-card__stat {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    /* Responsive: MD+ */
    @media (min-width: 768px) {
      .bento-services__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .bento-card__content {
        flex-direction: row;
        align-items: flex-start;
      }

      .bento-card__icon {
        order: 0;
        margin-top: 0;
        margin-left: auto;
        margin-bottom: 0;
        width: 56px;
        height: 56px;
      }

      .bento-card__number {
        order: 0;
      }

    }

    /* Responsive: XL+ */
    @media (min-width: 1280px) {
      .bento-card__icon {
        width: 64px;
        height: 64px;
      }

      .bento-card__icon-anim {
        height: 48px;
        width: 48px;
      }
    }

    /* AI SECTION */
    .ai-section {
      background: var(--bg-primary);
    }

    .ai-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 48px;
      justify-content: center;
    }

    .ai-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      padding: 6px 14px;
      background: var(--purple-glow);
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      color: var(--purple-light);
    }

    /* Statistics Bar Chart */
    .stats-chart {
      max-width: 720px;
      margin: 56px auto 0;
    }

    .stats-chart__bar-group {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      height: 380px;
    }

    .stats-chart__bar-wrap {
      flex: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .stats-chart__bar-wrap.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stats-chart__bar {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 28px;
      overflow: hidden;
      background-color: rgba(255, 255, 255, 0.02);
      background-image: linear-gradient(135deg,
          rgba(255, 255, 255, 0.04) 25%,
          transparent 25.5%,
          transparent 50%,
          rgba(255, 255, 255, 0.04) 50.5%,
          rgba(255, 255, 255, 0.04) 75%,
          transparent 75.5%,
          transparent);
      background-size: 10px 10px;
    }

    .stats-chart__bar-fill {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border-radius: 28px;
      background: rgba(124, 58, 237, 0.35);
      height: 0;
      transition: height 1s cubic-bezier(0.22, 0.68, 0, 1);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 12px 8px;
    }

    .stats-chart__bar-wrap.visible .stats-chart__bar-fill {
      height: var(--bar-height);
    }

    .stats-chart__bar-fill--highlight {
      background: linear-gradient(180deg, var(--purple-bright), var(--purple-electric));
    }

    .stats-chart__bar-value {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 48px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .stats-chart__bar-fill--highlight .stats-chart__bar-value {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Tooltip */
    .stats-chart__tooltip {
      position: absolute;
      top: -44px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--purple-bright);
      color: #fff;
      font-size: 12px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 10px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.4s ease 0.8s;
      z-index: 5;
    }

    .stats-chart__bar-wrap.visible .stats-chart__tooltip {
      opacity: 1;
    }

    .stats-chart__tooltip-arrow {
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--purple-bright);
    }

    /* Tooltip dot */
    .stats-chart__tooltip::before {
      content: '';
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--purple-bright);
      border: 2px solid #fff;
    }

    .stats-chart__bar-label {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 12px;
      font-family: var(--font-heading);
    }

    .stats-chart__bar-wrap--highlight .stats-chart__bar-label {
      color: var(--text-primary);
      font-weight: 500;
    }

    @media (max-width: 640px) {
      .stats-chart__bar-group {
        height: 280px;
        gap: 6px;
      }

      .stats-chart__bar-value {
        font-size: 13px;
        height: 36px;
      }

      .stats-chart__bar-label {
        font-size: 11px;
      }

      .stats-chart__tooltip {
        font-size: 10px;
        padding: 4px 8px;
      }

      .stats-chart__bar {
        border-radius: 20px;
      }

      .stats-chart__bar-fill {
        border-radius: 20px;
        padding: 8px 4px;
      }
    }

    /* CASE STUDIES */
    /* PROJECT SHOWCASE — hover list with floating preview */
    .showcase {
      position: relative;
      max-width: 100%;
      margin-top: 48px;
    }

    /* Floating image preview */
    .showcase__preview {
      pointer-events: none;
      position: fixed;
      z-index: 50;
      width: 280px;
      height: 180px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .showcase__preview--visible {
      opacity: 1;
      transform: scale(1);
    }

    .showcase__preview-inner {
      position: relative;
      width: 100%;
      height: 100%;
      background: var(--bg-card);
      border-radius: inherit;
      overflow: hidden;
    }

    .showcase__preview-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.1);
      filter: blur(10px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
    }

    .showcase__preview-img--active {
      opacity: 1;
      transform: scale(1);
      filter: none;
    }

    .showcase__preview-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7, 7, 13, 0.2), transparent);
    }

    /* Row list */
    .showcase__list {
      display: flex;
      flex-direction: column;
    }

    /* Individual row */
    .showcase__row {
      display: block;
      position: relative;
      padding: 20px 0;
      border-top: 1px solid var(--border-subtle);
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease-out;
    }

    .showcase__row-bg {
      position: absolute;
      inset: 0 -16px;
      padding: 0 16px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .showcase__row:hover .showcase__row-bg {
      opacity: 1;
      transform: scale(1);
    }

    .showcase__row-content {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .showcase__row-left {
      flex: 1;
      min-width: 0;
    }

    .showcase__row-title-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .showcase__row-title-wrap h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      position: relative;
    }

    /* Animated underline */
    .showcase__row-title-wrap h3 span::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      height: 1px;
      width: 0;
      background: var(--text-primary);
      transition: width 0.3s ease-out;
    }

    .showcase__row:hover .showcase__row-title-wrap h3 span::after {
      width: 100%;
    }

    /* Arrow icon */
    .showcase__arrow {
      width: 16px;
      height: 16px;
      color: var(--text-muted);
      opacity: 0;
      transform: translate(-8px, 8px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .showcase__row:hover .showcase__arrow {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* Description */
    .showcase__row-desc {
      font-size: 14px;
      line-height: 1.5;
      color: var(--text-muted);
      margin-top: 4px;
      transition: color 0.3s ease-out;
    }

    .showcase__row:hover .showcase__row-desc {
      color: rgba(255, 255, 255, 0.7);
    }

    .showcase__row-desc--problem {
      color: var(--text-muted);
      font-style: italic;
      padding-bottom: 6px;
      margin-bottom: 2px;
      border-bottom: 1px solid var(--border-subtle);
      opacity: 0.85;
    }

    .showcase__row:hover .showcase__row-desc--problem {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Tag badge */
    .showcase__row-tag {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-muted);
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      transition: color 0.3s ease-out;
      flex-shrink: 0;
      padding-top: 4px;
    }

    .showcase__row:hover .showcase__row-tag {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Bottom border */
    .showcase__row-border {
      border-top: 1px solid var(--border-subtle);
    }

    /* Hide floating preview on mobile/touch */
    @media (max-width: 768px) {
      .showcase__preview {
        display: none;
      }
    }

    /* ABOUT — Founder Hero */
    .about-section {
      background: var(--bg-primary);
      overflow: hidden;
    }

    .founder-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* Name block with overlapping portrait */
    .founder-hero__name-block {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .founder-hero__name-line {
      line-height: 0.85;
    }

    .founder-hero__first,
    .founder-hero__last {
      font-family: var(--font-heading);
      font-size: clamp(56px, 12vw, 140px);
      font-weight: 600;
      letter-spacing: -0.04em;
      color: var(--text-primary);
      text-transform: uppercase;
    }

    /* Portrait — overlapping the name */
    .founder-hero__portrait {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: clamp(70px, 10vw, 130px);
      height: clamp(110px, 16vw, 220px);
      border-radius: 9999px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--purple-glow);
      cursor: pointer;
      animation: founderFloat 4s ease-in-out infinite;
    }

    .founder-hero__portrait:hover {
      animation-play-state: paused;
      transform: translate(-50%, -50%) scale(1.08);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes founderFloat {

      0%,
      100% {
        transform: translate(-50%, -50%) translateY(0);
      }

      50% {
        transform: translate(-50%, -50%) translateY(-8px);
      }
    }

    .founder-hero__portrait-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Role label */
    .founder-hero__role {
      margin-top: 40px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Bio */
    .founder-hero__bio {
      max-width: 560px;
      margin-top: 24px;
    }

    .founder-hero__bio p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-secondary);
    }

    .founder-hero__bio strong {
      color: var(--text-primary);
      font-weight: 500;
    }

    /* Footer: tagline + LinkedIn */
    .founder-hero__footer {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .founder-hero__tagline {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 1.5px;
      color: var(--purple-light);
      text-transform: uppercase;
    }

    .founder-hero__linkedin {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 8px 16px;
      border: 1px solid var(--border-subtle);
      border-radius: 9999px;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }

    .founder-hero__linkedin:hover {
      border-color: var(--border-active);
      color: var(--text-primary);
      background: var(--purple-glow);
    }

    /* Letter-by-letter blur reveal */
    .founder-hero__letter {
      display: inline-block;
      opacity: 0;
      filter: blur(12px);
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, filter 0.5s ease-out, transform 0.5s ease-out;
    }

    .founder-hero.visible .founder-hero__letter {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    /* Blur-in animation for other elements */
    .founder-hero__blur-in {
      opacity: 0;
      filter: blur(12px);
      transform: translateY(16px);
      transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
    }

    .founder-hero__blur-in.visible {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    /* Portrait scale-in */
    .founder-hero__portrait {
      opacity: 0;
      transition: opacity 0.6s ease-out;
    }

    .founder-hero.visible .founder-hero__portrait {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .founder-hero__footer {
        flex-direction: column;
        gap: 16px;
      }
    }


    /* WHY VERO OPS — Glow Grid */
    .diff-section {
      background: var(--bg-secondary);
    }

    .glow-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 16px;
      margin-top: 48px;
      list-style: none;
      padding: 0;
    }

    .glow-grid__item {
      min-height: 14rem;
      list-style: none;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .glow-grid__item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Glow card wrapper — outer border container */
    .glow-card {
      --start: 0;
      --active: 0;
      --spread: 40;
      --border-w: 3px;
      position: relative;
      height: 100%;
      border-radius: 1.25rem;
      border: 0.75px solid var(--border-subtle);
      padding: 8px;
    }

    /* The glowing sweep overlay */
    .glow-card__glow {
      pointer-events: none;
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .glow-card[data-active="1"] .glow-card__glow {
      opacity: 1;
    }

    .glow-card__glow-inner {
      border-radius: inherit;
      width: 100%;
      height: 100%;
    }

    .glow-card__glow-inner::after {
      content: '';
      position: absolute;
      inset: calc(-1 * var(--border-w));
      border: var(--border-w) solid transparent;
      border-radius: inherit;
      background: var(--glow-gradient);
      background-attachment: fixed;
      opacity: var(--active);
      transition: opacity 0.3s;
      mask-clip: padding-box, border-box;
      -webkit-mask-clip: padding-box, border-box;
      mask-composite: intersect;
      -webkit-mask-composite: source-in;
      mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
          #00000000 0deg,
          #fff,
          #00000000 calc(var(--spread) * 2deg));
      -webkit-mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
          #00000000 0deg,
          #fff,
          #00000000 calc(var(--spread) * 2deg));
    }

    /* Multi-color gradient matching the React component */
    .glow-card {
      --glow-gradient:
        radial-gradient(circle, #dd7bbb 10%, #dd7bbb00 20%),
        radial-gradient(circle at 40% 40%, #d79f1e 5%, #d79f1e00 15%),
        radial-gradient(circle at 60% 60%, #5a922c 10%, #5a922c00 20%),
        radial-gradient(circle at 40% 60%, #4c7894 10%, #4c789400 20%),
        repeating-conic-gradient(from 236.84deg at 50% 50%,
          #dd7bbb 0%,
          #d79f1e 5%,
          #5a922c 10%,
          #4c7894 15%,
          #dd7bbb 20%);
    }

    /* Inner card */
    .glow-card__inner {
      position: relative;
      z-index: 1;
      display: flex;
      height: 100%;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      overflow: hidden;
      border-radius: 0.75rem;
      border: 0.75px solid var(--border-subtle);
      background: var(--bg-card);
      padding: 24px;
      box-shadow: 0 0 27px 0 rgba(45, 45, 45, 0.3);
    }

    /* Card content layout */
    .glow-card__content {
      position: relative;
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    /* Icon box */
    .glow-card__icon-box {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 0.75px solid var(--border-subtle);
      background: var(--bg-secondary);
      color: var(--purple-light);
      flex-shrink: 0;
    }

    .glow-card__icon-box svg {
      width: 16px;
      height: 16px;
    }

    .glow-card__visual {
      width: 100%;
      max-height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 8px 0 12px;
      overflow: hidden;
      border-radius: 8px;
    }

    .glow-card__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      opacity: 0.85;
    }

    @media (min-width: 1024px) {
      .glow-card__visual--tall {
        max-height: none;
        flex: 1;
        min-height: 200px;
      }
    }

    /* Text content */
    .glow-card__text {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .glow-card__text h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.375rem;
      letter-spacing: -0.04em;
      color: var(--text-primary);
      text-wrap: balance;
    }

    .glow-card__text p {
      font-size: 14px;
      line-height: 1.375rem;
      color: var(--text-muted);
    }

    /* Responsive: MD+ (12-column, 3 rows — matching demo) */
    @media (min-width: 768px) {
      .glow-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;
      }

      .glow-grid__item--a {
        grid-area: 1 / 1 / 2 / 7;
      }

      .glow-grid__item--b {
        grid-area: 1 / 7 / 2 / 13;
      }

      .glow-grid__item--c {
        grid-area: 2 / 1 / 3 / 7;
      }

      .glow-grid__item--d {
        grid-area: 2 / 7 / 3 / 13;
      }

      .glow-grid__item--e {
        grid-area: 3 / 1 / 4 / 13;
      }

      .glow-card {
        border-radius: 1.5rem;
        padding: 12px;
      }

      .glow-card__inner {
        padding: 24px;
      }

      .glow-card__text h3 {
        font-size: 24px;
        line-height: 1.875rem;
      }

      .glow-card__text p {
        font-size: 16px;
        line-height: 1.375rem;
      }
    }

    /* Responsive: XL+ (2-row bento — matching demo) */
    @media (min-width: 1280px) {
      .glow-grid {
        grid-template-rows: repeat(2, auto);
        max-height: none;
      }

      .glow-grid__item--a {
        grid-area: 1 / 1 / 2 / 5;
      }

      .glow-grid__item--b {
        grid-area: 2 / 1 / 3 / 5;
      }

      .glow-grid__item--c {
        grid-area: 1 / 5 / 3 / 9;
      }

      .glow-grid__item--d {
        grid-area: 1 / 9 / 2 / 13;
      }

      .glow-grid__item--e {
        grid-area: 2 / 9 / 3 / 13;
      }
    }

    /* HOW IT WORKS */
    .hiw-section {
      background: var(--bg-secondary);
    }

    .hiw-grid {
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .hiw-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
      }

      .hiw-grid .glow-grid__item {
        min-height: auto;
      }
    }

    /* CONTACT */
    /* CONTACT — Starfield CTA */
    .contact-section {
      position: relative;
      padding: 96px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #000;
    }

    .contact-starfield {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .contact-section__gradient {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, #000 0%, transparent 30%, transparent 70%, #000 100%);
      pointer-events: none;
    }

    /* Centered CTA content */
    .contact-hero {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 600px;
    }

    /* Badge pill */
    .contact-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 9999px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.2);
      backdrop-filter: blur(8px);
      margin-bottom: 16px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-secondary);
    }

    .contact-hero__badge svg {
      width: 14px;
      height: 14px;
      color: var(--purple-light);
    }

    /* Title */
    .contact-hero__title {
      font-family: var(--font-heading);
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    /* Description */
    .contact-hero__desc {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(156, 163, 175, 1);
      margin-bottom: 28px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CTA Button */
    .contact-hero__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: #fff;
      color: #000;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 12px 30px -8px rgba(255, 255, 255, 0.12);
      transition: background 0.3s, transform 0.2s;
    }

    .contact-hero__cta:hover {
      background: #e5e7eb;
      transform: translateY(-2px);
    }

    .contact-hero__cta:active {
      transform: translateY(0);
    }

    /* Email line */
    .contact-hero__email {
      margin-top: 16px;
      font-size: 13px;
      color: rgba(156, 163, 175, 0.6);
    }

    .contact-hero__email a {
      color: var(--purple-light);
      text-decoration: none;
      margin-left: 4px;
      transition: color 0.3s;
    }

    .contact-hero__email a:hover {
      color: #fff;
    }

    /* FORM MODAL */
    /* FORM MODAL — Glow Card Style */
    .form-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .form-modal--open {
      opacity: 1;
      visibility: visible;
    }

    .form-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
    }

    .form-modal__outer {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      margin: 16px;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .form-modal--open .form-modal__outer {
      transform: translateY(0) scale(1);
    }

    .form-modal__glow-card {
      border-radius: 1.25rem;
    }

    .form-modal__inner {
      overflow-y: auto;
      max-height: calc(90vh - 32px);
      padding: 28px !important;
      position: relative;
    }

    /* Close button */
    .form-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      color: var(--text-muted);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      z-index: 2;
    }

    .form-modal__close:hover {
      border-color: var(--border-active);
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.03);
    }

    /* Header */
    .form-modal__header {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding-right: 40px;
    }

    .form-modal__icon-box {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 0.75px solid var(--border-subtle);
      background: var(--bg-secondary);
      color: var(--purple-light);
      flex-shrink: 0;
    }

    .form-modal__title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .form-modal__subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
      line-height: 1.4;
    }

    /* Divider */
    .form-modal__divider {
      height: 1px;
      background: var(--border-subtle);
      margin: 20px 0;
    }

    /* Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* Floating label field */
    .form-field {
      position: relative;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: 20px 14px 8px;
      background: var(--bg-primary);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-field label {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 13px;
      color: var(--text-muted);
      pointer-events: none;
      transition: all 0.2s ease;
      font-family: var(--font-body);
    }

    /* Float label up on focus or when filled */
    .form-field input:focus~label,
    .form-field input:not(:placeholder-shown)~label,
    .form-field textarea:focus~label,
    .form-field textarea:not(:placeholder-shown)~label {
      top: 6px;
      font-size: 10px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--purple-light);
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--border-active);
      box-shadow: 0 0 0 2px var(--purple-glow);
    }

    /* Submit button */
    .form-modal__submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px;
      margin-top: 4px;
      background: var(--bg-primary);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .form-modal__submit:hover {
      border-color: var(--border-active);
      background: var(--purple-glow);
      box-shadow: 0 0 20px var(--purple-glow);
    }

    .form-modal__submit svg {
      transition: transform 0.2s;
    }

    .form-modal__submit:hover svg {
      transform: translateX(3px);
    }

    /* FOOTER */
    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border-subtle);
      background: var(--bg-primary);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-content p {
      font-size: 13px;
      color: var(--text-muted);
    }

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

    .footer-links a {
      font-size: 13px;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--purple-light);
    }

    /* SCROLL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s, transform 0.7s;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* FORM SUCCESS */
    .form-success {
      text-align: center;
      padding: 32px 16px;
    }

    .form-success .check {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--bg-primary);
      border: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 22px;
      color: var(--purple-light);
    }

    .form-success h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-primary);
    }

    .form-success p {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .section {
        padding: 72px 0;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-section {
        padding: 64px 0;
      }

      .contact-hero__desc {
        font-size: 14px;
      }

      .form-modal__outer {
        margin: 12px;
      }

      .form-modal__inner {
        padding: 20px !important;
      }

      .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .hero-banner {
        min-height: 100%;
        height: 100dvh;
        padding-top: 120px;
      }

      .hero-banner__badge {
        background: unset;
        border: unset !important;
        backdrop-filter: unset !important;
        padding: unset;
        box-shadow: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }

      .hero-banner__partners-title {
        font-size: 12px;
      }

      .showcase__row-content {
        flex-direction: column;
      }
    }