:root {
    --blue: #245EF6;
    --blue-dark: #1d4ec5;
    --blue-bg: #5B8AF8;
    --text: #245EF6;
    --muted: #245EF6;
    --bg: #ffffff;
    --bg-light: #f4f6fb;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    padding-top: 132px;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: -0.16px;
}
h1, h2 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.9px;
}
h3 { font-family: 'Inter', sans-serif; }

/* Utilities */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.brand-text { font-family: 'Courier New', 'Roboto Mono', monospace; }

/* Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 132px;
    display: flex;
    align-items: center;
}
.sticky-nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    font-family: 'Courier New', 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 30px;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: -0.3px;
    line-height: 45px;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-family: 'Epilogue', sans-serif;
    color: var(--blue);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s;
}
.nav-links a:hover { opacity: 0.7; }

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 132px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
        color: var(--text);
    }
    .nav-links a:last-child { border-bottom: none; }
}

/* Sections */
.section { padding: 5rem 1rem; }
.bg-white { background: var(--bg); }
.bg-light { background: var(--bg-light); }
.bg-blue { background: var(--blue-bg); color: #fff; }
.bg-blue h2, .bg-blue h3, .bg-blue strong { color: #fff; }
.bg-blue p { color: rgba(255, 255, 255, 0.9); }
.bg-blue-dark { background: var(--blue-dark); color: #fff; }

/* Headings */
h2 { font-size: 45px; font-weight: 700; text-align: center; line-height: 1.1; margin: 0 0 1.5rem; }
h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; margin: 0 0 0.5rem; letter-spacing: -0.4px; }
h4 { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 700; text-align: center; margin: 0 0 1rem; letter-spacing: -0.6px; }
section p { color: var(--text); font-size: 16px; line-height: 1.4; letter-spacing: -0.16px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
    background: transparent;
    color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { font-size: 1.15rem; padding: 1rem 2.5rem; }
.btn-disabled {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
    cursor: default;
}
.btn-disabled:hover { transform: none; box-shadow: var(--shadow); }
.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--blue);
}
.btn-white:hover { background: rgba(255, 255, 255, 0.9); }

/* =====================
   HERO
   ===================== */
header {
    background: var(--bg);
    padding: 4rem 1rem 5rem;
    overflow: hidden;
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.9px;
    margin-bottom: 1.5rem;
    color: var(--blue);
}
.hero-text p {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 27px;
    letter-spacing: -0.18px;
}

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-text .btn { margin: 0 auto; }
    .hero-visual { order: 1; }
}

/* Hero blob */
.hero-visual { perspective: 1200px; position: relative; }
.hero-blob {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 130%;
    height: 130%;
    background: linear-gradient(135deg, #a0c0ff 0%, var(--blue-bg) 50%, #7ba4f7 100%);
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
    opacity: 0.45;
    z-index: 0;
    filter: blur(8px);
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 180px 1fr;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(74, 123, 247, 0.2), var(--shadow-lg);
    overflow: hidden;
    font-size: 0.75rem;
    line-height: 1.4;
    transform: rotateY(-4deg) rotateX(1deg);
    transition: transform 0.4s ease;
    border: 1px solid var(--border);
}
.dashboard-mockup:hover { transform: rotateY(0) rotateX(0); }

.dashboard-sidebar {
    background: #1e1e2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
}
.dashboard-brand {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}
.dashboard-nav-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.4rem;
    margin-top: 1rem;
}
.dashboard-nav-item {
    padding: 0.3rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.15rem;
    font-size: 0.7rem;
    cursor: default;
}
.dashboard-nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dashboard-main { padding: 1rem 1.25rem; }
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.dashboard-subtitle { font-size: 0.65rem; color: var(--muted); margin-top: 0.15rem; }
.dashboard-tags span {
    display: inline-block;
    background: var(--bg-light);
    border-radius: 0.25rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--blue);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.dashboard-stat {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}
.dashboard-stat-label { font-size: 0.6rem; color: var(--muted); margin-bottom: 0.25rem; }
.dashboard-stat-value { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.dashboard-stat-value.accent { color: var(--blue); }
.dashboard-stat-sub { font-size: 0.55rem; color: var(--muted); }

.dashboard-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.dashboard-reg-card {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}
.dashboard-reg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}
.dashboard-badge {
    font-size: 0.55rem;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
}
.dashboard-reg-pct {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
}
.dashboard-reg-detail { font-size: 0.6rem; color: var(--muted); }

@media (max-width: 700px) {
    .dashboard-mockup {
        grid-template-columns: 1fr;
        transform: none;
        font-size: 0.7rem;
    }
    .dashboard-sidebar { display: none; }
}

/* =====================
   REGULATION PAIN POINTS
   ===================== */
.regulation-section { padding: 0 0 0; overflow: hidden; }
.regulation-section > .wrap { padding-bottom: 0; }
.regulation-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
}
.regulation-header {
    background: var(--blue-bg);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    margin-left: -9999px;
    padding-left: 9999px;
}
.regulation-header h2 {
    color: #fff;
    text-align: left;
    font-size: 2rem;
    max-width: 280px;
}
.pain-list {
    padding: 3rem 0 3rem 3rem;
}
@media (max-width: 768px) {
    .regulation-split { grid-template-columns: 1fr; }
    .regulation-header {
        margin-left: -1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-right: -1rem;
    }
    .regulation-header h2 { max-width: none; text-align: center; }
    .pain-list { padding: 2rem 0; }
}

/* pain-list layout is set in regulation-split above */
.pain-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.pain-item:last-child { border-bottom: none; }
.pain-icon {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 0.5rem;
    margin-top: 0.15rem;
}
.pain-item h3 { margin: 0 0 0.35rem; font-size: 26px; font-weight: 400; letter-spacing: -0.26px; line-height: 1; }
.pain-item p { font-size: 16px; margin: 0; text-align: left; line-height: 1.3; letter-spacing: -0.16px; }

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.cta-banner-heading {
    font-size: 45px;
    font-weight: 400;
    color: var(--blue);
    margin: 0;
    letter-spacing: -0.9px;
}
.cta-banner-cream {
    background: #fef9ef;
    padding: 3.5rem 2rem;
}

/* =====================
   SOLUTION CARDS
   ===================== */
.solution-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    padding: 2rem 0;
}
.solution-heading {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: sticky;
    top: 100px;
}
.solution-brand {
    font-family: 'Courier New', 'Roboto Mono', monospace;
    font-size: 40px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: -0.3px;
}
.solution-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--blue);
}
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.solution-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.solution-icon {
    width: 48px;
    height: 48px;
    color: var(--blue);
    margin-bottom: 1rem;
}
.solution-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 0.5rem; text-align: left; letter-spacing: -0.4px; }
.solution-card p { font-size: 16px; text-align: left; margin: 0; letter-spacing: -0.16px; }

@media (max-width: 900px) {
    .solution-layout { grid-template-columns: 1fr; }
    .solution-heading {
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
        position: static;
    }
    .solution-grid { grid-template-columns: 1fr; }
}

/* =====================
   DEMO VIDEO
   ===================== */
.video-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}
.video-deco-left, .video-deco-right {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(36, 94, 246, 0.08);
    border-radius: 50%;
}
.video-deco-left { left: -60px; bottom: 20%; }
.video-deco-right { right: -60px; top: 20%; }
@media (max-width: 900px) {
    .video-deco-left, .video-deco-right { display: none; }
}

.demo-video-container {
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.demo-video-container video { width: 100%; display: block; }

/* =====================
   PIPELINE
   ===================== */
.pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.pipeline-step { text-align: center; flex: 0 1 220px; }
.pipeline-icon {
    width: 56px;
    height: 56px;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
.pipeline-step strong { display: block; font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 0.25rem; color: var(--blue); }
.pipeline-step p { font-size: 14px; margin: 0; color: var(--blue); }
.pipeline-arrow { color: rgba(36, 94, 246, 0.3); }
.pipeline-arrow svg { width: 32px; height: 32px; }
@media (max-width: 600px) {
    .pipeline-arrow { transform: rotate(90deg); }
}

/* =====================
   REGULATIONS GRID
   ===================== */
.regulations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .regulations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
    .regulations-grid { grid-template-columns: repeat(2, 1fr); }
}
.regulation-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.flag { font-size: 2rem; margin-bottom: 0.25rem; }
.reg-country { font-size: 0.8rem; opacity: 0.8; }

/* =====================
   STATS
   ===================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}
.stats-section { background: #fefcf7; }
.stat { text-align: center; }
.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.1;
}
.stat-prefix {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}
.stat p { text-align: center; font-size: 16px; margin-top: 0.5rem; line-height: 22.4px; letter-spacing: -0.16px; }

/* =====================
   DSA BANNER
   ===================== */
.dsa-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}
.dsa-banner h2 {
    text-align: left;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

/* =====================
   CAROUSEL
   ===================== */
.continuous-section {
    background:
        radial-gradient(ellipse 80% 50% at 50% 80%, rgba(36, 94, 246, 0.08) 0%, transparent 70%),
        var(--bg);
    position: relative;
    overflow: hidden;
}
.continuous-section::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse at center, rgba(36, 94, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.compliance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.compliance-visual {
    position: relative;
    height: 300px;
}
.world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.pie-chart {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}
.pie-chart svg { width: 100%; height: 100%; }

.carousel { min-height: 140px; position: relative; }

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

.carousel-indicators {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.carousel-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    transition: all 0.3s;
    cursor: pointer;
}
.carousel-num.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.carousel-track { position: relative; min-height: 80px; }
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.carousel-slide.active { opacity: 1; position: relative; }
.carousel-slide h3 { font-size: 24px; text-align: center; }
.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.carousel-dot.active { background: var(--blue); }

/* =====================
   VISION
   ===================== */
.vision-section {
    background: var(--bg-light);
    position: relative;
    padding-bottom: 6rem;
    overflow: visible;
}
.vision-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: var(--blue-bg);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}
.vision-split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.vision-split h2 { text-align: left; }
.vision-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.vision-icons svg {
    width: 72px;
    height: 72px;
    opacity: 0.7;
}
.vision-lead {
    font-size: 20px;
    color: var(--blue);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 28px;
    letter-spacing: -0.2px;
}
.vision-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.vision-list li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 18px;
    color: var(--blue);
    font-weight: 400;
}
.vision-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 2px;
    transform: rotate(45deg);
}
.vision-detail {
    max-width: 970px;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
}
@media (max-width: 768px) {
    .vision-split { grid-template-columns: 1fr; }
    .vision-split h2 { text-align: center; }
    .vision-lead { text-align: center; }
    .vision-list li { text-align: left; }
}

/* =====================
   TEAM
   ===================== */
/* Team section */
#team {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.section-intro {
    max-width: 660px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: -0.16px;
}
.bg-blue .section-intro { color: rgba(255, 255, 255, 0.85); }

.team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .team { grid-template-columns: 1fr; }
}

.member {
    text-align: center;
    padding: 2rem 1.5rem;
}
.member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.member h3 {
    font-family: system-ui, sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-align: center;
}
.member .linkedin-link { color: rgba(255, 255, 255, 0.7); display: inline-block; margin-bottom: 1rem; }
.member .linkedin-link:hover { color: #fff; }

.member-bio { text-align: left; }
.member-bio p {
    font-size: 16px;
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 24px;
    letter-spacing: -0.16px;
}
.member-bio .bio-credentials {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1rem;
}

.linkedin-icon { width: 24px; height: 24px; }

/* =====================
   CONTACT CTA
   ===================== */
#contact { padding: 5rem 1rem; background: #fef9ef; }
#contact h1 {
    font-family: 'Syne', sans-serif;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.9px;
    margin-bottom: 2rem;
    color: var(--blue);
}

/* =====================
   FOOTER
   ===================== */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 1rem;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-brand {
    font-family: 'Courier New', 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-analytics { font-size: 0.8rem; max-width: 400px; margin: 0; color: rgba(255, 255, 255, 0.5); }

.footer-right { text-align: right; }
.footer-right a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.9rem; }
.footer-right a:hover { color: #fff; }
.footer-right p { font-size: 0.9rem; margin: 0.25rem 0; color: rgba(255, 255, 255, 0.8); }
.footer-right .linkedin-link { color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; }
.footer-right .linkedin-link:hover { color: #fff; }
.footer-legal { font-size: 0.8rem; margin-top: 0.75rem; color: rgba(255, 255, 255, 0.5); }

@media (max-width: 600px) {
    .footer-grid { flex-direction: column; }
    .footer-right { text-align: left; }
}
