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

:root {
    background: #000000;
}

html {
    background: linear-gradient(135deg, #000000 0%, #0a1a0a 50%, #001a00 100%);
    background-attachment: fixed;
    min-height: 100%;
}

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

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background: transparent;
    background-attachment: fixed;
    color: #00ff88;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Tech grid background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 20, 10, 0.4);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nexoro-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.3s;
}

.nexoro-logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: center;
}

.nav-links a {
    color: rgba(0, 255, 136, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.cta-button {
    padding: 12px 28px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 8px;
    color: #00ff88;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    justify-self: end;
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 160px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    color: #00ffcc;
    font-size: 13px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge::before {
    content: "⚡ ";
}

/* GLASSY/GLOSSY TITLE EFFECT */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
}

/* Glass reflection effect on title */
h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    opacity: 0.6;
}

.subtitle {
    font-size: 20px;
    color: rgba(0, 255, 136, 0.7);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.primary-btn, .secondary-btn {
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    font-family: 'Rajdhani', sans-serif;
}

.primary-btn {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 2px solid rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.primary-btn:hover {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4), 0 10px 30px rgba(0, 255, 136, 0.2);
}

.secondary-btn {
    background: rgba(0, 20, 10, 0.4);
    color: #00ff88;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.secondary-btn:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.6);
}

/* Features Section - GLASSY */
.features-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(0, 20, 10, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.05);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 255, 136, 0.7);
}

.feature-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
}

/* Founders Section - GLASSY */
.founders-section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(0, 255, 136, 0.6);
    letter-spacing: 1px;
}

.founder-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(0, 20, 10, 0.4);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

.founder-card:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.founder-image-container {
    position: relative;
    flex-shrink: 0;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 136, 0.4);
    transition: all 0.3s;
}

.founder-card:hover .founder-image {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 100%);
    border-radius: 20px;
    opacity: 0;
    filter: blur(40px);
    z-index: -1;
    transition: opacity 0.3s;
}

.founder-card:hover .image-glow {
    opacity: 0.4;
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00ff88;
    text-transform: uppercase;
}

.founder-title {
    font-size: 18px;
    color: rgba(0, 255, 204, 0.9);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founder-bio {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(0, 255, 136, 0.7);
    margin-bottom: 30px;
}

.founder-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 10px 24px;
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: #00ff88;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #00ffcc;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Capabilities Section */
.capabilities-section {
    padding: 120px 40px 140px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.capabilities-header {
    margin-bottom: 60px;
}

.capabilities-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #00ffcc;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.capabilities-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #00ff88;
    background: linear-gradient(135deg, #00ff88 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    text-shadow: none;
}

.capabilities-title::before {
    display: none;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
}

.capability-card {
    background: rgba(0, 20, 10, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.capability-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.capability-card:hover::before {
    opacity: 1;
}

.large-card {
    grid-column: span 2;
    grid-row: span 1;
}

.tall-card {
    grid-column: span 1;
    grid-row: span 2;
}

.card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.card-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 255, 136, 0.7);
}

/* System Architecture Animation */
.architecture-animation {
    position: relative;
    width: 100%;
    height: 150px;
}

.data-flow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.5) 50%, 
        transparent 100%);
    transform: translateY(-50%);
    animation: dataFlowMove 3s ease-in-out infinite;
}

.node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid #00ff88;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    left: 10%;
    animation-delay: 0s;
}

.node-2 {
    left: 50%;
    animation-delay: 0.3s;
}

.node-3 {
    right: 10%;
    animation-delay: 0.6s;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: rgba(0, 255, 136, 0.2);
    top: 50%;
}

.line-1 {
    left: 10%;
    width: 40%;
    animation: lineGrow 2s ease-in-out infinite;
}

.line-2 {
    right: 10%;
    width: 40%;
    animation: lineGrow 2s ease-in-out infinite 0.5s;
}

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

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

@keyframes lineGrow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

/* Analytics Circle Animation */
.analytics-circle {
    width: 120px;
    height: 120px;
    position: relative;
}

.analytics-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(0, 255, 136, 0.1);
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: #00ff88;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    animation: circleProgress 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

@keyframes circleProgress {
    0% {
        stroke-dashoffset: 251.2;
    }
    50% {
        stroke-dashoffset: 62.8;
    }
    100% {
        stroke-dashoffset: 251.2;
    }
}

/* Circuit Board Animation */
.circuit-board {
    width: 200px;
    height: 120px;
    position: relative;
    border-radius: 12px;
    background: rgba(0, 10, 5, 0.5);
    overflow: hidden;
}

.circuit-svg {
    width: 100%;
    height: 100%;
}

/* Circuit traces (lines) */
.trace {
    stroke: rgba(0, 255, 136, 0.3);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
}

.trace-1 {
    animation: tracePulse 3s ease-in-out infinite;
}

.trace-2 {
    animation: tracePulse 3s ease-in-out infinite 0.5s;
}

.trace-3 {
    animation: tracePulse 3s ease-in-out infinite 1s;
}

.trace-4 {
    animation: tracePulse 3s ease-in-out infinite 0.3s;
}

.trace-5 {
    animation: tracePulse 3s ease-in-out infinite 0.8s;
}

.trace-6 {
    animation: tracePulse 3s ease-in-out infinite 1.3s;
}

/* Circuit nodes (connection points) */
.node-circuit {
    fill: rgba(0, 255, 136, 0.4);
    stroke: #00ff88;
    stroke-width: 1;
}

.node-1 {
    animation: nodeGlow 2s ease-in-out infinite;
}

.node-2 {
    animation: nodeGlow 2s ease-in-out infinite 0.2s;
}

.node-3 {
    animation: nodeGlow 2s ease-in-out infinite 0.4s;
}

.node-4 {
    animation: nodeGlow 2s ease-in-out infinite 0.6s;
}

.node-5 {
    animation: nodeGlow 2s ease-in-out infinite 0.8s;
}

.node-6 {
    animation: nodeGlow 2s ease-in-out infinite 1s;
}

.node-7 {
    animation: nodeGlow 2s ease-in-out infinite 1.2s;
}

.node-8 {
    animation: nodeGlow 2s ease-in-out infinite 1.4s;
}

.node-9 {
    animation: nodeGlow 2s ease-in-out infinite 1.6s;
}

/* Data packets (moving dots) */
.data-packet {
    fill: #00ffcc;
    filter: drop-shadow(0 0 4px rgba(0, 255, 204, 0.8));
}

.packet-1 {
    animation: packetMoveHorizontal 4s linear infinite;
}

.packet-2 {
    animation: packetMoveHorizontal 4s linear infinite 1s;
}

.packet-3 {
    animation: packetMoveVertical 4s linear infinite 0.5s;
}

/* Animations */
@keyframes tracePulse {
    0%, 100% {
        stroke: rgba(0, 255, 136, 0.3);
        stroke-width: 2;
    }
    50% {
        stroke: rgba(0, 255, 136, 0.8);
        stroke-width: 2.5;
        filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
    }
}

@keyframes nodeGlow {
    0%, 100% {
        fill: rgba(0, 255, 136, 0.4);
        filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.4));
    }
    50% {
        fill: rgba(0, 255, 204, 0.9);
        filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.8));
    }
}

@keyframes packetMoveHorizontal {
    0% {
        cx: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        cx: 200;
        opacity: 0;
    }
}

@keyframes packetMoveVertical {
    0% {
        cy: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        cy: 120;
        opacity: 0;
    }
}

/* Automation Flow Animation */
.automation-flow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px 0;
}

.flow-step {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    animation: stepPulse 3s ease-in-out infinite;
}

.flow-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 4px;
    opacity: 0;
    animation: stepInner 3s ease-in-out infinite;
}

.step-1 {
    animation-delay: 0s;
}

.step-1::after {
    animation-delay: 0s;
}

.step-2 {
    animation-delay: 0.5s;
}

.step-2::after {
    animation-delay: 0.5s;
}

.step-3 {
    animation-delay: 1s;
}

.step-3::after {
    animation-delay: 1s;
}

.flow-connector {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 0) 0%,
        rgba(0, 255, 136, 0.6) 50%,
        rgba(0, 255, 136, 0) 100%);
    left: 50%;
    transform: translateX(-50%);
    animation: connectorFlow 3s ease-in-out infinite;
}

.connector-1 {
    top: 90px;
    animation-delay: 0.3s;
}

.connector-2 {
    top: 190px;
    animation-delay: 0.8s;
}

@keyframes stepPulse {
    0%, 100% {
        border-color: rgba(0, 255, 136, 0.3);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }
    50% {
        border-color: rgba(0, 255, 136, 0.8);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

@keyframes stepInner {
    0%, 40%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50%, 90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes connectorFlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .large-card {
        grid-column: span 2;
    }
    
    .tall-card {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .large-card,
    .tall-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .capability-card {
        min-height: 350px;
    }
    
    nav {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cta-button {
        justify-self: center;
    }

    h1 {
        font-size: 48px;
    }
    
    .hero {
        padding: 160px 20px 100px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .capabilities-section {
        padding: 80px 20px;
    }
    
    .capabilities-title {
        font-size: 36px;
    }
    
    .capability-card {
        padding: 30px;
        min-height: 300px;
    }
    
    .founder-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
    }
    
    .founder-image {
        width: 250px;
        height: 250px;
    }
    
    .image-glow {
        width: 230px;
        height: 230px;
    }
    
    .founder-socials {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}
