:root {
      --g: #25cc91;
      --g-dark: #1aa876;
      --g-light: #e8faf4;
      --p: #b770ff;
      --p-light: #f5ebff;
      --purple-color: #a855f7;
      --ink: #222;
      --ink-60: rgba(17, 17, 17, 0.6);
      --ink-30: rgba(17, 17, 17, 0.3);
      --ink-08: rgba(17, 17, 17, 0.08);
      --ink-04: rgba(17, 17, 17, 0.04);
      --white: #ffffff;
      --paper: #f9f9f9;
      --border: rgba(17, 17, 17, 0.12);
      --r: 8px;
      --r-lg: 14px;
      --r-pill: 100px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    .header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 16px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--ink);
      font-weight: 700;
      font-size: 17px;
    }

    .header-icon {
      width: 32px;
      height: 32px;
      background: var(--g);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-icon svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .header-back {
      font-size: 14px;
      color: var(--ink-60);
      text-decoration: none;
      font-weight: 500;
      transition: color .15s;
    }

    .header-back:hover { color: var(--ink); }

    /* ── LAYOUT ── */
    .section-wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--g-dark);
      margin-bottom: 12px;
    }

    .section-h {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .section-tagline {
      font-size: 17px;
      font-weight: 700;
      color: var(--purple-color);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .section-sub {
      font-size: 15px;
      color: var(--ink-60);
      line-height: 1.7;
      max-width: 540px;
      margin-bottom: 40px;
    }

    /* ── HERO ── */
    .hero-section {
      background: var(--white);
      padding: 80px 0 72px;
    }

    .hero-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--g-light);
      color: var(--g-dark);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--r-pill);
      margin-bottom: 20px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .hero-badge-dot {
      width: 5px;
      height: 5px;
      background: var(--g);
      border-radius: 50%;
    }

    .hero-title {
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .hero-title-purple {
      color: var(--purple-color);
    }

    .hero-sub {
      font-size: 15px;
      color: var(--ink-60);
      line-height: 1.75;
      max-width: 540px;
      margin-top: 16px;
      margin-bottom: 32px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 8px;
    }

    .hero-stat {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 22px 20px;
      text-align: center;
    }

    .hero-stat-value {
      font-size: 36px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.02em;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--ink-60);
      margin-top: 6px;
    }

    /* ── STEPS ── */
    .steps-section {
      background: var(--paper);
      padding: 72px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 40px;
    }

    .step-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 22px 20px;
    }

    .step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--g-light);
      color: var(--g-dark);
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .step-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .step-desc {
      font-size: 13.5px;
      color: var(--ink-60);
      line-height: 1.6;
    }

    /* ── CONDITIONS ── */
    .conditions-section {
      padding: 80px 0;
      background: var(--white);
    }

    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 40px;
    }

    .condition-card {
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      background: var(--white);
      transition: border-color .2s, box-shadow .2s;
    }

    .condition-card:hover {
      border-color: var(--g);
      box-shadow: 0 4px 20px rgba(37, 204, 145, .12);
    }

    .condition-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .condition-desc {
      font-size: 13.5px;
      color: var(--ink-60);
      line-height: 1.6;
    }

    /* ── PAYOUTS ── */
    .payouts-section {
      background: var(--paper);
      padding: 80px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .payout-list {
      margin-top: 40px;
      max-width: 640px;
    }

    .payout-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

    .payout-item:first-child {
      border-top: 1px solid var(--border);
    }

    .payout-label {
      font-size: 14px;
      color: var(--ink-60);
    }

    .payout-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      text-align: right;
    }

    /* ── EARNINGS ── */
    .earnings-section {
      padding: 80px 0;
      background: var(--white);
    }

    .earnings-table-wrap {
      margin-top: 40px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .earnings-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 540px;
    }

    .earnings-table th {
      text-align: left;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--ink-30);
      padding: 12px 16px;
      border-bottom: 1.5px solid var(--border);
    }

    .earnings-table td {
      padding: 16px;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--ink-60);
    }

    .earnings-table tbody tr:hover {
      background: var(--ink-04);
    }

    .earnings-table .plan-name {
      font-weight: 700;
      color: var(--ink);
    }

    .earnings-table .amount {
      font-weight: 800;
      color: var(--g-dark);
    }

    .earnings-note {
      margin-top: 16px;
      font-size: 13px;
      color: var(--ink-30);
    }

    /* ── CTA ── */
    .cta-section {
      background: var(--white);
      padding: 88px 56px;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .cta-section h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 10px;
      letter-spacing: -.02em;
      line-height: 1.1;
    }

    .cta-section .tagline {
      font-size: 18px;
      font-weight: 700;
      color: var(--purple-color);
      margin-bottom: 12px;
    }

    .cta-section .cta-sub {
      font-size: 15px;
      color: var(--ink-60);
      margin-bottom: 30px;
    }

    .btn-green-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--g);
      color: var(--white);
      padding: 14px 36px;
      border-radius: var(--r-pill);
      font-size: 15px;
      font-weight: 700;
      font-family: 'Noto Sans', sans-serif;
      border: none;
      cursor: pointer;
      transition: background .18s, transform .15s;
      text-decoration: none;
    }

    .btn-green-cta:hover {
      background: var(--g-dark);
      transform: translateY(-1px);
    }

    .cta-terms {
      font-size: 12.5px;
      color: var(--ink-30);
      margin-top: 14px;
    }

    .cta-terms a {
      color: var(--ink-60);
      text-decoration: underline;
    }

    .cta-terms a:hover {
      color: var(--ink);
    }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: #fff;
      border-radius: 18px;
      padding: 28px 24px;
      width: 100%;
      max-width: 380px;
      position: relative;
      animation: slideUp 0.25s ease-out;
    }

    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 22px;
      color: #bbb;
      cursor: pointer;
      line-height: 1;
      background: none;
      border: none;
    }

    .modal-close:hover {
      color: var(--ink);
    }

    .modal-icon-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 16px;
    }

    .modal-icon {
      width: 56px;
      height: 56px;
      background: var(--g-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-title {
      font-size: 19px;
      font-weight: 800;
      color: #111;
      text-align: center;
      line-height: 1.3;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .modal-text {
      font-size: 13px;
      color: #666;
      text-align: center;
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .modal-input {
      width: 100%;
      border: 1.5px solid #e0e0e0;
      border-radius: 100px;
      padding: 12px 18px;
      font-size: 14px;
      font-family: 'Noto Sans', sans-serif;
      margin-bottom: 10px;
      outline: none;
      transition: border-color .15s;
    }

    .modal-input:focus {
      border-color: var(--g);
    }

    .modal-btn {
      width: 100%;
      background: var(--g);
      color: #fff;
      border: none;
      padding: 13px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Noto Sans', sans-serif;
      cursor: pointer;
      transition: background .15s;
    }

    .modal-btn:hover {
      background: var(--g-dark);
    }

    .modal-terms {
      font-size: 12px;
      color: #999;
      text-align: center;
      margin-top: 12px;
    }

    .modal-terms a {
      color: #666;
      text-decoration: underline;
    }

    .modal-terms a:hover {
      color: var(--ink);
    }

    .modal-field {
      margin-bottom: 14px;
    }

    .modal-label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .modal-hint {
      font-size: 11.5px;
      color: #999;
      line-height: 1.45;
      margin-top: 4px;
    }

    .modal-promo-preview {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      padding: 6px 12px;
      background: var(--p-light);
      border-radius: var(--r);
      font-size: 13px;
      font-weight: 700;
      color: var(--purple-color);
      letter-spacing: .04em;
      transition: opacity .2s;
    }

    .modal-checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 16px;
      margin-bottom: 16px;
    }

    .modal-checkbox-row input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 1px;
      flex-shrink: 0;
      accent-color: var(--g);
      cursor: pointer;
    }

    .modal-checkbox-label {
      font-size: 12px;
      color: #666;
      line-height: 1.5;
    }

    .modal-checkbox-label a {
      color: var(--ink);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .modal-checkbox-label a:hover {
      color: var(--g-dark);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 20px 56px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    footer p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 1);
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 1);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-inner { animation: fadeUp .5s ease both; }

    /* ── MOBILE ── */
    @media (max-width: 767px) {
      .header {
        padding: 14px 20px;
      }

      .hero-section {
        padding: 56px 0 48px;
      }

      .hero-inner,
      .section-wrap {
        padding: 0 20px;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-stat-value {
        font-size: 28px;
      }

      .steps-section,
      .conditions-section,
      .payouts-section,
      .earnings-section {
        padding: 56px 0;
      }

      .steps-grid,
      .conditions-grid {
        grid-template-columns: 1fr;
      }

      .payout-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 14px 0;
      }

      .payout-value {
        text-align: left;
      }

      .cta-section {
        padding: 56px 20px;
      }

      footer {
        padding: 20px;
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

/* Partner form states */
.partner-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.modal-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.modal-status.is-visible { display: block; }
.modal-status.is-success { background: var(--g-light); color: var(--g-dark); }
.modal-status.is-error { background: #fff1f1; color: #b42318; }

.modal-btn:disabled {
  opacity: .5;
  cursor: default;
}

.modal-btn.is-loading {
  cursor: wait;
}

.language-loading [data-i18n],
.language-loading [data-i18n-html] {
  visibility: hidden;
}

.modal-status.partner-status-only {
  margin-top: 0;
  padding: 22px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  border-radius: 16px;
}
