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

:root {
    /* Light palette with warm accents */
    --color-bg: #ffffff;
    --color-bg-warm: #faf8f5;
    --color-bg-cream: #f5f0e8;
    --color-bg-muted: #f4f4f5;

    /* Text colors */
    --color-text: #18181b;
    --color-text-secondary: #52525b;
    --color-text-muted: #a1a1aa;

    /* Accent colors - warm palette */
    --color-accent: #c9a87c;
    --color-accent-dark: #a68a5b;
    --color-accent-light: #e8dcc8;
    --color-terracotta: #c4a484;
    --color-sage: #9caa97;
    --color-slate: #64748b;

    /* Borders */
    --color-border: #e4e4e7;
    --color-border-dark: #d4d4d8;

    /* System */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    --container-max: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ================================
   LAYOUT
================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-warm {
    background: var(--color-bg-warm);
}

.section-dark {
    background: var(--color-text);
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text);
}

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

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

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--color-text-secondary);
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: #3f3f46;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-dark:hover {
    background: #3f3f46;
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ================================
   HEADER
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 24px;
    max-width: 24px;
    height: auto;
    width: auto;
    margin-right: 8px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ================================
   HERO
================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, var(--color-sage) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   SECTION HEADERS
================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-light h2,
.section-header-light p {
    color: white;
}

.section-header-light .section-tag {
    color: var(--color-accent);
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* ================================
   FOUNDATIONS SECTION
================================ */
.foundations,
.advantages {
    margin-bottom: 0;
}

.flow-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.foundations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.foundation-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 32px;
    transition: all 0.3s ease;
}

.foundation-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.foundation-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--color-bg-cream);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Data icon illustration */
.icon-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.icon-data span {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 4px;
}

.icon-data span:nth-child(2) {
    background: var(--color-terracotta);
}

.icon-data span:nth-child(3) {
    background: var(--color-sage);
}

.icon-data span:nth-child(4) {
    background: var(--color-slate);
    opacity: 0.5;
}

/* Expertise icon illustration */
.icon-expertise {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.icon-layer {
    height: 12px;
    background: var(--color-accent);
    border-radius: 4px;
}

.icon-layer:nth-child(1) {
    width: 48px;
}

.icon-layer:nth-child(2) {
    width: 36px;
    background: var(--color-terracotta);
}

.icon-layer:nth-child(3) {
    width: 24px;
    background: var(--color-sage);
}

.foundation-content h3 {
    margin-bottom: 16px;
}

.foundation-content ul {
    list-style: none;
}

.foundation-content li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.foundation-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ================================
   FLOW CONNECTOR
================================ */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-border), var(--color-accent));
}

.connector-branches {
    display: flex;
    gap: 120px;
    position: relative;
}

.connector-branches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
}

.connector-branches span {
    width: 2px;
    height: 30px;
    background: var(--color-accent);
}

.connector-label {
    margin-top: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   BENTO GRID (Advantages)
================================ */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.bento-large {
    grid-row: span 1;
    display: flex;
    gap: 32px;
    align-items: center;
}

.bento-illustration {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    background: var(--color-bg-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bento-large .bento-illustration {
    width: 140px;
    height: 100px;
}

/* Message illustration */
.illus-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msg-line {
    height: 8px;
    background: var(--color-border-dark);
    border-radius: 4px;
}

.msg-line.short {
    width: 70%;
}

.msg-highlight {
    height: 12px;
    width: 50%;
    background: var(--color-accent);
    border-radius: 4px;
    margin-top: 4px;
}

/* Target illustration */
.illus-target {
    position: relative;
    width: 60px;
    height: 60px;
}

.target-ring {
    position: absolute;
    border: 2px solid var(--color-border-dark);
    border-radius: 50%;
}

.target-ring:nth-child(1) {
    inset: 0;
}

.target-ring:nth-child(2) {
    inset: 12px;
    border-color: var(--color-terracotta);
}

.target-center {
    position: absolute;
    inset: 22px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Timing illustration */
.illus-timing {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 50px;
    position: relative;
}

.timing-bar {
    width: 12px;
    height: 60%;
    background: var(--color-border-dark);
    border-radius: 4px;
}

.timing-bar.active {
    background: var(--color-accent);
    height: 100%;
}

.timing-indicator {
    position: absolute;
    top: -4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: var(--color-sage);
    border-radius: 50%;
}

.bento-content h3 {
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================
   TIMELINE (Method Section)
================================ */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-track {
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--color-border);
}

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

.step-marker {
    width: 56px;
    height: 56px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
    background: var(--color-accent);
}

.timeline-step:hover .step-marker span {
    color: white;
}

.step-marker span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    transition: color 0.3s ease;
}

.step-content {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-content {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-outcome {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    padding: 6px 12px;
    background: var(--color-bg-cream);
    border-radius: 100px;
}

/* ================================
   ORCHESTRATION - TABS
================================ */
.orchestration-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.orch-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orch-tab {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.orch-tab:hover {
    background: var(--color-bg-cream);
}

.orch-tab.active {
    background: var(--color-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-indicator {
    width: 4px;
    background: var(--color-border);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.orch-tab.active .tab-indicator {
    background: var(--color-accent);
}

.tab-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tab-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.orch-panel {
    background: var(--color-bg-muted);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.panel-decoration {
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
}

.decoration-dots {
    display: flex;
    gap: 8px;
}

.decoration-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
}

.decoration-dots span:first-child {
    background: #ef4444;
}

.decoration-dots span:nth-child(2) {
    background: #eab308;
}

.decoration-dots span:nth-child(3) {
    background: #22c55e;
}

.panel-content {
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.panel-content.hidden {
    display: none;
}

.panel-illustration {
    flex-shrink: 0;
    width: 200px;
    height: 160px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tiers illustration */
.illus-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.tier {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border-radius: 8px;
}

.tier-1 {
    width: 120px;
    height: 36px;
    background: var(--color-accent);
}

.tier-2 {
    width: 90px;
    height: 32px;
    background: var(--color-terracotta);
}

.tier-3 {
    width: 60px;
    height: 28px;
    background: var(--color-sage);
}

/* Signals illustration */
.illus-signals {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.signal {
    width: 40px;
    border-radius: 8px;
    background: var(--color-border);
}

.signal-1 {
    height: 50px;
}

.signal-2 {
    height: 80px;
    background: var(--color-terracotta);
}

.signal-3 {
    height: 110px;
    background: var(--color-accent);
}

/* Warmup illustration */
.illus-warmup {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 100px;
}

.warmup-bar {
    width: 40px;
    height: var(--level);
    background: linear-gradient(180deg, var(--color-accent), var(--color-terracotta));
    border-radius: 8px;
}

.panel-list {
    list-style: none;
    flex: 1;
}

.panel-list li {
    position: relative;
    padding-left: 28px;
    padding-bottom: 16px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.panel-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.panel-list li:last-child {
    padding-bottom: 0;
}

/* ================================
   REPORTING SECTION
================================ */
.reporting-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.dashboard-preview {
    background: #1e1e2e;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.dashboard-header {
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dash-dot:first-child { background: #ef4444; }
.dash-dot:nth-child(2) { background: #eab308; }
.dash-dot:nth-child(3) { background: #22c55e; }

.dashboard-content {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dash-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 20px;
}

.dash-stat.highlight {
    background: rgba(201, 168, 124, 0.2);
    border: 1px solid rgba(201, 168, 124, 0.3);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.dash-chart {
    grid-column: span 2;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--color-accent), var(--color-terracotta));
    border-radius: 4px;
}

.report-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.report-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.report-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 124, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.report-card h3 {
    color: white;
    margin-bottom: 8px;
}

.report-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ================================
   CTA SECTION
================================ */
.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--color-bg-cream);
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    opacity: 0.6;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, var(--color-sage) 0%, transparent 70%);
    opacity: 0.4;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta > .container > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--color-text);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column strong {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .foundations-grid {
        grid-template-columns: 1fr;
    }

    .foundation-card {
        flex-direction: column;
        gap: 24px;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-column: span 2;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-track {
        display: none;
    }

    .orchestration-layout {
        grid-template-columns: 1fr;
    }

    .orch-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }

    .orch-tab {
        min-width: 200px;
    }

    .reporting-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
    }

    .nav {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
        flex-direction: column;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .connector-branches {
        gap: 60px;
    }

    .panel-content {
        flex-direction: column;
        padding: 24px;
    }

    .panel-illustration {
        width: 100%;
        height: 120px;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dash-chart {
        grid-column: span 1;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}
