/* Morton Command Center — Marketing Site */

:root {
    --bg: #0a1428;
    --bg-deep: #050b18;
    --bg-tinted: #0d1b33;
    --surface: #122042;
    --surface-hover: #1a2c55;
    --border: #233558;
    --border-strong: #344a7a;
    --text: #e6ecf7;
    --text-muted: #97a4c1;
    --text-dim: #6b7896;
    --accent-red: #ef4444;
    --accent-red-hover: #f87171;
    --accent-red-glow: rgba(239, 68, 68, 0.35);
    --accent-red-soft: rgba(239, 68, 68, 0.12);
    --accent-blue: #60a5fa;
    --accent-blue-hover: #93c5fd;
    --accent-blue-glow: rgba(96, 165, 250, 0.32);
    --accent-blue-soft: rgba(96, 165, 250, 0.12);
    --brand-blue: #60a5fa;
    --brand-red: #ef4444;
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.15);
    --purple: #a78bfa;
    --purple-dim: rgba(167, 139, 250, 0.15);
    --orange: #f97316;
    --orange-dim: rgba(249, 115, 22, 0.15);
    --yellow: #eab308;
    --yellow-dim: rgba(234, 179, 8, 0.15);
    --red-dim: rgba(239, 68, 68, 0.12);
    --blue-dim: rgba(96, 165, 250, 0.12);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30), 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.35), 0 8px 28px rgba(0, 0, 0, 0.40);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.45), 0 20px 48px rgba(0, 0, 0, 0.55);
    --glow-blue: 0 0 32px rgba(96, 165, 250, 0.28);
    --glow-red: 0 0 32px rgba(239, 68, 68, 0.28);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 20, 40, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
}
.nav-logo { height: 28px; width: auto; flex-shrink: 0; }
.nav-wordmark {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    line-height: 1.15;
}
.mcc-morton,
.nav-morton,
.footer-morton,
.why-us-morton {
    color: var(--accent-blue);
    font-weight: 700;
}
.mcc-cc,
.nav-product,
.footer-cc,
.why-us-cc {
    color: var(--accent-red);
    font-weight: 700;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--accent-red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-red-hover);
    box-shadow: 0 0 20px var(--accent-red-glow);
}
.btn-secondary {
    background: var(--surface-hover);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface-hover); }
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 24, 0.55) 0%, rgba(10, 20, 40, 0.78) 60%, rgba(10, 20, 40, 0.92) 100%),
        url('assets/images/hero-bg.png') center center / cover no-repeat,
        linear-gradient(180deg, #050b18 0%, #0a1428 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 8% 55%, rgba(239, 68, 68, 0.22) 0%, transparent 38%),
        radial-gradient(ellipse at 92% 45%, rgba(96, 165, 250, 0.20) 0%, transparent 42%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 720px;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ── Sections ── */
.section {
    padding: 5rem 0;
}
.section-dark {
    background: var(--surface);
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.section-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--red-dim);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Problem ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.problem-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-dim);
    border-radius: var(--radius-sm);
    color: var(--accent-red);
    margin-bottom: 1rem;
}
.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.problem-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Features ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.25s;
}
.feature-card:hover { border-color: var(--text-dim); }
.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.feature-icon-blue { background: var(--blue-dim); color: var(--accent-blue); }
.feature-icon-green { background: var(--green-dim); color: var(--green); }
.feature-icon-purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon-orange { background: var(--orange-dim); color: var(--orange); }
.feature-icon-red { background: var(--red-dim); color: var(--accent-red); }
.feature-icon-yellow { background: var(--yellow-dim); color: var(--yellow); }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.feature-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--surface-hover);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dim);
}

/* ── Integrations ── */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.integration-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.25s;
}
.integration-card:hover { border-color: var(--accent-blue); }
.integration-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.integration-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.integration-card-coming {
    opacity: 0.5;
    border-style: dashed;
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-red);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Architecture ── */
.arch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.arch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.arch-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.arch-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}
.pricing-card-featured {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red-glow);
}
.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    height: 3rem;
    white-space: nowrap;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}
.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    margin-right: 0.6rem;
    font-weight: 700;
}
.pricing-addon {
    margin-top: -0.5rem;
    padding: 0.65rem 0.9rem;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.pricing-addon strong {
    color: var(--accent-blue-hover);
    font-weight: 700;
}
.pricing-addon-amortize { display: none; }
.pricing-mode-amortize .pricing-addon-upfront { display: none; }
.pricing-mode-amortize .pricing-addon-amortize { display: inline; }

/* Pricing payment-mode toggle */
.pricing-toggle {
    display: inline-flex;
    margin: 1.5rem auto 0;
    padding: 4px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 100px;
    gap: 2px;
}
.pricing-toggle-btn {
    padding: 0.55rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pricing-toggle-btn:hover { color: var(--text); }
.pricing-toggle-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.45);
}
.pricing-price .pricing-amount {
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.pricing-card-featured .pricing-price .pricing-amount {
    background: linear-gradient(135deg, #60a5fa 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-price .pricing-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
    display: inline-block;
    vertical-align: baseline;
    transition: opacity 0.2s;
    background: none;
    -webkit-text-fill-color: var(--text-muted);
    opacity: 1;
}
.pricing-price .pricing-period[data-active="false"] {
    opacity: 0;
}

/* ── Pricing estimate / total panel ── */
.pricing-total {
    max-width: 800px;
    margin: 1.5rem auto 0;
    background: rgba(18, 32, 66, 0.55);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md), 0 0 32px rgba(96, 165, 250, 0.08);
}
.pricing-total-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.pricing-total-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue-hover);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pricing-total-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 4px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 100px;
}
.pricing-counter-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.pricing-counter-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.45);
}
.pricing-counter-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.pricing-counter-value {
    padding: 0 0.65rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    min-width: 6.5rem;
    text-align: center;
}
.pricing-counter-value span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent-blue-hover);
    margin-right: 0.15rem;
}
.pricing-total-rows { position: relative; }
.pricing-total-mode { display: block; }
.pricing-total-amortize { display: none; }
.pricing-total.pricing-mode-amortize .pricing-total-upfront { display: none; }
.pricing-total.pricing-mode-amortize .pricing-total-amortize { display: block; }
.pricing-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.pricing-total-row:last-child { border-bottom: none; }
.pricing-total-row-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-total-row-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}
.pricing-total-row-value small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.2rem;
}
.pricing-total-row-primary .pricing-total-row-value {
    background: linear-gradient(135deg, #60a5fa 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-total-row-primary .pricing-total-row-value small {
    -webkit-text-fill-color: var(--text-muted);
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 11, 24, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 200;
    padding: 2.5rem 1.5rem 4rem;
    cursor: zoom-out;
    gap: 1rem;
}
.lightbox.open {
    display: flex;
    animation: lightbox-fade 0.2s ease;
}
@keyframes lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-image {
    max-width: min(1600px, 95vw);
    max-height: 85vh;
    border-radius: 14px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    box-shadow:
        0 0 80px rgba(96, 165, 250, 0.22),
        0 0 120px rgba(239, 68, 68, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.7);
    cursor: default;
    animation: lightbox-zoom 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #0d1b33;
}
@keyframes lightbox-zoom {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 900px;
    text-align: center;
    padding: 0 1rem;
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

/* ── CTA ── */
.cta-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.cta-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.cta-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.cta-input {
    flex: 1;
    min-width: 220px;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.cta-input:focus {
    outline: none;
    border-color: var(--accent-red);
}
.cta-input::placeholder { color: var(--text-dim); }
.cta-note {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}
.footer-logo { height: 24px; width: auto; }
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ── Solution ── */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.solution-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.solution-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}
.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.solution-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Showcase ── */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.showcase-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.showcase-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}
.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}
.showcase-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1.25rem 0.25rem;
}
.showcase-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0 1.25rem 1rem;
    line-height: 1.5;
}

/* ── Integration Categories ── */
.integrations-category {
    margin-bottom: 2rem;
}
.integrations-category-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.integrations-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--text-muted);
}
.integrations-cta a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}
.integrations-cta a:hover { text-decoration: underline; }

/* ── Pricing (wide card) ── */
.pricing-single {
    max-width: 800px;
    margin: 0 auto;
}
.pricing-card-wide {
    padding: 2.5rem;
}
.pricing-columns {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}
.pricing-column {
    flex: 1;
}
.pricing-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}
.pricing-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.pricing-enterprise {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.pricing-enterprise a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}
.pricing-enterprise a:hover { text-decoration: underline; }

/* ── Feature tags (multiple) ── */
.feature-card .feature-tag {
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
}

/* ── Why MortonCC ── */
.why-table {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
}
.why-row {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr 1.35fr;
    border-bottom: 1px solid var(--border);
}
.why-row:last-child { border-bottom: none; }
.why-row-head {
    background: rgba(114, 164, 242, 0.04);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}
.why-cell {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.why-cell:last-child { border-right: none; }
.why-cell-label {
    color: var(--text);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.02);
}
.why-cell-us { color: var(--text); }
.why-cell-them { color: var(--text-muted); }
.why-us-brand { font-family: var(--font-heading); font-weight: 700; }
.why-us-morton { color: var(--accent-blue); }
.why-us-cc { color: var(--accent-red); }
.why-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--green-dim);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.25rem;
}

/* ── Walkthrough video ── */
.walkthrough-video {
    max-width: 900px;
    margin: 0 auto 3rem;
}
.walkthrough-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-dim);
    position: relative;
    overflow: hidden;
}
.walkthrough-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-blue-glow) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}
.walkthrough-placeholder svg { position: relative; }
.walkthrough-title {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
}
.walkthrough-sub {
    position: relative;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Case study ── */
.case-study-card {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.case-study-quote { position: relative; }
.case-study-quote-mark {
    color: var(--accent-red);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}
.case-study-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
}
.case-study-author-name {
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-heading);
}
.case-study-author-role {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.case-study-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 2rem;
    border-left: 1px solid var(--border);
}
.case-study-stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-blue);
    line-height: 1.1;
}
.case-study-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.trusted-by {
    margin-top: 3rem;
    text-align: center;
}
.trusted-by-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.trusted-by-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.trusted-tag {
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}
.link-accent {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}
.link-accent:hover { color: var(--accent-blue-hover); text-decoration: underline; }

/* ── Footer brand update ── */
.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.footer-product {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}
.footer-morton { color: var(--accent-blue); }
.footer-cc { color: var(--accent-red); }
.footer-parent {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.footer-parent a {
    color: var(--text-muted);
    text-decoration: none;
}
.footer-parent a:hover { color: var(--accent-blue); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .problem-grid,
    .features-grid,
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-columns { flex-direction: column; gap: 1.5rem; }
    .pricing-divider { width: 100%; height: 1px; }
    .case-study-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
    .case-study-stats { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 1.5rem; flex-direction: row; justify-content: space-around; }
    .why-row { grid-template-columns: 0.8fr 1.2fr 1.2fr; }
}
@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 20, 40, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stat-label { font-size: 0.72rem; }
    .problem-grid,
    .features-grid,
    .solution-grid,
    .steps-grid,
    .arch-grid,
    .showcase-grid { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-columns { flex-direction: column; gap: 1.5rem; }
    .pricing-divider { width: 100%; height: 1px; }
    .why-row { grid-template-columns: 1fr; }
    .why-cell { border-right: none; border-bottom: 1px solid var(--border); }
    .why-cell:last-child { border-bottom: none; }
    .why-row-head { display: none; }
    .why-cell-label { font-size: 0.8rem; padding-bottom: 0.5rem; }
    .case-study-stats { flex-direction: column; text-align: center; }
}

/* ── Dark cyber premium polish ── */

body {
    background: var(--bg);
    color: var(--text);
}

/* Card depth + hover glow */
.problem-card,
.arch-card,
.integration-card,
.feature-card,
.solution-card,
.step-card,
.showcase-item,
.pricing-card,
.case-study-card,
.why-table,
.walkthrough-placeholder {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease, background 0.25s ease;
}
.problem-card:hover,
.arch-card:hover {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(239, 68, 68, 0.15);
}
.feature-card:hover,
.solution-card:hover,
.step-card:hover,
.showcase-item:hover,
.integration-card:hover {
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(96, 165, 250, 0.15);
    transform: translateY(-2px);
}

/* Sections — alternating navy panels */
.section-dark {
    background: var(--bg-tinted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-dark .feature-card,
.section-dark .step-card,
.section-dark .solution-card,
.section-dark .showcase-item,
.section-dark .pricing-card {
    background: var(--bg);
}

/* Hero badge — blue glow pill */
.hero-badge {
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: var(--accent-blue-hover);
    font-weight: 600;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hero stats + text */
.hero h1 { color: var(--text); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); }
.hero-sub { color: #b8c4dc; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.hero-stats { border-top-color: rgba(96, 165, 250, 0.18); }
.hero-stat-number { color: var(--text); }
.hero-stat:nth-child(1) .hero-stat-number { color: var(--accent-blue-hover); text-shadow: 0 0 20px rgba(96, 165, 250, 0.45); }
.hero-stat:nth-child(2) .hero-stat-number { color: var(--text); }
.hero-stat:nth-child(3) .hero-stat-number { color: var(--accent-red-hover); text-shadow: 0 0 20px rgba(239, 68, 68, 0.45); }

/* Text gradient on headline — electric blue → crimson */
.text-gradient {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 40%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section badges — alternate blue/red */
.section-badge {
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent-blue-hover);
    border: 1px solid rgba(96, 165, 250, 0.32);
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.18);
}
#problem .section-badge,
#solution .section-badge,
#pricing .section-badge,
#case-study .section-badge {
    background: rgba(239, 68, 68, 0.12);
    color: var(--accent-red-hover);
    border-color: rgba(239, 68, 68, 0.32);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.18);
}

/* Nav link hover */
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--accent-blue-hover); }

/* Buttons — neon glow */
.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35), 0 0 24px rgba(239, 68, 68, 0.22);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45), 0 0 32px rgba(239, 68, 68, 0.35);
    transform: translateY(-1px);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: var(--text);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue-hover);
    background: rgba(96, 165, 250, 0.12);
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.25);
}

/* Feature icon chips — electric color gradients with glow */
.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.45);
}
.feature-icon-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}
.feature-icon-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}
.feature-icon-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}
.feature-icon-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}
.feature-icon-yellow {
    background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

/* Problem icons — red cyber chip */
.problem-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}

/* Solution number — blue→red gradient text */
.solution-number {
    background: linear-gradient(135deg, #60a5fa 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    font-size: 2.5rem;
}

/* Step numbers — alternating electric blue / red with glow */
.step-card:nth-child(1) .step-number,
.step-card:nth-child(3) .step-number {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.45);
}
.step-card:nth-child(2) .step-number,
.step-card:nth-child(4) .step-number {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}

/* Integration category title — pill with electric border */
.integrations-category-title {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(96, 165, 250, 0.10);
    color: var(--accent-blue-hover);
    border-radius: 100px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}
.integrations-category:nth-child(even) .integrations-category-title {
    background: rgba(239, 68, 68, 0.10);
    color: var(--accent-red-hover);
    border-color: rgba(239, 68, 68, 0.32);
}

/* Integration cards */
.integration-name { color: var(--text); }
.integration-card {
    background: var(--surface);
}

/* Architecture card accent borders */
.arch-card {
    border-left: 3px solid var(--accent-blue);
}
.arch-card:nth-child(even) {
    border-left-color: var(--accent-red);
}

/* Pricing featured — red neon frame */
.pricing-card-featured {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 0 1px var(--accent-red), 0 0 32px rgba(239, 68, 68, 0.35), var(--shadow-md);
}
.pricing-card-featured .pricing-price {
    background: linear-gradient(135deg, #60a5fa 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-popular {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}

/* Feature tags on dark */
.feature-tag {
    background: rgba(96, 165, 250, 0.08);
    color: var(--accent-blue-hover);
    border: 1px solid rgba(96, 165, 250, 0.22);
}

/* Showcase placeholder — dark gradient */
.showcase-placeholder {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(239, 68, 68, 0.06) 100%);
    color: var(--text-dim);
    border-bottom-color: var(--border);
}

/* Walkthrough placeholder */
.walkthrough-placeholder {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, var(--bg-tinted) 100%);
    border: 1px solid var(--border);
}
.walkthrough-placeholder::before {
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.22) 0%, transparent 60%);
    opacity: 1;
}
.walkthrough-title { color: var(--text); }

/* Why table */
.why-table { background: var(--surface); }
.why-row-head { background: rgba(96, 165, 250, 0.10); }
.why-cell-label { background: rgba(255, 255, 255, 0.02); }

/* Case study */
.case-study-card { background: var(--surface); }
.case-study-quote p { color: var(--text); }
.case-study-quote-mark { color: var(--accent-blue); opacity: 0.5; }
.case-study-stat-number {
    background: linear-gradient(135deg, #60a5fa 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trusted tags on dark */
.trusted-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.trusted-tag:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue-hover);
    background: rgba(96, 165, 250, 0.08);
}

/* CTA block with cyber glow */
#contact {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tinted) 100%);
    position: relative;
    overflow: hidden;
}
#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(239, 68, 68, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 50%, rgba(96, 165, 250, 0.10) 0%, transparent 45%);
    pointer-events: none;
}
.cta-block {
    position: relative;
    background: rgba(18, 32, 66, 0.7);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    max-width: 720px;
    box-shadow: var(--shadow-lg), 0 0 48px rgba(96, 165, 250, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.cta-block h2 {
    background: linear-gradient(135deg, #93c5fd 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA input */
.cta-input {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.cta-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}
.cta-input::placeholder { color: var(--text-dim); }

/* Integrations CTA box */
.integrations-cta {
    background: rgba(96, 165, 250, 0.06);
    border: 1px dashed rgba(96, 165, 250, 0.32);
    color: var(--text-muted);
}
.integrations-cta a { color: var(--accent-blue-hover); }

/* Footer on dark */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}

/* Nav primary button — red neon */
.nav .btn-primary {
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.45), 0 0 22px rgba(239, 68, 68, 0.25);
}

/* Section subtle tinted backdrops — very minimal on dark, let the panels do the work */
#architecture { background: linear-gradient(180deg, var(--bg) 0%, rgba(96, 165, 250, 0.03) 100%); }
#showcase { background: linear-gradient(180deg, var(--bg-tinted) 0%, rgba(239, 68, 68, 0.04) 100%); }
#pricing { background: linear-gradient(180deg, var(--bg-tinted) 0%, rgba(239, 68, 68, 0.04) 100%); }

/* Logo on nav — soften the harsh orange "M" */
.nav-logo { filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.3)); }

/* ── Client Communication Spotlight ── */
#client-comms {
    position: relative;
    overflow: hidden;
}
#client-comms::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(96, 165, 250, 0.10) 0%, transparent 45%);
    pointer-events: none;
}
#client-comms > .container { position: relative; }
.comms-preview-frame {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1b33;
    border: 1px solid rgba(96, 165, 250, 0.28);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(96, 165, 250, 0.15),
        0 0 120px rgba(239, 68, 68, 0.08);
    position: relative;
}
.comms-preview-frame .preview-bar-url::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    margin-right: 0.5rem;
    vertical-align: middle;
}
.comms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.comms-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.comms-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(96, 165, 250, 0.15);
}
.comms-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.comms-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.45);
}
.comms-icon-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}
.comms-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.comms-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.comms-footnote {
    margin-top: 2.5rem;
    padding: 1.25rem 1.75rem;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: var(--radius);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .comms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .comms-grid { grid-template-columns: 1fr; }
}

/* ── Product Preview section ── */
.section-preview {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0) 0%, var(--bg) 30%);
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}
.preview-callout {
    max-width: 1100px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    background: rgba(96, 165, 250, 0.10);
    border: 1px solid rgba(96, 165, 250, 0.32);
    border-radius: 100px;
    color: var(--accent-blue-hover);
    font-size: 0.88rem;
    font-weight: 500;
    width: fit-content;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.preview-callout em {
    font-style: italic;
    color: var(--accent-red-hover);
    font-weight: 700;
}
.preview-callout-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue-hover);
    box-shadow: 0 0 10px var(--accent-blue-hover);
    animation: preview-pulse 2s ease-in-out infinite;
}
@keyframes preview-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}
.preview-frame {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1b33;
    border: 1px solid rgba(96, 165, 250, 0.25);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(96, 165, 250, 0.18),
        0 0 120px rgba(239, 68, 68, 0.08);
    position: relative;
}
.preview-ribbon {
    position: absolute;
    top: 54px;
    right: 14px;
    padding: 0.3rem 0.75rem;
    background: rgba(5, 11, 24, 0.78);
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-blue-hover);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 18px rgba(96, 165, 250, 0.22);
    pointer-events: none;
    z-index: 2;
}
.preview-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.55) 0%, rgba(239, 68, 68, 0.45) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}
.preview-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(5, 11, 24, 0.75);
    border-bottom: 1px solid var(--border);
}
.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.preview-dot-red    { background: #ef4444; }
.preview-dot-yellow { background: #eab308; }
.preview-dot-green  { background: #22c55e; }
.preview-bar-url {
    margin-left: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.01em;
}
.preview-image {
    display: block;
    width: 100%;
    height: auto;
}
.preview-caption {
    max-width: 720px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Showcase item — real screenshot polish */
.showcase-item img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border);
}
.showcase-item-featured {
    grid-column: span 2;
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: var(--shadow-md), 0 0 40px rgba(96, 165, 250, 0.12);
}

@media (max-width: 900px) {
    .showcase-item-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
    .showcase-item-featured { grid-column: span 1; }
    .section-preview { padding: 1rem 0 4rem; margin-top: -2rem; }
}

