      @font-face {
        font-family: "Dropta";
        src: url("fonts/Dropta.ttf") format("truetype");
        font-display: swap;
      }
      @font-face {
        font-family: "TT Hoves Pro Trial";
        src:
          local("TT Hoves Pro Trial Medium"),
          url("https://fonts.cdnfonts.com/s/90574/TT Hoves Pro Trial Medium.woff")
            format("woff");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --bg: #050a08;
        --text: #d8ede2;
        --dim: #5e8a73;
        --green: #2aa182;
        --lime: #93d422;
        --grad: linear-gradient(135deg, #2aa182, #93d422);
        --ff: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        --brand: "Dropta", var(--ff);
      }
      html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
      }
      body {
        font-family: var(--ff);
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
      }
      a {
        color: inherit;
        text-decoration: none;
      }

      /* Grain overlay */
      body::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        opacity: 0.035;
        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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 256px;
      }

      /* Canvas */
      #net {
        position: fixed;
        inset: 0;
        z-index: 0;
        opacity: 0.7;
      }

      /* Nav */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
      }
      /* The capsule (.menu) carries its own glass; the header stays
         transparent. On scroll we just nudge the capsule's opacity up a
         touch via the .solid hook for a little extra contrast. */
      nav.solid .menu {
        background: rgba(8, 20, 14, 0.78);
        border-color: rgba(42, 161, 130, 0.22);
      }
      .nav-in {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 14px 24px 0;
        display: flex;
        align-items: center;
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .nav-logo img {
        height: 32px;
      }
      .nav-logo span {
        font-family: var(--brand);
        font-size: 1rem;
        letter-spacing: 0.06em;
        color: #fff;
      }
      .nav-r {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      /* Lang */
      .lang-w {
        position: relative;
      }
      .lang-btn {
        background: 0;
        border: 0;
        color: #fff;
        font-family: var(--ff);
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        cursor: pointer;
        padding: 6px 0;
        opacity: 0.6;
        transition: opacity 0.3s;
      }
      .lang-btn:hover {
        opacity: 1;
      }
      .lang-dd {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        background: rgb(8, 18, 14);
        border: 1px solid rgba(42, 161, 130, 0.12);
        border-radius: 16px;
        padding: 8px;
        min-width: 180px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px) scale(0.97);
        transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
      }
      .lang-dd.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
      }
      .lang-dd button {
        background: 0;
        border: 0;
        color: var(--dim);
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.8rem;
        text-align: left;
        transition: all 0.2s;
        white-space: nowrap;
        font-family: var(--ff);
      }
      .lang-dd button:hover,
      .lang-dd button.active {
        background: rgba(42, 161, 130, 0.1);
        color: var(--green);
      }

      /* --- HERO --- */
      .hero {
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 48px 0;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(42, 161, 130, 0.08) 0%,
          transparent 70%
        );
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
      }
      .hero-content {
        position: relative;
        text-align: center;
        max-width: 900px;
      }
      .hero-logo {
        width: 200px;
        height: 200px;
        margin: 0 auto 48px;
        position: relative;
        perspective: 800px;
        animation: glowPulse 4s ease-in-out infinite;
      }
      .ring-half {
        position: absolute;
        inset: 0;
        overflow: hidden;
      }
      .ring-back {
        clip-path: inset(50% 0 0 0);
      }
      .ring-front {
        clip-path: inset(0 0 50% 0);
      }
      .ring-half svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        animation: ringRotate 18s linear infinite;
      }
      .logo-coin {
        position: absolute;
        inset: 0;
        perspective: 600px;
      }
      .coin-scene {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        animation: coinSpin 24s linear infinite;
      }
      .coin-layer {
        position: absolute;
        inset: 0;
      }
      .coin-layer img {
        width: 100%;
        height: 100%;
        display: block;
      }
      .coin-front {
        backface-visibility: hidden;
      }
      .coin-back {
        backface-visibility: hidden;
      }
      @keyframes ringRotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      @keyframes coinSpin {
        0% {
          transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
        }
        5% {
          transform: rotateY(36deg) rotateX(12deg) rotateZ(3deg);
        }
        10% {
          transform: rotateY(72deg) rotateX(30deg) rotateZ(5deg);
        }
        15% {
          transform: rotateY(108deg) rotateX(45deg) rotateZ(3deg);
        }
        20% {
          transform: rotateY(144deg) rotateX(50deg) rotateZ(0deg);
        }
        25% {
          transform: rotateY(180deg) rotateX(40deg) rotateZ(-3deg);
        }
        30% {
          transform: rotateY(216deg) rotateX(20deg) rotateZ(-5deg);
        }
        35% {
          transform: rotateY(252deg) rotateX(0deg) rotateZ(-3deg);
        }
        40% {
          transform: rotateY(288deg) rotateX(-15deg) rotateZ(0deg);
        }
        45% {
          transform: rotateY(324deg) rotateX(-35deg) rotateZ(4deg);
        }
        50% {
          transform: rotateY(360deg) rotateX(-50deg) rotateZ(6deg);
        }
        55% {
          transform: rotateY(396deg) rotateX(-45deg) rotateZ(4deg);
        }
        60% {
          transform: rotateY(432deg) rotateX(-30deg) rotateZ(0deg);
        }
        65% {
          transform: rotateY(468deg) rotateX(-10deg) rotateZ(-4deg);
        }
        70% {
          transform: rotateY(504deg) rotateX(10deg) rotateZ(-6deg);
        }
        75% {
          transform: rotateY(540deg) rotateX(30deg) rotateZ(-4deg);
        }
        80% {
          transform: rotateY(576deg) rotateX(40deg) rotateZ(0deg);
        }
        85% {
          transform: rotateY(612deg) rotateX(30deg) rotateZ(3deg);
        }
        90% {
          transform: rotateY(648deg) rotateX(15deg) rotateZ(2deg);
        }
        95% {
          transform: rotateY(684deg) rotateX(5deg) rotateZ(1deg);
        }
        100% {
          transform: rotateY(720deg) rotateX(0deg) rotateZ(0deg);
        }
      }
      @keyframes glowPulse {
        0%,
        100% {
          filter: drop-shadow(0 0 60px rgba(42, 161, 130, 0.25));
        }
        50% {
          filter: drop-shadow(0 0 110px rgba(42, 161, 130, 0.5));
        }
      }
      .h-line {
        display: block;
        overflow: hidden;
      }
      .h-line span {
        display: inline-block;
        transform: translateY(110%);
        animation: slideUp 0.9s cubic-bezier(0.2, 0, 0, 1) forwards;
      }
      .hero h1 {
        font-family: var(--brand);
        font-size: clamp(3rem, 8vw, 6.5rem);
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 32px;
      }
      .hero h1 .h-line span {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero h1 .h-line:nth-child(2) span {
        animation-delay: 0.12s;
      }
      .hero-sub {
        font-size: clamp(0.95rem, 1.6vw, 1.15rem);
        color: var(--dim);
        max-width: 520px;
        margin: 0 auto 0;
        line-height: 1.7;
        opacity: 0;
        transform: translateY(16px);
        animation: emerge 0.8s 0.4s cubic-bezier(0.2, 0, 0, 1) forwards;
      }
      .hero-scroll {
        margin: 48px auto 0;
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom, var(--green), transparent);
        opacity: 0;
        animation: emerge 0.8s 0.8s cubic-bezier(0.2, 0, 0, 1) forwards;
      }
      .hero-scroll::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 3px;
        background: var(--lime);
        border-radius: 50%;
        animation: drip 2s ease-in-out infinite;
      }
      @keyframes drip {
        0% {
          top: 0;
          opacity: 1;
        }
        100% {
          top: 100%;
          opacity: 0;
        }
      }

      /* --- Marquee --- */
      .marquee {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-top: 1px solid rgba(42, 161, 130, 0.06);
        border-bottom: 1px solid rgba(42, 161, 130, 0.06);
        padding: 20px 0;
        white-space: nowrap;
      }
      .marquee-track {
        display: inline-flex;
        animation: ticker 30s linear infinite;
      }
      .marquee-track span {
        font-family: var(--brand);
        font-size: 0.8rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--dim);
        opacity: 0.55;
        font-weight: 700;
        padding: 0 48px;
      }
      .marquee-track span::after {
        content: "\00B7";
        margin-left: 48px;
        color: var(--green);
        opacity: 0.5;
      }
      @keyframes ticker {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* --- MANIFESTO --- */
      .manifesto {
        position: relative;
        z-index: 1;
        padding: 120px 48px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .manifesto-title {
        font-family: var(--brand);
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        font-weight: 400;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 2.5rem;
        opacity: 1;
      }
      .manifesto-text {
        font-size: clamp(1.6rem, 3.5vw, 2.8rem);
        line-height: 1.4;
        font-weight: 300;
        letter-spacing: -0.01em;
      }
      .manifesto-text .word {
        display: inline-block;
        opacity: 0.15;
        color: var(--dim);
        transition:
          opacity 0.5s cubic-bezier(0.2, 0, 0, 1),
          color 0.5s;
        margin-right: 0.3em;
      }
      .manifesto-text .word.lit {
        opacity: 1;
        color: var(--text);
      }
      .manifesto-text .accent {
        color: var(--green);
      }

      /* --- Shared bits (Apps cards, teaser CTAs) --- */
      .drop-ring {
        position: absolute;
        inset: -20%;
        border: 1px solid rgba(42, 161, 130, 0.06);
        border-radius: 50%;
        animation: spin 60s linear infinite;
      }
      .drop-ring:nth-child(2) {
        inset: -10%;
        animation-duration: 45s;
        animation-direction: reverse;
        border-style: dashed;
        border-color: rgba(147, 212, 34, 0.05);
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
      .coming-soon {
        display: inline-block;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--lime);
        border: 1px solid rgba(147, 212, 34, 0.25);
        border-radius: 100px;
        padding: 6px 18px;
        margin-top: 4px;
      }
      .drop-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--text);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        transition: all 0.35s;
        padding: 14px 0;
        border-bottom: 1px solid rgba(42, 161, 130, 0.2);
      }
      .drop-cta:hover {
        border-color: var(--green);
        gap: 16px;
      }
      .drop-cta svg {
        width: 18px;
        height: 18px;
        transition: transform 0.35s;
      }
      .drop-cta:hover svg {
        transform: translateX(4px);
      }

      /* --- AI SECTION --- */
      .ai-section {
        position: relative;
        z-index: 1;
        padding: 120px 48px;
        overflow: hidden;
      }
      .ai-section::before {
        content: "";
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(
          circle,
          rgba(147, 212, 34, 0.04) 0%,
          transparent 70%
        );
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
      }
      .ai-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .ai-head {
        text-align: center;
        margin-bottom: 80px;
      }
      .ai-head h2 {
        font-family: var(--brand);
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(135deg, var(--lime), var(--green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .ai-sub {
        color: var(--dim);
        font-size: clamp(0.92rem, 1.4vw, 1.05rem);
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
      }
      .ai-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .ai-card--wide {
        grid-column: 1 / -1;
      }
      .ai-card .sdk-pkg {
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        font-size: 0.78rem;
        padding: 6px 14px;
        border-radius: 100px;
        border: 1px solid rgba(147, 212, 34, 0.22);
        background: rgba(147, 212, 34, 0.06);
        color: var(--lime);
        letter-spacing: 0;
        transition: all 0.3s;
      }
      .ai-card:hover .sdk-pkg {
        border-color: rgba(147, 212, 34, 0.4);
        background: rgba(147, 212, 34, 0.1);
      }
      .ai-card {
        position: relative;
        padding: 48px 40px;
        border-radius: 20px;
        border: 1px solid rgba(42, 161, 130, 0.08);
        background: rgba(10, 28, 20, 0.4);
        backdrop-filter: blur(12px);
        transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
        overflow: hidden;
      }
      .ai-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 30% 0%,
          rgba(42, 161, 130, 0.06) 0%,
          transparent 60%
        );
        pointer-events: none;
        transition: opacity 0.5s;
        opacity: 0;
      }
      .ai-card:hover {
        border-color: rgba(42, 161, 130, 0.2);
        transform: translateY(-4px);
      }
      .ai-card:hover::before {
        opacity: 1;
      }
      .ai-card-icon {
        font-family: var(--brand);
        font-size: 1.4rem;
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        border: 1px solid rgba(42, 161, 130, 0.15);
        color: var(--green);
        background: rgba(42, 161, 130, 0.05);
        letter-spacing: 0.04em;
      }
      .ai-card h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px;
      }
      .ai-card p {
        color: var(--dim);
        font-size: 0.88rem;
        line-height: 1.7;
        max-width: 400px;
      }
      .ai-card .ai-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 24px;
      }
      .ai-card .ai-tag {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        padding: 6px 14px;
        border-radius: 100px;
        border: 1px solid rgba(42, 161, 130, 0.1);
        color: var(--dim);
        background: rgba(42, 161, 130, 0.03);
        transition: all 0.3s;
      }
      .ai-card:hover .ai-tag {
        border-color: rgba(42, 161, 130, 0.2);
        color: var(--green);
      }

      /* --- Divider --- */
      .divider {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        padding: 0 48px;
      }
      .div-line {
        width: 100%;
        max-width: 1000px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(42, 161, 130, 0.15) 50%,
          transparent
        );
      }

      /* --- FEATURES --- */
      .features {
        position: relative;
        z-index: 1;
        padding: 40px 48px 120px;
        max-width: 1000px;
        margin: 0 auto;
      }
      .features-head {
        margin-bottom: 80px;
      }
      .features-head .counter {
        font-family: var(--brand);
        font-size: 5rem;
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.15;
        margin-bottom: -12px;
      }
      .features-head h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 500;
        letter-spacing: -0.01em;
      }
      .f-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .f-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 40px 0;
        border-top: 1px solid rgba(42, 161, 130, 0.08);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.7s cubic-bezier(0.2, 0, 0, 1);
      }
      .f-item.vis {
        opacity: 1;
        transform: translateX(0);
      }
      .f-num {
        font-family: var(--brand);
        font-size: 1.4rem;
        color: var(--green);
        opacity: 0.4;
        padding-top: 2px;
      }
      .f-body h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: #fff;
      }
      .f-body p {
        color: var(--dim);
        font-size: 0.88rem;
        line-height: 1.65;
        max-width: 500px;
      }

      /* --- FOOTER --- */
      footer {
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(42, 161, 130, 0.06);
        padding: 32px 48px;
      }
      .foot-in {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .foot-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.78rem;
        color: var(--dim);
      }
      .foot-links {
        display: flex;
        gap: 28px;
      }
      .foot-links a {
        font-size: 0.78rem;
        color: var(--dim);
        transition: color 0.3s;
      }
      .foot-links a:hover {
        color: var(--green);
      }
      .foot-brand img {
        height: 20px;
        opacity: 0.35;
      }

      /* Animations */
      @keyframes emerge {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes slideUp {
        to {
          transform: translateY(0);
        }
      }

      /* Scroll reveals */
      .sr {
        opacity: 0;
        transform: translateY(32px);
        transition: all 0.9s cubic-bezier(0.2, 0, 0, 1);
      }
      .sr.vis {
        opacity: 1;
        transform: none;
      }
      .sr-d1 {
        transition-delay: 0.1s;
      }
      .sr-d2 {
        transition-delay: 0.2s;
      }
      .sr-d3 {
        transition-delay: 0.3s;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .nav-in,
        .hero,
        .manifesto,
        .features,
        .foot-in,
        .ai-section {
          padding-left: 24px;
          padding-right: 24px;
        }
        .manifesto {
          padding: 120px 24px;
        }
        .ai-grid {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 600px) {
        .hero h1 {
          font-size: 2.6rem;
        }
        .f-item {
          grid-template-columns: 32px 1fr;
          gap: 16px;
        }
        .foot-in {
          flex-direction: column;
          gap: 16px;
          text-align: center;
        }
        footer {
          padding: 32px 24px;
        }
      }
      @media (max-width: 420px) {
        .nav-logo span {
          display: none;
        }
      }
      /* --- Floating capsule bar --- */
      /* The whole header is one glass capsule: logo on the left, section
         links + language (+ launch CTAs on the Apps page) on the right. */
      .menu {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 8px 10px 8px 20px;
        border-radius: 100px;
        border: 1px solid rgba(42, 161, 130, 0.14);
        background: rgba(10, 28, 20, 0.55);
        backdrop-filter: blur(18px) saturate(140%);
        -webkit-backdrop-filter: blur(18px) saturate(140%);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.05),
          0 10px 30px -14px rgba(0, 0, 0, 0.7);
      }
      .menu-item {
        position: relative;
        padding: 8px 22px;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: rgba(216, 237, 226, 0.7);
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      }
      .menu-item:hover {
        color: #fff;
        background: rgba(42, 161, 130, 0.12);
      }
      .menu-item[aria-current="page"] {
        color: #052a1f;
        font-weight: 600;
        background: var(--grad);
        box-shadow: 0 0 20px rgba(42, 161, 130, 0.35);
      }

      /* --- CTA band (home apps teaser) --- */
      .cta-band {
        position: relative;
        z-index: 1;
        padding: 120px 48px;
        overflow: hidden;
      }
      .cta-band-inner {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .cta-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 22px;
      }
      .cta-band h2 {
        font-family: var(--brand);
        font-weight: 400;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.05;
        margin-bottom: 20px;
        background: linear-gradient(135deg, var(--lime), var(--green));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .cta-band p {
        color: var(--dim);
        font-size: clamp(0.92rem, 1.4vw, 1.05rem);
        line-height: 1.7;
        max-width: 540px;
        margin: 0 auto;
      }
      .cta-band-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        margin: 44px 0;
      }
      .cta-logo {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(42, 161, 130, 0.1);
        background: rgba(10, 28, 20, 0.4);
        backdrop-filter: blur(12px);
        transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
      }
      .cta-logo img {
        width: 56%;
        opacity: 0.9;
      }
      .cta-logo--boxed {
        background: #fff;
      }
      .cta-logo--boxed img {
        width: 74%;
        opacity: 1;
      }
      .cta-logo:hover {
        transform: translateY(-4px);
        border-color: rgba(42, 161, 130, 0.28);
      }

      /* --- AI card as a link (Develop entry) --- */
      .ai-card--link {
        display: block;
        text-decoration: none;
        cursor: pointer;
      }
      .ai-card-cta {
        display: inline-block;
        margin-top: 24px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: var(--green);
        transition: color 0.3s;
      }
      .ai-card--link:hover .ai-card-cta {
        color: var(--lime);
      }

      /* --- Generic page hero (Apps / Develop) --- */
      .page-hero {
        position: relative;
        z-index: 1;
        padding: 200px 48px 70px;
        text-align: center;
        overflow: hidden;
      }
      .page-hero::before {
        content: "";
        position: absolute;
        width: 760px;
        height: 760px;
        left: 50%;
        top: 0;
        transform: translate(-50%, -30%);
        background: radial-gradient(
          circle,
          rgba(42, 161, 130, 0.07) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .page-hero .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.26em;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 22px;
      }
      .page-hero h1 {
        font-family: var(--brand);
        font-weight: 400;
        font-size: clamp(2.6rem, 6vw, 5rem);
        line-height: 1;
        margin-bottom: 24px;
      }
      .page-hero .lede {
        color: var(--dim);
        font-size: clamp(1rem, 1.6vw, 1.2rem);
        line-height: 1.7;
        max-width: 620px;
        margin: 0 auto;
      }

      /* --- Apps page --- */
      .apps-wrap {
        position: relative;
        z-index: 1;
        max-width: 1180px;
        margin: 0 auto;
        padding: 40px 48px 120px;
        display: grid;
        gap: 32px;
      }
      .app-card {
        position: relative;
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 48px;
        align-items: center;
        padding: 56px;
        border-radius: 28px;
        border: 1px solid rgba(42, 161, 130, 0.1);
        background: rgba(10, 28, 20, 0.4);
        backdrop-filter: blur(14px);
        overflow: hidden;
        transition: all 0.55s cubic-bezier(0.2, 0, 0, 1);
      }
      .app-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 12% 0%,
          rgba(42, 161, 130, 0.07) 0%,
          transparent 55%
        );
        opacity: 0;
        transition: opacity 0.55s;
        pointer-events: none;
      }
      .app-card:hover {
        transform: translateY(-6px);
        border-color: rgba(42, 161, 130, 0.24);
        box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
      }
      .app-card:hover::before {
        opacity: 1;
      }
      /* Flip card (e.g. Dripelo): visual on the right. Swap the track sizes
         so the body still gets the wide column — reordering alone would
         cram the text into the narrow visual column. */
      .app-card--flip {
        grid-template-columns: 1fr 220px;
      }
      .app-card__visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
      }
      .app-card__glyph {
        position: relative;
        z-index: 1;
        width: 60%;
        max-width: 130px;
        filter: drop-shadow(0 0 60px rgba(42, 161, 130, 0.25));
        transition: transform 0.7s cubic-bezier(0.2, 0, 0, 1);
      }
      .app-card:hover .app-card__glyph {
        transform: scale(1.05);
      }
      .app-card__glyph--boxed {
        width: 74%;
        max-width: 160px;
        background: #fff;
        border-radius: 24px;
        padding: 5%;
        box-sizing: border-box;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
      }
      .app-card__body h2 {
        font-family: var(--brand);
        font-weight: 400;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.05;
        margin-bottom: 14px;
      }
      .app-card__body p {
        color: var(--dim);
        font-size: 0.97rem;
        line-height: 1.75;
        max-width: 520px;
        margin-bottom: 32px;
      }

      /* --- Develop page --- */
      .dev-wrap {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
        padding: 40px 48px 60px;
      }
      .code-card {
        position: relative;
        border-radius: 20px;
        border: 1px solid rgba(42, 161, 130, 0.12);
        background: rgba(6, 16, 12, 0.7);
        backdrop-filter: blur(14px);
        overflow: hidden;
        margin-bottom: 80px;
      }
      .code-card__bar {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(42, 161, 130, 0.1);
      }
      .code-card__dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: rgba(42, 161, 130, 0.25);
      }
      .code-card__file {
        margin-left: 12px;
        font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
        font-size: 0.76rem;
        color: var(--dim);
      }
      .code-card pre {
        margin: 0;
        padding: 28px 28px 32px;
        overflow-x: auto;
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        font-size: 0.86rem;
        line-height: 1.85;
        color: var(--text);
      }
      .code-card .c-com {
        color: var(--dim);
      }
      .code-card .c-key {
        color: var(--lime);
      }
      .code-card .c-str {
        color: #7fd4a8;
      }
      .code-card .c-fn {
        color: #6fb8ff;
      }
      .dev-section-head {
        text-align: center;
        margin-bottom: 56px;
      }
      .dev-section-head h2 {
        font-family: var(--brand);
        font-weight: 400;
        font-size: clamp(1.8rem, 3.4vw, 2.8rem);
        margin-bottom: 16px;
        background: linear-gradient(135deg, var(--lime), var(--green));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .dev-section-head p {
        color: var(--dim);
        font-size: clamp(0.92rem, 1.4vw, 1.05rem);
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto;
      }
      .dev-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 90px;
      }
      .dev-cta-band {
        text-align: center;
        padding: 70px 0 110px;
      }

      @media (max-width: 900px) {
        .cta-band,
        .page-hero,
        .apps-wrap,
        .dev-wrap {
          padding-left: 24px;
          padding-right: 24px;
        }
        .app-card {
          grid-template-columns: 1fr;
          gap: 28px;
          padding: 40px 28px;
          text-align: center;
        }
        .app-card--flip .app-card__visual {
          order: -1;
        }
        .app-card__visual {
          aspect-ratio: auto;
          padding: 12px 0 4px;
        }
        .app-card__body p {
          margin-left: auto;
          margin-right: auto;
        }
        .dev-grid {
          grid-template-columns: 1fr;
        }
      }
      /* On narrow viewports the capsule contents (logo + links + lang +
         launch CTAs) stack: logo on top, the right cluster wraps centered
         below, and the capsule grows taller to fit. */
      @media (max-width: 720px) {
        .menu {
          flex-direction: column;
          gap: 12px;
          padding: 14px 16px;
          border-radius: 28px;
        }
        .nav-r {
          width: 100%;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
        .hero-scroll {
          display: none;
        }
      }
    