/* ==========================================================================
   APDERIS REGISTER PAGE STYLESHEET
   Design System Compliance: DESIGN.md (Gold Amber #EE9D01 & Dark Slate #0f172a)
   ========================================================================== */

:root {
    --primary: #EE9D01;
    --primary-hover: #d68b00;
    --primary-dark: #a86f00;
    --primary-soft: rgba(238, 157, 1, 0.12);
    --primary-glow: rgba(238, 157, 1, 0.25);
    --slate-950: #0b1120;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --surface: #ffffff;
    --danger: #ef4444;
    --danger-soft: rgba(239, 68, 68, 0.1);
    --success: #10b981;
    --success-soft: rgba(16, 185, 129, 0.1);
    --info: #0284c7;
    --info-soft: rgba(2, 132, 199, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 30px -5px rgba(15, 23, 42, 0.1);
    --shadow-gold: 0 8px 25px -4px rgba(238, 157, 1, 0.35);
    --font-main: 'Plus Jakarta Sans', 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--slate-50);
    color: var(--slate-800);
    font-family: var(--font-main);
    font-size: 14.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

/* ==========================================================================
   PAGE SHELL & LAYOUT
   ========================================================================== */

.registration-shell {
    display: grid;
    grid-template-columns: minmax(360px, 42%) 1fr;
    min-height: 100vh;
}

/* ==========================================================================
   LEFT ASIDE: BRAND STORY PANEL (DARK SLATE)
   ========================================================================== */

.story-panel {
    background: linear-gradient(145deg, var(--slate-950) 0%, var(--slate-900) 50%, var(--slate-800) 100%);
    color: #ffffff;
    padding: 44px 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 720px;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ambient Radial Glows */
.story-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(238, 157, 1, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.story-panel::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.brand-logo-badge {
    background: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    border: 2.5px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 8px 25px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.brand-logo-badge:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.brand-logo-img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.brand-logo-badge-sm {
    background: #ffffff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img-mobile {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none !important;
    position: relative;
    z-index: 2;
}

.brand-symbol {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--slate-950);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    box-shadow: 0 4px 16px rgba(238, 157, 1, 0.4);
}

.brand-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    margin-left: -8px;
}

.story-content {
    margin: auto 0;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 8px;
}

.story-content h1 {
    font-size: clamp(2rem, 2.7vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 12px 0 16px 0;
}

.story-content h1 span {
    color: var(--primary);
    position: relative;
}

.story-content p {
    color: var(--slate-400);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 440px;
}

/* Store Live Illustration Card */
.store-illustration {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 22px;
    position: relative;
    margin-bottom: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.store-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.store-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    border: 1px solid rgba(238, 157, 1, 0.3);
}

.store-badge-status {
    background: var(--success-soft);
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.store-badge-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.store-sign {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
    word-break: break-word;
}

.store-sub {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin: 0 0 16px 0;
}

.store-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.mini-stat-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.mini-stat-lbl {
    font-size: 0.68rem;
    color: var(--slate-400);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Feature Pills List */
.feature-pills-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-pill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--slate-300);
}

.feature-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.trial-note {
    background: rgba(238, 157, 1, 0.12);
    border: 1px solid rgba(238, 157, 1, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-note span {
    color: var(--primary);
    font-weight: 800;
}

.story-footer {
    font-size: 0.8rem;
    color: var(--slate-500);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   RIGHT MAIN: FORM PANEL
   ========================================================================== */

.form-panel {
    background: var(--surface);
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 32px;
}

.top-line a {
    font-weight: 700;
    color: var(--slate-700);
}

.top-line a.login-link {
    color: var(--primary-dark);
}

.form-container {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

.page-heading {
    margin-bottom: 28px;
}

.page-heading h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    margin: 6px 0 8px 0;
}

.page-heading p {
    color: var(--slate-500);
    font-size: 0.95rem;
    margin: 0;
}

/* Alerts */
.status-message {
    background: var(--success-soft);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.9rem;
}

.error-banner {
    background: var(--danger-soft);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 0.88rem;
}

.error-banner strong {
    display: block;
    font-size: 0.94rem;
    margin-bottom: 6px;
    color: #b91c1c;
}

.error-banner ul {
    margin: 6px 0 8px 18px;
    padding: 0;
}

.error-banner span {
    font-size: 0.8rem;
    color: #7f1d1d;
}

/* ==========================================================================
   MODE PICKER: AKUN SAJA vs AKUN + TOKO
   ========================================================================== */

.mode-picker {
    margin-bottom: 24px;
}

.mode-picker legend {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--slate-500);
    margin-bottom: 12px;
}

.mode-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mode-option {
    cursor: pointer;
    position: relative;
    display: block;
}

.mode-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.mode-card:hover {
    border-color: #cbd5e1;
    background: var(--slate-50);
}

.mode-option input[type="radio"]:checked + .mode-card {
    border-color: var(--primary);
    background: rgba(238, 157, 1, 0.04);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.mode-icon-box {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--slate-100);
    color: var(--slate-600);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mode-option input[type="radio"]:checked + .mode-card .mode-icon-box {
    background: var(--primary);
    color: var(--slate-950);
}

.mode-card strong {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 2px;
}

.mode-card small {
    display: block;
    font-size: 0.78rem;
    color: var(--slate-500);
    line-height: 1.35;
}

.mode-badge-trial {
    display: inline-block;
    background: rgba(238, 157, 1, 0.2);
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.radio-check-circle {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--slate-300);
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.mode-option input[type="radio"]:checked + .mode-card .radio-check-circle {
    border-color: var(--primary);
    background: var(--primary);
}

.mode-option input[type="radio"]:checked + .mode-card .radio-check-circle::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.registration-summary {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 28px;
    font-size: 0.86rem;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-summary i {
    color: var(--primary);
    font-size: 1rem;
}

/* ==========================================================================
   FORM SECTIONS & HEADINGS
   ========================================================================== */

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
}

.section-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--slate-900);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.section-heading div {
    flex: 1;
}

.section-heading h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 0;
    letter-spacing: -0.01em;
}

.section-heading p {
    font-size: 0.82rem;
    color: var(--slate-500);
    margin: 2px 0 0 0;
}

.section-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--slate-400);
    background: var(--slate-100);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   FIELDS & INPUTS
   ========================================================================== */

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: span 2;
}

.field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1.5px solid var(--slate-300);
    border-radius: var(--radius-md);
    color: var(--slate-900);
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.field textarea {
    height: auto;
    min-height: 80px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--slate-400);
    font-size: 0.88rem;
}

.field small {
    font-size: 0.76rem;
    color: var(--slate-500);
    margin-top: 5px;
}

.field small.field-error {
    color: var(--danger);
    font-weight: 700;
}

/* Password Toggle Wrapper */
.password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrap input {
    padding-right: 68px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--slate-600);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    transition: all 0.15s ease;
}

.password-toggle:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.text-button {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 4px;
    text-align: left;
    width: fit-content;
}

.text-button:hover {
    color: var(--primary-hover);
}

/* ==========================================================================
   STORE ACCORDION SECTION
   ========================================================================== */

.store-section {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.store-section.is-open {
    max-height: 2500px;
    opacity: 1;
}

.store-section-inner {
    padding-top: 8px;
}

/* Leaflet Map in Store Section */
#map {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--slate-300);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.category-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--slate-700);
    background: var(--slate-100);
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.category-chip:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.category-chip.chip-reset {
    background: transparent;
    border-color: var(--slate-300);
    color: var(--danger);
}

.category-chip.chip-reset:hover {
    background: var(--danger-soft);
    border-color: var(--danger);
}

/* Upload Box for Logo */
.upload-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px dashed var(--slate-300);
    border-radius: var(--radius-lg);
    background: var(--slate-50);
    transition: border-color 0.2s ease;
}

.upload-box:hover {
    border-color: var(--primary);
    background: rgba(238, 157, 1, 0.02);
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--slate-200);
    display: grid;
    place-items: center;
    color: var(--slate-400);
    font-size: 1.6rem;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-box input[type="file"] {
    font-size: 0.82rem;
    border: none;
    padding: 0;
    background: transparent;
    height: auto;
}

/* Trial Banner inside Store Section */
.trial-banner {
    background: linear-gradient(135deg, rgba(238, 157, 1, 0.1) 0%, rgba(238, 157, 1, 0.03) 100%);
    border: 1.5px solid rgba(238, 157, 1, 0.3);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin: 10px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trial-banner-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--slate-950);
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(238, 157, 1, 0.4);
}

.trial-banner strong {
    display: block;
    font-size: 0.92rem;
    color: var(--slate-900);
}

.trial-banner p {
    margin: 2px 0 0 0;
    font-size: 0.8rem;
    color: var(--slate-600);
}

/* ==========================================================================
   SUBMIT AREA & PROGRESS BAR
   ========================================================================== */

.submit-area {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

.progress-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-600);
    margin-bottom: 8px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: var(--slate-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-track span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #f59e0b 100%);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.submit-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--slate-950);
    font-size: 1.02rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(238, 157, 1, 0.45);
}

.submit-button:active:not(:disabled) {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-note {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-align: center;
    margin: 12px 0 0 0;
}

.form-footer {
    font-size: 0.8rem;
    color: var(--slate-400);
    text-align: center;
    padding-top: 30px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   Mobile: Hide story-panel, display registration form immediately
   ========================================================================== */

@media (max-width: 1024px) {
    .registration-shell {
        display: block;
        min-height: 100vh;
    }

    .story-panel {
        display: none !important;
    }

    .form-panel {
        padding: 24px 20px 40px;
        min-height: 100vh;
        background: var(--surface);
    }

    .form-container {
        max-width: 100%;
    }

    .top-line {
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .mode-options-grid {
        grid-template-columns: 1fr;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .field.full {
        grid-column: span 1;
    }

    .form-panel {
        padding: 20px 16px 36px;
    }

    .page-heading {
        margin-bottom: 20px;
    }

    .page-heading h2 {
        font-size: 1.55rem;
    }
}
