/* =============================================
   GPU Cloud Tracker — ElevenLabs-Inspired Design
   Pure monochrome: black bg, white text, zero glow
   ============================================= */

/* ---------- 1. FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
    /* Background */
    --bg-primary:   #080808;
    --bg-secondary: #111111;
    --bg-tertiary:  #1A1A1A;
    --bg-card:      #111111;

    /* Text */
    --text-primary:   #FFFFFF;
    --text-secondary: rgba(255,255,255,0.55);
    --text-muted:     rgba(255,255,255,0.28);

    /* Borders */
    --border-subtle:  rgba(255,255,255,0.07);
    --border-default: rgba(255,255,255,0.10);
    --border-strong:  rgba(255,255,255,0.18);

    /* Accent — pure white only */
    --accent: #FFFFFF;

    /* Typography */
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --font-mono:  'JetBrains Mono', 'Menlo', monospace;

    /* Spacing */
    --max-width: 1200px;
    --section-pad: 8rem;

    /* Transitions */
    --t-fast:   0.15s ease;
    --t-normal: 0.25s ease;
}

/* ---------- 3. RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* No canvas background — solid black */
#grid-canvas { display: none; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- 4. LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: var(--section-pad) 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title em {
    font-style: italic;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin: 1.5rem auto 0;
}

.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ---------- 5. SPLIT LAYOUT ---------- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

/* ---------- 6. BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: 6px;
    transition: all var(--t-fast);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.btn-primary {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.88);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: rgba(255,255,255,0.04);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

/* ---------- 7. NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(8,8,8,0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--t-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo svg rect, .logo svg path {
    stroke: #FFFFFF;
}

.logo svg circle {
    fill: #FFFFFF;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.logo-text span:last-child {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.825rem;
    color: var(--text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: 5px;
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-cta {
    font-size: 0.825rem;
    padding: 0.5rem 1.1rem;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--t-fast);
}

/* ---------- 8. HERO ---------- */
.hero-section {
    padding-top: calc(64px + 7rem);
    padding-bottom: 7rem;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--border-strong);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.65);
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
    max-width: 640px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}

/* Pulse dot (subtle) */
.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

.pulse-dot.green {
    background: rgba(255,255,255,0.5);
}

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

/* ---------- 9. SERVICES OVERVIEW ---------- */
.services-overview-section {
    border-top: 1px solid var(--border-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    transition: background var(--t-fast);
}

.service-card:hover {
    background: rgba(255,255,255,0.03);
}

.service-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color var(--t-fast);
}

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

.arrow {
    transition: transform var(--t-fast);
}

.card-link:hover .arrow {
    transform: translateX(3px);
}

/* icon colors — monochrome */
.cyan-icon, .indigo-icon, .emerald-icon {
    color: var(--text-secondary);
}

/* ---------- 10. WORKFORCE SECTION ---------- */
.workforce-section {
    border-top: 1px solid var(--border-subtle);
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-bullets li {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding-left: 1.25rem;
    position: relative;
}

.feature-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--border-strong);
}

.feature-bullets li strong {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- 11. TERMINAL ---------- */
.terminal-mockup {
    background: #0D0D0D;
    border: 1px solid var(--border-default);
    border-radius: 10px;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red    { background: #3D1C1C; }
.dot.yellow { background: #3D3419; }
.dot.green  { background: #1C3320; }

.terminal-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}

.terminal-status {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
}

.terminal-body {
    padding: 1.25rem;
    min-height: 360px;
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.terminal-body .cmd {
    color: rgba(255,255,255,0.85);
    margin-top: 0.75rem;
}

.terminal-body .cmd:first-child {
    margin-top: 0;
}

.terminal-body .dir {
    color: rgba(255,255,255,0.35);
    user-select: none;
}

.terminal-body .out {
    color: rgba(255,255,255,0.35);
    white-space: pre-wrap;
}

.terminal-body .success {
    color: rgba(255,255,255,0.55);
    white-space: pre-wrap;
}

/* ---------- 12. GPU SECTION ---------- */
.gpu-section {
    border-top: 1px solid var(--border-subtle);
}

.gpu-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
}

.gpu-feature-item {
    padding: 1.5rem;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.gpu-feature-item:nth-child(even) {
    border-right: none;
}

.gpu-feature-item:nth-child(3),
.gpu-feature-item:nth-child(4) {
    border-bottom: none;
}

.gpu-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.gpu-feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Token optimization box */
.token-optimization-box {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-default);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

.opt-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.opt-header svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.token-optimization-box p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* GPU server chassis */
.gpu-server-chassis {
    background: #0D0D0D;
    border: 1px solid var(--border-default);
    border-radius: 10px;
    overflow: hidden;
    font-family: var(--font-mono);
}

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

.rack-unit-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.connection-light {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.connection-light.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.rack-slot-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gpu-module {
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 1.25rem;
}

.gpu-module:last-child {
    border-bottom: none;
}

.gpu-card-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gpu-fan {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-default);
    flex-shrink: 0;
    animation: spin 3s linear infinite;
}

.gpu-fan.speed-medium { animation-duration: 2s; }
.gpu-fan.speed-high   { animation-duration: 1s; }
.gpu-fan.idle         { animation: none; opacity: 0.3; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.gpu-info {
    flex: 1;
}

.gpu-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.gpu-load-bar {
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
}

.gpu-load-bar .fill {
    height: 100%;
    background: rgba(255,255,255,0.35);
    border-radius: 2px;
}

.active-gpu .gpu-load-bar .fill {
    background: rgba(255,255,255,0.45);
}

.led-indicators {
    display: flex;
    gap: 4px;
}

.led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.led.green   { background: rgba(255,255,255,0.4); }
.led.yellow  { background: rgba(255,255,255,0.25); }
.led.off     { background: rgba(255,255,255,0.07); }
.led.blinking { animation: pulse 1.5s ease-in-out infinite; }

.chassis-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1.25rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.temp-indicator { color: rgba(255,255,255,0.35); }

/* ---------- 13. SECURITY SECTION ---------- */
.security-section {
    border-top: 1px solid var(--border-subtle);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem;
}

.security-card {
    background: var(--bg-primary);
    padding: 1.75rem 1.5rem;
    transition: background var(--t-fast);
}

.security-card:hover {
    background: rgba(255,255,255,0.02);
}

.sec-icon-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.sec-icon-circle svg {
    color: var(--text-muted);
    stroke: var(--text-muted);
}

.security-card h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.security-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- 14. USE CASES ---------- */
.use-cases-section {
    border-top: 1px solid var(--border-subtle);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem;
}

.use-case-item {
    background: var(--bg-primary);
    padding: 1.75rem 1.5rem;
    transition: background var(--t-fast);
}

.use-case-item:hover {
    background: rgba(255,255,255,0.02);
}

.use-case-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 0.18rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.use-case-item h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.use-case-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- 15. DEPLOYMENT ---------- */
.deployment-section {
    border-top: 1px solid var(--border-subtle);
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem;
}

.deployment-card {
    position: relative;
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    transition: background var(--t-fast);
}

.deployment-card:hover {
    background: rgba(255,255,255,0.02);
}

/* Remove old glow effect */
.card-glow { display: none; }

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.deployment-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ---------- 16. CONTACT ---------- */
.contact-section {
    border-top: 1px solid var(--border-subtle);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.contact-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-feat-item .icon {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

/* Contact form card */
.contact-form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-default);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color var(--t-fast);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--border-strong);
    background: rgba(255,255,255,0.05);
}

.form-group select option {
    background: #111;
    color: var(--text-primary);
}

.form-success-wrapper {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
}

.form-success-wrapper.active {
    display: flex;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.success-icon svg {
    stroke: var(--text-secondary);
}

.success-message h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.success-message p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- 17. FOOTER ---------- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-main-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.footer-brand-link svg rect,
.footer-brand-link svg path {
    stroke: rgba(255,255,255,0.4);
}

.footer-brand-link svg circle {
    fill: rgba(255,255,255,0.4);
}

.footer-brand-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.65;
}

.footer-compliance-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.25rem;
}

.footer-compliance-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--t-fast);
}

.footer-compliance-links a:hover {
    color: var(--text-secondary);
}

.footer-divider {
    color: var(--border-strong);
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-secure-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    white-space: nowrap;
}

/* ---------- 18. COMPLIANCE MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 78vh;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(16px);
    transition: transform var(--t-normal);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    transition: color var(--t-fast);
    background: none;
    border: none;
    cursor: pointer;
}

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

.modal-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.modal-body {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 0.5rem;
}

.modal-body h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 1.5rem 0 0.6rem;
}

.modal-body h4:first-child { margin-top: 0; }

.modal-body p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width: 1024px) {
    :root { --section-pad: 5rem; }
    .container { padding: 0 1.75rem; }
    .services-grid,
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .security-grid  { grid-template-columns: repeat(2, 1fr); }
    .split-layout   { gap: 4rem; }
}

@media (max-width: 768px) {
    :root { --section-pad: 4rem; }
    .container { padding: 0 1.25rem; }

    .mobile-menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        z-index: 990;
        pointer-events: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-actions { display: none; }

    .split-layout,
    .split-layout.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }

    .services-grid,
    .security-grid,
    .use-cases-grid,
    .deployment-grid { grid-template-columns: 1fr; }

    .gpu-features-grid { grid-template-columns: 1fr; }
    .gpu-feature-item { border-right: none !important; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
