@keyframes pulse {
0%, 100%: { opacity: 1; };
50%: { opacity: 0.5; };
}

.ri-nav {
position: sticky;
top: 0;
z-index: 50;
background-color: #060e20;
border-bottom: 1px solid rgba(64,72,93,0.3);
backdrop-filter: blur(12px);
}
.ri-nav-inner {
display: flex;
justify-content: space-between;
align-items: center;
width: -webkit-fill-available;
max-width: 1536px;
margin: 0 auto;
padding: 24px 32px;
}
.ri-nav-logo {
font-family: 'Noto Serif', Georgia, serif;
font-size: 22px;
font-weight: 700;
letter-spacing: 0.2em;
color: #a3a6ff;
text-decoration: none;
}
.ri-nav-links {
display: flex;
align-items: center;
gap: 40px;
}
.ri-nav-link {
font-family: 'Noto Serif', Georgia, serif;
font-size: 13px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: rgba(222,229,255,0.7);
text-decoration: none;
transition: color 0.2s;
}
.ri-nav-link:hover {
color: #dee5ff;
}
.ri-nav-link-active {
font-family: 'Noto Serif', Georgia, serif;
font-size: 13px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #a3a6ff;
text-decoration: none;
border-bottom: 2px solid #a3a6ff;
padding-bottom: 4px;
}
.ri-nav-actions {
display: flex;
align-items: center;
gap: 16px;
}
.ri-nav-icon-btn {
background: none;
border: none;
cursor: pointer;
color: #a3a6ff;
font-size: 24px;
padding: 8px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
text-decoration: none;
}
.ri-nav-icon-btn:hover {
background-color: rgba(31,43,73,0.5);
}
.ri-btn-primary {
background: linear-gradient(90deg, #a3a6ff 0%, #6063ee 100%);
color: #0f00a4;
font-weight: 700;
font-size: 14px;
padding: 10px 24px;
border-radius: 6px;
border: none;
cursor: pointer;
transition: opacity 0.15s, transform 0.1s;
white-space: nowrap;
text-decoration: none;
display: inline-block;
}
.ri-btn-primary:hover {
opacity: 0.9;
}
.ri-btn-primary:active {
transform: scale(0.99);
opacity: 0.8;
}
.u-hidden {
display: none;
}

.ri-footer {
background-color: #000000;
padding-top: 48px;
padding-bottom: 48px;
border-top: 1px solid rgba(64,72,93,0.1);
}
.ri-footer-inner {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-left: 48px;
padding-right: 48px;
gap: 32px;
flex-wrap: wrap;
max-width: 1536px;
margin: 0 auto;
}
.ri-footer-copy {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.15em;
color: rgba(222,229,255,0.4);
}
.ri-footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 32px;
}
.ri-footer-link {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.15em;
color: rgba(222,229,255,0.4);
text-decoration: none;
transition: color 0.3s;
}
.ri-footer-link:hover {
color: #a3a6ff;
}
.ri-footer-icons {
display: flex;
gap: 24px;
}
.ri-footer-icon {
color: #47c4ff;
cursor: pointer;
font-size: 24px;
transition: color 0.2s;
border: none;
background: none;
display: flex;
align-items: center;
}
.ri-footer-icon:hover {
color: #a3a6ff;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #060e20;
color: #dee5ff;
font-family: 'Inter', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.rw-font-serif {
font-family: 'Noto Serif', Georgia, serif;
}
.rw-celestial-glow {
background: radial-gradient(circle at center, rgba(163,166,255,0.08) 0%, rgba(6,14,32,0) 70%);
}
.rw-glass {
background: rgba(20,31,56,0.7);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}
.rw-bg {
position: fixed;
inset: 0;
z-index: 0;
overflow: hidden;
pointer-events: none;
}
.rw-glow-tl {
position: absolute;
top: -10%;
left: -10%;
width: 40%;
height: 40%;
background: radial-gradient(circle at center, rgba(163,166,255,0.08) 0%, rgba(6,14,32,0) 70%);
border-radius: 0.75rem;
}
.rw-glow-br {
position: absolute;
bottom: -20%;
right: -10%;
width: 60%;
height: 60%;
background: radial-gradient(circle at center, rgba(163,166,255,0.08) 0%, rgba(6,14,32,0) 70%);
border-radius: 0.75rem;
opacity: 0.5;
}
.rw-grain {
position: absolute;
inset: 0;
opacity: 0.1;
}
.rw-main {
position: relative;
z-index: 10;
width: -webkit-fill-available;
max-width: 28rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.rw-brand {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 2.5rem;
}
.rw-brand-title {
font-family: 'Noto Serif', Georgia, serif;
font-size: 1.875rem;
font-weight: 700;
color: #a3a6ff;
letter-spacing: 0.02em;
}
.rw-brand-sub {
font-size: 0.625rem;
text-transform: uppercase;
letter-spacing: 0.3em;
color: #a3aac4;
margin-top: 0.5rem;
}
.rw-card {
background: rgba(20,31,56,0.7);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 0;
border-radius: 0.5rem;
padding: 2rem;
box-shadow: 0 40px 40px -20px rgba(96,99,238,0.12);
}
.rw-icon-wrap {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
.rw-icon-circle {
width: 5rem;
height: 5rem;
background-color: #192540;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.rw-icon-glow {
position: absolute;
inset: 0;
background-color: rgba(163,166,255,0.1);
border-radius: 0.75rem;
filter: blur(20px);
}
.rw-icon {
font-size: 2.25rem;
color: #a3a6ff;
position: relative;
z-index: 1;
}
.rw-copy {
text-align: center;
margin-bottom: 2rem;
}
.rw-copy-h2 {
font-family: 'Noto Serif', Georgia, serif;
font-size: 1.5rem;
color: #dee5ff;
margin-bottom: 0.5rem;
}
.rw-copy-p {
font-size: 0.875rem;
color: #a3aac4;
line-height: 1.625;
}
.rw-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.rw-field {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.rw-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #a3aac4;
display: block;
margin-left: 0.25rem;
}
.rw-input-wrap {
position: relative;
}
.rw-input-icon-wrap {
position: absolute;
top: 0;
bottom: 0;
left: 0;
padding-left: 1rem;
display: flex;
align-items: center;
pointer-events: none;
}
.rw-input-icon {
font-size: 1.125rem;
color: #6d758c;
}
.rw-input {
width: -webkit-fill-available;
background-color: #000000;
border: 0;
outline: none;
border-radius: 0.375rem;
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 3rem;
padding-right: 1rem;
color: #dee5ff;
font-size: 1rem;
transition: box-shadow 0.3s;
}
.rw-input::placeholder {
color: #40485d;
}
.rw-input:focus {
box-shadow: 0 0 0 1px rgba(163,166,255,1);
}
.rw-submit-btn {
width: -webkit-fill-available;
background: linear-gradient(to right, #a3a6ff, #6063ee);
color: #0f00a4;
font-weight: 700;
padding-top: 1rem;
padding-bottom: 1rem;
border-radius: 0.375rem;
border: none;
cursor: pointer;
box-shadow: 0 8px 20px -6px rgba(163,166,255,0.4);
transition: transform 0.3s;
font-size: 1rem;
}
.rw-submit-btn:hover {
transform: scale(1.02);
}
.rw-submit-btn:active {
transform: scale(0.98);
}
.rw-back {
margin-top: 2.5rem;
display: flex;
justify-content: center;
}
.rw-back-link {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: #47c4ff;
text-decoration: none;
transition: color 0.3s;
}
.rw-back-link:hover {
color: #a3a6ff;
}
.rw-back-icon {
font-size: 1.125rem;
transition: transform 0.3s;
}
.rw-back-link:hover .rw-back-icon {
transform: translateX(-0.25rem);
}
.rw-footer {
margin-top: 2rem;
text-align: center;
}
.rw-status-row {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1rem;
}
.rw-status-dot {
width: 0.375rem;
height: 0.375rem;
border-radius: 0.75rem;
background-color: #47c4ff;
animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

.rw-status-label {
font-size: 0.625rem;
color: #a3aac4;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.rw-footer-p {
font-size: 0.6875rem;
color: #6d758c;
line-height: 1.25;
}
.rw-support-link {
color: #a3aac4;
cursor: pointer;
transition: color 0.2s;
}
.rw-support-link:hover {
color: #47c4ff;
}
.rw-rings {
position: fixed;
top: 50%;
right: 0;
transform: translateY(-50%) translateX(50%);
width: 24rem;
height: 24rem;
opacity: 0.05;
z-index: 0;
pointer-events: none;
}
.rw-ring-1 {
width: -webkit-fill-available;
height: -webkit-fill-available;
border: 1px solid #a3a6ff;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
}
.rw-ring-2 {
width: 80%;
height: 80%;
border: 1px solid rgba(163,166,255,0.4);
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
}
.rw-ring-3 {
width: 60%;
height: 60%;
border: 1px solid rgba(163,166,255,0.2);
border-radius: 0.75rem;
}

@media (max-width: 768px) {
.ri-nav-links {
display: none;
}
.ri-nav-inner {
padding: 16px 20px;
}
.ri-footer-inner {
flex-direction: column;
align-items: center;
text-align: center;
}
}