/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --gradient-start: #2563eb;
    --gradient-end: #7c3aed;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
    pointer-events: none; /* Prevent image from interfering with link clicks */
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

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

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.highlight-pink {
    color: #ec4899;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

/* Key Value Proposition Section */
.key-values {
    padding: 70px 0;
    background: white;
    position: relative;
}

.key-values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.key-values-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.key-values-intro {
    font-size: 1.375rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.key-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.key-value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.key-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.key-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.key-value-card:hover::before {
    transform: scaleX(1);
}

.key-value-icon {
    margin-bottom: 1.5rem;
}

.emoji-icon {
    font-size: 3rem;
    line-height: 1;
    display: block;
}

.key-value-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.key-value-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.key-values-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--surface), #f0f9ff);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.orchestration-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Challenges Section */
.challenges {
    background: var(--surface);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.challenge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex: 1;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}


.challenge-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}


.challenge-card p {
    font-size: 1rem;
}

/* Competitive Edge Section */
.competitive-edge {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 50px 0;
}

.edge-box {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px solid #f59e0b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.edge-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.edge-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.edge-box:hover::before {
    transform: scaleX(1);
}

.edge-box h2 {
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.edge-box p {
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* Manifesto Section */
.manifesto {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    animation: manifesto-pulse 25s ease-in-out infinite;
}

@keyframes manifesto-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.manifesto-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.manifesto-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-text p {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f3f4f6;
    font-weight: 400;
}

.manifesto-pillars {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2.5rem 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.manifesto-pillars:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.pillars-intro {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.pillars-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.pillars-list li {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    padding: 0.875rem;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillars-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillars-list li:hover {
    background: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pillars-list li:hover::before {
    opacity: 1;
}

.manifesto-connection {
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
    margin: 3rem 0;
    color: #fbbf24;
    font-weight: 500;
}

.manifesto-closing {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-highlight {
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e5e7eb;
    margin-bottom: 0;
    font-style: italic;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.solution-note {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
}

.chart-container {
    position: relative;
}

.chart-bar {
    margin-bottom: 2rem;
    position: relative;
}

.bar-fill {
    height: 60px;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.traditional .bar-fill {
    background: #8b5cf6;
    width: 100%;
    animation: fillBar 1.5s ease 0.5s both;
}

.assistant .bar-fill {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    width: 16.7%;
    animation: fillBar 1.5s ease 0.8s both;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.bar-label {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
}

.bar-time {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

/* How It Works Section */
.how-it-works {
    background: var(--surface);
}

.ecosystem-diagram {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.ecosystem-flow {
    text-align: center;
}

.ecosystem-component {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border);
    margin: 0.75rem 0;
    transition: all 0.3s ease;
}

.ecosystem-component:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ecosystem-component.appliance {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-color: #f59e0b;
}

.ecosystem-component.backend {
    background: #f3f4f6;
}

.ecosystem-component.llm {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border-color: #8b5cf6;
}

.backend-components {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.backend-item {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.backend-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.backend-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.backend-item p {
    font-size: 0.875rem;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.flow-label {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    display: inline-block;
    font-weight: 600;
    margin: 0.5rem 0;
}

.mac-address-section {
    margin-top: 4rem;
}

.mac-address-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mac-address-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mac-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.mac-step {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 2px solid var(--border);
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.mac-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mac-step:first-child {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-color: #f59e0b;
}

.mac-step h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.mac-step p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--text-secondary);
}

.flow-connector {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.data-retrieved {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
}

.data-retrieved:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.data-retrieved h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d97706;
}

.data-retrieved ul {
    list-style: none;
}

.data-retrieved li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    position: relative;
    padding-left: 2rem;
}

.data-retrieved li:last-child {
    border-bottom: none;
}

.data-retrieved li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: bold;
}

/* ROI Section */
.value-proposition {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 3px solid #f59e0b;
    transition: all 0.3s ease;
}

.value-proposition:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-proposition h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

.value-proposition p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cost-analysis,
.savings-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cost-analysis::before,
.savings-breakdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cost-analysis:hover,
.savings-breakdown:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.cost-analysis:hover::before,
.savings-breakdown:hover::before {
    transform: scaleX(1);
}

.cost-analysis h4,
.savings-breakdown h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cost-chart,
.savings-chart {
    margin-top: 1.5rem;
    height: 280px;
    position: relative;
}

/* Vision Section */
.vision {
    background: var(--surface);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.vision-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.vision-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0;
    flex: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.cta-section .btn-primary:hover {
    background: var(--surface);
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.company-story {
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.story-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.story-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.mission-vision {
    background: var(--surface);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card-about {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card-about:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.mission-card:hover::before,
.vision-card-about:hover::before {
    transform: scaleX(1);
}

.mission-header,
.vision-header-about {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-icon,
.vision-icon-about {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon svg,
.vision-icon-about svg {
    width: 30px;
    height: 30px;
    color: white;
}

.mission-card h3,
.vision-card-about h3 {
    font-size: 1.375rem;
    margin-bottom: 0;
    flex: 1;
}

.core-values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0;
    flex: 1;
}

.team-section {
    background: var(--surface);
}

.team-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #0077b5;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        height: 60px;
        cursor: pointer;
        pointer-events: none;
    }
    
    .logo-link {
        cursor: pointer;
        position: relative;
        z-index: 1001; /* Ensure logo is above mobile menu */
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .challenges-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-card {
        padding: 1.5rem 1.25rem;
        text-align: left;
    }

    .vision-header {
        gap: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .vision-icon {
        width: 50px;
        height: 50px;
    }

    .vision-icon svg {
        width: 25px;
        height: 25px;
    }

    .vision-card h3 {
        font-size: 1.25rem;
    }

    .vision-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .challenge-card {
        padding: 1.5rem 1.25rem;
        border: 2px solid var(--border);
    }

    .challenge-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }

    .challenge-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .challenge-icon svg {
        width: 22px;
        height: 22px;
    }

    .challenge-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
        flex: 1;
    }

    .challenge-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-text h2 {
        text-align: center;
    }

    .backend-components {
        grid-template-columns: 1fr;
    }

    .mac-flow {
        flex-direction: column;
    }

    .flow-connector {
        transform: rotate(90deg);
    }

    .roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cost-chart,
    .savings-chart {
        height: 220px;
        margin-top: 1rem;
    }

    .cost-analysis,
    .savings-breakdown {
        padding: 1.5rem;
    }

    .value-proposition {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .edge-box {
        padding: 1.5rem;
    }

    .edge-box p {
        font-size: 1.125rem;
    }

    .value-proposition p {
        font-size: 1.125rem;
    }

    .cost-analysis h4,
    .savings-breakdown h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    /* Key Values responsive styles */
    .key-values {
        padding: 50px 0;
    }

    .key-values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .key-value-card {
        padding: 1.5rem 1.25rem;
        border: 2px solid var(--border);
    }

    .key-value-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .key-value-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .key-value-icon {
        margin-bottom: 1rem;
    }

    .emoji-icon {
        font-size: 2.5rem;
    }

    .key-values-footer {
        padding: 1.5rem;
    }

    .orchestration-text {
        font-size: 1.125rem;
    }

    section {
        padding: 50px 0;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.625rem 1.5rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .data-retrieved {
        padding: 1.5rem;
    }

    .ecosystem-diagram {
        padding: 1.5rem 1rem;
    }

    .ecosystem-component {
        padding: 1.25rem;
        margin: 0.5rem 0;
    }

    .backend-item {
        padding: 1rem;
    }

    .mac-step {
        padding: 1rem;
        min-width: 120px;
    }

    .cta-content p {
        font-size: 1.25rem;
    }

    /* Manifesto responsive styles */
    .manifesto {
        padding: 80px 0;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .manifesto::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
        animation: manifesto-pulse 25s ease-in-out infinite;
    }

    .manifesto-text p {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .manifesto-pillars {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .pillars-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pillars-list li {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .pillars-intro {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .manifesto-connection {
        font-size: 1.25rem;
        margin: 2rem 0;
    }

    .welcome-text {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    /* About Page Mobile Styles */
    .about-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-icon {
        width: 50px;
        height: 50px;
    }

    .story-icon svg {
        width: 25px;
        height: 25px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card,
    .vision-card-about {
        padding: 1.5rem;
    }

    .mission-header,
    .vision-header-about {
        gap: 0.875rem;
    }

    .mission-icon,
    .vision-icon-about {
        width: 50px;
        height: 50px;
    }

    .mission-icon svg,
    .vision-icon-about svg {
        width: 25px;
        height: 25px;
    }

    .mission-card h3,
    .vision-card-about h3 {
        font-size: 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-header {
        gap: 0.875rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon svg {
        width: 25px;
        height: 25px;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .team-avatar svg {
        width: 35px;
        height: 35px;
    }

    .team-card h3 {
        font-size: 1.375rem;
    }

    .team-intro {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}