 :root {
      --navy:#0a1f3c; --navy-mid:#122b52; --navy-deep:#060f1e;
      --gold:#c9972b; --gold-lt:#f5d98e; --gold-dark:#a07000;
      --surface:#f4f6f9; --card:#fff; --border:#e3e7ef;
      --success:#17a362; --danger:#e03e3e; --warning:#d68910; --info:#2176ae;
      --txt1:#0a1f3c; --txt2:#4b5a72; --txt3:#8a97ab;
      --radius:14px; --radius-sm:10px; --radius-lg:18px;
      --sh-sm:0 2px 8px rgba(10,31,60,.07);
      --sh-md:0 6px 24px rgba(10,31,60,.10);
      --sh-lg:0 16px 48px rgba(10,31,60,.16);
      --font-ui:-apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Arial,sans-serif;
      --font-display:'Georgia','Times New Roman',serif;} * { box-sizing: border-box; } body { margin: 0; font-family: var(--font-ui); color: var(--txt1); background: var(--surface); -webkit-font-smoothing: antialiased; min-height: 100vh; } a { text-decoration: none; color: var(--navy); } .display-serif { font-family: var(--font-display); } .rg-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; max-width: 1120px; margin: 0 auto; } .rg-brand { display: inline-flex; align-items: center; gap: 11px; } .rg-brand-mark { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, #f4f6f9, #fff); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); } .rg-brand-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1; } .rg-brand-text small { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); } .rg-top-alt { font-size: 13px; color: var(--txt2); } .rg-top-alt a { font-weight: 700; color: var(--navy); } .rg-top-alt a:hover { color: var(--gold-dark); } .rg-wrap { max-width: 1120px; margin: 0 auto; padding: 12px 28px 56px; } .rg-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 32px; align-items: start; } .rg-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--sh-md); } .rg-head { margin-bottom: 1.6rem; } .rg-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .5rem; } .rg-head h1 { font-size: 1.7rem; color: var(--navy); margin: 0 0 .3rem; } .rg-head p { font-size: 14px; color: var(--txt2); margin: 0; } .rg-field { margin-bottom: 1.05rem; } .rg-field label { display: block; font-size: 11.5px; font-weight: 700; color: var(--txt2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 7px; } .rg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } .rg-input-wrap { position: relative; display: flex; align-items: center; } .rg-input-icon { position: absolute; left: 13px; color: var(--txt3); pointer-events: none; transition: color .2s ease; } .rg-input {width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px 12px 40px; font-size: 14px; font-family: inherit; color: var(--txt1); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;} .rg-input.has-toggle { padding-right: 44px; } .rg-input::placeholder { color: var(--txt3); } .rg-input:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(10,31,60,.07); } .rg-input-wrap:focus-within .rg-input-icon { color: var(--gold-dark); } .rg-toggle { position: absolute; right: 10px; background: none; border: none; padding: 4px; color: var(--txt3); cursor: pointer; display: flex; } .rg-toggle:hover { color: var(--navy); } .rg-strength { height: 4px; border-radius: 4px; background: var(--border); margin-top: 8px; overflow: hidden; } .rg-strength span { display: block; height: 100%; width: 0; border-radius: 4px; transition: width .25s ease, background .25s ease; } .rg-strength-lbl { font-size: 11px; font-weight: 700; color: var(--txt3); margin-top: 5px; } .rg-terms { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--txt2); margin: 1.1rem 0 1.3rem; line-height: 1.5; } .rg-terms input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; flex-shrink: 0; } .rg-terms a { color: var(--gold-dark); text-decoration: underline; } .rg-btn { position: relative; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--gold), #e8b840); color: #fff; border: none; border-radius: var(--radius-sm); padding: 13px; font-size: 14.5px; font-weight: 700; font-family: inherit; cursor: pointer; box-shadow: 0 4px 16px rgba(201,151,43,.35); transition: transform .15s ease, box-shadow .15s ease;} .rg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,43,.45); } .rg-btn:disabled { opacity: .85; cursor: default; transform: none; } .rg-btn.secondary { background: var(--navy); box-shadow: none; } .rg-btn.secondary:hover { background: var(--navy-mid); } .rg-btn.outline { background: var(--card); color: var(--navy); border: 1.5px solid var(--border); box-shadow: none; } .rg-btn.outline:hover { border-color: var(--navy); background: var(--surface); transform: none; } .rg-btn.gateway-off { opacity: .92; } .rg-btn.gateway-off::after { content: "Inactive"; position: absolute; top: -8px; right: 10px; font-size: 8.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: var(--warning); color: #fff; padding: 2px 7px; border-radius: 20px; box-shadow: 0 2px 6px rgba(214,137,16,.4); } .rg-spinner { display: none; animation: rgSpin .7s linear infinite; } .rg-btn.loading .rg-btn-label { visibility: hidden; } .rg-btn.loading .rg-spinner { display: block; position: absolute; left: 50%; top: 50%; animation: rgSpinC .7s linear infinite; } @keyframes rgSpin { to { transform: rotate(360deg); } } @keyframes rgSpinC { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } } .rg-error { display: none; align-items: center; gap: 8px; background: rgba(224,62,62,.07); border: 1px solid rgba(224,62,62,.25); color: var(--danger); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; font-weight: 600; margin-bottom: 1.2rem; } .rg-error.show { display: flex; } .rg-alt { text-align: center; font-size: 13.5px; color: var(--txt2); margin-top: 1.4rem; } .rg-alt a { font-weight: 700; color: var(--navy); } .rg-summary { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 16px; } .rg-sum-card { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--sh-md); } .rg-sum-orb { position: absolute; right: -50px; top: -50px; width: 180px; height: 180px; border-radius: 50%; background: rgba(201,151,43,.14); } .rg-sum-card h3 { position: relative; z-index: 1; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-lt); margin: 0 0 1.2rem; } .rg-sum-line { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; } .rg-sum-line:last-of-type { border-bottom: none; } .rg-sum-line .lbl { color: rgba(255,255,255,.7); } .rg-sum-line .val { font-weight: 700; color: #fff; } .rg-sum-total { position: relative; z-index: 1; display: flex; align-items: baseline; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); } .rg-sum-total .lbl { font-size: 13px; color: rgba(255,255,255,.7); } .rg-sum-total .val { font-size: 1.9rem; font-weight: 800; color: var(--gold-lt); font-family: var(--font-display); } .rg-ref-badge { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; background: rgba(245,217,142,.12); border: 1px solid rgba(245,217,142,.3); border-radius: var(--radius-sm); padding: 11px 13px; margin-top: 1.2rem; } .rg-ref-badge svg { color: var(--gold-lt); flex-shrink: 0; } .rg-ref-badge span { font-size: 12.5px; color: rgba(255,255,255,.85); line-height: 1.4; } .rg-ref-badge strong { color: var(--gold-lt); } .rg-perks { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--sh-sm); } .rg-perks h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--txt3); margin: 0 0 1rem; } .rg-perk { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--txt2); margin-bottom: 11px; line-height: 1.45; } .rg-perk:last-child { margin-bottom: 0; } .rg-perk .tick { width: 20px; height: 20px; border-radius: 6px; background: rgba(23,163,98,.12); color: var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; } .rg-trust { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11.5px; color: var(--txt3); font-weight: 600; } .rg-trust svg { color: var(--success); } .rg-step { display: none; } .rg-step.active { display: block; } .rg-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(23,163,98,.12); color: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; } .rg-pay-head { text-align: center; margin-bottom: 1.6rem; } .rg-pay-head h2 { font-size: 1.5rem; color: var(--navy); margin: 0 0 .4rem; } .rg-pay-head p { font-size: 14px; color: var(--txt2); margin: 0; } .rg-pay-amount { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.6rem; } .rg-pay-amount .amt { font-size: 2rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); } .rg-pay-amount .ref { font-size: 12px; color: var(--txt3); margin-top: 4px; } .rg-pay-methods { display: flex; flex-direction: column; gap: 12px; } .rg-pay-label { font-size: 11.5px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: .05em; text-align: center; margin-bottom: 2px; } .rg-pay-note { text-align: center; font-size: 12px; color: var(--txt3); margin-top: 1.2rem; line-height: 1.5; } .rg-pay-divider { display: flex; align-items: center; gap: 12px; margin: 1.5rem 0 1.2rem; } .rg-pay-divider::before, .rg-pay-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); } .rg-pay-divider span { font-size: 11px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; } .rg-bank-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1rem; } .rg-bank-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 13.5px; border-bottom: 1px dashed var(--border); } .rg-bank-row:last-child { border-bottom: none; } .rg-bank-row .lbl { color: var(--txt3); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; } .rg-bank-row .val { color: var(--navy); font-weight: 800; text-align: right; display: inline-flex; align-items: center; gap: 6px; } .rg-bank-row .copy { background: none; border: none; cursor: pointer; color: var(--gold-dark); padding: 2px 4px; display: inline-flex; } .rg-bank-hint { font-size: 12px; color: var(--txt2); margin-top: 10px; line-height: 1.5; } .rg-bank-hint strong { color: var(--navy); } .rg-upload-state { display: none; align-items: center; gap: 10px; background: rgba(23,163,98,.07); border: 1px solid rgba(23,163,98,.25); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; color: var(--success); font-weight: 600; margin-top: 10px; } .rg-upload-state.show { display: flex; } .rg-upload-state svg { flex-shrink: 0; } @media (max-width: 900px) { .rg-grid { grid-template-columns: 1fr; }.rg-summary { position: static; order: -1; }} @media (max-width: 560px) { .rg-row { grid-template-columns: 1fr; } .rg-card { padding: 1.6rem; } .rg-top { padding: 16px 18px; } .rg-wrap { padding: 8px 18px 40px; }} #toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: 360px; } .dges-toast { display: flex; align-items: flex-start; gap: 11px; background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--info); border-radius: var(--radius-sm); padding: 13px 14px; box-shadow: var(--sh-lg); animation: toastIn .3s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden; } .dges-toast.success { border-left-color: var(--success); } .dges-toast.error   { border-left-color: var(--danger); } .dges-toast.warning { border-left-color: var(--warning); } .dges-toast.info    { border-left-color: var(--info); } .toast-icon-wrap { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; } .dges-toast.success .toast-icon-wrap { background: var(--success); } .dges-toast.error   .toast-icon-wrap { background: var(--danger); } .dges-toast.warning .toast-icon-wrap { background: var(--warning); } .dges-toast.info    .toast-icon-wrap { background: var(--info); } .toast-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; } .toast-body strong { font-size: 12.5px; color: var(--txt1); } .toast-body span { font-size: 12.5px; color: var(--txt2); line-height: 1.45; } .toast-close-btn { background: none; border: none; color: var(--txt3); cursor: pointer; padding: 2px; flex-shrink: 0; display: flex; } .toast-close-btn:hover { color: var(--txt1); }
    @keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } } @keyframes toastOut { to { opacity: 0; transform: translateX(40px); } }  @media (max-width: 560px) { #toast-container { left: 12px; right: 12px; max-width: none; } }