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

:root {
    --bg-black: #000000;
    --bg-dark: #070708;
    --bg-card: rgba(13, 13, 16, 0.7);
    --bg-card-hover: rgba(20, 20, 25, 0.85);
    
    /* Neon Green / Dark Green Theme colors */
    --primary-green: #4DFF88;
    --primary-green-rgb: 77, 255, 136;
    --deep-green: #0B2A18;
    --deep-green-rgb: 11, 42, 24;
    --emerald-green: #00E575;
    
    /* Text colors */
    --text-pure: #ffffff;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-green: #a7f3d0;
    
    /* Borders & Glows */
    --border-light: rgba(77, 255, 136, 0.08);
    --border-medium: rgba(77, 255, 136, 0.2);
    --border-glow: rgba(77, 255, 136, 0.35);
    --shadow-glow: 0 0 25px rgba(77, 255, 136, 0.12);
    --shadow-glow-strong: 0 0 35px rgba(77, 255, 136, 0.25);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --sidebar-width: 320px;
    --container-max-width: 1300px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(77, 255, 136, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-black);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(11, 42, 24, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(77, 255, 136, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, var(--bg-black) 100%);
    background-attachment: fixed;
    position: relative;
}

/* Subtle Animated Grid Overlay for Cyberpunk/Modern Tech vibe */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(77, 255, 136, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(77, 255, 136, 0.015) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

/* Base Layout Containers */
.app-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header & Navigation Styles */
header {
    background: rgba(7, 7, 8, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(77, 255, 136, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(77, 255, 136, 0.4));
    transition: var(--transition-smooth);
}

.brand:hover .brand-logo {
    filter: drop-shadow(0 0 12px rgba(77, 255, 136, 0.8)) rotate(10deg);
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--text-pure);
}

.brand-text span {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(77, 255, 136, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    font-family: var(--font-heading);
    background: var(--deep-green);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(77, 255, 136, 0.1);
}

.btn-primary:hover {
    background: var(--primary-green);
    color: var(--bg-black);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 255, 136, 0.08) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(77, 255, 136, 0.06);
    border: 1px solid rgba(77, 255, 136, 0.2);
    color: var(--primary-green);
    padding: 0.35rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald-green);
    animation: pulse 2s infinite;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-pure);
    line-height: 1.15;
    margin-bottom: 1rem;
}

h1 span {
    background: linear-gradient(135deg, var(--text-pure) 30%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.last-updated {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Search Bar styling */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.search-input {
    width: 100%;
    background: rgba(13, 13, 16, 0.6);
    border: 1px solid var(--border-medium);
    padding: 1rem 1.5rem 1rem 3.25rem;
    border-radius: 16px;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(20, 20, 25, 0.9);
    box-shadow: var(--shadow-glow);
}

.search-input:focus + .search-icon {
    color: var(--primary-green);
    filter: drop-shadow(0 0 5px var(--primary-green));
}

.search-clear {
    position: absolute;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    transition: var(--transition-fast);
}

.search-clear:hover {
    color: var(--primary-green);
}

/* Layout Columns */
.layout-grid {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Sidebar Styling */
.sidebar-column {
    position: sticky;
    top: 100px;
    height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.sidebar-nav-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-pure);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
}

.sidebar-link:hover {
    color: var(--primary-green);
    background: rgba(77, 255, 136, 0.05);
}

.sidebar-link.active {
    color: var(--primary-green);
    background: rgba(77, 255, 136, 0.08);
    border-left-color: var(--primary-green);
    font-weight: 600;
    box-shadow: inset 5px 0 15px rgba(77, 255, 136, 0.05);
}

.sidebar-link-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    min-width: 22px;
    text-align: center;
}

.sidebar-link.active .sidebar-link-num {
    background: rgba(77, 255, 136, 0.15);
    color: var(--primary-green);
    opacity: 1;
}

/* Sidebar Quick Actions Card */
.sidebar-actions-card {
    background: radial-gradient(circle at 100% 0%, rgba(11, 42, 24, 0.7) 0%, rgba(13, 13, 16, 0.8) 70%);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-actions-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-pure);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-sidebar-action {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-sidebar-action:hover {
    background: rgba(77, 255, 136, 0.06);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Content Columns Styling */
.content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Glassmorphism Section Card styling */
.policy-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    position: relative;
    scroll-margin-top: 100px;
}

.policy-section:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

.policy-section.highlighted-search {
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(77, 255, 136, 0.2);
}

.policy-section.dimmed-search {
    opacity: 0.25;
    filter: blur(1px);
    pointer-events: none;
}

.section-num {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(77, 255, 136, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-smooth);
}

.policy-section:hover .section-num {
    color: rgba(77, 255, 136, 0.12);
    transform: scale(1.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.section-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    filter: drop-shadow(0 0 5px rgba(77, 255, 136, 0.4));
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: -0.3px;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.policy-section p strong {
    color: var(--text-pure);
}

/* Bullet list custom styling */
.bullet-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.bullet-list.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.bullet-item:hover {
    background: rgba(77, 255, 136, 0.02);
    border-color: rgba(77, 255, 136, 0.15);
    transform: translateX(4px);
}

.bullet-icon {
    color: var(--primary-green);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.bullet-text strong {
    color: var(--text-pure);
    font-family: var(--font-heading);
}

.bullet-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* Highlight boxes (cyber-callout) */
.cyber-callout {
    background: linear-gradient(135deg, rgba(11, 42, 24, 0.6) 0%, rgba(13, 13, 16, 0.8) 100%);
    border: 1px solid rgba(77, 255, 136, 0.2);
    border-left: 4px solid var(--primary-green);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.cyber-callout::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(77, 255, 136, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cyber-callout h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cyber-callout p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-green);
}

/* Search highlights inside text */
mark.search-match {
    background: rgba(77, 255, 136, 0.3);
    color: var(--text-pure);
    border-radius: 2px;
    padding: 0 2px;
    font-weight: 600;
}

/* Interactive Components */
/* Grid for third party service cards */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    background: rgba(77, 255, 136, 0.03);
    border-color: rgba(77, 255, 136, 0.25);
    transform: translateY(-3px);
}

.tech-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
}

.tech-logo-wrap i {
    font-size: 1.25rem;
}

.tech-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-pure);
    font-size: 1.05rem;
}

.tech-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Encrypted Chat Accordion Slider */
.disclosure-panel {
    background: rgba(13, 13, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-top: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.disclosure-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.disclosure-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.disclosure-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-pure);
}

.disclosure-title i {
    color: var(--primary-green);
}

.disclosure-arrow {
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.disclosure-panel.open .disclosure-arrow {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.disclosure-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.disclosure-panel.open .disclosure-content {
    max-height: 400px; /* Large enough to fit text */
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.disclosure-content p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.disclosure-content p:last-child {
    margin-bottom: 0;
}

.fee-badge {
    display: inline-flex;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Account Deletion Simulator card styling */
.simulator-card {
    background: linear-gradient(135deg, rgba(7, 7, 8, 0.9) 0%, rgba(20, 20, 25, 0.8) 100%);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
    position: relative;
}

.simulator-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulator-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.simulator-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(77, 255, 136, 0.15);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    margin-top: 0.2rem;
    accent-color: var(--primary-green);
}

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

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #fca5a5;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-danger:hover:not(:disabled) {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}

.btn-danger:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* simulator simulation UI */
.simulator-status {
    margin-top: 1rem;
    display: none;
}

.progress-bar-wrap {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--emerald-green));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.status-message {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-success-box {
    background: rgba(77, 255, 136, 0.05);
    border: 1px solid var(--border-medium);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.success-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 0.25rem;
}

.success-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Info styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.contact-card:hover {
    background: rgba(77, 255, 136, 0.02);
    border-color: rgba(77, 255, 136, 0.15);
}

.contact-card-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 44px;
    height: 44px;
    background: rgba(77, 255, 136, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-pure);
}

a.contact-card-value {
    text-decoration: none;
    transition: var(--transition-fast);
}

a.contact-card-value:hover {
    color: var(--primary-green);
    text-shadow: 0 0 5px rgba(77, 255, 136, 0.4);
}

/* Mobile sticky navigation bar/buttons */
.mobile-nav-pill {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(13, 13, 16, 0.85);
    border: 1px solid var(--border-medium);
    border-radius: 99px;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(77, 255, 136, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 90;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav-pill.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.mobile-nav-btn:hover, .mobile-nav-btn.active {
    color: var(--primary-green);
}

.mobile-nav-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Table of Contents Modal Drawer overlay */
.mobile-toc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-toc-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-toc-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-height: 80vh;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-medium);
    border-radius: 30px 30px 0 0;
    padding: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.mobile-toc-overlay.open .mobile-toc-drawer {
    transform: translateY(0);
}

.mobile-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mobile-toc-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-pure);
}

.mobile-toc-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-toc-close:hover {
    background: rgba(77, 255, 136, 0.1);
    color: var(--primary-green);
}

.mobile-toc-list-wrap {
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 2rem;
}

/* Footer styling */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 36px;
    width: 36px;
    filter: drop-shadow(0 0 5px rgba(77, 255, 136, 0.3));
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-pure);
}

.footer-brand-title span {
    color: var(--primary-green);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-pure);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-link:hover {
    color: var(--primary-green);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal-link:hover {
    color: var(--primary-green);
}

/* Scroll to top floating button */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    z-index: 80;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--primary-green);
    color: var(--bg-black);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-4px);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 117, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 229, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 117, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries (Responsive) */
@media (max-width: 1024px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-column {
        display: none; /* Sidebar is replaced by the bottom floating menu on tablets/mobile */
    }
    
    h1 {
        font-size: 2.75rem;
    }
    
    .bullet-list.two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 0 1.25rem;
    }
    
    .hero-section {
        padding: 3rem 0 2rem 0;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.75rem;
        border-radius: 18px;
    }
    
    .section-num {
        top: 1.5rem;
        right: 1.75rem;
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Print CSS */
@media print {
    body {
        background: #ffffff;
        color: #000000;
    }
    body::before, .hero-glow, .mobile-nav-pill, .scroll-top-btn, .search-container, .sidebar-column, .disclosure-arrow, .disclosure-header i, .simulator-card {
        display: none !important;
    }
    .app-container {
        max-width: 100%;
        padding: 0;
    }
    .layout-grid {
        display: block;
    }
    .policy-section {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 1rem 0 !important;
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    .bullet-item {
        border: none !important;
        background: transparent !important;
        padding: 0.25rem 0 !important;
    }
    .bullet-icon {
        color: #000000 !important;
    }
    .tech-grid {
        display: block;
    }
    .tech-card {
        border: none !important;
        background: transparent !important;
        padding: 0.5rem 0 !important;
    }
    .section-num {
        display: none;
    }
    h1, h2, h3, h4, h5, h6 {
        color: #000000 !important;
        page-break-after: avoid;
    }
    p, li, span, div {
        color: #000000 !important;
    }
    .disclosure-content {
        max-height: none !important;
        display: block !important;
        padding: 0 !important;
    }
    .disclosure-panel {
        border: none !important;
        background: transparent !important;
    }
}
