@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   BASE STYLES & VARIABLES
   ============================================ */

* {
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8F65;
    --accent-orange: #FFB499;
    --dark-bg: #09090B;
    --medium-bg: #18181B;
    --light-bg: #27272A;
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --border-color: rgba(255, 255, 255, 0.08);
    --code-bg: rgba(0, 0, 0, 0.4);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* ============================================
   GRADIENT & COLOR UTILITIES
   ============================================ */

.gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neural-pattern {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 143, 101, 0.04) 0%, transparent 50%);
}

.neural-pattern-pink {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.04) 0%, transparent 50%);
}

.glow-orange {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.space-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 143, 101, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.tech-grid {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ============================================
   BADGE UTILITY (replaces emoji badges)
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-orange);
    letter-spacing: 0.01em;
}

/* ============================================
   GLASS EFFECTS & CARDS
   ============================================ */

.glass-card {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    margin-top: 0;
}

.glass-button {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.holographic-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.2s ease;
}

.holographic-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================
   LOGO & BRANDING
   ============================================ */

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-blur {
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   LAYOUT & SPACING
   ============================================ */

.section-padding {
    padding: 96px 0;
}

.hero-height {
    min-height: 85vh;
    padding-top: 32px;
    padding-bottom: 48px;
}

.stats {
    margin-bottom: 24px;
}

/* ============================================
   HOVER & INTERACTION EFFECTS
   ============================================ */

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS - SLIDE & FADE
   ============================================ */

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-24px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(24px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(16px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* ============================================
   PERFORMANCE METRICS & INDICATORS
   ============================================ */

.metric-bar {
    animation: fillMetric 1.5s ease-out forwards;
    width: 0;
}

@keyframes fillMetric {
    to {
        width: var(--metric-width, 100%);
    }
}

.compute-wave {
    animation: computeWave 3s ease-in-out infinite;
}

@keyframes computeWave {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* ============================================
   GPU STATUS & INDICATORS
   ============================================ */

.gpu-status {
    animation: pulse 2s ease-in-out infinite;
}

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

.gpu-active {
    background: var(--primary-orange);
}

.gpu-busy {
    background: #F59E0B;
}

.gpu-warning {
    background: #EF4444;
}

.gpu-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.gpu-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   STATUS INDICATORS
   ============================================ */

.status-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.model-status {
    animation: pulse 2s ease-in-out infinite;
}

.status-active {
    background: #10b981;
    color: #10b981;
}

.status-training {
    background: #F59E0B;
}

.status-offline {
    background: #EF4444;
}

.status-processing {
    background: #f59e0b;
    color: #f59e0b;
}

.status-standby {
    background: #6366f1;
    color: #6366f1;
}

/* ============================================
   ARCHITECTURE & SERVICE NODES
   ============================================ */

.architecture-container {
    perspective: 1000px;
}

.architecture-flow {
    position: relative;
    min-height: 800px;
}

.service-node-3d {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.service-node-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* ============================================
   DATA FLOW VISUALIZATION
   ============================================ */

.data-stream-enhanced {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 107, 53, 0.4) 50%,
            transparent 100%);
    border-radius: 2px;
    animation: dataFlow 3s ease-in-out infinite;
}

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.data-indicator {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0.7;
}

/* ============================================
   CONNECTION LINES & FLOW
   ============================================ */

.connection-line {
    stroke: url(#connectionGradient);
    stroke-width: 1.5;
    stroke-dasharray: 8, 4;
    animation: connectionFlow 3s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: -24;
        opacity: 0.8;
    }
}

/* ============================================
   SECURITY & AUTHENTICATION
   ============================================ */

.security-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.auth-flow-diagram {
    position: relative;
    background: var(--medium-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.flow-step {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease;
}

.flow-step:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.flow-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: rgba(255, 107, 53, 0.5);
    font-size: 20px;
}

.compliance-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin: 3px;
}

/* ============================================
   API ENDPOINTS & BADGES
   ============================================ */

.api-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   ROLE & USER CARDS
   ============================================ */

.role-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #f97316, #eab308);
}

.role-card:nth-child(2)::before {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.role-card:nth-child(3)::before {
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6);
}

.role-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================
   CUSTOMER & FEATURE COMPONENTS
   ============================================ */

.customer-logo {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.customer-logo:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.2s ease;
}

/* ============================================
   INTERACTIVE BUTTONS & ACTIONS
   ============================================ */

.action-button {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.category-filter {
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-filter.active {
    background: var(--primary-orange);
    color: white;
}

.category-filter:hover {
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-orange);
}

/* ============================================
   GUIDED EXPERIENCE & TUTORIALS
   ============================================ */

.guide-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.pipeline-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.journey-flow {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.journey-step {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 16px 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.journey-step:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.journey-step::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    border: 3px solid var(--medium-bg);
}

.journey-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -16px;
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, #3b82f6, rgba(59, 130, 246, 0.2));
}

.training-flow {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.training-step {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 16px 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.training-step:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.training-step::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    border: 3px solid var(--medium-bg);
}

.training-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -16px;
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, #3b82f6, rgba(59, 130, 246, 0.2));
}

/* ============================================
   TOOL CARDS & WORKFLOW PANELS
   ============================================ */

.tool-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.2);
}

.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pipeline-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pipeline-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.2);
}

.pipeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.workflow-panel {
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
}

/* ============================================
   MODEL CARDS & SELECTION
   ============================================ */

.model-type-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.model-type-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.model-type-card.selected {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.06);
}

.training-type-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.training-type-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.training-type-card.selected {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.06);
}

/* ============================================
   PROGRESS & FLOW INDICATORS
   ============================================ */

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 16px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 3px;
    transition: width 1s ease;
}

.flow-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
}

.flow-arrow::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.flow-arrow::after {
    content: "▼";
    background: var(--medium-bg);
    color: #3b82f6;
    padding: 6px 10px;
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    font-size: 11px;
}

.guided-step {
    border-left: 3px solid #3b82f6;
    padding-left: 20px;
    margin: 16px 0;
}

.step-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   VERSION TIMELINE
   ============================================ */

.version-timeline {
    position: relative;
}

.version-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
}

.version-node {
    position: relative;
    z-index: 1;
    background: var(--medium-bg);
    border: 2px solid var(--primary-orange);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* ============================================
   METRICS & PERFORMANCE MONITORING
   ============================================ */

.metric-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    transition: border-color 0.2s ease;
}

.metric-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================
   GPU CLUSTER MANAGEMENT
   ============================================ */

.gpu-cluster {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.gpu-node {
    background: rgba(233, 30, 99, 0.06);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: var(--radius-md);
    padding: 12px;
    margin: 8px 0;
    text-align: center;
    transition: border-color 0.2s ease;
}

.gpu-node:hover {
    border-color: rgba(233, 30, 99, 0.3);
}

/* ============================================
   HYPERPARAMETER TUNING
   ============================================ */

.hyperparameter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.hyperparameter-item {
    background: rgba(233, 30, 99, 0.04);
    border: 1px solid rgba(233, 30, 99, 0.12);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
}

/* ============================================
   API ENDPOINTS
   ============================================ */

.api-endpoint {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    font-family: 'Courier New', monospace;
    margin: 8px 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.2s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1280px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 1024px) {
    .architecture-flow {
        min-height: auto;
    }

    .section-padding {
        padding: 72px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 56px 0;
    }

    .hero-height {
        min-height: auto;
        padding-bottom: 32px;
    }

    .logo-image {
        height: 36px;
        max-width: 150px;
    }

    .gpu-card:hover {
        transform: none;
    }

    .service-node-3d:hover {
        transform: translateY(-2px);
    }

    .architecture-flow {
        min-height: auto;
        padding: 16px 0;
    }

    .service-node-3d {
        width: 100%;
        margin-bottom: 16px;
    }

    .hover-lift:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 48px 0;
    }

    .hero-height {
        min-height: auto;
        padding-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 32px;
        max-width: 120px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-node-3d:hover,
    .data-stream-enhanced,
    .space-atmosphere,
    .tech-grid,
    .slide-in-left,
    .slide-in-right,
    .fade-in-up {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

/* ============================================
   DOCUMENTATION SIDEBAR
   ============================================ */

.docs-sidebar {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(16px);
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 64px;
    width: 280px;
    height: calc(100vh - 64px);
    /* top accounts for fixed navbar height */
    overflow-y: auto;
    z-index: 40;
    transition: transform 0.3s ease;
}

.docs-sidebar.hidden {
    transform: translateX(-100%);
}

.docs-sidebar.footer-visible {
    opacity: 0;
    visibility: hidden;
}

.docs-container {
    position: relative;
    min-height: calc(100vh - 128px);
}

.docs-content {
    margin-left: 280px;
    padding: 32px;
    min-height: calc(100vh - 64px);
}

.docs-sidebar-sticky {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(16px);
    border-right: 1px solid var(--border-color);
    position: sticky;
    left: 0;
    top: 64px;
    width: 280px;
    height: fit-content;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    z-index: 40;
    transition: transform 0.3s ease;
}

.docs-layout {
    display: flex;
    min-height: calc(100vh - 128px);
}

.sidebar-container {
    width: 280px;
    flex-shrink: 0;
    position: relative;
}

.docs-content-flex {
    flex: 1;
    padding: 32px 32px 32px 24px;
}

@media (max-width: 1024px) {
    .docs-sidebar {
        transform: translateX(-100%);
    }

    .docs-sidebar.open {
        transform: translateX(0);
    }

    .docs-content {
        margin-left: 0;
        padding: 20px;
    }

    .docs-content-flex {
        padding: 20px;
    }
}

.docs-nav-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.15s ease;
    font-size: 14px;
}

.docs-nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border-left-color: var(--primary-orange);
}

.docs-nav-item.active {
    background: rgba(255, 107, 53, 0.06);
    color: var(--primary-orange);
    border-left-color: var(--primary-orange);
    font-weight: 600;
}

.docs-nav-section {
    padding: 16px 20px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.code-block {
    background: var(--code-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    overflow-x: auto;
    position: relative;
    margin: 20px 0;
}

.code-block pre {
    margin: 0;
    color: #e6edf3;
    font-size: 13px;
    line-height: 1.6;
}

.code-block .copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.code-block .copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.language-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.docs-section {
    margin-bottom: 48px;
    scroll-margin-top: 80px;
}

.docs-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.docs-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.docs-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.docs-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--text-primary);
}

.docs-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.docs-section ul,
.docs-section ol {
    color: var(--text-secondary);
    margin: 14px 0;
    padding-left: 24px;
}

.docs-section li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.docs-section blockquote {
    background: rgba(255, 107, 53, 0.04);
    border-left: 3px solid var(--primary-orange);
    padding: 14px 18px;
    margin: 20px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.docs-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(9, 9, 11, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.docs-section th,
.docs-section td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.docs-section th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
}

.docs-section td {
    color: var(--text-secondary);
    font-size: 14px;
}

.inline-code {
    background: rgba(255, 107, 53, 0.06);
    color: var(--primary-orange);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.endpoint-card {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    margin: 16px 0;
}

.endpoint-method {
    display: inline-block;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.method-get {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.method-post {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.method-put {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.method-delete {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.response-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 14px;
}

.response-tab {
    padding: 8px 14px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
    font-size: 13px;
}

.response-tab.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.response-content {
    display: none;
}

.response-content.active {
    display: block;
}

.search-box {
    position: relative;
    margin: 16px;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 14px 10px 36px;
    color: var(--text-primary);
    font-size: 13px;
}

.search-box input:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.06);
}

.search-box svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.toc {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    margin: 16px 0;
}

.toc h4 {
    margin: 0 0 14px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.toc ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}

.toc a:hover {
    color: var(--primary-orange);
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-stable {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.status-beta {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.status-deprecated {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    border-left: 3px solid;
    font-size: 14px;
}

.alert-info {
    background: rgba(59, 130, 246, 0.06);
    border-color: #3b82f6;
    color: #93c5fd;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.06);
    border-color: #f59e0b;
    color: #fbbf24;
}

.alert-success {
    background: rgba(16, 185, 129, 0.06);
    border-color: #10b981;
    color: #6ee7b7;
}

.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border-color: #ef4444;
    color: #fca5a5;
}

/* Syntax highlighting */
.token.keyword { color: #ff7b72; }
.token.string { color: #a5d6ff; }
.token.function { color: #d2a8ff; }
.token.number { color: #79c0ff; }
.token.comment { color: #8b949e; font-style: italic; }
.token.property { color: #79c0ff; }
.token.punctuation { color: #e6edf3; }
.token.operator { color: #ff7b72; }
.token.boolean { color: #79c0ff; }

/* ============================================
   FORM ELEMENTS
   ============================================ */

.input-field {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: white;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-field:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.06);
}

.input-field::placeholder {
    color: var(--text-muted);
}

select.input-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ============================================
   CALENDAR & MEETING
   ============================================ */

.calendar-container {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.calendar-day-header {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.calendar-day.selected {
    background: var(--primary-orange);
    color: white;
}

.calendar-day.today {
    border: 1px solid var(--primary-orange);
    background: rgba(255, 107, 53, 0.04);
}

.calendar-day.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.3;
}

.calendar-day.other-month {
    color: var(--text-muted);
    opacity: 0.4;
}

.time-slot {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.625rem 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease;
    font-weight: 500;
    font-size: 14px;
}

.time-slot:hover:not(.disabled) {
    border-color: rgba(255, 107, 53, 0.3);
}

.time-slot.selected {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-button-btn {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.nav-button-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.step-indicator-in {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
    color: var(--text-muted) !important;
}

.step.active {
    color: var(--primary-orange) !important;
}

.step.completed {
    color: var(--secondary-orange) !important;
}

.step-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border: 2px solid currentColor !important;
    background: transparent !important;
    color: inherit !important;
    flex-shrink: 0 !important;
}

.step.active .step-circle {
    background: var(--primary-orange) !important;
    color: white !important;
    border-color: var(--primary-orange) !important;
}

.step.completed .step-circle {
    background: var(--secondary-orange) !important;
    color: white !important;
    border-color: var(--secondary-orange) !important;
}

.step-line {
    width: 48px !important;
    height: 1px !important;
    background: var(--border-color) !important;
    margin: 0 0.5rem !important;
    margin-bottom: 1.25rem !important;
}

.step.completed+.step .step-line {
    background: var(--secondary-orange) !important;
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(16px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.loading-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: loadingDot 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

@keyframes loadingDot {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.meeting-type-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.15s ease;
    text-align: center;
}

.meeting-type-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.meeting-type-card.selected {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.04);
}

.timezone-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: var(--radius-md);
    padding: 0.625rem;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 1.5rem;
    padding-top: 2rem;
}

/* Mobile Responsive (meeting page) */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        padding-top: 1.25rem;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.75rem;
    }
}

/* ============================================
   UNSUBSCRIBE & EMAIL
   ============================================ */

.unsubscribe-container {
    max-width: 560px;
    width: 100%;
}

.checkbox-group {
    background: var(--medium-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin: 16px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background 0.15s ease;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.success-message, .error-message {
    padding: 16px;
    border-radius: var(--radius-lg);
    margin: 16px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.success-message {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.error-message {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.logo-section {
    text-align: center;
    margin-bottom: 32px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tagline {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   Desktop layout remains unchanged.
   Tailwind responsive classes handle most spacing/sizing.
   These CSS rules handle custom components not
   controlled by Tailwind.
   ============================================ */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    section, .max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl, .max-w-3xl {
        overflow-x: hidden;
    }

    button[class*="min-w-"],
    a[class*="min-w-"] {
        min-width: 0 !important;
    }

    .docs-section table,
    .glass-card table,
    .holographic-card table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
    }

    .auth-flow-diagram { padding: 16px 12px; }
    .flow-step { padding: 14px; }
    .flow-arrow { right: auto; top: auto; position: relative; transform: none; }

    .role-card { padding: 16px; }

    .feature-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .customer-logo { width: 72px; height: 48px; margin-bottom: 10px; }

    .holographic-card { margin-bottom: 0; }

    .badge, .security-badge, .guide-badge, .pipeline-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .journey-step, .training-step { padding: 14px; margin-left: 6px; }
    .journey-step::before, .training-step::before { width: 14px; height: 14px; left: -9px; }

    .tool-card, .pipeline-card { padding: 14px; }

    .hyperparameter-grid { grid-template-columns: 1fr; }

    .api-endpoint { padding: 10px; font-size: 11px; }
    .gpu-cluster { padding: 12px; }
    .metric-card { padding: 10px; }

    .version-timeline::before { left: 6px; }
    .version-node { width: 16px; height: 16px; }

    .step-indicator-in {
        flex-direction: row !important;
        gap: 0 !important;
        padding: 0 0.5rem;
    }
    .step-indicator-in .step {
        flex-direction: column !important;
        gap: 0.25rem !important;
        flex: 0 0 auto;
    }
    .step-line {
        width: 20px !important;
        height: 1px !important;
        margin: 0 0.125rem !important;
        margin-bottom: 1.1rem !important;
    }
    .step-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }
    .step-indicator-in .step span {
        font-size: 0.5625rem;
        text-align: center;
        max-width: 56px;
        line-height: 1.2;
    }

    .calendar-container { padding: 0.75rem; }
    .calendar-day { font-size: 0.75rem; min-height: 32px; }
    .calendar-day-header { font-size: 0.625rem; }
    .time-slot { padding: 0.5rem 0.625rem; font-size: 12px; }

    .meeting-type-card { padding: 0.875rem; }

    #mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    #mobile-menu:not(.hidden) { max-height: 80vh; }

    .docs-sidebar { width: 260px; z-index: 50; }
    .docs-content { margin-left: 0 !important; padding: 12px !important; }
    .docs-content-flex { padding: 12px !important; }
    .docs-section h1 { font-size: 1.375rem; }
    .docs-section h2 { font-size: 1.125rem; }
    .docs-section h3 { font-size: 1rem; }
    .code-block { padding: 12px; margin: 12px 0; }
    .code-block pre { font-size: 11px; }

    .unsubscribe-container { max-width: 100%; padding: 0 4px; }
    .checkbox-group { padding: 12px; }
    .checkbox-item { padding: 8px 6px; }

    .compliance-badge { font-size: 10px; padding: 2px 6px; margin: 2px; }

    .architecture-flow { min-height: auto !important; padding: 6px 0; }
    .architecture-container { perspective: none; }
    .data-stream-enhanced { display: none; }

    .gradient-text { word-break: break-word; }

    .input-field, select.input-field, textarea.input-field,
    .form-input, .form-select, .form-textarea {
        font-size: 16px;
    }

    .main-container { padding: 0.75rem; }

    .sidebar-container { display: none; }
    .docs-layout { display: block; }

    .section-padding { padding: 40px 0; }

    .hero-height {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .hover-lift:hover { transform: none; }

    .logo-section .logo-text { font-size: 1.75rem; }

    footer { padding-top: 2rem; padding-bottom: 2rem; }
}

@media (max-width: 480px) {
    .section-padding { padding: 28px 0; }
    .hero-height { padding-top: 16px; padding-bottom: 16px; }

    .badge, .security-badge { font-size: 10px; padding: 3px 8px; }

    .docs-section h1 { font-size: 1.25rem; }
    .docs-section h2 { font-size: 1.05rem; }
    .docs-section h3 { font-size: 0.95rem; }

    .calendar-day { font-size: 0.625rem; min-height: 28px; }
    .calendar-day-header { font-size: 0.5625rem; }

    .main-container { padding: 0.5rem; }

    footer .flex input[type="email"] { font-size: 14px; }

    .step-line { width: 12px !important; }
    .step-circle { width: 24px !important; height: 24px !important; font-size: 10px !important; }
    .step-indicator-in .step span { font-size: 0.5rem; max-width: 48px; }

    .logo-section .logo-text { font-size: 1.5rem; }
}
