
    @font-face {
      font-family: 'Paralucent';
      src: url('assets/font_a68343f7.otf') format('opentype');
      font-weight: 700;
      font-display: swap;
    }

    @font-face {
      font-family: 'Paralucent';
      src: url('assets/font_64afcedb.otf') format('opentype');
      font-weight: 900;
      font-display: swap;
    }

    @font-face {
      font-family: 'AzoSans';
      src: url('assets/font_7f993fe7.ttf') format('truetype');
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: 'AzoSans';
      src: url('assets/font_2180fbf2.ttf') format('truetype');
      font-weight: 500;
      font-display: swap;
    }

    :root {
      --ink: #032530;
      --ink-mid: #034159;
      --teal: #02735E;
      --green: #0CF25D;
      --lime: #DBF227;
      --white: #F5F7F2;
      --gray: rgba(245, 247, 242, 0.55);
      --fd: 'Paralucent', 'AzoSans', sans-serif;
      --fb: 'AzoSans', sans-serif;
      --max-w: 1280px;
      --px: clamp(24px, 5vw, 80px);
      --sy: clamp(80px, 10vw, 140px);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--fb);
      background: var(--ink);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--fd);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 14px 30px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: transform .18s cubic-bezier(.16, 1, .3, 1), box-shadow .18s, background .18s;
    }

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

    .btn-green {
      background: var(--green);
      color: var(--ink);
    }

    .btn-green:hover {
      background: var(--lime);
      box-shadow: 0 12px 40px rgba(12, 242, 93, .25);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(245, 247, 242, .22);
    }

    .btn-ghost:hover {
      border-color: var(--green);
      color: var(--green);
    }

    /* TAG */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--fd);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .tag-module {
      color: var(--green);
      background: rgba(12, 242, 93, .08);
      border: 1px solid rgba(12, 242, 93, .2);
    }

    /* NAV */
    #nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 var(--px);
      background: rgba(3, 37, 48, .85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(12, 242, 93, .09);
      transition: background .3s;
    }

    #nav img.nav-logo {
      height: 44px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--fd);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .5;
      transition: opacity .2s, color .2s;
    }

    .nav-links a:hover {
      opacity: 1;
      color: var(--green);
    }

    @media(max-width:900px) {
      .nav-links {
        display: none;
      }
    }

    /* HERO */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px var(--px) 80px;
      overflow: hidden;
    }

    .h-arc {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .ha1 {
      right: -6%;
      top: -14%;
      width: 70vw;
      height: 70vw;
      border: 1px solid rgba(12, 242, 93, .09);
    }

    .ha2 {
      right: 8%;
      top: 4%;
      width: 44vw;
      height: 44vw;
      border: 1px solid rgba(219, 242, 39, .06);
    }

    .ha3 {
      right: 20%;
      top: 16%;
      width: 26vw;
      height: 26vw;
      border: 1px solid rgba(12, 242, 93, .04);
    }

    .h-glow {
      position: absolute;
      right: 8%;
      top: 8%;
      width: 52vw;
      height: 52vw;
      background: radial-gradient(circle, rgba(2, 115, 94, .18) 0%, transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
    }

    .h-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--fd);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }

    .h-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--green);
    }

    .ss-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(12, 242, 93, .07);
      border: 1px solid rgba(12, 242, 93, .18);
      border-radius: 8px;
      padding: 12px 20px;
      margin-bottom: 32px;
    }

    .ss-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .2;
      }
    }

    .ss-badge-text {
      font-family: var(--fd);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
    }

    .h-h1 {
      font-family: var(--fd);
      font-size: clamp(42px, 5.6vw, 78px);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -.028em;
      margin-bottom: 24px;
    }

    .h-h1 em {
      font-style: normal;
      color: var(--green);
    }

    .h-sub {
      font-size: clamp(16px, 1.4vw, 18px);
      line-height: 1.72;
      color: var(--gray);
      max-width: 470px;
      margin-bottom: 38px;
    }

    .h-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-svg-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orbit-svg {
      width: 100%;
      max-width: 520px;
    }

    @media(max-width:900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-svg-wrap {
        margin-top: 40px;
        opacity: 0.9;
        transform: scale(0.9);
      }
    }

    /* KPI STRIP */
    #kpis {
      background: var(--ink-mid);
      padding: 56px var(--px);
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .kpi-item {
      padding: 0 28px;
      text-align: center;
      border-right: 1px solid rgba(245, 247, 242, .07);
    }

    .kpi-item:last-child {
      border-right: none;
    }

    .kpi-num {
      font-family: var(--fd);
      font-size: clamp(34px, 4vw, 58px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.03em;
      color: var(--green);
    }

    .kpi-unit {
      font-size: .4em;
      font-weight: 700;
      color: var(--lime);
    }

    .kpi-label {
      font-size: 12px;
      color: rgba(245, 247, 242, .42);
      margin-top: 8px;
      line-height: 1.4;
    }

    @media(max-width:700px) {
      .kpi-grid {
        grid-template-columns: 1fr;
      }

      .kpi-item {
        border-right: none;
        border-bottom: 1px solid rgba(245, 247, 242, .07);
        padding: 24px 16px;
      }

      .kpi-item:last-child {
        border-bottom: none;
      }
    }

    /* SOLUTION SECTIONS */
    .sol {
      padding: var(--sy) var(--px);
      overflow: hidden;
    }

    .sol.dark {
      background: var(--ink-mid);
    }

    .sol-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 7vw, 100px);
      align-items: center;
    }

    .sol-grid.flip {
      direction: rtl;
    }

    .sol-grid.flip>* {
      direction: ltr;
    }

    .sol-overline {
      font-family: var(--fd);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(245, 247, 242, .28);
      margin-bottom: 4px;
    }

    .sol-name {
      font-family: var(--fd);
      font-size: clamp(32px, 3.6vw, 56px);
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: -.025em;
      margin-bottom: 6px;
    }

    .acc-g {
      color: var(--green);
    }

    .acc-l {
      color: var(--lime);
    }

    .sol-hook {
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 400;
      color: rgba(245, 247, 242, .65);
      line-height: 1.45;
      font-style: italic;
      margin-bottom: 22px;
      padding-left: 18px;
      border-left: 3px solid var(--green);
    }

    .sol-body {
      font-size: clamp(14px, 1.1vw, 16px);
      line-height: 1.8;
      color: var(--gray);
      margin-bottom: 28px;
    }

    .sol-bullets {
      list-style: none;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sol-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: rgba(245, 247, 242, .8);
      line-height: 1.55;
    }

    .chk {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chk svg {
      width: 11px;
      height: 11px;
    }

    .sol-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }

    .sol-img-wrap {
      position: relative;
      width: 100%;
    }

    .sol-img-wrap img {
      width: 100%;
      border-radius: 16px;
      position: relative;
      z-index: 1;
    }

    .sol-img-wrap::before {
      content: '';
      position: absolute;
      inset: -22%;
      background: radial-gradient(circle, rgba(2, 115, 94, .22) 0%, transparent 68%);
      z-index: 0;
    }

    @media(max-width:880px) {
      .sol-grid {
        grid-template-columns: 1fr;
      }

      .sol-grid.flip {
        direction: ltr;
      }
    }

    .buy-visual {
      width: 100%;
      max-width: 460px;
    }

    /* CTA */
    #cta {
      position: relative;
      overflow: hidden;
      padding: var(--sy) var(--px);
      text-align: center;
      background: linear-gradient(160deg, var(--ink-mid) 0%, var(--ink) 55%);
    }

    .cta-arc,
    .cta-arc2 {
      position: absolute;
      left: 50%;
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-arc {
      bottom: -22%;
      transform: translateX(-50%);
      width: 90vw;
      height: 90vw;
      border: 1px solid rgba(12, 242, 93, .07);
    }

    .cta-arc2 {
      bottom: -38%;
      transform: translateX(-50%);
      width: 125vw;
      height: 125vw;
      border: 1px solid rgba(219, 242, 39, .04);
    }

    .cta-glow {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 60vw;
      height: 55%;
      background: radial-gradient(ellipse, rgba(12, 242, 93, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    .cta-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--fd);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }

    .cta-eyebrow::before,
    .cta-eyebrow::after {
      content: '';
      display: block;
      width: 22px;
      height: 2px;
      background: var(--green);
    }

    #cta h2 {
      font-family: var(--fd);
      font-size: clamp(30px, 4vw, 58px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -.025em;
      margin-bottom: 18px;
    }

    #cta h2 em {
      font-style: normal;
      color: var(--green);
    }

    #cta p {
      font-size: 17px;
      color: var(--gray);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FOOTER */
    footer {
      background: #010F14;
      padding: 40px var(--px);
      border-top: 1px solid rgba(12, 242, 93, .07);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    footer img {
      height: 38px;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 12px;
      color: rgba(245, 247, 242, .3);
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(245, 247, 242, .2);
    }

    /* ANIMATION INITIAL STATES */
    .js-fade {
      opacity: 0;
      transform: translateY(34px);
    }

    .js-left {
      opacity: 0;
      transform: translateX(-50px);
    }

    .js-right {
      opacity: 0;
      transform: translateX(50px);
    }

    /* FORM CTA */
    .lead-form-wrapper {
      max-width: 680px;
      margin: 40px auto 0;
      background: white;
      padding: 40px;
      border-radius: 12px;
      color: var(--ink);
      text-align: left;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      font-family: var(--fb);
    }
    
    .lead-form-wrapper .form-group {
      margin-bottom: 20px;
    }
    
    .lead-form-wrapper label {
      display: block;
      font-weight: 500;
      margin-bottom: 8px;
    }
    
    .lead-form-wrapper input[type="text"],
    .lead-form-wrapper input[type="email"],
    .lead-form-wrapper input[type="tel"] {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }

    .lead-form-wrapper input:focus {
      border-color: var(--ink);
    }
    
    .lead-form-wrapper input::placeholder {
      color: #999;
    }
    
    .form-row-check {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .optin-group {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 500;
    }
    
    .optin-group input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
    }
    
    .form-row-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .privacy-notice {
      font-size: 13px;
      color: #666;
    }
    
    .privacy-notice a {
      color: var(--ink-mid);
      text-decoration: underline;
      font-weight: 500;
    }
    
    .lead-form-wrapper .btn-green {
      flex-shrink: 0;
      font-size: 15px;
      padding: 16px 36px;
      width: auto;
    }

    @media (max-width: 600px) {
      .lead-form-wrapper { padding: 24px 20px; }
      .form-row-check, .form-row-action { flex-direction: column; align-items: flex-start; }
      .lead-form-wrapper .btn-green { width: 100%; justify-content: center; }
    }

    /* MODAL PRIVACY */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-box {
      background: var(--white);
      color: var(--ink);
      width: 90%;
      max-width: 700px;
      max-height: 85vh;
      border-radius: 12px;
      padding: 40px;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s ease;
      box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    }
    
    .modal-overlay.active .modal-box {
      transform: translateY(0);
    }
    
    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      font-size: 28px;
      line-height: 1;
      color: var(--ink);
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.2s;
    }
    
    .modal-close:hover {
      opacity: 1;
    }
    
    .modal-box h3 {
      font-family: var(--fd);
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    
    .modal-box p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
      color: #333;
    }
    
    .modal-box h4 {
      font-family: var(--fb);
      font-size: 16px;
      font-weight: 700;
      margin-top: 24px;
      margin-bottom: 8px;
    }
  
