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

      :root {
        --cyan: #4caf7d;
        --cyan-dim: rgba(76, 175, 125, 0.15);
        --cyan-faint: rgba(76, 175, 125, 0.05);
        --accent: #a8e063;
        --green: #a8e063;
        --green-dim: rgba(168, 224, 99, 0.12);
        --bg: #080f09;
        --text: #c8e6c0;
        --text-dim: rgba(180, 220, 170, 0.55);
        --grid: rgba(76, 175, 125, 0.06);
      }

      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: "DM Mono", monospace;
        overflow-x: hidden;
        cursor: none;
      }

      /* ── CURSOR ── */
      #cursor {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px var(--accent);
      }
      #cursor-ring {
        position: fixed;
        width: 22px;
        height: 22px;
        border: 1px solid var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.1s ease;
      }

      /* ── GRID OVERLAY ── */
      .grid-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(76, 175, 125, 0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(76, 175, 125, 0.06) 1px, transparent 1px),
          linear-gradient(rgba(76, 175, 125, 0.025) 1px, transparent 1px),
          linear-gradient(90deg, rgba(76, 175, 125, 0.025) 1px, transparent 1px);
        background-size:
          80px 80px,
          80px 80px,
          16px 16px,
          16px 16px;
      }
      .scanlines {
        position: fixed;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(0, 0, 0, 0.03) 2px,
          rgba(0, 0, 0, 0.03) 4px
        );
      }
      .vignette {
        position: fixed;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: radial-gradient(
          ellipse at center,
          transparent 40%,
          rgba(2, 8, 3, 0.85) 100%
        );
      }

      /* ── PARTICLE CANVAS ── */
      #particle-canvas {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.5;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        height: 60px;
        background: rgba(4, 13, 20, 0.9);
        border-bottom: 1px solid rgba(0, 207, 255, 0.12);
        backdrop-filter: blur(12px);
      }
      .nav-logo {
        font-family: "Outfit", sans-serif;
        font-weight: 900;
        font-size: 1rem;
        color: var(--cyan);
        letter-spacing: 3px;
        text-shadow: 0 0 12px var(--cyan);
        text-decoration: none;
      }
      .nav-back {
        font-size: 0.65rem;
        letter-spacing: 2px;
        color: var(--text-dim);
        text-decoration: none;
        border: 1px solid rgba(0, 207, 255, 0.2);
        padding: 6px 14px;
        transition: all 0.25s;
      }
      .nav-back:hover {
        color: var(--cyan);
        border-color: var(--cyan);
        background: var(--cyan-faint);
      }

      /* ── CORNER MARKS ── */
      .corner {
        position: fixed;
        width: 30px;
        height: 30px;
        z-index: 500;
        pointer-events: none;
        opacity: 0.5;
      }
      .corner::before,
      .corner::after {
        content: "";
        position: absolute;
        background: var(--cyan);
      }
      .corner::before {
        width: 100%;
        height: 1px;
        top: 50%;
      }
      .corner::after {
        height: 100%;
        width: 1px;
        left: 50%;
      }
      .corner.tl {
        top: 10px;
        left: 10px;
      }
      .corner.tr {
        top: 10px;
        right: 10px;
      }
      .corner.bl {
        bottom: 10px;
        left: 10px;
      }
      .corner.br {
        bottom: 10px;
        right: 10px;
      }

      /* ── SECTIONS ── */
      section {
        position: relative;
        z-index: 10;
      }

      /* ── HERO ── */
      #hero {
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 6px;
        color: var(--green);
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.3s forwards;
      }
      .hero-tag {
        display: inline-block;
        border: 1px solid rgba(0, 255, 157, 0.3);
        padding: 4px 14px;
        margin-bottom: 30px;
        font-size: 0.6rem;
        letter-spacing: 4px;
        color: var(--green);
        opacity: 0;
        animation: fadeUp 0.8s ease 0.5s forwards;
      }

      .hero-title {
        font-family: "Outfit", sans-serif;
        font-size: clamp(4rem, 12vw, 10rem);
        font-weight: 900;
        color: #fff;
        letter-spacing: 6px;
        line-height: 1;
        text-shadow:
          0 0 40px rgba(76, 175, 125, 0.6),
          0 0 100px rgba(168, 224, 99, 0.2);
        opacity: 0;
        animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        position: relative;
      }
      .hero-title::after {
        content: "SEEDERX";
        position: absolute;
        inset: 0;
        color: transparent;
        -webkit-text-stroke: 1px rgba(0, 207, 255, 0.08);
        transform: translateY(6px);
        z-index: -1;
      }

      .hero-subtitle {
        font-family: "Exo 2", sans-serif;
        font-size: clamp(0.9rem, 2vw, 1.3rem);
        font-weight: 300;
        color: var(--text-dim);
        letter-spacing: 3px;
        margin-top: 16px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.9s forwards;
      }
      .hero-quote {
        font-family: "Exo 2", sans-serif;
        font-style: italic;
        font-size: 0.85rem;
        color: var(--green);
        margin-top: 20px;
        letter-spacing: 2px;
        opacity: 0;
        animation: fadeUp 0.8s ease 1.1s forwards;
      }
      .hero-quote::before {
        content: '"';
      }
      .hero-quote::after {
        content: '"';
      }

      .hero-scroll {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.55rem;
        letter-spacing: 4px;
        color: rgba(0, 207, 255, 0.3);
        animation:
          float 2.5s ease-in-out infinite,
          fadeUp 1s ease 1.5s both;
      }
      .hero-scroll::after {
        content: "";
        width: 1px;
        height: 50px;
        background: linear-gradient(
          to bottom,
          rgba(0, 207, 255, 0.4),
          transparent
        );
      }

      /* Drone SVG icon in hero */
      .hero-drone {
        position: absolute;
        bottom: 120px;
        right: 8vw;
        opacity: 0;
        animation: fadeUp 1s ease 1.3s forwards;
      }
      .hero-drone svg {
        width: 100px;
        height: 100px;
      }

      @keyframes heroReveal {
        from {
          opacity: 0;
          transform: translateY(40px) scale(0.95);
          filter: blur(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
          filter: blur(0);
        }
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes float {
        0%,
        100% {
          transform: translateX(-50%) translateY(0);
        }
        50% {
          transform: translateX(-50%) translateY(8px);
        }
      }

      /* ── WHAT IS SEEDERX ── */
      #what {
        padding: 120px 0;
        background: rgba(0, 255, 157, 0.015);
      }
      .section-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
      }
      .section-label {
        font-size: 0.6rem;
        letter-spacing: 5px;
        color: rgba(0, 207, 255, 0.4);
        margin-bottom: 10px;
      }
      .section-title {
        font-family: "Outfit", sans-serif;
        font-size: clamp(1.2rem, 3vw, 2rem);
        font-weight: 700;
        color: #fff;
        letter-spacing: 4px;
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
        text-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
      }
      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 1px;
        background: var(--green);
        box-shadow: 0 0 8px var(--green);
      }

      .what-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      @media (max-width: 760px) {
        .what-grid {
          grid-template-columns: 1fr;
        }
      }

      .what-text {
        font-family: "Exo 2", sans-serif;
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 2;
        color: var(--text-dim);
      }
      .what-text strong {
        color: var(--text);
        font-weight: 600;
      }

      .what-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 280px;
      }
      .drone-diagram {
        position: relative;
        width: 200px;
        height: 200px;
      }
      .drone-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(0, 207, 255, 0.2);
        animation: ringPulse 3s ease-in-out infinite;
      }
      .drone-ring:nth-child(1) {
        inset: 0;
        animation-delay: 0s;
      }
      .drone-ring:nth-child(2) {
        inset: -20px;
        animation-delay: 0.5s;
        border-color: rgba(0, 207, 255, 0.12);
      }
      .drone-ring:nth-child(3) {
        inset: -40px;
        animation-delay: 1s;
        border-color: rgba(0, 207, 255, 0.07);
      }
      .drone-ring:nth-child(4) {
        inset: -60px;
        animation-delay: 1.5s;
        border-color: rgba(0, 207, 255, 0.04);
      }
      @keyframes ringPulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.02);
        }
      }
      .drone-center {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .drone-center svg {
        width: 90px;
        height: 90px;
        filter: drop-shadow(0 0 20px rgba(0, 207, 255, 0.5));
      }

      /* seed dots raining */
      .seed-drop {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 4px;
        height: 4px;
        background: var(--green);
        border-radius: 50%;
        box-shadow: 0 0 6px var(--green);
        animation: seedFall 2s ease-in infinite;
      }
      @keyframes seedFall {
        0% {
          transform: translate(-50%, 0) translateX(var(--sx, 0px));
          opacity: 1;
        }
        100% {
          transform: translate(-50%, 140px) translateX(var(--sx, 0px));
          opacity: 0;
        }
      }

      /* ── MISSION ── */
      #mission {
        padding: 120px 0;
      }
      .mission-quote-wrap {
        position: relative;
        border-left: 2px solid var(--green);
        padding: 30px 40px;
        background: rgba(0, 255, 157, 0.02);
        margin-bottom: 40px;
      }
      .mission-quote-wrap::before {
        content: "//";
        position: absolute;
        top: 28px;
        left: -20px;
        font-family: "Outfit", sans-serif;
        font-size: 1rem;
        color: var(--green);
        background: var(--bg);
        padding: 0 6px;
      }
      .mission-text {
        font-family: "Exo 2", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 2;
        color: var(--text-dim);
      }
      .mission-text strong {
        color: var(--cyan);
      }

      /* ── STATS ── */
      #stats {
        padding: 100px 0;
        background: rgba(0, 207, 255, 0.02);
        border-top: 1px solid rgba(0, 207, 255, 0.08);
        border-bottom: 1px solid rgba(0, 207, 255, 0.08);
      }
      .stats-header {
        font-family: "Outfit", sans-serif;
        font-size: clamp(2rem, 6vw, 5rem);
        font-weight: 900;
        color: rgba(0, 207, 255, 0.07);
        text-align: center;
        letter-spacing: 8px;
        margin-bottom: 70px;
        position: relative;
      }
      .stats-header span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(0.7rem, 1.5vw, 1rem);
        color: rgba(0, 207, 255, 0.4);
        letter-spacing: 6px;
        white-space: nowrap;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
      }
      @media (max-width: 760px) {
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 480px) {
        .stats-grid {
          grid-template-columns: 1fr;
        }
      }

      .stat-card {
        padding: 50px 30px;
        border: 1px solid rgba(0, 207, 255, 0.1);
        background: rgba(0, 207, 255, 0.02);
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
      }
      .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--green),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.4s;
      }
      .stat-card:hover {
        background: rgba(0, 207, 255, 0.05);
        border-color: rgba(0, 207, 255, 0.25);
      }
      .stat-card:hover::before {
        transform: scaleX(1);
      }

      .stat-number {
        font-family: "Outfit", sans-serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 900;
        color: #fff;
        text-shadow: 0 0 30px rgba(0, 207, 255, 0.4);
        line-height: 1;
        margin-bottom: 6px;
      }
      .stat-number .count {
        display: inline-block;
      }
      .stat-unit {
        font-size: 0.6rem;
        letter-spacing: 3px;
        color: var(--green);
        margin-bottom: 14px;
        display: block;
      }
      .stat-label {
        font-family: "Exo 2", sans-serif;
        font-size: 0.75rem;
        font-weight: 300;
        color: var(--text-dim);
        line-height: 1.6;
        letter-spacing: 1px;
      }

      /* ── SEEDBALLS ── */
      #seeds {
        padding: 120px 0;
      }

      .seeds-intro {
        font-family: "Exo 2", sans-serif;
        font-size: 0.9rem;
        font-weight: 300;
        color: var(--text-dim);
        line-height: 1.9;
        margin-bottom: 60px;
        max-width: 600px;
      }

      .seed-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      @media (max-width: 760px) {
        .seed-cards {
          grid-template-columns: 1fr;
        }
      }

      .seed-card {
        border: 1px solid rgba(0, 207, 255, 0.12);
        background: rgba(0, 207, 255, 0.02);
        overflow: hidden;
        position: relative;
        transition: all 0.4s;
      }
      .seed-card:hover {
        border-color: rgba(0, 255, 157, 0.35);
        background: rgba(0, 255, 157, 0.03);
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0, 255, 157, 0.08);
      }
      .seed-card-top {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 207, 255, 0.1);
      }
      .seed-card-top::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 20px,
          rgba(0, 207, 255, 0.015) 20px,
          rgba(0, 207, 255, 0.015) 21px
        );
      }
      .seed-icon {
        font-size: 3.5rem;
        filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.4));
      }
      .seed-card-type {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 0.5rem;
        letter-spacing: 3px;
        border: 1px solid rgba(0, 255, 157, 0.3);
        padding: 3px 8px;
        color: var(--green);
      }

      .seed-card-body {
        padding: 28px;
      }
      .seed-card-title {
        font-family: "Outfit", sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--cyan);
        margin-bottom: 16px;
      }
      .seed-list {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .seed-list li {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 4px 10px;
        border: 1px solid rgba(0, 207, 255, 0.15);
        color: var(--text-dim);
        background: rgba(0, 207, 255, 0.03);
        transition: all 0.2s;
      }
      .seed-card:hover .seed-list li {
        border-color: rgba(0, 255, 157, 0.2);
        color: var(--text);
      }

      /* ── REVEAL ANIM ── */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── FOOTER ── */
      footer {
        position: relative;
        z-index: 10;
        border-top: 1px solid rgba(0, 207, 255, 0.08);
        padding: 24px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.58rem;
        letter-spacing: 2px;
        color: rgba(0, 207, 255, 0.25);
      }

      /* horizontal rule */
      .divider {
        border: none;
        border-top: 1px solid rgba(0, 207, 255, 0.07);
        margin: 0 40px;
        position: relative;
        z-index: 10;
      }
      /* ── IMAGE PLACEHOLDERS ── */
      .img-placeholder {
        width: 100%;
        height: 100%;
        min-height: 280px;
        border: 1px dashed rgba(0, 207, 255, 0.25);
        background: rgba(0, 207, 255, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
      }
      /* .img-placeholder::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 1px solid rgba(0, 207, 255, 0.2);
        border-top-color: var(--cyan);
        border-radius: 50%;
        animation: spin 2s linear infinite;
      } 
      @keyframes spin {
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      } */
      .img-placeholder-label {
        font-size: 0.6rem;
        letter-spacing: 3px;
        color: rgba(0, 207, 255, 0.4);
        margin-top: 30px;
      }
      .img-placeholder-hint {
        font-size: 0.55rem;
        letter-spacing: 2px;
        color: rgba(0, 207, 255, 0.2);
      }

      /* When you drop a real image in, style it like this */
      .what-visual img,
      .seed-card-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      #video-section {
        position: relative;
        z-index: 10;
        padding: 80px 40px;
        display: flex;
        justify-content: center;
      }
      .video-inner {
        position: relative;
        width: 100%;
        max-width: 900px;
        border: 1px solid rgba(0, 207, 255, 0.2);
        box-shadow: 0 0 60px rgba(0, 207, 255, 0.06);
      }
      .video-inner video,
      .video-inner iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        display: block;
        opacity: 0.55;
      }
      .video-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(
            to bottom,
            rgba(4, 13, 20, 0.35) 0%,
            transparent 30%,
            transparent 70%,
            rgba(4, 13, 20, 0.6) 100%
          ),
          linear-gradient(
            to right,
            rgba(4, 13, 20, 0.2) 0%,
            transparent 20%,
            transparent 80%,
            rgba(4, 13, 20, 0.2) 100%
          );
        pointer-events: none;
      }
      .video-overlay-quote {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Exo 2", sans-serif;
        font-style: italic;
        font-size: clamp(1rem, 2.5vw, 1.7rem);
        font-weight: 300;
        color: #ffffff;
        letter-spacing: 3px;
        text-align: center;
        padding: 0 40px;
        text-shadow:
          0 0 40px rgba(76, 175, 125, 0.6),
          0 0 100px rgba(168, 224, 99, 0.2);
        pointer-events: none;
      }
      .vc {
        position: absolute;
        width: 20px;
        height: 20px;
        pointer-events: none;
      }
      .vc.tl {
        top: -1px;
        left: -1px;
        border-top: 2px solid #00cfff;
        border-left: 2px solid #00cfff;
      }
      .vc.tr {
        top: -1px;
        right: -1px;
        border-top: 2px solid #00cfff;
        border-right: 2px solid #00cfff;
      }
      .vc.bl {
        bottom: -1px;
        left: -1px;
        border-bottom: 2px solid #00cfff;
        border-left: 2px solid #00cfff;
      }
      .vc.br {
        bottom: -1px;
        right: -1px;
        border-bottom: 2px solid #00cfff;
        border-right: 2px solid #00cfff;
      }
