    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
    body {
      font-family: 'DM Sans', sans-serif;
      background-color: #FDFCFC;
      color: #264AFF;
      background-image: url(https://framerusercontent.com/images/qBN8aOrvBxJY1psOPRzjUkKOQc.png);
      background-size: 500px;
      background-repeat: repeat;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: rgba(38, 74, 255, 0.2); }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #f0f0f0; }
    ::-webkit-scrollbar-thumb { background: #264AFF; border-radius: 4px; }

    body.nav-no-scroll { overflow: hidden; }

    /* Navigation */
    .nav {
      position: fixed; top: 0; width: 100%; z-index: 50;
      background-color: rgba(253, 252, 252, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background-image: url(https://framerusercontent.com/images/qBN8aOrvBxJY1psOPRzjUkKOQc.png);
      background-size: 500px; background-repeat: repeat;
      border-bottom: 1px solid rgba(38, 74, 255, 0.1);
    }
    .nav-container {
      max-width: 1800px; margin: 0 auto; padding: 0 1.25rem;
      height: 64px; display: flex; justify-content: space-between; align-items: center;
      position: relative;
      z-index: 52;
    }
    @media (min-width: 768px) {
      .nav-container { padding: 0 2.5rem; }
    }
    .logo {
      font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
      letter-spacing: 0.4em; text-transform: uppercase; color: #000;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    @media (min-width: 768px) {
      .nav-right { gap: 3rem; }
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    @media (max-width: 767px) {
      .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.35rem 1.25rem 1.25rem;
        margin: 0;
        background: rgba(253, 252, 252, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(38, 74, 255, 0.12);
        box-shadow: 0 16px 48px rgba(38, 74, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.5rem);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        z-index: 51;
        max-height: min(70vh, 28rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      .nav.nav--open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav-link {
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(38, 74, 255, 0.08);
      }
      .nav-link:last-child { border-bottom: none; }
    }
    .nav-link {
      font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 400;
      letter-spacing: 0.15em; text-transform: uppercase; color: #000;
      text-decoration: none; transition: opacity 0.2s, color 0.2s;
    }
    .nav-link:hover,
    .nav-link:focus-visible {
      opacity: 0.65;
      outline: none;
    }
    .nav-link:focus-visible {
      color: #264AFF;
    }
    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(38, 74, 255, 0.25);
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.85);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .nav-toggle:hover {
      border-color: rgba(38, 74, 255, 0.45);
      background: rgba(38, 74, 255, 0.06);
    }
    .nav-toggle:focus-visible {
      outline: 2px solid #264AFF;
      outline-offset: 2px;
    }
    .nav-toggle-bar {
      display: block;
      width: 20px;
      height: 2px;
      background: #000;
      border-radius: 1px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav.nav--open .nav-toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav.nav--open .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    .nav.nav--open .nav-toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    @media (min-width: 768px) {
      .nav-toggle { display: none; }
    }
    .nav-backdrop {
      display: none;
      position: fixed;
      inset: 64px 0 0 0;
      z-index: 49;
      background: rgba(38, 74, 255, 0.06);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
    }
    @media (max-width: 767px) {
      .nav-backdrop { display: block; }
      .nav.nav--open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
      }
    }
    .btn-nav {
      padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid #000;
      background: transparent; font-family: 'JetBrains Mono', monospace;
      font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
      text-transform: uppercase; color: #000; cursor: pointer; transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }
    .btn-nav:hover { background: #000; color: #fff; }
    @media (max-width: 767px) {
      .btn-nav {
        padding: 0.45rem 0.75rem;
        font-size: 10px;
        letter-spacing: 0.08em;
      }
    }

    /* Interactive Visualization Section */
    .interactive-viz {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
      overflow: visible; background: #0a0a0f;
    }
    #towerCanvas {
      position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1;
    }
    .viz-overlay {
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: none; z-index: 2; pointer-events: none;
    }
    .viz-content {
      position: relative; z-index: 3; text-align: center; width: 100%;
      padding: 1rem 2rem 2rem;
      background: linear-gradient(to top, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.95) 40%, rgba(10, 10, 15, 0.7) 70%, transparent 100%);
      margin-top: auto;
    }
    .viz-content h1 {
      font-family: 'JetBrains Mono', monospace; font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
      color: #fff; margin-bottom: 0.5rem; line-height: 1.2;
    }
    .viz-subtitle {
      font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 400;
      letter-spacing: 0.15em; text-transform: uppercase; color: #a0a0b0;
      max-width: 800px; margin: 0 auto 0.75rem; line-height: 1.6;
    }
    .viz-stats { display: flex; justify-content: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .viz-stat { display: flex; flex-direction: column; align-items: center; }
    .viz-stat-value {
      font-size: 1.5rem; font-weight: 800;
      background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      font-family: 'Inter', sans-serif;
    }
    .viz-stat-label {
      font-size: 0.7rem; color: #a0a0b0; text-transform: uppercase;
      letter-spacing: 0.1em; font-family: 'Inter', sans-serif;
    }

    /* Hero Section */
    .hero { padding: 4rem 1.5rem 6rem; }
    @media (min-width: 1024px) { .hero { padding: 4rem 3rem 6rem; } }
    .hero-container { max-width: 72rem; margin: 0 auto; text-align: center; }
    .hero-tagline {
      font-size: 1.25rem; color: rgba(38, 74, 255, 0.8); max-width: 48rem;
      margin: 0 auto 3rem; line-height: 1.6;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
      text-align: center;
    }
    .hero-metrics {
      display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
      margin-bottom: 5rem;
      background: rgba(38, 74, 255, 0.04);
      padding: 1.5rem 2rem;
      border-radius: 12px;
    }
    .hero-metric {
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-metric-value,
    .hero .metric-value {
      font-size: 2.25rem; font-weight: 700;
      color: #264AFF;
      font-family: 'DM Sans', sans-serif !important;
      display: block;
      line-height: 1;
      margin: 0;
    }
    .hero-metric-label {
      font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase; color: rgba(38, 74, 255, 0.7);
      line-height: 1.4; text-align: left;
    }

    /* Image Carousel */
    .hero .carousel-container {
      position: relative;
      max-width: 56rem;
      margin: 0 auto;
      z-index: 1;
    }
    .hero .carousel-images {
      position: relative;
      height: clamp(220px, 42vw, 350px);
      min-height: 200px;
      overflow: hidden;
      border-radius: 1rem;
      box-shadow: 0 25px 50px -12px rgba(38, 74, 255, 0.15);
      isolation: isolate;
      background: rgba(38, 74, 255, 0.06);
      z-index: 0;
    }
    .hero .carousel-slide {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      opacity: 0; transform: translateX(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .hero .carousel-slide.active {
      opacity: 1; transform: translateX(0); z-index: 2;
    }
    .hero .carousel-slide.prev {
      opacity: 0; transform: translateX(-30px); z-index: 1;
    }
    .hero .carousel-slide img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .hero .carousel-captions {
      position: relative; height: 3.5rem; margin-top: 1.5rem;
    }
    @media (max-width: 640px) {
      .hero .carousel-captions { height: auto; min-height: 3.5rem; }
    }
    .hero .carousel-caption {
      position: absolute; top: 0; left: 0; right: 0;
      font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase; color: rgba(38, 74, 255, 0.7);
      text-align: center; line-height: 1.5;
      opacity: 0; transition: opacity 0.5s ease;
    }
    .hero .carousel-caption.active {
      opacity: 1;
    }
    .hero .carousel-indicators {
      display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }
    .hero .carousel-indicator {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(38, 74, 255, 0.2); border: none; cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .hero .carousel-indicator.active {
      background: #264AFF; transform: scale(1.2);
    }

    .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; justify-content: center; position: relative; z-index: 2; }
    .btn-primary {
      padding: 0.75rem 1.5rem; background: #264AFF; color: #fff; font-weight: 500;
      border-radius: 0.5rem; border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s;
      font: inherit;
    }
    .btn-primary:hover { background: #1a3ad4; }
    .btn-secondary {
      padding: 0.75rem 1.5rem; border: 1px solid rgba(38, 74, 255, 0.3); color: #264AFF;
      font-weight: 500; border-radius: 0.5rem; background: transparent; cursor: pointer; transition: background 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font: inherit;
    }
    .btn-secondary:hover { background: rgba(38, 74, 255, 0.1); }

    /* Metrics Strip */
    .metrics-strip {
      padding: 2.25rem 1.5rem;
      background: rgba(38, 74, 255, 0.95);
      color: #fff;
    }

    @media (min-width: 1024px) {
      .metrics-strip {
        padding: 2.5rem 3rem;
      }
    }

    .metrics-strip-container {
      max-width: 80rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 0.6rem;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(4px);
    }

    @media (min-width: 700px) {
      .metrics-strip-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .metric-pill {
      padding: 1rem 1.25rem;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .metric-pill:last-child { border-right: 0; }

    @media (max-width: 699px) {
      .metric-pill {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }
      .metric-pill:last-child { border-bottom: 0; }
    }

    .metric-value {
      display: block;
      font-size: 1.7rem;
      line-height: 1;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.25rem;
    }

    .metric-label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
    }

    /* Terminal Demo */
    .terminal-wrapper { position: relative; }
    .terminal-bg {
      position: absolute; inset: 0; border-radius: 0.75rem; overflow: hidden;
      background-image: url(https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=800&h=600&fit=crop);
      background-size: cover; background-position: center; filter: brightness(0.3);
    }
    .terminal {
      position: relative; z-index: 10; background: rgba(245, 245, 245, 0.9);
      backdrop-filter: blur(8px); border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.5rem; overflow: hidden; font-family: 'IBM Plex Mono', monospace; font-size: 0.875rem;
    }
    .terminal-header {
      background: #EEEEF0; padding: 0.75rem 1rem;
      border-bottom: 1px solid rgba(38, 74, 255, 0.2);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
    .terminal-dot.red { background: #ff5f57; }
    .terminal-dot.yellow { background: #febc2e; }
    .terminal-dot.green { background: #28c840; }
    .terminal-title { margin-left: 1rem; font-size: 0.75rem; color: rgba(38, 74, 255, 0.5); }
    .terminal-content { padding: 1.5rem; min-height: 300px; }
    .terminal-line { margin-bottom: 0.75rem; opacity: 0; animation: fadeIn 0.3s ease forwards; }
    .terminal-line.system { color: rgba(38, 74, 255, 0.5); }
    .terminal-line.success { color: #22C55E; margin-left: 0.5rem; display: inline; }
    .terminal-line.ai-label { color: rgba(38, 74, 255, 0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 1rem; }
    .terminal-line.ai { color: #264AFF; }
    .terminal-line.action { color: #22C55E; display: flex; align-items: center; gap: 0.5rem; }
    @keyframes fadeIn { to { opacity: 1; } }

    /* Manifesto Section */
    .manifesto { padding: 8rem 1.5rem; border-top: 0; }
    @media (min-width: 1024px) { .manifesto { padding: 8rem 3rem; } }
    .manifesto-container { max-width: 56rem; margin: 0 auto; }
    .section-label {
      display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
      font-family: 'JetBrains Mono', monospace; font-size: 11px;
      letter-spacing: 0.15em; text-transform: uppercase; color: #264AFF;
    }
    .section-label-line { width: 3rem; height: 1px; background: #264AFF; }
    .manifesto h2 { font-size: 1.875rem; font-weight: 600; line-height: 1.2; margin-bottom: 2rem; }
    @media (min-width: 640px) { .manifesto h2 { font-size: 2.25rem; } }
    @media (min-width: 1024px) { .manifesto h2 { font-size: 3rem; } }
    .manifesto-text { font-size: 1.125rem; color: rgba(38, 74, 255, 0.8); line-height: 1.7; }
    .manifesto-text p { margin-bottom: 1.5rem; }

    /* Agents Section */
    .agents { padding: 4rem 1.5rem; background: rgba(38, 74, 255, 0.95); color: #fff; }
    @media (min-width: 1024px) { .agents { padding: 4rem 3rem; } }
    .agents-container { max-width: 72rem; margin: 0 auto; display: grid; gap: 3rem; }
    @media (min-width: 1024px) { .agents-container { grid-template-columns: 1fr 1fr; } }
    .agents-left { display: flex; flex-direction: column; }
    .module-section { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; padding: 4rem 0; transition: opacity 0.5s; }
    .module-section.inactive { opacity: 0.3; }
    .module-label {
      display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
      font-family: 'JetBrains Mono', monospace; font-size: 11px;
      letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8);
    }
    .module-dot { width: 10px; height: 10px; background: #fff; border-radius: 2px; }
    .module-title { font-size: 2.5rem; font-weight: 600; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .module-title { font-size: 3rem; } }
    @media (min-width: 1024px) { .module-title { font-size: 3.75rem; } }
    .module-text { font-size: 1.25rem; font-weight: 500; line-height: 1.4; text-transform: uppercase; max-width: 28rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
    .module-stats { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.3); }
    .stat-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
    .stat-label { color: rgba(255, 255, 255, 0.6); }
    .stat-value { color: #fff; font-weight: 700; }
    .agents-right { display: none; position: sticky; top: 8rem; height: 60vh; }
    @media (min-width: 1024px) { .agents-right { display: block; } }
    .sticky-image-container { position: relative; width: 100%; height: 100%; border-radius: 0.75rem; overflow: hidden; }
    .sticky-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.7s; }
    .sticky-image.hidden { opacity: 0; }
    .image-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); padding: 0.5rem 1rem; border-radius: 0.5rem; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; }

    /* Platform Section */
    .platform {
      padding: 8rem 1.5rem;
      background: #000;
      color: #f4f4f5;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    @media (min-width: 1024px) { .platform { padding: 8rem 3rem; } }

    .platform-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .platform .section-label {
      color: rgba(255, 255, 255, 0.86);
      margin-bottom: 1.25rem;
    }

    .platform .section-label-line { background: rgba(255, 255, 255, 0.86); }

    .platform h2 {
      font-size: 1.875rem;
      font-weight: 600;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }

    @media (min-width: 640px) { .platform h2 { font-size: 2.25rem; } }
    @media (min-width: 1024px) { .platform h2 { font-size: 3rem; } }

    .platform-tabs {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding-bottom: 0.6rem;
      margin-bottom: 1.65rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    }

    .platform-tab {
      appearance: none;
      background: transparent;
      border: 0;
      color: rgba(255, 255, 255, 0.58);
      cursor: pointer;
      text-align: left;
      padding: 0.1rem 0;
      min-width: 180px;
      transition: color 0.25s ease;
      flex: 0 0 auto;
    }

    .platform-tab:hover { color: rgba(255, 255, 255, 0.85); }

    .platform-tab-label {
      display: block;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.42rem;
      white-space: nowrap;
    }

    .platform-tab-progress {
      display: block;
      height: 2px;
      width: 100%;
      background: rgba(255, 255, 255, 0.17);
      border-radius: 999px;
      overflow: hidden;
      position: relative;
    }

    .platform-tab-progress::after {
      content: '';
      position: absolute;
      inset: 0;
      width: 0%;
      background: #fff;
      transition: width 0.35s ease;
    }

    .platform-tab.is-active { color: #fff; }
    .platform-tab.is-active .platform-tab-progress::after { width: 100%; }

    .platform-content {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 1.75rem;
      align-items: start;
    }

    .platform-media-wrap {
      border-radius: 0.85rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      position: relative;
      aspect-ratio: 16 / 9;
    }

    .platform-media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .platform-media.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .platform-steps {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.75rem;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .platform-text {
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 0.85rem;
      background: rgba(255, 255, 255, 0.03);
      padding: 1.4rem 1.2rem;
      min-height: 100%;
      opacity: 0;
      transform: translateX(10px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .platform-text.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .platform-kicker {
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.55rem;
    }

    .platform-title {
      color: #fff;
      font-size: 1.45rem;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      font-weight: 700;
    }

    .platform-description {
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 900px) {
      .platform-content {
        grid-template-columns: 1fr;
      }

      .platform-media-wrap {
        aspect-ratio: 3 / 2;
      }

      .platform-text {
        transform: translateY(8px);
      }

      .platform-text.is-visible {
        transform: translateY(0);
      }
    }

    /* Testimonials Section */
    .testimonials {
      padding: 8rem 1.5rem;
      background: #FDFCFC;
      border-top: 1px solid rgba(38, 74, 255, 0.2);
    }

    @media (min-width: 1024px) {
      .testimonials {
        padding: 8rem 3rem;
      }
    }

    .testimonials-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .testimonial-card {
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.6rem;
      background: rgba(255, 255, 255, 0.55);
      padding: 1.5rem;
    }

    .testimonial-quote {
      font-size: 1.125rem;
      line-height: 1.6;
      color: rgba(38, 74, 255, 0.82);
      margin: 0;
    }

    .testimonial-attribution {
      margin-top: 1rem;
      font-size: 0.95rem;
      line-height: 1.5;
      font-weight: 600;
      color: #264AFF;
    }

    .logo-strip {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo-slot {
      width: min(100%, 250px);
      aspect-ratio: 3.2 / 1;
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.55rem;
      background: rgba(255, 255, 255, 0.55);
      color: rgba(38, 74, 255, 0.45);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .logo-slot {
        width: calc(50% - 0.5rem);
        min-width: 155px;
      }
    }

    @media (max-width: 560px) {
      .logo-slot {
        width: 100%;
      }
    }

    /* Solutions Section */
    .solutions { position: relative; padding: 8rem 1.5rem; }
    @media (min-width: 1024px) { .solutions { padding: 8rem 6rem; } }
    .ascii-bg { position: absolute; inset: 0; overflow: hidden; opacity: 0.1; pointer-events: none; display: flex; align-items: center; justify-content: center; }
    .ascii-art { font-family: 'Fragment Mono', monospace; font-size: 6px; color: #264AFF; white-space: pre; line-height: 1; }
    @media (min-width: 640px) { .ascii-art { font-size: 8px; } }
    @media (min-width: 768px) { .ascii-art { font-size: 10px; } }
    .solutions-container { position: relative; z-index: 10; max-width: 72rem; margin: 0 auto; display: grid; gap: 6rem; }
    @media (min-width: 1024px) { .solutions-container { grid-template-columns: 1fr 1fr; align-items: start; } }
    .solutions-left h2 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #264AFF; margin-bottom: 3rem; }
    .solutions-left h3 { font-size: 3rem; font-weight: 900; letter-spacing: -0.02em; color: #264AFF; }
    @media (min-width: 768px) { .solutions-left h3 { font-size: 4.5rem; } }
    .solutions-right { display: flex; flex-direction: column; gap: 4rem; }
    .solution-item h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(38, 74, 255, 0.4); margin-bottom: 1rem; }
    .solution-item p { font-size: 1.5rem; font-weight: 700; color: #264AFF; }

    /* Team Section */
    .team {
      padding: 8rem 1.5rem;
      border-top: 1px solid rgba(38, 74, 255, 0.2);
      background: #FDFCFC;
    }

    @media (min-width: 1024px) {
      .team {
        padding: 8rem 3rem;
      }
    }

    .team-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .team-intro-block {
      max-width: 58rem;
      margin-bottom: 2.75rem;
    }

    .team h2 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      color: #264AFF;
      margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
      .team h2 {
        font-size: 2.5rem;
      }
    }

    .team-quote {
      font-size: 1rem;
      color: rgba(38, 74, 255, 0.72);
      line-height: 1.65;
      margin-bottom: 1.25rem;
      font-style: italic;
    }

    .team-divider {
      width: 100%;
      max-width: 16rem;
      height: 1px;
      background: rgba(38, 74, 255, 0.3);
      margin-bottom: 1.25rem;
    }

    .team-lede {
      font-size: 1.0625rem;
      color: rgba(38, 74, 255, 0.8);
      line-height: 1.7;
    }

    .team-subtitle {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(38, 74, 255, 0.6);
      margin-bottom: 1rem;
    }

    .team-grid {
      display: grid;
      gap: 1rem;
      margin-bottom: 2.75rem;
    }

    .team-grid--founders {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    @media (min-width: 640px) {
      .team-grid--founders {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .team-grid--founders {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .team-grid-advisory {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .team-grid-advisory {
        max-width: 24rem;
      }
    }

    .team-card {
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.6rem;
      padding: 1.25rem;
      min-height: 100%;
    }

    .team-avatar {
      width: 96px;
      height: 96px;
      object-fit: cover;
      border-radius: 999px;
      border: 1px solid rgba(38, 74, 255, 0.2);
      margin-bottom: 0.9rem;
      display: block;
    }

    .team-card-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #264AFF;
      line-height: 1.3;
      margin-bottom: 0.25rem;
    }

    .team-card-role {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(38, 74, 255, 0.55);
      margin-bottom: 0.7rem;
    }

    .team-card-bio {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(38, 74, 255, 0.78);
      margin-bottom: 0.9rem;
    }

    .team-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 999px;
      border: 1px solid rgba(38, 74, 255, 0.25);
      background: rgba(255, 255, 255, 0.7);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .team-linkedin:hover {
      background: rgba(38, 74, 255, 0.08);
      border-color: rgba(38, 74, 255, 0.45);
    }

    .team-linkedin img {
      width: 1rem;
      height: 1rem;
      object-fit: contain;
      display: block;
    }

    /* Hiring Section */
    .hiring { padding: 6rem 1.5rem; border-top: 1px solid rgba(38, 74, 255, 0.2); }
    @media (min-width: 1024px) { .hiring { padding: 6rem 3rem; } }
    .hiring-container { max-width: 48rem; margin: 0 auto; text-align: center; }
    .hiring-label { font-size: 0.75rem; font-weight: 500; color: rgba(38, 74, 255, 0.6); letter-spacing: 0.1em; text-transform: uppercase; }
    .hiring h2 { font-size: 2.5rem; font-weight: 600; margin-top: 1rem; margin-bottom: 1.5rem; }
    @media (min-width: 1024px) { .hiring h2 { font-size: 3rem; } }
    .hiring-text { font-size: 1.125rem; color: rgba(38, 74, 255, 0.7); max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }
    .btn-careers { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: #264AFF; color: #fff; font-weight: 500; border-radius: 0.5rem; text-decoration: none; transition: background 0.2s; }
    .btn-careers:hover { background: #1a3ad4; }

    /* CTA Section */
    .cta { padding: 8rem 1.5rem; border-top: 1px solid rgba(38, 74, 255, 0.2); }
    @media (min-width: 1024px) { .cta { padding: 8rem 3rem; } }
    .cta-container { max-width: 48rem; margin: 0 auto; text-align: center; }
    .cta-subtitle { font-size: 1.5rem; color: rgba(38, 74, 255, 0.5); margin-bottom: 0.5rem; }
    .cta h2 { font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; }
    @media (min-width: 1024px) { .cta h2 { font-size: 3.75rem; } }
    .btn-cta { display: inline-block; margin-top: 2.5rem; padding: 1rem 2rem; border: 1px solid #264AFF; color: #264AFF; font-weight: 500; border-radius: 0.5rem; text-decoration: none; transition: all 0.2s; }
    .btn-cta:hover { background: #264AFF; color: #fff; }

    /* Footer */
    .footer { padding: 4rem 1.5rem; border-top: 1px solid rgba(38, 74, 255, 0.2); }
    @media (min-width: 1024px) { .footer { padding: 4rem 3rem; } }
    .footer-container { max-width: 80rem; margin: 0 auto; display: grid; gap: 3rem; }
    @media (min-width: 768px) { .footer-container { grid-template-columns: repeat(3, 1fr); } }
    .footer-logo { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
    .footer-section h4 { font-size: 0.75rem; font-weight: 500; color: #888; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
    .footer-section a { display: block; font-size: 0.875rem; color: rgba(38, 74, 255, 0.6); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.2s; }
    .footer-section a:hover { color: #264AFF; }
    .footer-bottom { max-width: 80rem; margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(38, 74, 255, 0.2); text-align: center; }
    .footer-bottom p { font-size: 0.875rem; color: rgba(38, 74, 255, 0.5); }

    /* Brand logo variants used by all pages */
    .logo {
      display: flex;
      align-items: center;
      line-height: 0;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #000;
    }

    .logo a {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      color: inherit;
      text-decoration: none;
    }

    .logo-img {
      height: 36px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .logo-wordmark {
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      text-transform: none;
      color: #000;
      white-space: nowrap;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: inherit;
    }

    .footer-brand-logo {
      height: 1.75rem;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .footer-brand-wordmark {
      font-size: 1.125rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #264AFF;
      white-space: nowrap;
    }

    /* Blog page */
    .nav-link[aria-current="page"] {
      opacity: 1;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .blog-header {
      padding: 8rem 1.5rem 3rem;
      border-top: 1px solid rgba(38, 74, 255, 0.2);
    }

    @media (min-width: 1024px) {
      .blog-header {
        padding: 8rem 3rem 4rem;
      }
    }

    .blog-header-container {
      max-width: 56rem;
      margin: 0 auto;
    }

    .blog-header h1 {
      font-size: 1.875rem;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #264AFF;
    }

    .blog-list-section {
      padding: 0 1.5rem 8rem;
    }

    .blog-list-container {
      max-width: 56rem;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .blog-card {
      display: block;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.5rem;
      padding: 1.75rem 1.5rem;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .blog-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(38, 74, 255, 0.1);
      border-color: rgba(38, 74, 255, 0.35);
    }

    .blog-card-meta {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(38, 74, 255, 0.45);
      margin-bottom: 0.75rem;
    }

    .blog-card-title {
      font-size: 1.375rem;
      font-weight: 600;
      color: #264AFF;
      line-height: 1.25;
      margin-bottom: 0.65rem;
    }

    .blog-card-excerpt {
      font-size: 1rem;
      color: rgba(38, 74, 255, 0.72);
      line-height: 1.65;
    }

    .blog-card-cta {
      margin-top: 1rem;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #264AFF;
    }

    /* Contact page */
    .contact-body {
      padding: 0 1.5rem 8rem;
    }

    .contact-layout {
      max-width: 72rem;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
      align-items: start;
    }

    @media (min-width: 900px) {
      .contact-layout {
        grid-template-columns: 1fr 1.05fr;
      }
    }

    .contact-info-block {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .contact-info-row {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .contact-info-row svg {
      flex-shrink: 0;
      width: 1.35rem;
      height: 1.35rem;
      margin-top: 0.15rem;
      color: #264AFF;
    }

    .contact-info-label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(38, 74, 255, 0.45);
      margin-bottom: 0.35rem;
    }

    .contact-info-value {
      font-size: 1.0625rem;
      color: rgba(38, 74, 255, 0.85);
      line-height: 1.5;
    }

    .contact-form-panel {
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.5rem;
      padding: 2rem 1.5rem;
    }

    .contact-form-title {
      font-size: 1.375rem;
      font-weight: 600;
      color: #264AFF;
      margin-bottom: 1.5rem;
    }

    .contact-field-grid {
      display: grid;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
      .contact-field-grid--2 {
        grid-template-columns: 1fr 1fr;
      }
    }

    .contact-field label {
      display: block;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(38, 74, 255, 0.55);
      margin-bottom: 0.4rem;
    }

    .contact-field input,
    .contact-field textarea {
      width: 100%;
      padding: 0.65rem 0.75rem;
      border: 1px solid rgba(38, 74, 255, 0.25);
      border-radius: 0.5rem;
      font-size: 1rem;
      color: #264AFF;
      background: rgba(255, 255, 255, 0.92);
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
    }

    .contact-field input:focus,
    .contact-field textarea:focus {
      outline: none;
      border-color: #264AFF;
      box-shadow: 0 0 0 3px rgba(38, 74, 255, 0.12);
    }

    .contact-field textarea {
      min-height: 7rem;
      resize: vertical;
    }

    .contact-form-actions {
      margin-top: 1.25rem;
      display: flex;
      justify-content: flex-end;
    }

    .contact-submit {
      padding: 0.75rem 1.75rem;
      background: #264AFF;
      color: #fff;
      font-weight: 500;
      border-radius: 0.5rem;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
    }

    .contact-submit:hover {
      background: #1a3ad4;
    }

    .contact-map-inline {
      margin-top: 0.75rem;
    }

    .contact-map-wrap {
      border: 1px solid rgba(38, 74, 255, 0.2);
      border-radius: 0.5rem;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.55);
      line-height: 0;
    }

    .contact-map-frame {
      display: block;
      width: 100%;
      height: 16rem;
      border: 0;
    }

    /* User requested: same font family for all text */
    html, body, button, input, select, textarea {
      font-family: 'JetBrains Mono', monospace !important;
    }
  