      :root {
        color-scheme: light;
        --bg: #f7f4ee;
        --ink: #0c0c0d;
        --muted: #4b4f55;
        --line: rgba(12, 12, 13, 0.12);
        --accent: #1c7ed6;
        --accent-2: #12b886;
        --soft: rgba(255, 255, 255, 0.7);
        --shadow: 0 30px 60px rgba(12, 12, 13, 0.1);
      }

      * {
        scroll-behavior: smooth;
      }

      html,
      body {
        width: 100%;
        overflow-x: hidden;
      }

      @supports (overflow: clip) {
        html,
        body {
          overflow-x: clip;
        }
      }

      body {
        background: var(--bg);
        color: var(--ink);
        min-height: 100vh;
        position: relative;
        letter-spacing: -0.01em;
        font-family: "Manrope", system-ui, -apple-system, sans-serif;
      }

      h1,
      h2,
      h3,
      .brand {
        font-family: "Instrument Serif", "Manrope", serif;
      }

      .wrap {
        position: relative;
        z-index: 2;
      }

      header {
        position: relative;
        z-index: 5;
      }

      .grain {
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
      }

      .spotlight {
        position: fixed;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        filter: blur(10px);
        opacity: 0.7;
        background: radial-gradient(circle, rgba(28, 126, 214, 0.18), transparent 60%);
        z-index: 0;
        animation: drift 14s ease-in-out infinite;
        pointer-events: none;
      }

      .spotlight.two {
        left: -120px;
        bottom: -180px;
        background: radial-gradient(circle, rgba(18, 184, 134, 0.2), transparent 60%);
        animation-delay: -6s;
      }

      @keyframes drift {
        0%,
        100% {
          transform: translate3d(0, 0, 0);
        }
        50% {
          transform: translate3d(-20px, 20px, 0);
        }
      }

      .eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.26em;
        font-size: 0.7rem;
        color: var(--muted);
      }

      .hero-title {
        font-size: clamp(2.8rem, 6vw, 4.8rem);
        line-height: 1.02;
        font-weight: 700;
      }

      .section-title {
        font-size: clamp(1.6rem, 3.2vw, 2.6rem);
        line-height: 1.1;
        font-weight: 600;
      }

      .rule {
        height: 1px;
        background: var(--line);
        border: 0;
        margin: 0;
      }

      .pill {
        border: 1px solid var(--line);
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.6);
      }

      .cta {
        background: var(--ink);
        color: #fff;
        border: none;
        padding: 0.95rem 1.9rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
      }

      .cta:hover {
        color: #fff;
        opacity: 0.9;
      }

      .ghost {
        border: 1px solid var(--line);
        color: var(--ink);
        padding: 0.9rem 1.7rem;
        border-radius: 999px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      }

      .ghost:hover {
        color: var(--ink);
        border-color: rgba(12, 12, 13, 0.3);
        box-shadow: 0 18px 36px rgba(12, 12, 13, 0.12);
        transform: translateY(-2px);
      }

      .ghost::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(28, 126, 214, 0.08), transparent 60%);
        opacity: 0;
        transition: opacity 0.25s ease;
      }

      .ghost:hover::before {
        opacity: 1;
      }

      .ghost span {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .ghost span::after {
        content: "→";
        font-size: 1rem;
        transition: transform 0.25s ease;
      }

      .ghost:hover span::after {
        transform: translateX(4px);
      }

      .panel {
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 1.8rem;
        background: var(--soft);
        backdrop-filter: blur(8px);
        box-shadow: var(--shadow);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
      }

      .panel:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 80px rgba(12, 12, 13, 0.12);
      }

      .link-muted {
        color: var(--muted);
        text-decoration: none;
      }

      .link-muted:hover {
        color: var(--ink);
      }


      .marquee {
        overflow: hidden;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.5);
      }

      .marquee-track {
        display: inline-flex;
        gap: 2rem;
        padding: 1.2rem 0;
        white-space: nowrap;
        animation: marquee 18s linear infinite;
      }

      .marquee span {
        font-size: 0.95rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--muted);
      }

      @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .stat {
        font-size: clamp(2rem, 3.6vw, 2.8rem);
        font-weight: 700;
      }

      .accent-line {
        position: relative;
        display: inline-block;
      }

      .accent-line::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -8px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        transform-origin: left;
        transform: scaleX(0.35);
        animation: underline 3.6s ease-in-out infinite;
      }

      @keyframes underline {
        0%,
        100% {
          transform: scaleX(0.35);
        }
        50% {
          transform: scaleX(1);
        }
      }

      @media (max-width: 767px) {
        .pill {
          font-size: 0.75rem;
        }
      }
    
