/* Regnum Dominium Showcase Portal Design System */

:root {
    --bg-dark: #07090e;
    --bg-card: rgba(18, 24, 38, 0.65);
    --bg-card-border: rgba(0, 242, 254, 0.15);
    --bg-glass-hover: rgba(0, 242, 254, 0.08);

    --primary-cyan: #00f2fe;
    --primary-blue: #4facfe;
    --primary-glow: rgba(0, 242, 254, 0.25);

    --accent-red: #ff4757;
    --accent-green: #2ed573;
    --accent-yellow: #ffa502;

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #64748b;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Outfit', sans-serif;
}

/* Global Reset & Horizontal Scroll Prevention */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overscroll-behavior-x: none;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

/* Ambient CAD Blueprint Grid */
.blueprint-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.glow-primary {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 70%);
}
.glow-secondary {
    top: 400px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.12), transparent 70%);
}

@media (max-width: 768px) {
    .glow-bg { display: none; }
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography & Buttons */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: #fff;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #07090e;
    box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 242, 254, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}
.btn-outline:hover {
    background: var(--primary-cyan);
    color: #07090e;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dark);
    cursor: not-allowed;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(7, 9, 14, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
}
.logo-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-cyan);
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.logo-accent {
    color: var(--primary-cyan);
}
.logo-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-cyan);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.nav {
    display: flex;
    gap: 32px;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--primary-cyan);
}

@media (max-width: 768px) {
    .nav { display: none; }
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-cyan);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Quick Preview Card */
.hero-preview-box {
    position: relative;
}
.preview-card-glass {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.p-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.p-dot.red { background: #ff5f56; }
.p-dot.yellow { background: #ffbd2e; }
.p-dot.green { background: #27c93f; }

.p-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dark);
    margin-left: auto;
}

.preview-body {
    padding: 20px;
}
.quick-toggle-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: var(--radius-md);
}
.q-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.q-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-screen-container {
    min-height: 280px;
    border-radius: var(--radius-md);
    background: #000;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Showcase Section */
.section {
    padding: 90px 0;
}
.section-header {
    margin-bottom: 48px;
}
.section-header.center {
    text-align: center;
}
.section-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary-cyan);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}
.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.case-card.featured {
    border-color: var(--bg-card-border);
}
.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-cyan);
    box-shadow: 0 16px 40px rgba(0, 242, 254, 0.15);
}

.case-badge-live {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-green);
    color: #000;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
}
.case-badge-soon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
}

.case-image-wrapper {
    height: 200px;
    background: #0b0f19;
    position: relative;
    overflow: hidden;
}

.case-split-preview {
    display: flex;
    height: 100%;
    width: 100%;
}
.split-side {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.split-side.old {
    background: #1e1e24;
    color: #a0a0a0;
}
.split-side.new {
    background: linear-gradient(135deg, #071527, #0c2340);
    color: #fff;
}
.side-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}
.split-side.old .side-tag { color: var(--accent-red); }
.split-side.new .side-tag { color: var(--primary-cyan); }

.mock-old-mini {
    font-family: var(--font-mono);
    font-size: 14px;
    opacity: 0.5;
}
.mock-new-mini {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-cyan);
}
.split-divider-line {
    width: 2px;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.case-image-wrapper.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    gap: 10px;
}
.placeholder-icon {
    font-size: 32px;
}

.case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.case-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}
.case-title {
    font-size: 20px;
    margin-bottom: 10px;
}
.case-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}
.case-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.feat-tag {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

/* Workspace Glass Card */
.workspace-card-glass {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(20px);
}
.workspace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}
.ws-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary-cyan);
}
.workspace-title-box h2 {
    font-size: 26px;
}

.workspace-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: var(--radius-md);
}
.ws-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.ws-tab.active {
    background: var(--primary-cyan);
    color: #07090e;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Simulator Layout */
.simulator-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .simulator-layout {
        grid-template-columns: 1fr;
    }
}

.sim-controls h3 {
    font-size: 22px;
    margin-bottom: 8px;
}
.sim-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.sim-toggle-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.sim-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.sim-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}
.sim-btn.active.sim-old {
    border-color: var(--accent-red);
    background: rgba(255, 71, 87, 0.1);
}
.sim-btn.active.sim-new {
    border-color: var(--accent-green);
    background: rgba(46, 213, 115, 0.1);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot.red { background: var(--accent-red); box-shadow: 0 0 10px var(--accent-red); }
.dot.green { background: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }

.sim-btn-text strong { display: block; font-size: 15px; }
.sim-btn-text small { color: var(--text-muted); font-size: 12px; font-family: var(--font-mono); }

.sim-issues-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
}
.sim-issue-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}
.sim-issue-item:last-child { margin-bottom: 0; }
.issue-icon { font-size: 16px; }

/* Smartphone Device Mockup Frame */
.sim-device-container {
    display: flex;
    justify-content: center;
}
.phone-frame {
    width: 320px;
    height: 640px;
    background: #000;
    border: 12px solid #1c2333;
    border-radius: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2a3447;
    border-radius: 4px;
    z-index: 20;
}
.phone-camera {
    position: absolute;
    top: 10px;
    right: 90px;
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    z-index: 20;
}
.phone-screen {
    flex-grow: 1;
    margin-top: 24px;
    overflow-y: auto;
    background: #000;
    position: relative;
}
.phone-home-bar {
    height: 16px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-home-bar::after {
    content: '';
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Split Slider Component */
.slider-instructions {
    text-align: center;
    color: var(--primary-cyan);
    font-size: 13px;
    margin-bottom: 20px;
}
.before-after-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.after-layer {
    z-index: 2;
    width: 50%; /* Dragged by JS */
    border-right: 2px solid var(--primary-cyan);
}
.before-layer {
    z-index: 1;
    width: 100%;
}
.layer-badge {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}
.layer-badge.new {
    left: 16px;
    background: var(--primary-cyan);
    color: #000;
}
.layer-badge.old {
    right: 16px;
    background: rgba(255, 71, 87, 0.9);
    color: #fff;
}

.mock-full-render {
    width: 1000px; /* Fixed rendering canvas width for scale */
    height: 480px;
    padding: 30px;
}
.new-render {
    background: linear-gradient(135deg, #070e1b, #0e1e38);
    color: #fff;
}
.old-render {
    background: #e2e8f0;
    color: #1e293b;
    font-family: Arial, sans-serif;
}

/* New Mock render elements */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-logo { font-family: var(--font-display); font-weight: 800; color: var(--primary-cyan); }
.mock-links span { margin: 0 15px; font-size: 13px; color: var(--text-muted); }
.mock-cta-btn { background: var(--primary-cyan); color: #000; padding: 6px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; }

.mock-hero h2 { font-size: 28px; margin-bottom: 10px; }
.mock-calc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    width: 380px;
}
.calc-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
.calc-price { font-size: 18px; font-weight: 800; color: var(--primary-cyan); margin-top: 10px; }

/* Old Mock render elements */
.mock-old-header {
    background: #003366;
    color: #fff;
    padding: 16px;
    margin-bottom: 20px;
}
.mock-old-title { font-size: 20px; font-weight: bold; margin-bottom: 8px; }
.mock-old-menu { font-size: 12px; }
.old-banner { background: #ffcc00; color: #000; padding: 10px; font-weight: bold; font-size: 13px; margin-bottom: 16px; }
.old-table { border: 1px solid #cbd5e1; background: #fff; font-size: 12px; margin-bottom: 16px; }
.t-head { background: #94a3b8; color: #fff; padding: 8px; font-weight: bold; }
.t-row { padding: 8px; border-top: 1px solid #e2e8f0; }
.old-form { font-size: 12px; color: #475569; }

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 40px;
    margin-left: -20px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.handle-line {
    width: 2px;
    flex-grow: 1;
    background: var(--primary-cyan);
    box-shadow: 0 0 8px var(--primary-cyan);
}
.handle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-cyan);
    color: #07090e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--primary-cyan);
}

/* Audit Matrix Table */
.audit-matrix-wrapper h3 { font-size: 22px; margin-bottom: 8px; }
.audit-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.audit-table th, .audit-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.audit-table th {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
}
.badge-danger { color: var(--accent-red); background: rgba(255, 71, 87, 0.1); padding: 4px 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }
.badge-success { color: var(--accent-green); background: rgba(46, 213, 115, 0.1); padding: 4px 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }
.badge-warning { color: var(--accent-yellow); background: rgba(255, 165, 0, 0.1); padding: 4px 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }

/* Form Section */
.form-card-glass {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(20px);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-card-glass { padding: 24px; }
}

.form-info h2 { font-size: 32px; margin-top: 16px; margin-bottom: 16px; }
.form-info p { color: var(--text-muted); margin-bottom: 24px; }
.form-benefits { list-style: none; padding: 0; }
.form-benefits li { margin-bottom: 12px; font-size: 15px; color: var(--text-main); }

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 16px var(--primary-glow);
}

.method-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.m-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.m-btn.active {
    background: rgba(0, 242, 254, 0.15);
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.form-status {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #040609;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.footer-disclaimer {
    font-size: 12px;
    color: var(--text-dark);
    max-width: 500px;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-green);
    margin-bottom: 8px;
}
.copyright {
    font-size: 12px;
    color: var(--text-dark);
}
