      :root {
        --bg: #090f1f;
        --bg-soft: #101a33;
        --surface: #111c38;
        --line: rgba(173, 193, 255, 0.18);

        --text: #eaf0ff;
        --text-soft: #a6b2d6;

        --brand-1: #52e5c5;
        --brand-2: #7dd3fc;

        --cta-1: #ff6a3d;
        --cta-2: #ff9f43;
        --cta-text: #1f1005;

        --ok: #6ee7b7;
        --radius: 18px;
      }

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

      body {
        font-family: 'Manrope', sans-serif;
        background:
          radial-gradient(1000px 500px at 85% -10%, rgba(125, 211, 252, 0.12), transparent 60%),
          radial-gradient(1000px 600px at -10% 100%, rgba(255, 106, 61, 0.08), transparent 55%),
          var(--bg);
        color: var(--text);
        line-height: 1.6;
      }

      .container {
        width: min(1140px, calc(100% - 40px));
        margin: 0 auto;
      }

      .pill {
        display: inline-flex;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(82, 229, 197, 0.14);
        border: 1px solid rgba(82, 229, 197, 0.35);
        color: var(--brand-1);
        font-size: 11px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-weight: 800;
      }

      nav {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(9, 15, 31, 0.86);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(10px);
      }

      .nav-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
      }

      .logo {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }

      .logo-k {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
        display: grid;
        place-items: center;
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: 22px;
        color: #071120;
      }

      .logo-t {
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: 22px;
        letter-spacing: -0.8px;
        color: #f7fbff;
      }

      .btn {
        border: 0;
        border-radius: 12px;
        padding: 12px 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 800;
        font-size: 14px;
        text-decoration: none;
        cursor: pointer;
        transition: 0.2s;
        white-space: nowrap;
      }
      .btn .os-icon {
        width: 16px;
        height: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .btn .os-icon svg {
        width: 16px;
        height: 16px;
        display: block;
      }
      .btn .os-icon.os-mac svg {
        transform: scale(1.1);
        transform-origin: center;
      }

      .btn-primary {
        color: var(--cta-text);
        background: linear-gradient(135deg, var(--cta-1), var(--cta-2));
        box-shadow: 0 12px 30px rgba(255, 106, 61, 0.35);
      }

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

      .btn-ghost {
        color: var(--text);
        border: 1px solid var(--line);
        background: rgba(17, 28, 56, 0.65);
      }

      .btn-ghost:hover {
        border-color: rgba(125, 211, 252, 0.45);
      }
      .download-btn.active-platform {
        color: var(--cta-text);
        background: linear-gradient(135deg, var(--cta-1), var(--cta-2));
        border-color: transparent;
        box-shadow: 0 12px 30px rgba(255, 106, 61, 0.35);
      }

      body.modal-open {
        overflow: hidden;
      }

      .trial-modal {
        position: fixed;
        inset: 0;
        z-index: 300;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      .trial-modal.open {
        display: flex;
      }
      .trial-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(5, 8, 18, 0.78);
        backdrop-filter: blur(3px);
      }
      .trial-modal-dialog {
        position: relative;
        z-index: 1;
        width: min(500px, 100%);
        border-radius: 16px;
        border: 1px solid var(--line);
        background: var(--surface);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
        padding: 24px;
      }
      .trial-modal-close {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: transparent;
        color: var(--text-soft);
        font-size: 18px;
        cursor: pointer;
      }
      .trial-modal-close:hover {
        color: var(--text);
        border-color: rgba(125, 211, 252, 0.45);
      }
      .trial-modal-title {
        font-family: 'Unbounded', sans-serif;
        font-size: 22px;
        line-height: 1.12;
        letter-spacing: -0.7px;
      }
      .trial-modal-sub {
        margin-top: 8px;
        color: var(--text-soft);
        font-size: 14px;
      }
      .trial-form {
        margin-top: 20px;
        display: grid;
        gap: 14px;
      }
      .trial-field label {
        display: block;
        margin-bottom: 6px;
        font-size: 12px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--text-soft);
      }
      .trial-field input {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: rgba(9, 15, 31, 0.95);
        color: var(--text);
        padding: 0 14px;
        font-size: 15px;
        font-family: inherit;
      }
      .trial-field input:focus {
        outline: none;
        border-color: rgba(125, 211, 252, 0.55);
        box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.12);
      }
      .trial-field-error {
        margin-top: 6px;
        min-height: 18px;
        font-size: 12px;
        color: #ffb6b6;
      }
      .trial-form-status {
        min-height: 20px;
        font-size: 13px;
        color: var(--text-soft);
      }
      .trial-form-status.error {
        color: #ffb6b6;
      }
      .trial-form-status.success {
        color: #8ceabc;
      }
      .trial-form-actions {
        display: flex;
        gap: 10px;
      }
      .trial-form-actions .btn {
        width: 100%;
      }

      .hero {
        padding: 72px 0 36px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
        align-items: stretch;
      }

      h1 {
        margin-top: 14px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: clamp(34px, 6vw, 62px);
        line-height: 1.02;
        letter-spacing: -1.4px;
      }

      .grad {
        background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .hero p {
        margin-top: 18px;
        color: var(--text-soft);
        max-width: 580px;
        font-size: 17px;
      }

      .hero-cta {
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .hero-note {
        margin-top: 12px;
        color: #ffc8b4;
        font-weight: 700;
        font-size: 13px;
      }

      .kpi {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 420px;
      }

      .kpi > div {
        border: 1px solid var(--line);
        background: rgba(17, 28, 56, 0.7);
        border-radius: 14px;
        padding: 12px;
      }

      .kpi strong {
        display: block;
        font-size: 20px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
      }

      .kpi span {
        font-size: 12px;
        color: var(--text-soft);
      }

      .hero-visual {
        position: relative;
        z-index: 1;
      }
      .mock-card {
        background: rgba(17, 28, 56, 0.9);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
      }
      .mock-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
      }
      .mock-title {
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: 13px;
        line-height: 1.35;
        color: var(--text);
        letter-spacing: -0.2px;
        max-width: 72%;
      }
      .mock-badge {
        font-size: 10px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--brand-2);
        border: 1px solid rgba(125, 211, 252, 0.45);
        border-radius: 999px;
        padding: 4px 9px;
        white-space: nowrap;
        flex-shrink: 0;
        background: rgba(125, 211, 252, 0.08);
      }
      .mock-inputs {
        margin-bottom: 14px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }
      .mock-chip {
        font-size: 10px;
        color: var(--text-soft);
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 999px;
        padding: 6px 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .mock-compare {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 18px;
      }
      .mock-col {
        border-radius: 12px;
        border: 1px solid var(--line);
        background: var(--surface);
        padding: 14px;
      }
      .mock-col-title {
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-soft);
        margin-bottom: 8px;
      }
      .mock-value {
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: clamp(18px, 2vw, 24px);
        letter-spacing: -0.6px;
        line-height: 1.1;
        white-space: nowrap;
        margin-bottom: 4px;
      }
      .mock-value.win {
        background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .mock-value.loss {
        color: #ffb5b5;
      }
      .mock-col-sub {
        font-size: 11px;
        color: var(--text-soft);
      }
      .mock-bar-wrap {
        margin-bottom: 12px;
      }
      .mock-bar-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        color: var(--text-soft);
        margin-bottom: 6px;
      }
      .mock-bar-track {
        height: 6px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        overflow: hidden;
      }
      .mock-bar-fill {
        height: 100%;
        border-radius: 100px;
        background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      }
      .mock-result {
        margin-top: 2px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
      }
      .mock-result-label {
        font-size: 12px;
        color: var(--text-soft);
      }
      .mock-result-value {
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: 16px;
        white-space: nowrap;
      }
      .mock-note {
        margin-top: 8px;
        font-size: 8px !important;
        color: rgba(166, 178, 214, 0.48) !important;
        line-height: 1.45;
      }

      section.block {
        padding: 54px 0;
      }

      .section-head h2 {
        margin-top: 10px;
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -0.9px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
      }

      .section-head p {
        margin-top: 10px;
        color: var(--text-soft);
      }

      .cards3 {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        align-items: stretch;
      }

      .card {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(16, 26, 51, 0.7);
        padding: 18px;
        display: flex;
        flex-direction: column;
        min-height: 170px;
      }

      .card h3 {
        font-family: 'Unbounded', sans-serif;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: -0.4px;
      }

      .card p {
        margin-top: 8px;
        color: var(--text-soft);
        font-size: 14px;
        margin-bottom: auto;
      }

      .price-wrap {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        align-items: stretch;
      }

      .plan {
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--surface);
        padding: 22px;
        display: flex;
        flex-direction: column;
        min-height: 380px;
      }

      .plan strong {
        font-family: 'Unbounded', sans-serif;
        font-weight: 700;
        display: block;
      }

      .plan .price {
        margin-top: 4px;
        font-size: 44px;
        letter-spacing: -1px;
      }

      .plan .meta {
        color: var(--text-soft);
        font-size: 13px;
      }

      .plan ul {
        margin-top: 12px;
        list-style: none;
        margin-bottom: auto;
      }

      .plan li {
        margin-top: 7px;
        color: #c6d2f4;
        font-size: 14px;
      }

      .plan li::before {
        content: '✓ ';
        color: var(--brand-1);
      }

      .plan.pop {
        border-color: rgba(255, 106, 61, 0.55);
        background: linear-gradient(180deg, rgba(255, 106, 61, 0.08), rgba(17, 28, 56, 1));
      }

      .cta-band {
        margin: 24px 0 36px;
        width: 100%;
        border-radius: 20px;
        padding: 28px;
        border: 1px solid rgba(255, 159, 67, 0.35);
        background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 159, 67, 0.1));
        text-align: center;
      }
      .cta-inner {
        max-width: 820px;
        margin: 0 auto;
      }

      .cta-band h3 {
        font-family: 'Unbounded', sans-serif;
        font-weight: 900;
        font-size: clamp(24px, 4vw, 34px);
        line-height: 1.1;
      }

      .cta-band p {
        margin-top: 8px;
        color: #ffe8db;
      }

      .cta-band .hero-cta {
        margin-top: 16px;
        justify-content: center;
      }

      footer {
        border-top: 1px solid var(--line);
        padding: 22px 0 36px;
        color: var(--text-soft);
        font-size: 13px;
      }

      @media (max-width: 980px) {
        .hero-grid,
        .cards3,
        .price-wrap {
          grid-template-columns: 1fr;
        }

        .kpi {
          grid-template-columns: 1fr;
        }

        .mock-compare,
        .mock-inputs {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        .container {
          width: min(1140px, calc(100% - 24px));
        }

        .nav-wrap {
          min-height: 64px;
        }

        .hero {
          padding-top: 48px;
        }

        .mock-card {
          padding: 16px;
        }

        .mock-title {
          max-width: 100%;
          font-size: 12px;
        }

        .mock-value {
          font-size: 20px;
        }
      }
