    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #f7fafc;
      --surface: #f2f6fa;
      --card: #fafcfe;
      --border: #dce6f0;
      --accent: #0066cc;
      --accent2: #4a6f94;
      --accent3: #28a745;
      --text: #1a2b42;
      --muted: #3a4f65;
      --on-accent: #ffffff;
      --glow: 0 0 40px rgba(0, 102, 204, 0.22);
    }

    html { scroll-behavior: smooth; }

    body {
      background: linear-gradient(180deg, #f8fafc 0%, #f4f8fb 50%, #f6f9fc 100%);
      background-attachment: fixed;
      color: var(--text);
      font-family: 'Syne', sans-serif;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* NOISE TEXTURE OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9000;
      opacity: 0.35;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 5%;
      background: rgba(247, 250, 252, 0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 4px;
      color: var(--text);
      text-decoration: none;

    }
    .logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 2.4rem;
      list-style: none;
    }
    .nav-links a {
      position: relative;
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #2a3f58;
      text-decoration: none;
      padding: 0.35rem 0;
      transition: color 0.25s ease, letter-spacing 0.25s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), #4a8fd4);
      border-radius: 1px;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links a:hover {
      color: var(--accent);
      letter-spacing: 2.5px;
    }
    .nav-links a:hover::after {
      transform: scaleX(1);
    }
    .nav-links a:active {
      color: #1a3350;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .profile-btn {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .profile-btn:hover {
      background: var(--accent);
      color: var(--on-accent);
      box-shadow: 0 0 24px rgba(0,102,204,0.35);
    }
    .profile-btn svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .login-btn {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 0.5rem 1.2rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .login-btn:hover {
      background: var(--accent);
      color: var(--on-accent);
      box-shadow: 0 0 24px rgba(0,102,204,0.35);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 7rem 5% 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* Grid lines */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,102,204,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,204,0.06) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }

    /* Glowing orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      animation: drift 12s ease-in-out infinite alternate;
    }
    .orb1 { width: 600px; height: 600px; background: rgba(0,102,204,0.14); top: -100px; right: -100px; }
    .orb2 { width: 400px; height: 400px; background: rgba(74,111,148,0.12); bottom: -50px; left: -80px; animation-delay: -4s; }
    .orb3 { width: 300px; height: 300px; background: rgba(0,140,220,0.1); top: 40%; right: 20%; animation-delay: -8s; }

    @keyframes drift {
      0% { transform: translate(0,0) scale(1); }
      100% { transform: translate(40px, 30px) scale(1.08); }
    }

    .hero-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.4rem;
      margin-top: 1.4rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 9.5vw, 8.5rem);
      line-height: 0.95;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
      position: relative;
    }

    @media (min-width: 901px) and (max-height: 760px) {
      .hero {
        justify-content: flex-start;
        padding-top: 6.5rem;
      }

      .hero-label {
        margin-bottom: 1rem;
        margin-top: 0;
      }

      .hero h1 {
        font-size: clamp(3.8rem, 8.2vw, 7rem);
      }

      .hero-sub {
        margin-top: 1.1rem;
      }

      .hero-actions {
        margin-top: 1.8rem;
      }
    }

    .hero h1 .outline {
      color: transparent;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 2px var(--accent);
      paint-order: stroke fill;
      filter: drop-shadow(0 0 24px rgba(0, 102, 204, 0.2));
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.7;
      margin-top: 1.6rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.7s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1.2rem;
      margin-top: 2.4rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.9s forwards;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--on-accent);
      padding: 0.85rem 2.2rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      font-weight: 500;
      transition: box-shadow 0.25s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary:hover {
      box-shadow: 0 0 36px rgba(0,229,255,0.5);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: rgba(240, 246, 253, 0.65);
      color: var(--text);
      padding: 0.85rem 2.2rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1px solid var(--border);
      transition: border-color 0.2s, color 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      text-decoration: none;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

    .hero-stats {
      position: absolute;
      bottom: 3rem;
      right: 5%;
      display: flex;
      gap: 3rem;
      opacity: 0;
      animation: fadeUp 0.9s 1.1s forwards;
    }
    .stat { text-align: right; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--accent);
      letter-spacing: 2px;
    }
    .stat-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
      position: absolute;
      bottom: 3rem;
      left: 5%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.9s 1.3s forwards;
    }
    .scroll-indicator span {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* MARQUEE */
    .marquee-section {
      padding: 1.2rem 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 24s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 6px;
      color: var(--muted);
      padding: 0 2.5rem;
      flex-shrink: 0;
    }
    .marquee-dot {
      color: var(--accent);
      padding: 0 0.5rem;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* SECTION BASE */
    section { padding: 7rem 5%; }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1;
      letter-spacing: 2px;
      margin-bottom: 1.5rem;
    }

    /* ABOUT */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-right {
      position: relative;
    }

    .about-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, var(--accent), var(--accent2));
    }
    .about-card::after {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 200px; height: 200px;
      background: rgba(0,229,255,0.04);
      border-radius: 50%;
    }

    .about-card p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
    }
    .about-card p:last-child { margin-bottom: 0; }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .feature-chip {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 1px;
      color: var(--muted);
    }
    .feature-chip .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    .about-visual {
      position: relative;
      height: 400px;
    }

    .about-visual svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .about-diagram {
      opacity: 0.92;
      filter: drop-shadow(0 8px 28px rgba(0, 66, 140, 0.12));
      transition: opacity 0.6s ease, filter 0.6s ease;
    }

    .about-diagram.is-live {
      opacity: 1;
      filter: drop-shadow(0 12px 36px rgba(0, 66, 140, 0.18));
    }

    .about-diagram .link-line {
      stroke-dasharray: 8 6;
    }

    .about-diagram.is-live .link-line {
      animation: diagramLinkFlow 2.4s linear infinite;
    }

    .about-diagram.is-live .orbit-ring--outer {
      animation: diagramOrbitSpin 28s linear infinite;
      transform-origin: 240px 200px;
    }

    .about-diagram.is-live .orbit-ring--inner {
      animation: diagramOrbitSpin 18s linear infinite reverse;
      transform-origin: 240px 200px;
    }

    .about-diagram .about-node circle {
      transition: stroke-width 0.25s ease, filter 0.25s ease;
    }

    .about-diagram .about-node:hover circle {
      stroke-width: 2px;
      filter: drop-shadow(0 0 8px rgba(0, 102, 204, 0.35));
    }

    .about-diagram .about-node text {
      font-weight: 500;
    }

    @keyframes diagramLinkFlow {
      to { stroke-dashoffset: -28; }
    }

    @keyframes diagramOrbitSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes diagramNodePulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.78; }
    }

    .about-diagram.is-live .about-node {
      animation: diagramNodePulse 3.2s ease-in-out infinite;
    }

    .about-diagram.is-live .about-node--api { animation-delay: 0s; }
    .about-diagram.is-live .about-node--ai { animation-delay: 0.6s; }
    .about-diagram.is-live .about-node--cdn { animation-delay: 1.2s; }
    .about-diagram.is-live .about-node--cloud { animation-delay: 1.8s; }
    .about-diagram.is-live .about-node--db { animation-delay: 2.4s; }

    @media (prefers-reduced-motion: reduce) {
      .nav-links a::after { transition: none; }
      .nav-links a:hover { letter-spacing: 2px; }
      .about-diagram.is-live .link-line,
      .about-diagram.is-live .orbit-ring--outer,
      .about-diagram.is-live .orbit-ring--inner,
      .about-diagram.is-live .about-node {
        animation: none;
      }
      .product-card,
      .product-card::before,
      .product-icon,
      .product-link,
      .product-link::after {
        transition: none;
      }
      .product-card:hover {
        transform: none;
      }
    }

    /* PRODUCTS */
    #products {
      position: relative;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .product-card {
      --card-brand: var(--accent);
      --card-brand-soft: rgba(0, 102, 204, 0.08);
      background: #ffffff;
      border: 1px solid rgba(143, 176, 212, 0.55);
      border-radius: 6px;
      padding: 2rem 1.85rem 1.85rem 2.1rem;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      box-shadow: 0 1px 2px rgba(15, 45, 82, 0.04);
      transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 3px;
      background: var(--card-brand);
      border-radius: 6px 0 0 6px;
      opacity: 0.35;
      transition: opacity 0.28s ease, width 0.28s ease;
    }

    .product-card:hover {
      border-color: rgba(143, 176, 212, 0.9);
      transform: translateY(-3px);
      box-shadow:
        0 8px 24px rgba(15, 45, 82, 0.08),
        0 2px 6px rgba(15, 45, 82, 0.04);
    }

    .product-card:hover::before {
      opacity: 1;
      width: 4px;
    }

    .product-card--pulse {
      --card-brand: #5b4ba8;
      --card-brand-soft: rgba(91, 75, 168, 0.09);
    }

    .product-card--nexgrid {
      --card-brand: #0077a8;
      --card-brand-soft: rgba(0, 119, 168, 0.09);
    }

    .product-card--flowcore {
      --card-brand: #c47a2e;
      --card-brand-soft: rgba(196, 122, 46, 0.09);
    }

    .product-card--vaultex {
      --card-brand: #2d8a4e;
      --card-brand-soft: rgba(45, 138, 78, 0.09);
    }

    .product-card.featured {
      grid-column: span 2;
      padding: 2.25rem 2rem 2rem 2.15rem;
    }

    .product-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.35rem;
      border-radius: 6px;
      background: var(--card-brand-soft);
      border: 1px solid rgba(143, 176, 212, 0.35);
      color: var(--card-brand);
      transition: background 0.28s ease, border-color 0.28s ease;
    }

    .product-card:hover .product-icon {
      background: var(--card-brand-soft);
      border-color: var(--card-brand);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .product-icon svg {
      width: 26px;
      height: 26px;
    }

    .product-tag {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--card-brand);
      margin-bottom: 0.55rem;
      opacity: 0.9;
    }

    .product-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.85rem;
      letter-spacing: 1.5px;
      margin-bottom: 0.65rem;
      color: var(--text);
      line-height: 1;
    }

    .product-card.featured .product-name {
      font-size: 2.35rem;
    }

    .product-desc {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.65;
      flex: 1;
    }

    .product-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--card-brand);
      margin-top: 1.35rem;
      text-decoration: none;
      position: relative;
      width: fit-content;
      transition: gap 0.25s ease, color 0.25s ease;
    }

    .product-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    .product-card:hover .product-link {
      gap: 0.65rem;
    }

    .product-link:hover::after,
    .product-card:hover .product-link::after {
      transform: scaleX(1);
    }

    /* CONVENT PULSE — PRODUCT PAGE */
    #convent-pulse {
      position: relative;
      overflow: hidden;
    }

    .cp-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,102,204,0.1), transparent),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(91,75,168,0.08), transparent);
      pointer-events: none;
    }

    .cp-inner {
      position: relative;
      z-index: 1;
    }

    .cp-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      margin-top: 4rem;
    }

    .cp-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(123,92,250,0.15);
      border: 1px solid rgba(123,92,250,0.3);
      padding: 0.4rem 1rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #a78bfa;
      margin-bottom: 1.6rem;
    }
    .cp-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #a78bfa;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }

    .cp-desc {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.96rem;
      margin-bottom: 2rem;
    }

    .cp-features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .cp-features-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .cp-check {
      flex-shrink: 0;
      margin-top: 2px;
      color: #a78bfa;
    }

    /* CONVENT PULSE GALLERY */
    .cp-visual {
      background: linear-gradient(155deg, #f8fbff 0%, #e6f0fb 45%, #f0f7ff 100%);
      border: 1px solid rgba(0, 102, 204, 0.22);
      border-radius: 12px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      min-height: 430px;
      box-shadow:
        0 16px 48px rgba(0, 66, 140, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.85) inset;
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .cp-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), #4a8fd4, #5b4ba8);
      border-radius: 12px 12px 0 0;
    }

    .cp-visual:hover {
      border-color: rgba(0, 102, 204, 0.35);
      box-shadow:
        0 20px 56px rgba(0, 66, 140, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    }
    .cp-visual-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .cp-visual-title {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .cp-slide-count {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }

    .cp-gallery {
      overflow: hidden;
      border: 1px solid rgba(0, 102, 204, 0.18);
      border-radius: 10px;
      background: linear-gradient(145deg, #ffffff 0%, #eef5fc 55%, #e3eef9 100%);
      box-shadow:
        0 4px 24px rgba(0, 66, 140, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .cp-gallery-track {
      display: flex;
      width: 400%;
      animation: cpSlide 18s ease-in-out infinite;
    }

    .cp-slide {
      width: 25%;
      min-height: 315px;
      padding: 1.6rem;
      display: grid;
      align-content: start;
      gap: 1rem;
      background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(232,242,252,0.35) 100%);
    }

    .cp-slide-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0, 102, 204, 0.25);
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(91, 75, 168, 0.08));
      box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    }

    .cp-slide-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      color: var(--accent);
    }

    .cp-slide-kicker {
      font-family: 'DM Mono', monospace;
      font-size: 0.64rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
    }

    .cp-slide h3 {
      font-size: 1.45rem;
      line-height: 1.2;
      color: #1a2b42;
      font-weight: 700;
    }

    .cp-slide p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .cp-mini-ui,
    .cp-attendance-list {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.75rem 1rem;
      margin-top: 0.5rem;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(0, 102, 204, 0.16);
      background: linear-gradient(135deg, #ffffff 0%, #f0f6fd 100%);
      border-radius: 10px;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      color: #3a4f65;
      box-shadow: 0 4px 16px rgba(0, 66, 140, 0.07);
    }

    .cp-mini-ui strong,
    .cp-attendance-list em {
      color: var(--accent);
      font-style: normal;
      font-weight: 600;
    }

    .cp-status-strip {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      margin-top: 0.6rem;
      padding: 1rem 1.1rem;
      background: linear-gradient(90deg, rgba(0, 102, 204, 0.08), rgba(255, 255, 255, 0.9));
      border: 1px solid rgba(0, 102, 204, 0.12);
      border-left: 3px solid var(--accent);
      border-radius: 0 10px 10px 0;
      font-family: 'DM Mono', monospace;
    }

    .cp-status-strip strong {
      color: var(--text);
      font-size: 0.82rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .cp-status-strip span {
      color: var(--muted);
      font-size: 0.7rem;
      line-height: 1.5;
    }

    .cp-route {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .cp-route span {
      height: 4px;
      border-radius: 99px;
      background: var(--border);
      position: relative;
      overflow: hidden;
    }

    .cp-route span:nth-child(-n+3)::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--accent), #a78bfa);
    }

    .cp-gallery-dots {
      display: flex;
      justify-content: center;
      gap: 0.55rem;
      margin-top: 1.4rem;
    }

    .cp-gallery-dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(0, 102, 204, 0.2);
      animation: cpDot 18s infinite;
    }

    .cp-gallery-dots span:nth-child(2) { animation-delay: 4.5s; }
    .cp-gallery-dots span:nth-child(3) { animation-delay: 9s; }
    .cp-gallery-dots span:nth-child(4) { animation-delay: 13.5s; }

    @keyframes cpSlide {
      0%, 20% { transform: translateX(0); }
      25%, 45% { transform: translateX(-25%); }
      50%, 70% { transform: translateX(-50%); }
      75%, 95% { transform: translateX(-75%); }
      100% { transform: translateX(0); }
    }

    @keyframes cpDot {
      0%, 24% { background: var(--accent); box-shadow: 0 0 10px rgba(0, 102, 204, 0.4); }
      25%, 100% { background: rgba(0, 102, 204, 0.2); box-shadow: none; }
    }

    /* PROCESS / HOW */
    #how {
      background: var(--bg);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 0;
      margin-top: 4rem;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: 2rem;
      right: 2rem;
      height: 1px;
      background: linear-gradient(to right, var(--accent), var(--accent2), var(--accent3));
    }

    .step {
      padding: 0 2rem 0 0;
      position: relative;
    }

    .step-num {
      width: 64px; height: 64px;
      border: 1px solid var(--border);
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 2px;
      color: var(--accent);
      margin-bottom: 1.8rem;
      position: relative;
      z-index: 1;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .step:hover .step-num {
      border-color: var(--accent);
      box-shadow: 0 0 20px rgba(0,229,255,0.3);
    }

    .step h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
    }

    .step p {
      color: var(--muted);
      font-size: 0.87rem;
      line-height: 1.7;
    }

    /* CONTACT */
    #contact {
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info-items {
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
      margin-top: 2.5rem;
    }

    .contact-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent);
    }

    .contact-item-title {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }
    .contact-item-val {
      font-size: 0.9rem;
      color: var(--text);
    }

    .contact-item-val--phone {
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 500;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.04em;
      font-size: 0.95rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 0.85rem 1rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
    }
    .form-group select option { background: var(--card); }

    .form-submit {
      align-self: flex-start;
    }

    /* FOOTER */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 4rem 5% 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo {
      display: block;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    .footer-brand p {
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--accent); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-link:hover { border-color: var(--accent); color: var(--accent); }

    /* ANIMATED COUNTER */
    .counter { display: inline-block; }

    /* INTERSECTION OBSERVER ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hamburger for mobile (simple) */
    .hamburger { display: none; }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 4px;
      }
      .hamburger span { width: 26px; height: 1.5px; background: var(--text); display: block; }

      #about { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .products-grid { grid-template-columns: 1fr; }
      .product-card.featured { grid-column: span 1; }
      .cp-layout { grid-template-columns: 1fr; gap: 3rem; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .process-steps::before { display: none; }
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .hero-stats { display: none; }
    }
