:root {
    --home-bg: #070b14;
    --home-panel: rgba(255, 255, 255, 0.07);
    --home-panel-strong: rgba(255, 255, 255, 0.11);
    --home-border: rgba(255, 255, 255, 0.12);
    --home-text: #f8fbff;
    --home-muted: rgba(248, 251, 255, 0.66);
    --home-blue: #65a9ff;
    --home-cyan: #5ff4d2;
    --home-purple: #9b7cff;
}

body.home-modern {
    padding-top: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(101, 169, 255, 0.22), transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(155, 124, 255, 0.24), transparent 30%),
        linear-gradient(180deg, #070b14 0%, #0a1020 46%, #0b1324 100%);
    color: var(--home-text);
}

.home-modern,
.home-modern * { min-width: 0; }
.home-modern a { text-decoration: none; }
.home-modern h1,
.home-modern h2,
.home-modern h3 {
    text-wrap: balance;
    overflow-wrap: normal;
}
.home-modern p,
.home-modern span,
.home-modern strong,
.home-modern code {
    overflow-wrap: anywhere;
}
.nowrap { white-space: nowrap; }

.home-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 12, 22, 0.72);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transition: top 0.22s ease, width 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-nav.is-scrolled {
    top: 10px;
    width: min(1080px, calc(100% - 28px));
    background: rgba(8, 12, 22, 0.9);
    border-color: rgba(95, 244, 210, 0.2);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.home-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #05111f;
    background: linear-gradient(135deg, var(--home-cyan), var(--home-blue));
    font-size: 13px;
}
.home-links { display: flex; gap: 22px; align-items: center; }
.home-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 650;
    padding: 8px 10px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.home-links a:hover, .home-links a.is-active { color: #fff; background: rgba(255, 255, 255, 0.09); transform: translateY(-1px); }
.nav-cta {
    color: #07111f;
    background: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(95, 244, 210, 0.18); }

.home-hero {
    position: relative;
    min-height: 860px;
    padding: 160px min(7vw, 96px) 110px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 56px;
    align-items: center;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 82%);
    pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(12px); opacity: 0.65; }
.hero-orb-a { width: 340px; height: 340px; left: -90px; top: 170px; background: rgba(95, 244, 210, 0.18); }
.hero-orb-b { width: 420px; height: 420px; right: -110px; top: 80px; background: rgba(101, 169, 255, 0.2); }
.home-hero-copy, .hero-console { position: relative; z-index: 2; }
.hero-kicker, .section-heading span, .experience-copy span, .final-cta span {
    display: inline-flex;
    color: var(--home-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}
.home-hero h1 {
    font-size: clamp(48px, 6.2vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    max-width: 820px;
    max-inline-size: 12em;
    margin-bottom: 26px;
}
.home-hero p {
    max-width: 720px;
    color: var(--home-muted);
    font-size: 20px;
    line-height: 1.75;
}
.hero-actions, .final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.primary-action, .secondary-action, .ghost-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 850;
}
.primary-action { color: #07111f; background: linear-gradient(135deg, #fff, #bfefff); }
.secondary-action { color: #fff; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.ghost-action { color: rgba(255,255,255,0.76); }
.primary-action, .secondary-action, .ghost-action { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.primary-action:hover, .secondary-action:hover, .ghost-action:hover { transform: translateY(-2px); }
.primary-action:hover { box-shadow: 0 16px 34px rgba(95, 244, 210, 0.2); }
.secondary-action:hover, .ghost-action:hover { border-color: rgba(95,244,210,0.28); background: rgba(255,255,255,0.12); }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-trust-row span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    font-size: 13px;
}

.hero-console {
    border: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
    border-radius: 32px;
    padding: 18px;
    box-shadow: 0 34px 90px rgba(0,0,0,0.36);
    backdrop-filter: blur(18px);
    transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1200px;
}
.hero-console:hover { 
    border-color: rgba(95, 244, 210, 0.3); 
    box-shadow: 0 42px 120px rgba(95, 244, 210, 0.08), 0 0 0 1px rgba(95, 244, 210, 0.15);
}
.console-topbar { display: flex; align-items: center; gap: 8px; padding: 8px 8px 16px; color: rgba(255,255,255,0.62); }
.console-topbar span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.28); }
.console-topbar strong { margin-left: 8px; font-size: 13px; }
.console-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.console-card {
    min-height: 160px;
    border-radius: 22px;
    padding: 20px;
    background: rgba(5, 10, 20, 0.72);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.console-card:hover { transform: translateY(-3px); border-color: rgba(95,244,210,0.22); background: rgba(5, 10, 20, 0.82); }
.console-card.wide { grid-column: span 2; }
.console-card small { color: var(--home-muted); display: block; margin-bottom: 12px; }
.console-card strong { display: block; font-size: 30px; margin-bottom: 10px; }
.console-card p { font-size: 14px; color: var(--home-muted); }
.muted-card { background: rgba(255,255,255,0.08); }
.mini-terminal { display: grid; gap: 8px; color: #c9ffe9; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.quick-entry-list { display: grid; gap: 10px; }
.quick-entry-list a {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--home-text);
    background: rgba(255,255,255,0.065);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.quick-entry-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(95,244,210,0.28);
    background: rgba(95,244,210,0.09);
}
.quick-entry-list strong { color: var(--home-text); font-size: 15px; }
.quick-entry-list span { color: var(--home-muted); font-size: 13px; overflow-wrap: anywhere; }

main { color: var(--home-text); }
.page-hero {
    padding: 170px 0 70px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.page-signal-strip { margin-top: 0; }
.agent-page-hero { padding-bottom: 46px; }
.agent-apply-section { margin-bottom: 90px; }
.agent-apply-grid { margin-top: 22px; }
.signal-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -76px auto 92px;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.signal-strip div { padding: 28px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(14px); }
.signal-strip strong { display: block; font-size: 28px; margin-bottom: 6px; }
.signal-strip span { color: var(--home-muted); }

.home-section, .install-section, .experience-section, .audience-section, .faq-modern, .final-cta {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 110px;
}
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-heading.align-left { text-align: left; margin-left: 0; }
.section-heading h2, .experience-copy h2, .final-cta h2 {
    color: var(--home-text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}
.section-heading h2 { max-inline-size: 20em; margin-left: auto; margin-right: auto; }
.section-heading.align-left h2 { margin-left: 0; margin-right: 0; max-inline-size: none; }
.section-heading p, .experience-copy p, .final-cta p { color: var(--home-muted); font-size: 18px; line-height: 1.75; }

.capability-grid, .audience-grid, .faq-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.audience-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.capability-grid article, .audience-grid article, .faq-modern-grid div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.capability-grid article:hover, .audience-grid article:hover, .faq-modern-grid div:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(95, 244, 210, 0.35);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 28px 80px rgba(95, 244, 210, 0.12), 0 0 0 1px rgba(95, 244, 210, 0.15);
}
.capability-grid b { color: var(--home-cyan); font-size: 13px; }
.capability-grid h3, .audience-grid h3, .faq-modern-grid h3 { font-size: 22px; margin: 16px 0 12px; color: var(--home-text); }
.capability-grid p, .audience-grid p, .faq-modern-grid p { color: var(--home-muted); line-height: 1.75; }

.install-section {
    padding: 54px;
    border-radius: 38px;
    background: #0c1424;
    color: #fff;
    box-shadow: 0 30px 90px rgba(12, 20, 36, 0.22);
}
.install-section .section-heading h2 { color: #fff; }
.install-section .section-heading p { color: rgba(255,255,255,0.65); }
.install-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.install-card {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 24px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    transform-style: preserve-3d;
}
.install-card:hover, .install-card.just-copied { transform: translateY(-5px) scale(1.01); border-color: rgba(95,244,210,0.35); background: rgba(255,255,255,0.09); box-shadow: 0 20px 60px rgba(95,244,210,0.08); }
.install-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.install-head span { font-size: 22px; font-weight: 850; }
.install-head em { color: var(--home-cyan); font-style: normal; }
.modern-code {
    margin: 0 0 16px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.modern-code .copy-btn {
    background: rgba(95,244,210,0.12);
    border: 1px solid rgba(95,244,210,0.3);
    color: #5ff4d2;
    box-shadow: none;
}
.modern-code .copy-btn:hover {
    background: rgba(95,244,210,0.22);
    border-color: rgba(95,244,210,0.5);
    box-shadow: 0 4px 16px rgba(95,244,210,0.25);
}
.modern-code .copy-btn.copied {
    background: rgba(95,244,210,0.18);
    border-color: rgba(95,244,210,0.45);
    color: #5ff4d2;
}
.modern-code .code-block {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
    padding: 54px 16px 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(95,244,210,0.38) rgba(255,255,255,0.08);
    background: linear-gradient(135deg, rgba(5,10,20,0.96), rgba(8,14,26,0.96));
    border: 1px solid rgba(95,244,210,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 0 60px rgba(95,244,210,0.03);
    border-radius: 18px;
}
.modern-code .code-block::before {
    background: linear-gradient(90deg, transparent 0%, rgba(95,244,210,0.35) 50%, transparent 100%);
}
.modern-code code {
    display: block;
    min-width: max-content;
    white-space: pre;
    word-break: normal;
    overflow-wrap: normal;
    font-size: clamp(12px, 1.05vw, 14px);
    line-height: 1.65;
}
.install-card p { color: rgba(255,255,255,0.66); line-height: 1.7; }
.workflow-panel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
.workflow-panel div { border-radius: 20px; padding: 20px; background: rgba(255,255,255,0.07); }
.workflow-panel div { transition: transform 0.22s ease, background 0.22s ease; }
.workflow-panel div:hover { transform: translateY(-3px); background: rgba(255,255,255,0.095); }
.workflow-panel span { color: var(--home-cyan); font-weight: 900; }
.workflow-panel strong { display: block; margin: 10px 0 6px; }
.workflow-panel p { color: rgba(255,255,255,0.6); }

.install-guide-download {
    margin-top: 18px;
    border: 1px solid rgba(95, 244, 210, 0.2);
    background:
        radial-gradient(circle at top right, rgba(95, 244, 210, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.install-guide-download::before { display: none; }
.install-guide-download .guide-download-badge {
    color: var(--home-cyan);
    background: rgba(95, 244, 210, 0.11);
    border-color: rgba(95, 244, 210, 0.26);
}
.install-guide-download h3 {
    color: var(--home-text);
    font-size: 20px;
}
.install-guide-download p { color: rgba(255,255,255,0.66); }
.install-guide-download .guide-download-btn {
    color: #07111f !important;
    background: linear-gradient(135deg, #fff, #bfefff);
    border: 0 !important;
    box-shadow: 0 12px 30px rgba(95, 244, 210, 0.16);
}
.install-guide-download .guide-download-btn:hover {
    color: #07111f !important;
    box-shadow: 0 16px 38px rgba(95, 244, 210, 0.22) !important;
}
.install-guide-download .guide-download-btn-sub { color: rgba(7, 17, 31, 0.62); }

.experience-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}
.experience-stack { display: grid; gap: 14px; }
.experience-stack div {
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.experience-stack div:hover { transform: translateX(6px); border-color: rgba(95,244,210,0.24); background: rgba(255,255,255,0.095); }
.experience-stack strong { display: block; color: var(--home-text); font-size: 20px; margin-bottom: 8px; }
.experience-stack span { color: var(--home-muted); }

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(135deg, #10192b, #17294a);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.66); }
.final-cta .ghost-action { color: rgba(255,255,255,0.76); }

.home-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 48px;
    display: flex;
    justify-content: space-between;
    color: var(--home-muted);
}
.home-footer div { display: flex; gap: 18px; }
.home-footer a { color: var(--home-muted); }

#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #65a9ff, #5ff4d2);
    border: 1px solid rgba(95, 244, 210, 0.28);
    border-radius: 50%;
    color: #06111f;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(95, 244, 210, 0.18), 0 0 40px rgba(101, 169, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(95, 244, 210, 0.3), 0 0 50px rgba(101, 169, 255, 0.25);
}
#progressText {
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    margin-top: 1px;
    color: #05111f;
}
#backToTop svg { width: 18px; height: 18px; margin-bottom: -1px; }

@media (max-width: 1180px) {
    .install-grid { grid-template-columns: 1fr; }
    .install-section { max-width: 860px; }
    .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .capability-grid, .faq-modern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
    .home-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 130px; }
    .hero-console { max-width: 720px; }
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease var(--reveal-delay, 0ms), transform 0.55s ease var(--reveal-delay, 0ms), border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.experience-stack .reveal-item.is-visible { transform: translateX(0); }

.faq-modern-grid div { cursor: pointer; position: relative; }
.faq-modern-grid div::after {
    content: '+';
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--home-cyan);
    font-size: 24px;
    line-height: 1;
}
.faq-modern-grid div.is-open::after { content: '-'; }
.faq-modern-grid div p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.faq-modern-grid div.is-open p { display: block; }

@media (max-width: 960px) {
    .home-links { display: none; }
    .home-hero { grid-template-columns: 1fr; min-height: auto; padding: 130px 20px 110px; gap: 36px; }
    .hero-console { max-width: 100%; }
    .signal-strip, .capability-grid, .install-grid, .workflow-panel, .experience-section, .audience-grid, .faq-modern-grid, .final-cta {
        grid-template-columns: 1fr;
    }
    .signal-strip { margin-top: -54px; }
    .install-section { padding: 26px; }
    .final-cta { align-items: flex-start; display: grid; }
    .home-footer { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
    .home-nav { top: 10px; width: calc(100% - 18px); border-radius: 18px; }
    .nav-cta { display: none; }
    .home-hero h1 { font-size: 46px; }
    .home-hero p { font-size: 16px; }
    .console-grid { grid-template-columns: 1fr; }
    .console-card.wide { grid-column: span 1; }
    .signal-strip div, .capability-grid article, .audience-grid article, .faq-modern-grid div { padding: 22px; }
    .hero-actions, .final-actions { flex-direction: column; align-items: stretch; }
    .home-section, .install-section, .experience-section, .audience-section, .faq-modern, .final-cta { width: min(100% - 18px, 1180px); }
    .install-section { padding: 18px; border-radius: 28px; }
    .install-card { padding: 18px; border-radius: 22px; }
    .install-head { align-items: flex-start; gap: 8px; flex-direction: column; }
    .modern-code .code-block { padding: 52px 12px 14px; }
    .modern-code code { font-size: 12px; }
    .section-heading h2, .experience-copy h2, .final-cta h2 { font-size: clamp(30px, 9vw, 42px); letter-spacing: -0.04em; }
    .nowrap { white-space: normal; }
    .home-footer div { flex-wrap: wrap; }
}

/* Density refinement: make the public site feel like a product, not a magnified landing page. */
@media (min-width: 721px) {
    .home-hero {
        min-height: 720px;
        padding: 132px min(6vw, 72px) 86px;
        gap: 42px;
    }
    .home-hero h1 {
        font-size: clamp(40px, 5vw, 66px);
        line-height: 1;
        margin-bottom: 18px;
    }
    .home-hero p {
        max-width: 660px;
        font-size: 17px;
        line-height: 1.65;
    }
    .hero-kicker, .section-heading span, .experience-copy span, .final-cta span {
        font-size: 11px;
        margin-bottom: 14px;
    }
    .hero-actions, .final-actions {
        gap: 10px;
        margin-top: 24px;
    }
    .primary-action, .secondary-action, .ghost-action {
        min-height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }
    .hero-trust-row { margin-top: 20px; gap: 8px; }
    .hero-trust-row span { padding: 6px 10px; font-size: 12px; }

    .hero-console {
        border-radius: 24px;
        padding: 14px;
        box-shadow: 0 24px 64px rgba(0,0,0,0.32);
    }
    .console-grid { gap: 10px; }
    .console-card {
        min-height: 124px;
        border-radius: 18px;
        padding: 16px;
    }
    .console-card strong { font-size: 24px; margin-bottom: 7px; }
    .console-card small { margin-bottom: 9px; }
    .quick-entry-list { gap: 8px; }
    .quick-entry-list a { padding: 10px 12px; border-radius: 14px; }
    .quick-entry-list strong { font-size: 14px; }
    .quick-entry-list span { font-size: 12px; }

    .page-hero { padding: 132px 0 52px; }
    .signal-strip {
        width: min(1080px, calc(100% - 32px));
        margin: -54px auto 68px;
        border-radius: 22px;
    }
    .page-signal-strip { margin-top: 0; }
    .signal-strip div { padding: 20px; }
    .signal-strip strong { font-size: 22px; }
    .signal-strip span { font-size: 13px; }

    .home-section, .install-section, .experience-section, .audience-section, .faq-modern, .final-cta {
        width: min(1080px, calc(100% - 32px));
        margin-bottom: 78px;
    }
    .section-heading { max-width: 700px; margin-bottom: 30px; }
    .section-heading h2, .experience-copy h2, .final-cta h2 {
        font-size: clamp(28px, 3.2vw, 44px);
        line-height: 1.08;
        margin-bottom: 14px;
    }
    .section-heading p, .experience-copy p, .final-cta p {
        font-size: 16px;
        line-height: 1.65;
    }
    .capability-grid, .audience-grid, .faq-modern-grid { gap: 14px; }
    .capability-grid article, .audience-grid article, .faq-modern-grid div {
        border-radius: 20px;
        padding: 22px;
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
    }
    .capability-grid article:hover, .audience-grid article:hover, .faq-modern-grid div:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 46px rgba(95, 244, 210, 0.08);
    }
    .capability-grid h3, .audience-grid h3, .faq-modern-grid h3 {
        font-size: 18px;
        margin: 12px 0 8px;
    }
    .capability-grid p, .audience-grid p, .faq-modern-grid p { line-height: 1.62; }

    .install-section {
        padding: 38px;
        border-radius: 28px;
    }
    .install-grid { gap: 14px; }
    .install-card {
        padding: 20px;
        border-radius: 22px;
    }
    .install-head { margin-bottom: 14px; }
    .install-head span { font-size: 18px; }
    .modern-code .code-block { padding: 48px 14px 14px; }
    .workflow-panel { gap: 10px; margin-top: 18px; }
    .workflow-panel div { padding: 16px; border-radius: 16px; }

    .experience-section { gap: 26px; }
    .experience-stack { gap: 10px; }
    .experience-stack div {
        padding: 20px;
        border-radius: 18px;
    }
    .experience-stack strong { font-size: 17px; }

    .final-cta {
        padding: 34px;
        border-radius: 26px;
    }
    .home-footer { padding-top: 24px; }
}

@media (max-width: 560px) {
    .home-hero h1 { font-size: 38px; }
    .home-hero { padding-bottom: 88px; }
    .signal-strip { margin-bottom: 70px; }
}
