/* Worthy Tech LLC — Blazor Server Styles */

:root {
    --navy-950: #030712;
    --navy-900: #0a0f1e;
    --navy-800: #111827;
    --navy-700: #1e293b;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
    --container-max: 80rem;
    --header-height: 4rem;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: var(--navy-950);
    color: var(--slate-300);
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 92, 246, 0.08), transparent);
    min-height: 100vh;
}

::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: white;
    margin: 0;
}

p { margin: 0; line-height: 1.625; }

ul { margin: 0; padding: 0; }

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container-narrow { max-width: 48rem; margin: 0 auto; }
.container-medium { max-width: 56rem; margin: 0 auto; }

.site-main { padding-top: var(--header-height); }

.page-section { padding: 4rem 0; }
.section { padding: 6rem 0; }
.section-alt {
    border-block: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 15, 30, 0.3);
}
.section-spacer { margin-top: 5rem; }

/* Typography utilities */
.text-gradient {
    background: linear-gradient(to right, var(--cyan-400), #67e8f9, var(--violet-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-accent { color: var(--cyan-400); font-style: normal; }
.text-muted { color: var(--slate-400); }
.text-center { text-align: center; }
.link-accent { color: var(--cyan-400); }
.link-accent:hover { color: #67e8f9; text-decoration: underline; }

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cyan-400);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(24px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.logo:hover { transform: scale(1.02); }

.logo-icon { width: 2.5rem; height: 2.5rem; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

.logo-llc {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(34, 211, 238, 0.8);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-400);
    transition: all 0.2s;
}

.nav-link:hover { background: rgba(255, 255, 255, 0.05); color: white; }
.nav-link-active { background: rgba(6, 182, 212, 0.1); color: var(--cyan-400); }

.nav-toggle {
    display: flex;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: var(--slate-400);
    cursor: pointer;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.05); color: white; }

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

.nav-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 7, 18, 0.95);
    padding: 1rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-300);
}

.nav-mobile-link:hover { background: rgba(255, 255, 255, 0.05); color: white; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1rem; }

.btn-primary {
    background: linear-gradient(to right, var(--cyan-500), var(--violet-500));
    color: white;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-white {
    background: white;
    color: var(--navy-950);
}

.btn-white:hover { opacity: 0.9; }

.glow-cyan {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2), 0 0 80px rgba(6, 182, 212, 0.1);
}

/* Icons */
.icon { width: 1.5rem; height: 1.5rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-xs { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.6), rgba(3, 7, 18, 0.8), var(--navy-950));
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    padding: 6rem 1rem 10rem;
    max-width: 48rem;
}

@media (min-width: 640px) { .hero-content { padding: 8rem 1.5rem 10rem; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cyan-400);
}

.pulse-dot {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--cyan-400);
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-core {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--cyan-500);
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    margin-top: 2rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    margin-top: 1.5rem;
    max-width: 36rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--slate-300);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Section heading */
.section-heading { max-width: 42rem; }
.section-heading-center { text-align: center; margin: 0 auto; }

.section-title {
    margin-top: 0.75rem;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--slate-400);
}

/* Cards */
.card-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
}

.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
}

.card-hover { transition: all 0.2s; }
.card-hover:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.card-flex { display: flex; flex-direction: column; }
.card-center { text-align: center; }
.flex-grow { flex: 1; }

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--cyan-400);
}

.card-icon-lg { width: 4rem; height: 4rem; border-radius: 1rem; margin: 0 auto; }
.card-icon-cyan { background: rgba(6, 182, 212, 0.2); color: var(--cyan-400); }
.card-icon-violet { background: rgba(139, 92, 246, 0.2); color: var(--violet-400); }

.card-title { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; }
.card-title-lg { margin-top: 1rem; font-size: 1.25rem; font-weight: 700; }
.card-text { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-400); }
.card-text-muted { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-500); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-violet { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }
.badge-cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan-400); }
.badge-emerald { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.badge-muted { background: rgba(255, 255, 255, 0.1); color: var(--slate-400); margin-top: 1rem; }

/* Platform list */
.split-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) { .split-grid { grid-template-columns: 1fr 1fr; } }

.platform-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

.platform-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.platform-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan-400);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.platform-header h3 { font-size: 1rem; font-weight: 600; }
.platform-item p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-400); }

/* Image glow */
.image-glow-wrap { position: relative; }

.image-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 1.5rem;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    filter: blur(32px);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pipeline */
.pipeline-grid {
    display: grid;
    gap: 1rem;
    margin-top: 4rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) { .pipeline-grid { grid-template-columns: repeat(5, 1fr); } }

.pipeline-step { text-align: center; position: relative; }

.pipeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cyan-400);
}

.pipeline-step h3 { margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.pipeline-step p { margin-top: 0.25rem; font-size: 0.75rem; color: var(--slate-500); }

/* CTA */
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), var(--navy-800), rgba(139, 92, 246, 0.1));
    padding: 3rem 1.5rem;
    text-align: center;
}

@media (min-width: 640px) { .cta-box { padding: 4rem; } }

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; }
.cta-content p {
    margin: 1rem auto 0;
    max-width: 32rem;
    color: var(--slate-400);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Apps page */
.product-hero {
    margin-top: 4rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), var(--navy-800), rgba(139, 92, 246, 0.1));
    padding: 2rem;
}

@media (min-width: 640px) { .product-hero { padding: 3rem; } }

.product-hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) { .product-hero-grid { grid-template-columns: 1fr 1fr; } }

.product-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.product-title { margin-top: 1.5rem; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.product-oneliner { margin-top: 1rem; font-size: 1.125rem; color: rgba(103, 232, 249, 0.9); }
.product-description { margin-top: 1rem; font-size: 0.875rem; color: var(--slate-400); line-height: 1.625; }
.product-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.info-box-title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); }
.trust-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.trust-header h2 { font-size: 1.25rem; font-weight: 700; }

.store-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.store-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--cyan-400);
    transition: all 0.2s;
}

.store-link:hover {
    border-color: rgba(6, 182, 212, 0.3);
    color: #67e8f9;
}

.store-link-stub { margin-left: 0.25rem; font-size: 0.75rem; color: var(--slate-500); }
.store-links-note { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: var(--slate-500); }
.product-pipeline { padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }

.app-badges { display: flex; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.app-platforms {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--slate-500);
}

.platform-icons { display: flex; gap: 0.5rem; }

.platform-icon-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--slate-400);
}

/* Prose / About */
.prose {
    margin-top: 4rem;
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.info-box-accent {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.05);
}

.info-box h2 { font-size: 1.25rem; font-weight: 700; }
.info-box p { margin-top: 1rem; color: var(--slate-400); font-size: 1rem; }

.check-list {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--slate-400);
    font-size: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 0.375rem;
    height: 0.375rem;
    margin-top: 0.5rem;
    border-radius: 50%;
    background: var(--cyan-400);
}

.info-dl { margin-top: 1rem; }
.info-dl > div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

.info-dl > div:last-child { border-bottom: none; }
.info-dl dt { color: var(--slate-500); }
.info-dl dd { font-weight: 500; color: white; margin: 0; }

.info-dl-simple > div { flex-direction: column; gap: 0.25rem; }

.legal-inline-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Legal pages */
.legal-page { padding: 4rem 1rem; }

.legal-header { margin-bottom: 2rem; }
.legal-title {
    margin-top: 0.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.legal-updated { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-500); }

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--slate-300);
    line-height: 1.625;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-content h3 {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
}

.legal-content ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content ul li { margin-top: 0.25rem; }
.legal-content a { color: var(--cyan-400); }
.legal-content a:hover { text-decoration: underline; }
.legal-content address { margin-top: 0.75rem; font-style: normal; color: var(--slate-400); }

.legal-caps {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-transform: uppercase;
}

.legal-related {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.legal-related-title { font-size: 0.875rem; font-weight: 600; color: white; }

.legal-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    list-style: none;
}

.legal-related-links a {
    font-size: 0.875rem;
    color: var(--cyan-400);
}

.legal-related-links a:hover { text-decoration: underline; color: #67e8f9; }

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 15, 30, 0.5);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-grid-5 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid-5 { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .footer-grid-5 { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-description {
    margin-top: 1rem;
    max-width: 24rem;
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.625;
}

.footer-email { margin-top: 1rem; font-size: 0.875rem; }
.footer-email a { color: var(--cyan-400); }
.footer-email a:hover { color: #67e8f9; }

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.footer-links {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--cyan-400); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--slate-500);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-tagline { font-size: 0.75rem; color: var(--slate-600); }

/* Animations */
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

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

/* Contact form */
.contact-layout {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .contact-layout { grid-template-columns: 3fr 2fr; }
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.section-spacer-sm { margin-top: 3rem; }

.contact-form, .form-success {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.form-success { text-align: center; border-color: rgba(6, 182, 212, 0.3); background: rgba(6, 182, 212, 0.1); }
.form-success h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: white; }
.form-success p { margin-top: 0.75rem; color: var(--slate-400); }

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-300);
}

.form-input {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 7, 18, 0.5);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.5);
}

.form-textarea { resize: vertical; min-height: 8rem; }

.validation-message {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #f87171;
}

.footer-location { margin-top: 1rem; font-size: 0.875rem; color: var(--slate-500); }
.footer-contact-link { display: inline-block; margin-top: 0.5rem; font-size: 0.875rem; color: var(--cyan-400); }
.footer-contact-link:hover { color: #67e8f9; }

.footer-social-label {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
}

.social-icons, .footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-center { display: flex; justify-content: center; margin-top: 2.5rem; }

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--slate-400);
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan-400);
}

.social-icon svg { width: 1rem; height: 1rem; }

.social-list, .footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-list li + li, .footer-social-list li + li { margin-top: 0.5rem; }

.social-list a, .footer-social-list a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color 0.2s;
}

.social-list a:hover, .footer-social-list a:hover { color: var(--cyan-400); }

.info-box-founder {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

.eyebrow-violet { color: var(--violet-400); }

.info-box-founder h2 {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.founder-title { margin-top: 0.25rem; color: var(--cyan-400); }

.info-box-founder p { margin-top: 1rem; font-size: 1rem; color: var(--slate-400); }

.text-center { text-align: center; }
/* ===== Static-site additions (mobile menu show/hide) ===== */
.nav-mobile { display: none; }
.nav-mobile.open { display: block; }
@media (min-width: 768px) { .nav-mobile { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .pulse-glow, .pulse-ring { animation: none; }
}
