      :root {
        color-scheme: dark;
        --bg: #0c1116;
        --ink: #e7f0ff;
        --muted: #a7b3c1;
        --accent: #6fe6be;
        --accent-strong: #45c7f0;
        --border: rgba(255, 255, 255, 0.12);
        --shadow: 0 24px 60px rgba(5, 8, 12, 0.65);
        --lift: 10px 10px 0 rgba(6, 9, 13, 0.6);
        --radius-lg: 20px;
        --radius-md: 14px;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "Space Grotesk", system-ui, sans-serif;
        color: var(--ink);
        background-color: var(--bg);
        background-image: radial-gradient(
            circle at 15% 15%,
            rgba(111, 230, 190, 0.18),
            transparent 45%
          ),
          radial-gradient(circle at 90% 10%, rgba(247, 178, 103, 0.2), transparent 40%),
          repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 6px
          ),
          repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 6px
          );
        min-height: 100vh;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .page {
        position: relative;
        overflow: hidden;
      }

      .page::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 20%, rgba(111, 230, 190, 0.12), transparent 55%),
          radial-gradient(circle at 10% 80%, rgba(247, 178, 103, 0.14), transparent 55%);
        pointer-events: none;
      }

      .page::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(255, 255, 255, 0.04) 0,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px,
          transparent 4px
        );
        opacity: 0.08;
        mix-blend-mode: soft-light;
        pointer-events: none;
      }

      .orb {
        position: absolute;
        border-radius: 50%;
        opacity: 0.5;
        z-index: 0;
        mix-blend-mode: screen;
        animation: float 12s ease-in-out infinite;
      }

      .orb.one {
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(111, 230, 190, 0.5), transparent 70%);
        top: -140px;
        left: -60px;
        animation-delay: -2s;
      }

      .orb.two {
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(247, 178, 103, 0.5), transparent 70%);
        bottom: 60px;
        right: -100px;
        animation-delay: -6s;
      }

      .grid {
        width: min(1200px, 92vw);
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 28px 0 10px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        letter-spacing: 0.6px;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        text-transform: uppercase;
      }

      .brand-mark {
        width: 63px;
        height: 63px;
        border-radius: 0;
        display: grid;
        place-items: center;
        font-weight: 700;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      .brand-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: saturate(0.8) brightness(1.05) contrast(1.05)
          drop-shadow(0 8px 18px rgba(5, 8, 12, 0.6))
          drop-shadow(0 0 16px rgba(111, 230, 190, 0.2));
      }

      .nav-links {
        display: flex;
        gap: 22px;
        font-size: 0.85rem;
        color: var(--muted);
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }

      .nav-links a {
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px dashed transparent;
        transition: color 0.2s ease, background 0.2s ease;
      }

      .nav-links a:hover {
        color: var(--ink);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
      }

      .hero {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 44px;
        align-items: center;
        padding: 46px 0 70px;
      }

      .eyebrow {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.72rem;
        color: var(--accent);
        font-weight: 600;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.4px;
      }

      h1 {
        font-size: clamp(2.3rem, 3.4vw, 3.8rem);
        margin: 14px 0 18px;
        line-height: 1.25;
      }

      .lead {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--muted);
        margin-bottom: 26px;
      }

      .lead-tight {
        margin-top: 12px;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
      }

      .btn {
        border: none;
        cursor: pointer;
        padding: 14px 22px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.88rem;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
          border-color 0.2s ease;
      }

      .btn:active {
        transform: translate(2px, 2px);
        box-shadow: 0 4px 0 rgba(5, 8, 12, 0.6);
      }

      .btn:hover {
        transform: translateY(-2px);
      }

      .btn:disabled {
        cursor: not-allowed;
        opacity: 0.65;
        transform: none;
        box-shadow: none;
      }

      .btn-primary {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
        color: #081015;
        border: 2px solid #0b0f13;
        box-shadow: 0 8px 0 rgba(5, 8, 12, 0.7), 0 16px 36px rgba(53, 200, 164, 0.25);
      }

      .btn-primary:hover {
        box-shadow: 0 10px 0 rgba(5, 8, 12, 0.7), 0 20px 40px rgba(53, 200, 164, 0.35);
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.06);
        color: var(--ink);
        border: 2px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 0 rgba(5, 8, 12, 0.6);
      }

      .btn-secondary:hover {
        border-color: rgba(111, 230, 190, 0.5);
        box-shadow: 0 10px 0 rgba(5, 8, 12, 0.6), 0 18px 30px rgba(111, 230, 190, 0.18);
      }

      .trust-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
        margin-top: 26px;
      }

      .trust-card {
        background: rgba(18, 25, 32, 0.65);
        border-radius: 14px;
        padding: 14px 16px;
        border: 1px dashed var(--border);
        box-shadow: 4px 4px 0 rgba(6, 9, 13, 0.5);
        font-size: 0.9rem;
        color: var(--muted);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      }

      .trust-card:hover {
        transform: translateY(-4px);
        border-color: rgba(111, 230, 190, 0.5);
        box-shadow: 6px 6px 0 rgba(6, 9, 13, 0.6), 0 12px 24px rgba(111, 230, 190, 0.16);
      }

      .product-card {
        background: linear-gradient(135deg, rgba(25, 34, 44, 0.95), rgba(15, 21, 28, 0.98));
        border-radius: var(--radius-lg);
        box-shadow: var(--lift), var(--shadow);
        padding: 28px;
        border: 1px dashed var(--border);
        display: grid;
        gap: 20px;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      }

      .product-card:hover {
        transform: translateY(-6px);
        border-color: rgba(69, 199, 240, 0.45);
        box-shadow: 14px 14px 0 rgba(6, 9, 13, 0.6), 0 30px 70px rgba(5, 8, 12, 0.7);
      }

      .price {
        font-size: 2.2rem;
        font-weight: 700;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      .price span {
        font-size: 1rem;
        color: var(--muted);
        font-weight: 500;
      }

      .status {
        font-size: 0.95rem;
        color: var(--muted);
        min-height: 24px;
      }

      .license-box {
        display: none;
        background: rgba(10, 16, 22, 0.6);
        border-radius: 12px;
        padding: 16px;
        font-size: 0.9rem;
        border: 1px dashed rgba(255, 255, 255, 0.3);
      }

      .license-box pre {
        margin: 10px 0 0;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        background: #0e141b;
        padding: 12px;
        border-radius: 10px;
        color: #dff7f1;
      }


      .sections {
        display: grid;
        gap: 28px;
        padding-bottom: 90px;
      }

      .section-card {
        background: linear-gradient(135deg, rgba(20, 28, 36, 0.85), rgba(14, 20, 27, 0.95));
        border-radius: var(--radius-md);
        padding: 26px;
        border: 1px dashed var(--border);
        box-shadow: var(--lift);
        backdrop-filter: blur(6px);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      }

      .section-card:hover {
        transform: translateY(-6px);
        border-color: rgba(111, 230, 190, 0.45);
        box-shadow: 14px 14px 0 rgba(6, 9, 13, 0.6), 0 24px 60px rgba(6, 9, 13, 0.6);
      }

      .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 18px;
      }

      .section-title {
        font-weight: 700;
      }

      .section-subtitle {
        color: var(--muted);
        margin: 6px 0 0;
      }

      .pill {
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(111, 230, 190, 0.12);
        color: #b6f0e2;
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
        border: 1px dashed rgba(111, 230, 190, 0.35);
        box-shadow: 2px 2px 0 rgba(6, 9, 13, 0.55);
      }

      .plan-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
      }

      .plan {
        border-radius: 16px;
        padding: 18px;
        background: linear-gradient(135deg, rgba(27, 38, 50, 0.95), rgba(20, 28, 36, 0.98));
        border: 1px dashed var(--border);
        box-shadow: 6px 6px 0 rgba(6, 9, 13, 0.5);
        display: grid;
        gap: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      }

      .plan:hover {
        transform: translateY(-5px);
        border-color: rgba(111, 230, 190, 0.5);
        box-shadow: 8px 8px 0 rgba(6, 9, 13, 0.6), 0 18px 30px rgba(6, 9, 13, 0.45);
      }

      .plan .plan-title {
        font-size: 1.1rem;
        font-weight: 700;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      .plan .plan-tag {
        font-size: 0.8rem;
        color: var(--muted);
      }

      .list {
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
        color: var(--muted);
      }

      .list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
      }

      .list span {
        display: inline-grid;
        place-items: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(111, 230, 190, 0.16);
        color: #d9fff2;
        font-size: 0.75rem;
        font-weight: 700;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      .feature-table {
        display: grid;
        gap: 12px;
      }

      .feature-row {
        display: grid;
        grid-template-columns: 1.1fr 1.4fr 1.4fr;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px dashed var(--border);
        background: linear-gradient(135deg, rgba(25, 34, 44, 0.92), rgba(20, 28, 36, 0.98));
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .feature-row:hover:not(.feature-head) {
        transform: translateY(-4px);
        border-color: rgba(69, 199, 240, 0.5);
        box-shadow: 6px 6px 0 rgba(6, 9, 13, 0.5);
      }

      .feature-row.feature-head {
        background: rgba(24, 32, 41, 0.9);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.7rem;
        color: var(--muted);
        font-weight: 600;
        font-family: "Space Mono", "Space Grotesk", sans-serif;
      }

      .feature-row div {
        font-size: 0.92rem;
        color: var(--muted);
        line-height: 1.5;
      }

      .feature-row div:first-child {
        color: var(--ink);
        font-weight: 600;
      }

      .feature-pro {
        color: #c9fff1;
      }


      .legal-intro {
        color: var(--muted);
        margin: 10px 0 16px;
        line-height: 1.6;
      }

      .legal-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: var(--muted);
      }

      .legal-list li {
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(14, 20, 27, 0.7);
        border: 1px dashed rgba(255, 255, 255, 0.12);
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .legal-list li:hover {
        transform: translateY(-3px);
        border-color: rgba(247, 178, 103, 0.45);
        box-shadow: 6px 6px 0 rgba(6, 9, 13, 0.5);
      }

      .legal-list strong {
        color: var(--ink);
      }

      .footer {
        padding: 30px 0 40px;
        color: var(--muted);
        font-size: 0.9rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 14px;
      }

      .hero > div,
      .product-card {
        animation: rise 0.6s ease both;
      }

      .hero > div {
        animation-delay: 0.05s;
      }

      .product-card {
        animation-delay: 0.12s;
      }

      .sections .section-card {
        animation: rise 0.6s ease both;
      }

      .sections .section-card:nth-child(2) {
        animation-delay: 0.08s;
      }

      .sections .section-card:nth-child(3) {
        animation-delay: 0.16s;
      }

      @keyframes rise {
        from {
          opacity: 0;
          transform: translateY(12px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(18px);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation: none !important;
          transition: none !important;
        }
      }

      @media (max-width: 980px) {
        .feature-row {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 720px) {
        .nav-links {
          display: none;
        }

        .hero {
          padding-top: 24px;
        }

        .section-header {
          flex-direction: column;
          align-items: flex-start;
        }
      }
