/* ==========================================
   DESIGN SYSTEM & VARIABLES (COHERE SPEC)
   ========================================== */
:root {
    --color-primary: #17171c;
    --color-cohere-black: #000000;
    --color-ink: #212121;
    --color-deep-green: #003c33;
    --color-dark-navy: #071829;
    --color-canvas: #ffffff;
    --color-soft-stone: #eeece7;
    --color-pale-green: #edfce9;
    --color-pale-blue: #f1f5ff;
    --color-hairline: #d9d9dd;
    --color-border-light: #e5e7eb;
    --color-card-border: #f2f2f2;
    --color-muted: #93939f;
    --color-slate: #75758a;
    --color-body-muted: #616161;
    --color-action-blue: #1863dc;
    --color-coral: #ff7759;
    --color-on-primary: #ffffff;
    --color-on-dark: #ffffff;
    
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 32px;
    
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', 'Courier New', monospace;
    
    --transition-cohere: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    background-color: var(--color-canvas);
    color: var(--color-ink);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
    background-color: var(--color-cohere-black);
    color: var(--color-on-dark);
    font-size: 12px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    font-weight: 400;
}

.announcement-bar a {
    color: var(--color-on-dark);
    text-decoration: underline;
    margin-left: 5px;
    font-weight: 500;
    transition: var(--transition-cohere);
}

.announcement-bar a:hover {
    color: var(--color-coral);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-cohere-black);
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    text-transform: uppercase;
    display: block;
}

.coral-chip {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-coral);
    border: 1px solid rgba(255, 119, 89, 0.3);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.text-coral {
    color: var(--color-coral);
    font-weight: 600;
}

/* ==========================================
   BUTTONS (COHERE PILL STYLE)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-cohere);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-on-primary);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-cohere-black);
    border-color: var(--color-cohere-black);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: var(--color-soft-stone);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-text {
    background: transparent;
    color: var(--color-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: var(--transition-cohere);
}

.btn-text:hover {
    color: var(--color-coral);
}

.btn-full {
    width: 100%;
    padding: 14px;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-hairline);
    padding: 1.2rem 0;
    transition: var(--transition-cohere);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--color-cohere-black);
}

.logo svg {
    color: var(--color-cohere-black);
}

.mono-logo {
    font-family: var(--font-mono);
    color: var(--color-coral);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-body-muted);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition-cohere);
}

.nav-links a:hover {
    color: var(--color-cohere-black);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--color-cohere-black);
    transition: var(--transition-cohere);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--color-canvas);
    border-bottom: 1px solid var(--color-hairline);
}

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

.hero-section .mono-label {
    margin-bottom: 1.5rem;
    color: var(--color-coral);
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.6px;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-body-muted);
    max-width: 650px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Hero Media Split Layout */
.hero-media-composition {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    align-items: stretch;
}

/* Left Hero Photo Card */
.hero-photo-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-hairline);
    background: var(--color-canvas);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.card-bar {
    height: 36px;
    background: var(--color-soft-stone);
    border-bottom: 1px solid var(--color-hairline);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
}

.card-bar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-hairline);
}

.bar-title {
    margin-left: 1.5rem;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-muted);
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Agent Console Card */
.agent-console-card {
    background-color: var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.console-title {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.console-status {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.05);
    color: var(--color-muted);
}

.console-status.active {
    color: var(--color-coral);
    background: rgba(255, 119, 89, 0.1);
}

.console-code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #a5a5b5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.code-line span {
    font-weight: 500;
}

.c-purple { color: #d09cf7; }
.c-green { color: #8ef7c7; }
.c-orange { color: var(--color-coral); }
.c-cyan { color: #7de8f7; }

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--color-coral) }
}

/* ==========================================
   TRUST LOGO STRIP
   ========================================== */
.trust-logo-strip {
    padding: 4rem 0;
    background-color: var(--color-canvas);
    border-bottom: 1px solid var(--color-hairline);
    text-align: center;
}

.trust-logo-strip .mono-label {
    margin-bottom: 2.5rem;
    font-size: 11px;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logos-grid span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.section-desc {
    color: var(--color-body-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================
   CAPABILITY CARDS (FEATURES)
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.capability-card {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 1px;
    background-color: var(--color-hairline);
    transition: var(--transition-cohere);
}

.capability-card:hover .card-line {
    width: 100%;
    background-color: var(--color-coral);
}

.capability-card h3 {
    font-size: 24px;
    font-family: var(--font-display);
    letter-spacing: -0.3px;
}

.capability-card p {
    color: var(--color-body-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   DARK FEATURE BAND (DEEP GREEN ARCHITECTURE)
   ========================================== */
.dark-feature-band {
    background-color: var(--color-deep-green);
    color: var(--color-on-dark);
}

.dark-feature-band h2,
.dark-feature-band p {
    color: var(--color-on-dark);
}

.architecture-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 4rem;
}

/* Interactive Flat Architecture Diagram */
.architecture-diagram {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

.diagram-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.diagram-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    max-width: 150px;
}

.diagram-column .col-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0.25rem;
}

.node-item {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-cohere);
}

.node-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.node-item.active {
    border-color: var(--color-coral);
    background: rgba(255, 119, 89, 0.05);
}

.node-title {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--color-on-dark);
    font-weight: 500;
}

.node-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 1px 4px;
    border-radius: 2px;
    margin-top: 4px;
}

.node-item.active .node-title {
    color: var(--color-coral);
}

/* Simplistic Connectors */
.diagram-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

.flow-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.node-item.active + .diagram-connector .flow-line {
    background: var(--color-coral);
}

/* Detail Card Box */
.architecture-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.architecture-details .mono-label {
    color: var(--color-coral);
    margin-bottom: 0.5rem;
}

.architecture-details h3 {
    font-size: 32px;
    color: var(--color-on-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.architecture-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.details-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.details-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-stats .stat-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.details-stats .stat-item .value {
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--color-on-dark);
}

.details-stats .stat-item .value.text-green {
    color: var(--color-coral);
}

/* ==========================================
   MARKET & PRODUCT ROADMAP (SOFT STONE BACKGROUND)
   ========================================== */
.market-section {
    background-color: var(--color-canvas);
    border-bottom: 1px solid var(--color-hairline);
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}

/* Product Card - Soft Stone Surface */
.product-card {
    background-color: var(--color-soft-stone);
    border-radius: var(--radius-sm);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.chart-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.chart-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    height: 160px;
    border-bottom: 1px solid var(--color-hairline);
    padding-bottom: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-xs) var(--radius-xs) 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.75rem;
    position: relative;
    transition: var(--transition-cohere);
}

.chart-bar.accent {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.chart-bar.accent .bar-value {
    color: var(--color-on-primary);
}

.bar-value {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-ink);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-body-muted);
}

.chart-labels .text-coral {
    color: var(--color-coral);
    font-weight: 500;
}

.footnote {
    font-size: 12px;
    color: var(--color-muted);
}

/* Timeline in Product Card */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: var(--color-hairline);
}

.timeline-item {
    position: relative;
}

.time-dot {
    position: absolute;
    left: -20px;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-soft-stone);
    border: 1px solid var(--color-muted);
}

.time-dot.active {
    border-color: var(--color-coral);
    background-color: var(--color-coral);
}

.timeline-item .mono-label {
    font-size: 11px;
    margin-bottom: 0.25rem;
}

.timeline-item h4 {
    font-size: 18px;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 14px;
    color: var(--color-body-muted);
}

/* ==========================================
   FOUNDING TEAM SECTION
   ========================================== */
.team-section {
    border-bottom: 1px solid var(--color-hairline);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-soft-stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-hairline);
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-coral);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 14px;
    color: var(--color-body-muted);
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION (COHERE FORM LAYOUT)
   ========================================== */
.contact-section {
    background-color: var(--color-soft-stone);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.contact-pitch h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact-pitch p {
    color: var(--color-body-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-meta {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--color-hairline);
    padding-top: 2rem;
}

.meta-item .label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.meta-item .value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
}

/* Form Container Card - Clean White */
.contact-form-card {
    background-color: var(--color-canvas);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-hairline);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 11px;
    color: var(--color-muted);
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: var(--color-canvas);
    border: 1px solid var(--color-hairline);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-cohere);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-on-dark);
    padding: 4rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    font-size: 12px;
    color: var(--color-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-muted);
    font-size: 13px;
    transition: var(--transition-cohere);
}

.footer-links a:hover {
    color: var(--color-on-dark);
}

/* ==========================================
   TOAST ALERTS
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    border-left: 3px solid var(--color-coral);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--color-on-dark);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInToast 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInToast {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-media-composition {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .architecture-wrapper {
        grid-template-columns: 1fr;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 38px;
        letter-spacing: -0.8px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .diagram-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .diagram-column {
        width: 100%;
        max-width: 250px;
    }
    
    .diagram-connector {
        transform: rotate(90deg);
        height: 30px;
        width: 1px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
