    :root {
      --gold: #D4A017;
      --gold-light: #F0C040;
      --gold-dark: #A07810;
      --obsidian: #0A0A0A;
      --coal: #111214;
      --slag: #1A1C1F;
      --ash: #252830;
      --iron: #3A3D45;
      --steel: #6B7280;
      --silver: #A8B0BC;
      --white: #F5F0E8;
      --danger: #C0392B;
      --success: #27AE60;
      --ore-orange: #E07B20;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      height: 100%;
    }

    body {
      background: var(--obsidian);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── BACKGROUND EFFECTS ── */
    .bg-layer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .bg-layer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(212, 160, 23, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(184, 115, 51, 0.05) 0%, transparent 55%);
    }

    /* Diagonal rule lines */
    .bg-layer::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(-55deg,
          transparent,
          transparent 60px,
          rgba(212, 160, 23, 0.022) 60px,
          rgba(212, 160, 23, 0.022) 61px);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 68px;
      background: rgba(10, 10, 10, 0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 3px;
      color: var(--white);
    }

    .logo-text span {
      color: var(--gold);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-right p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: var(--steel);
    }

    .nav-right a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--gold);
      text-decoration: none;
      transition: color .2s;
    }

    .nav-right a:hover {
      color: var(--gold-light);
    }

    /* ── PAGE LAYOUT ── */
    .page-wrap {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 68px;
    }

    /* ── LEFT PANEL ── */
    .left-panel {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .left-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.3) 100%),
        url('https://images.unsplash.com/photo-1578393098337-5594cce112bd?w=1200&q=80') center/cover no-repeat;
    }

    .left-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 80%, rgba(212, 160, 23, 0.18) 0%, transparent 55%);
    }

    /* Vertical gold rule */
    .left-panel::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(212, 160, 23, 0.5) 30%, rgba(212, 160, 23, 0.5) 70%, transparent 100%);
      z-index: 3;
    }

    .left-content {
      position: relative;
      z-index: 2;
      padding: 48px 52px;
    }

    .left-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .left-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .left-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 5.5vw, 80px);
      line-height: 0.92;
      letter-spacing: 3px;
      margin-bottom: 28px;
    }

    .left-headline .gold {
      color: var(--gold);
    }

    .left-headline .outline {
      -webkit-text-stroke: 1px rgba(245, 240, 232, 0.35);
      color: transparent;
    }

    .left-sub {
      font-size: 15px;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.7;
      max-width: 380px;
      margin-bottom: 40px;
    }

    .left-perks {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 40px;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .perk-icon {
      width: 32px;
      height: 32px;
      background: rgba(212, 160, 23, 0.12);
      border: 1px solid rgba(212, 160, 23, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .perk-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--silver);
    }

    .perk-text strong {
      color: var(--white);
    }

    /* Stats strip */
    .left-stats {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(212, 160, 23, 0.2);
      padding-top: 28px;
    }

    .left-stat {
      flex: 1;
      border-right: 1px solid rgba(212, 160, 23, 0.15);
      padding-right: 20px;
      margin-right: 20px;
    }

    .left-stat:last-child {
      border-right: none;
      padding-right: 0;
      margin-right: 0;
    }

    .left-stat .v {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .left-stat .l {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
    }

    /* ── RIGHT PANEL (FORM) ── */
    .right-panel {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 60px 5% 80px;
      min-height: calc(100vh - 68px);
    }

    .form-container {
      width: 100%;
      max-width: 480px;
      animation: fadeUp .6s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* Form header */
    .form-header {
      margin-bottom: 36px;
    }

    .form-header h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      letter-spacing: 3px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .form-header h1 span {
      color: var(--gold);
    }

    .form-header p {
      font-size: 14px;
      color: var(--steel);
      line-height: 1.6;
    }

    /* Step indicator */
    .step-indicator {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 36px;
    }

    .step-dot {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .step-dot-circle {
      width: 28px;
      height: 28px;
      border: 1px solid var(--iron);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      color: var(--steel);
      transition: all .3s;
      flex-shrink: 0;
    }

    .step-dot.active .step-dot-circle {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--obsidian);
    }

    .step-dot.done .step-dot-circle {
      background: rgba(39, 174, 96, 0.15);
      border-color: var(--success);
      color: var(--success);
    }

    .step-dot-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--steel);
      transition: color .3s;
    }

    .step-dot.active .step-dot-label {
      color: var(--white);
    }

    .step-dot.done .step-dot-label {
      color: var(--success);
    }

    .step-line {
      flex: 1;
      height: 1px;
      background: var(--iron);
      margin: 0 12px;
      position: relative;
      overflow: hidden;
    }

    .step-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s ease;
    }

    .step-line.filled::after {
      transform: scaleX(1);
    }

    /* Form steps */
    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
      animation: stepIn .35s ease both;
    }

    @keyframes stepIn {
      from {
        opacity: 0;
        transform: translateX(16px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* Form groups */
    .form-section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(212, 160, 23, 0.2);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .form-row.single {
      grid-template-columns: 1fr;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
    }

    .input-wrap {
      position: relative;
    }

    .input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 15px;
      pointer-events: none;
      z-index: 1;
      color: var(--steel);
      transition: color .2s;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    select {
      width: 100%;
      background: var(--slag);
      border: 1px solid var(--iron);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      padding: 13px 14px 13px 42px;
      outline: none;
      transition: border-color .25s, background .25s, box-shadow .25s;
      appearance: none;
      -webkit-appearance: none;
    }

    input::placeholder {
      color: var(--iron);
    }

    select option {
      background: var(--slag);
      color: var(--white);
    }

    input:focus,
    select:focus {
      border-color: var(--gold);
      background: var(--ash);
      box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    }

    .input-wrap:has(input:focus) .input-icon,
    .input-wrap:has(select:focus) .input-icon {
      color: var(--gold);
    }

    /* Error state */
    input.error {
      border-color: var(--danger);
    }

    input.error:focus {
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
    }

    .field-error {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: var(--danger);
      letter-spacing: .5px;
      display: none;
    }

    .field.has-error .field-error {
      display: block;
    }

    .field.has-error input {
      border-color: var(--danger);
    }

    /* Success state */
    .field.has-success input {
      border-color: var(--success);
    }

    .check-mark {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--success);
      font-size: 14px;
      display: none;
    }

    .field.has-success .check-mark {
      display: block;
    }

    /* Password strength */
    .password-wrap input {
      padding-right: 100px;
    }

    .pwd-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--steel);
      cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color .2s;
      padding: 0;
    }

    .pwd-toggle:hover {
      color: var(--gold);
    }

    .strength-bar {
      height: 3px;
      background: var(--iron);
      margin-top: 6px;
      overflow: hidden;
    }

    .strength-fill {
      height: 100%;
      width: 0%;
      transition: width .4s, background .4s;
    }

    .strength-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--steel);
      margin-top: 4px;
    }

    /* Select arrow */
    .select-wrap::after {
      content: '▾';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--steel);
      pointer-events: none;
      font-size: 12px;
    }

    select {
      padding-right: 36px;
    }

    /* Phone prefix */
    .phone-wrap {
      display: flex;
      gap: 0;
    }

    .phone-prefix {
      background: var(--ash);
      border: 1px solid var(--iron);
      border-right: none;
      padding: 0 14px;
      display: flex;
      align-items: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      color: var(--silver);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .phone-wrap input {
      border-left: none;
      padding-left: 14px;
    }

    .phone-wrap input:focus {
      border-left: 1px solid var(--gold);
    }

    /* Investor type cards */
    .investor-type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }

    .type-card {
      position: relative;
      cursor: pointer;
    }

    .type-card input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .type-card-inner {
      padding: 16px;
      background: var(--slag);
      border: 1px solid var(--iron);
      transition: all .2s;
      display: flex;
      flex-direction: column;
      gap: 6px;
      height: 100%;
    }

    .type-card input:checked+.type-card-inner {
      border-color: var(--gold);
      background: rgba(212, 160, 23, 0.06);
    }

    .type-card-inner:hover {
      border-color: rgba(212, 160, 23, 0.4);
      background: var(--ash);
    }

    .type-icon {
      font-size: 22px;
    }

    .type-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
    }

    .type-desc {
      font-size: 11px;
      color: var(--steel);
      line-height: 1.4;
    }

    .type-check {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 18px;
      height: 18px;
      border: 1px solid var(--iron);
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }

    .type-card input:checked~.type-card-inner .type-check-wrap .type-check {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* Simpler approach */
    .type-card input:checked+.type-card-inner {
      box-shadow: inset 0 0 0 1px var(--gold);
    }

    /* Range slider */
    .range-wrap {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .range-display {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .range-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .range-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--steel);
    }

    input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 3px;
      background: var(--iron);
      outline: none;
      padding: 0;
      border: none;
      box-shadow: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      background: var(--gold);
      cursor: pointer;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      transition: transform .2s;
    }

    input[type="range"]::-webkit-slider-thumb:hover {
      transform: scale(1.2);
    }

    .range-ticks {
      display: flex;
      justify-content: space-between;
    }

    .range-ticks span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      color: var(--iron);
    }

    /* Checkboxes */
    .check-field {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      padding: 14px;
      background: var(--slag);
      border: 1px solid var(--iron);
      transition: border-color .2s;
      margin-bottom: 10px;
    }

    .check-field:hover {
      border-color: rgba(212, 160, 23, 0.35);
    }

    .check-field input[type="checkbox"] {
      opacity: 0;
      position: absolute;
      width: 0;
      height: 0;
    }

    .custom-check {
      width: 18px;
      height: 18px;
      border: 1px solid var(--iron);
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      background: transparent;
    }

    .check-field input:checked+.custom-check {
      background: var(--gold);
      border-color: var(--gold);
    }

    .check-field input:checked+.custom-check::after {
      content: '✓';
      font-size: 11px;
      color: var(--obsidian);
      font-weight: 700;
    }

    .check-text {
      font-size: 13px;
      color: var(--silver);
      line-height: 1.5;
    }

    .check-text a {
      color: var(--gold);
      text-decoration: none;
    }

    .check-text a:hover {
      text-decoration: underline;
    }

    /* Review step */
    .review-section {
      background: var(--slag);
      border: 1px solid rgba(212, 160, 23, 0.15);
      padding: 20px 22px;
      margin-bottom: 14px;
    }

    .review-section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .review-edit {
      font-size: 11px;
      color: var(--steel);
      cursor: pointer;
      transition: color .2s;
      text-decoration: none;
    }

    .review-edit:hover {
      color: var(--gold);
    }

    .review-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .review-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--iron);
    }

    .review-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .review-key {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--steel);
      text-transform: uppercase;
    }

    .review-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      text-align: right;
    }

    .review-val.highlight {
      color: var(--gold);
    }

    /* Buttons */
    .btn-group {
      display: flex;
      gap: 12px;
      margin-top: 28px;
      align-items: center;
    }

    .btn-back {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
      background: transparent;
      border: 1px solid var(--iron);
      padding: 15px 24px;
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0;
    }

    .btn-back:hover {
      color: var(--white);
      border-color: var(--silver);
    }

    .btn-next {
      flex: 1;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--obsidian);
      background: var(--gold);
      border: none;
      padding: 16px 28px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background .2s, transform .15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-next:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-next:active {
      transform: translateY(0);
    }

    .btn-next.loading {
      pointer-events: none;
      opacity: .7;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 24px 0;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--iron);
    }

    .divider span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
      white-space: nowrap;
    }

    /* Social login */
    .social-login {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .btn-social {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 18px;
      background: var(--slag);
      border: 1px solid var(--iron);
      color: var(--silver);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
    }

    .btn-social:hover {
      border-color: rgba(212, 160, 23, 0.4);
      color: var(--white);
      background: var(--ash);
    }

    .btn-social .icon {
      font-size: 18px;
      width: 24px;
      text-align: center;
      flex-shrink: 0;
    }

    .btn-social span:last-child {
      flex: 1;
      text-align: center;
    }

    /* Sign-in link */
    .signin-link {
      margin-top: 24px;
      text-align: center;
      font-size: 13px;
      color: var(--steel);
    }

    .signin-link a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }

    .signin-link a:hover {
      color: var(--gold-light);
    }

    /* Success state */
    .success-panel {
      display: none;
      text-align: center;
      padding: 48px 0;
      animation: fadeUp .5s ease both;
    }

    .success-panel.show {
      display: block;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: rgba(39, 174, 96, 0.1);
      border: 1px solid var(--success);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 28px;
    }

    .success-panel h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 12px;
    }

    .success-panel h2 span {
      color: var(--gold);
    }

    .success-panel p {
      font-size: 15px;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .btn-dashboard {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--obsidian);
      background: var(--gold);
      border: none;
      padding: 18px 40px;
      cursor: pointer;
      text-decoration: none;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background .2s;
    }

    .btn-dashboard:hover {
      background: var(--gold-light);
    }

    /* Progress bar */
    .progress-bar {
      height: 2px;
      background: var(--iron);
      margin-bottom: 32px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(to right, var(--gold-dark), var(--gold));
      transition: width .5s ease;
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      background: var(--slag);
      border: 1px solid rgba(212, 160, 23, 0.4);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      transform: translateY(80px);
      opacity: 0;
      transition: all .35s ease;
      max-width: 320px;
    }

    .toast.show {
      transform: none;
      opacity: 1;
    }

    .toast.error {
      border-color: rgba(192, 57, 43, 0.5);
    }

    .toast-icon {
      font-size: 18px;
      flex-shrink: 0;
    }

    .toast-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--silver);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .page-wrap {
        grid-template-columns: 1fr;
      }

      .left-panel {
        display: none;
      }

      .right-panel {
        padding: 40px 5% 60px;
        min-height: auto;
      }
    }

    @media (max-width: 540px) {
      .form-row {
        grid-template-columns: 1fr;
      }

      .investor-type-grid {
        grid-template-columns: 1fr;
      }

      .nav-right p {
        display: none;
      }

      .btn-group {
        flex-direction: column-reverse;
      }

      .btn-back {
        width: 100%;
        text-align: center;
      }

      .right-panel {
        padding: 32px 4% 56px;
      }
    }

    @media (max-width: 360px) {
      .step-dot-label {
        display: none;
      }
    }

    /* ── MOBILE PANEL (replaces left panel on mobile) ── */
    .mobile-hero-banner {
      display: none;
      background:
        linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.75)),
        url('https://images.unsplash.com/photo-1578393098337-5594cce112bd?w=900&q=80') center/cover no-repeat;
      padding: 32px 5%;
      border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    }

    .mobile-hero-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 4px;
    }

    .mobile-hero-banner h2 span {
      color: var(--gold);
    }

    .mobile-hero-banner p {
      font-size: 13px;
      color: var(--silver);
    }

    .mobile-stats {
      display: flex;
      gap: 24px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .mobile-stat .v {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: var(--gold);
    }

    .mobile-stat .l {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--steel);
    }

    @media (max-width: 900px) {
      .mobile-hero-banner {
        display: block;
      }
    }