:root {
      --navy: #0a0f24;
      --navy-2: #050814;
      --cyan: #2ed9ff;
      --lime: #a5ff0a;
      --light: #f5f7fa;
      --white: #ffffff;
      --muted: #c6cedc;
      --soft: #8f9bb7;
      --grey: #5b646a;
      --danger: #ff4b6a;
      --warning: #ffd166;

      --panel: rgba(10, 17, 47, 0.86);
      --panel-strong: rgba(8, 15, 39, 0.96);
      --line: rgba(102, 129, 187, 0.42);
      --line-strong: rgba(46, 217, 255, 0.32);
      --shadow: 0 24px 65px rgba(0, 0, 0, 0.52);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 18% 0%, rgba(46, 217, 255, 0.13), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(165, 255, 10, 0.06), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(46, 217, 255, 0.08), transparent 35%),
        linear-gradient(180deg, #10183a 0%, var(--navy-2) 58%, #03050e 100%);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.22;
      background-image:
        linear-gradient(135deg, transparent 0 24%, rgba(46, 217, 255, 0.18) 24.2% 24.6%, transparent 24.8% 100%),
        linear-gradient(0deg, transparent 0 74%, rgba(46, 217, 255, 0.16) 74.2% 74.55%, transparent 74.7% 100%);
      background-size: 320px 320px, 480px 280px;
      background-position: -80px 80px, 120px -30px;
      mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }

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

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

    .page {
      position: relative;
      max-width: 1160px;
      margin: 0 auto;
      padding: 24px 18px 64px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 0 44px;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .logo-mark {
      display: grid;
      grid-template-columns: repeat(2, 10px);
      grid-template-rows: repeat(2, 10px);
      gap: 4px;
      padding: 10px;
      border-radius: 12px;
      background: rgba(46, 217, 255, 0.08);
      border: 1px solid rgba(46, 217, 255, 0.18);
    }

    .logo-square {
      border-radius: 3px;
      background: var(--cyan);
    }

    .logo-square:nth-child(3) {
      background: var(--lime);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #c2cad5;
      font-size: 0.92rem;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      border: 1px solid rgba(46, 217, 255, 0.4);
      border-radius: 999px;
      padding: 8px 13px;
      color: var(--white);
      background: rgba(46, 217, 255, 0.06);
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(46, 217, 255, 0.34);
      border-radius: 12px;
      background: rgba(46, 217, 255, 0.06);
      color: var(--white);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--white);
      transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .nav.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
      gap: 42px;
      align-items: center;
      padding: 20px 0 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cyan);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan), var(--lime));
      box-shadow: 0 0 18px rgba(46, 217, 255, 0.5);
    }

    h1 {
      font-size: clamp(2rem, 4vw, 4.1rem);
      line-height: 1.03;
      letter-spacing: -0.055em;
      margin-bottom: 20px;
      max-width: 12.5ch;
    }

    .accent-cyan {
      color: var(--cyan);
      text-shadow: 0 0 26px rgba(46, 217, 255, 0.18);
    }

    .accent-lime {
      color: var(--lime);
      text-shadow: 0 0 24px rgba(165, 255, 10, 0.14);
    }

    .hero-lede {
      font-size: clamp(1rem, 1.4vw, 1.22rem);
      color: #d7deef;
      max-width: 660px;
      margin-bottom: 16px;
      line-height: 1.55;
    }

    .hero-proof {
      color: #9ca8c4;
      font-size: 0.98rem;
      max-width: 650px;
      margin-bottom: 28px;
    }

    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 800;
      font-size: 0.95rem;
      transition: transform 0.14s ease, border-color 0.18s ease, filter 0.18s ease, background 0.18s ease;
    }

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

    .btn-primary {
      color: #06111d;
      background: linear-gradient(135deg, var(--cyan), var(--lime));
      box-shadow: 0 15px 30px rgba(46, 217, 255, 0.12);
    }

    .btn-primary:hover {
      filter: brightness(1.06);
    }

    .btn-ghost {
      border-color: rgba(199, 211, 227, 0.36);
      color: #e5ebf7;
      background: rgba(255, 255, 255, 0.02);
    }

    .btn-ghost:hover {
      border-color: rgba(46, 217, 255, 0.8);
    }

    .hero-note {
      margin-top: 16px;
      color: #8f9bb7;
      font-size: 0.84rem;
    }

    .hero-card {
      position: relative;
      border: 1px solid rgba(102, 129, 187, 0.55);
      border-radius: 26px;
      padding: 22px;
      background:
        radial-gradient(circle at top left, rgba(46, 217, 255, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(165, 255, 10, 0.07), transparent 28%),
        rgba(6, 12, 32, 0.9);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      right: -70px;
      bottom: -90px;
      background: radial-gradient(circle, rgba(46,217,255,0.16), transparent 66%);
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(165, 255, 10, 0.35);
      color: #dfffc3;
      background: rgba(165, 255, 10, 0.06);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--lime);
      box-shadow: 0 0 18px rgba(165, 255, 10, 0.85);
    }

    .portal-title {
      position: relative;
      z-index: 1;
      margin-bottom: 18px;
    }

    .portal-title small {
      display: block;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.72rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .portal-title h2 {
      font-size: 1.4rem;
      line-height: 1.2;
      margin-bottom: 8px;
      letter-spacing: -0.025em;
    }

    .portal-title p {
      color: #bac6dc;
      font-size: 0.92rem;
    }

    .decision-box {
      position: relative;
      z-index: 1;
      border: 1px solid rgba(102, 129, 187, 0.48);
      background: rgba(5, 9, 24, 0.72);
      border-radius: 18px;
      padding: 15px;
      margin-top: 16px;
    }

    .decision-question {
      color: #e7edf8;
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .decision-result {
      display: grid;
      gap: 8px;
    }

    .decision-row {
      display: grid;
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 10px;
      font-size: 0.82rem;
      align-items: start;
    }

    .decision-row strong {
      color: var(--cyan);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .decision-row span {
      color: #cbd5ea;
    }

    .restricted {
      color: #ffd6df !important;
      font-weight: 800;
    }

    section {
      padding: 56px 0;
    }

    .section-head {
      max-width: 800px;
      margin-bottom: 24px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-label {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.76rem;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.45rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1rem;
      max-width: 780px;
    }

    .problem-grid,
    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 24px;
      align-items: stretch;
    }

    .card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
    }

    .card.highlight {
      border-color: rgba(46, 217, 255, 0.58);
      background:
        radial-gradient(circle at top right, rgba(46, 217, 255, 0.11), transparent 34%),
        var(--panel-strong);
    }

    .card h3 {
      font-size: 1.14rem;
      margin-bottom: 10px;
      letter-spacing: -0.012em;
    }

    .card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .check-list {
      list-style: none;
      margin-top: 14px;
      display: grid;
      gap: 9px;
      color: #d6deed;
      font-size: 0.94rem;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 8px;
      align-items: start;
    }

    .check-list li::before {
      content: "";
      margin-top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--cyan), var(--lime));
      box-shadow: 0 0 14px rgba(46, 217, 255, 0.35);
    }

    .quote-line {
      margin-top: 16px;
      border-left: 3px solid var(--lime);
      padding: 12px 0 12px 15px;
      color: #f0f5ff;
      font-size: 1.04rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .control-panel {
      border: 1px solid rgba(46, 217, 255, 0.34);
      border-radius: 28px;
      padding: 26px;
      background:
        radial-gradient(circle at top left, rgba(46, 217, 255, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(165, 255, 10, 0.08), transparent 28%),
        rgba(7, 14, 36, 0.93);
      box-shadow: var(--shadow);
    }

    .tool-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .tool {
      padding: 14px;
      border: 1px solid rgba(102, 129, 187, 0.46);
      border-radius: 16px;
      background: rgba(5, 9, 24, 0.68);
      min-height: 112px;
    }

    .tool strong {
      display: block;
      color: var(--white);
      font-size: 0.94rem;
      margin-bottom: 5px;
    }

    .tool span {
      color: #9aa6c1;
      font-size: 0.8rem;
      line-height: 1.45;
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .mini-card {
      border: 1px solid rgba(102, 129, 187, 0.45);
      background: rgba(8, 15, 39, 0.86);
      border-radius: 20px;
      padding: 18px;
      min-height: 166px;
    }

    .icon {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      margin-bottom: 12px;
      background: rgba(46, 217, 255, 0.09);
      border: 1px solid rgba(46, 217, 255, 0.22);
      color: var(--cyan);
      font-weight: 900;
    }

    .mini-card h3 {
      font-size: 1.02rem;
      margin-bottom: 7px;
    }

    .mini-card p {
      color: #c5cde0;
      font-size: 0.9rem;
    }

    .starter {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: 22px;
      align-items: stretch;
    }

    .starter-card {
      border: 1px solid rgba(165, 255, 10, 0.36);
      border-radius: 26px;
      padding: 26px;
      background:
        radial-gradient(circle at top left, rgba(165, 255, 10, 0.09), transparent 32%),
        rgba(8, 15, 39, 0.94);
      box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32);
    }

    .starter-card h3 {
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .starter-card p {
      color: #c9d3e6;
      margin-bottom: 18px;
    }

    .deliverables {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .deliverable {
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(102, 129, 187, 0.42);
      background: rgba(5, 9, 24, 0.52);
    }

    .deliverable strong {
      display: block;
      margin-bottom: 4px;
      color: #fff;
      font-size: 0.92rem;
    }

    .deliverable span {
      display: block;
      color: #aeb9d0;
      font-size: 0.82rem;
    }

    .offers {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .offer {
      position: relative;
      border: 1px solid rgba(102, 129, 187, 0.52);
      border-radius: 24px;
      padding: 24px;
      background: rgba(7, 14, 36, 0.9);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .offer.lead {
      border-color: rgba(46, 217, 255, 0.72);
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
    }

    .offer::after {
      content: "";
      position: absolute;
      inset: auto -80px -120px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46, 217, 255, 0.12), transparent 65%);
    }

    .offer-label {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.72rem;
      font-weight: 900;
      margin-bottom: 9px;
    }

    .offer h3 {
      font-size: 1.55rem;
      line-height: 1.12;
      margin-bottom: 10px;
      letter-spacing: -0.035em;
      position: relative;
      z-index: 1;
    }

    .offer p,
    .offer ul {
      position: relative;
      z-index: 1;
    }

    .offer p {
      color: #c9d3e6;
      margin-bottom: 14px;
    }

    .offer .check-list {
      flex: 1;
      align-content: start;
      margin-bottom: 30px;
    }

    .offer .btn {
      position: relative;
      z-index: 1;
      margin-top: auto;
      align-self: flex-start;
    }

    .simple-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 12px;
      color: #d6deed;
      font-size: 0.94rem;
    }

    .simple-list li {
      padding: 10px 12px;
      border: 1px solid rgba(102, 129, 187, 0.33);
      background: rgba(5, 9, 24, 0.46);
      border-radius: 14px;
    }

    .cta-band {
      margin-top: 10px;
      border: 1px solid rgba(46, 217, 255, 0.32);
      border-radius: 28px;
      padding: 30px;
      background:
        radial-gradient(circle at top left, rgba(46, 217, 255, 0.13), transparent 36%),
        radial-gradient(circle at bottom right, rgba(165, 255, 10, 0.09), transparent 30%),
        rgba(7, 14, 36, 0.93);
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 26px;
      align-items: start;
    }

    .cta-band h2 {
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .cta-band p {
      color: var(--muted);
    }

    form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .field,
    textarea,
    select {
      width: 100%;
      padding: 12px 13px;
      border-radius: 13px;
      border: 1px solid rgba(126, 150, 206, 0.7);
      background: rgba(3, 8, 26, 0.92);
      color: #f2f5ff;
      font-family: inherit;
      font-size: 0.92rem;
      outline: none;
    }

    .field:focus,
    textarea:focus,
    select:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(46, 217, 255, 0.08);
    }

    textarea,
    .full {
      grid-column: 1 / -1;
    }

    .form-foot {
      grid-column: 1 / -1;
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 2px;
    }

    .form-note {
      color: #a3aec5;
      font-size: 0.78rem;
    }

    footer {
      border-top: 1px solid rgba(88, 111, 164, 0.55);
      margin-top: 46px;
      padding-top: 18px;
      color: #7f8aa5;
      font-size: 0.82rem;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .disclaimer {
      margin-top: 12px;
      color: #8d98b3;
      font-size: 0.82rem;
    }

    @media (max-width: 980px) {
      .hero,
      .problem-grid,
      .split-grid,
      .starter,
      .cta-band {
        grid-template-columns: minmax(0, 1fr);
      }

      h1 {
        max-width: 16ch;
      }

      .how-grid,
      .tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .page {
        padding-inline: 16px;
      }

      .nav {
        position: relative;
        padding-bottom: 28px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 58px;
        right: 0;
        width: min(280px, calc(100vw - 32px));
        padding: 12px;
        border: 1px solid rgba(102, 129, 187, 0.55);
        border-radius: 18px;
        background: rgba(5, 8, 20, 0.98);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
        z-index: 20;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }

      .nav.nav-open .nav-links {
        display: flex;
      }

      .nav-links a {
        padding: 10px 12px;
        border-radius: 12px;
      }

      .nav-links a:hover {
        background: rgba(46, 217, 255, 0.07);
      }

      .nav-cta {
        text-align: center;
        margin-top: 4px;
      }

      .hero {
        gap: 26px;
      }

      h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
        max-width: 14ch;
      }

      .offers,
      .how-grid,
      .tool-grid,
      .deliverables {
        grid-template-columns: minmax(0, 1fr);
      }

      form {
        grid-template-columns: minmax(0, 1fr);
      }

      section {
        padding: 42px 0;
      }

      .decision-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 2px;
      }
    }
