/* ===================================================
   LANCast.tv Landing Page — Dark Navy + Cyan Theme
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Proposed Design Tokens */
    --background-primary: #07111F;
    --background-secondary: #0B1728;
    --surface-primary: #101F33;
    --surface-elevated: #14263D;
    --border-subtle: #233954;
    --brand-primary: #00C8FF;
    --brand-hover: #27D3FF;
    --brand-soft: rgba(0, 200, 255, 0.12);
    --text-primary: #F6F9FF;
    --text-secondary: #A7B6CC;
    --text-muted: #74869F;
    --success: #38D996;
    --warning: #F3B84B;
    --danger: #FF647C;
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.3s ease;

    /* Legacy Mappings to prevent breaking existing classes */
    --bg-deep: var(--background-primary);
    --bg-mid: var(--background-secondary);
    --bg-card: rgba(16, 31, 51, 0.75); /* --surface-primary with alpha */
    --cyan: var(--brand-primary);
    --cyan-dim: var(--brand-soft);
    --cyan-border: var(--border-subtle);
    --cyan-glow: rgba(0, 200, 255, 0.25);
    --text-white: var(--text-primary);
    --text-muted: var(--text-secondary);
    --text-faint: var(--text-muted);
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }

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

.font-outfit { font-family: 'Outfit', system-ui, sans-serif; }
.cyan { color: var(--cyan); }

/* ---- Ambient Background Glows ---- */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}
.bg-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 70%);
    top: -150px; left: -150px;
}
.bg-glow-2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,80,180,0.15) 0%, transparent 70%);
    top: 40vh; right: -200px;
}
.bg-glow-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
    bottom: 10vh; left: 30%;
}

/* ---- Container ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---- Glass Card ---- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.glass-card:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.08), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--cyan);
    color: #020810;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}
.btn-primary:hover {
    background: #22d6ff;
    box-shadow: 0 0 36px rgba(0, 200, 255, 0.5);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan-border);
}
.btn-outline:hover {
    border-color: var(--cyan);
    background: var(--cyan-dim);
    box-shadow: 0 0 16px rgba(0,200,255,0.15);
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 13px 20px;
}
.btn-ghost:hover { color: var(--text-white); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---- Section tag ---- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid var(--cyan-border);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

/* ---- Section header ---- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.section-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Section spacing ---- */
.section { padding: 100px 0; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(6, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--cyan-border);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,200,255,0.5));
}
.nav-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0 auto;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-white); }
.nav-cta { font-size: 14px; padding: 9px 20px; flex-shrink: 0; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 4px;
    background: rgba(6, 13, 26, 0.97);
    border-top: 1px solid var(--cyan-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--cyan); }
.nav-mobile .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(0,200,255,0.06);
    border: 1px solid var(--cyan-border);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--text-white);
    margin-bottom: 24px;
}
.cyan-glow {
    color: var(--cyan);
    text-shadow: 0 0 40px rgba(0,200,255,0.4);
}
.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat { text-align: left; }
.stat-value { display: block; font-size: 18px; font-weight: 700; font-family: 'Outfit', sans-serif; }
.stat-label { font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; }
.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--cyan-border);
}

/* ---- Network Diagram ---- */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.network-diagram {
    position: relative;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}
.node-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(16, 31, 51, 0.8) 0%, rgba(11, 23, 40, 0.8) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    cursor: default;
}
.node-icon:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 0 16px rgba(0, 200, 255, 0.25), 0 4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}
.status-indicator {
    position: absolute;
    top: 6px; right: 6px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
    animation: statusPulse 2s infinite alternate;
}
.node-server .status-indicator {
    background: var(--brand-primary);
    box-shadow: 0 0 6px var(--brand-primary);
}
@keyframes statusPulse {
    0% { opacity: 0.5; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
}
.node span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    font-family: var(--font-headings);
    transition: color var(--transition);
}
.node:hover span {
    color: var(--text-primary);
}

/* SVG Connection Lines & Animated Flow */
.network-svg {
    width: 340px;
    height: 60px;
    display: block;
    margin: 4px 0;
    overflow: visible;
}
.net-path {
    stroke-dasharray: 4 2;
    animation: dashOffset 30s linear infinite;
}
@keyframes dashOffset {
    to { stroke-dashoffset: -100; }
}

.device-row {
    display: flex;
    justify-content: space-between;
    width: 300px;
    gap: 16px;
}
.device-row .node-icon {
    width: 60px;
    height: 60px;
    padding: 12px;
}

/* ---- Scroll hint ---- */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    opacity: 0.4;
}
.hero-scroll-hint span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(1.3); }
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step-number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--cyan);
    opacity: 0.6;
}
.step-card {
    width: 100%;
    padding: 28px 24px;
    text-align: center;
}
.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--cyan-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 0;
    gap: 4px;
    flex-shrink: 0;
}
.step-line {
    width: 40px;
    height: 1px;
    background: var(--cyan-border);
}
.step-arrow {
    font-size: 18px;
    color: var(--cyan);
    opacity: 0.5;
}

/* ===== FEATURES ===== */
.section-features { background: rgba(0,0,0,0.2); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card { padding: 28px 24px; }
.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--cyan-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin-bottom: 18px;
    box-shadow: 0 0 16px rgba(0,200,255,0.1);
}
.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== DEVICES ===== */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.device-card {
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.device-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}
.device-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
}
.device-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.device-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid var(--cyan-border);
    border-radius: 20px;
    padding: 3px 12px;
    margin-top: auto;
}
.devices-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,200,255,0.05);
    border: 1px solid var(--cyan-border);
    border-radius: 10px;
    padding: 16px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.note-icon { font-size: 22px; flex-shrink: 0; }
.note-icon svg { width: 24px; height: 24px; display: block; }
.devices-note p { font-size: 14px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,200,255,0.4); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--cyan); }
.faq-item.open .faq-question { color: var(--cyan); }
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--cyan); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 60px 0 100px; }
.cta-card {
    text-align: center;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,200,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    position: relative;
}
.cta-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    position: relative;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,200,255,0.4));
    margin-bottom: 8px;
}
.footer-brand-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}
.footer-tagline {
    font-size: 13px;
    color: var(--text-faint);
    line-height: 1.6;
}
.footer-links-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 16px;
}
.footer-links-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--cyan); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 24px;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: var(--text-faint); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--cyan); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.step:nth-child(1) .reveal, .step:nth-child(1).reveal { transition-delay: 0.05s; }
.step:nth-child(3) .reveal, .step:nth-child(3).reveal { transition-delay: 0.1s; }
.step:nth-child(5) .reveal, .step:nth-child(5).reveal { transition-delay: 0.15s; }
.feature-card:nth-child(2) { transition-delay: 0.07s; }
.feature-card:nth-child(3) { transition-delay: 0.14s; }
.feature-card:nth-child(4) { transition-delay: 0.07s; }
.feature-card:nth-child(5) { transition-delay: 0.14s; }
.feature-card:nth-child(6) { transition-delay: 0.21s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .network-diagram { width: 280px; }
    .device-row { width: 260px; }
    .steps { flex-direction: column; align-items: center; }
    .step { width: 100%; max-width: 380px; }
    .step-connector { flex-direction: row; padding: 0 16px; transform: rotate(90deg); }
    .features-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .cta-card { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 34px; }
    .devices-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}

/* ===== CONTACT MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(3, 8, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
    animation: modal-in 0.25s ease;
}
@keyframes modal-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.modal-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 40px;
    animation: modal-slide 0.25s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan-border) transparent;
}
@keyframes modal-slide {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text-white); background: rgba(255,255,255,0.08); }
.modal-header { margin-bottom: 28px; }
.modal-header h2 { font-size: 26px; font-weight: 800; color: var(--text-white); margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-muted); }

/* ===== CONTACT FORM ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.req { color: var(--cyan); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(6, 13, 26, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a90b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}
.form-group select option { background: #0d1f3c; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,200,255,0.12);
}
/* Math CAPTCHA */
.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 16px;
    padding: 16px;
    background: rgba(0, 200, 255, 0.04);
    border: 1px solid var(--cyan-border);
    border-radius: 10px;
}
.captcha-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: 0.8;
}
.captcha-challenge {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-question {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    letter-spacing: 0.02em;
}
.captcha-refresh {
    background: rgba(0,200,255,0.08);
    border: 1px solid var(--cyan-border);
    border-radius: 6px;
    color: var(--text-muted);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}
.captcha-refresh:hover { color: var(--cyan); background: rgba(0,200,255,0.15); }
.captcha-box input[type="number"] {
    width: 120px;
    background: rgba(6, 13, 26, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 9px 12px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -moz-appearance: textfield;
}
.captcha-box input[type="number"]::-webkit-outer-spin-button,
.captcha-box input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.captcha-box input[type="number"]:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,200,255,0.12);
}
.form-error {
    background: rgba(220, 50, 50, 0.12);
    border: 1px solid rgba(220,50,50,0.3);
    border-radius: 8px;
    color: #ff7575;
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 14px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,200,255,0.08);
    border: 1px solid var(--cyan-border);
    border-radius: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    margin-bottom: 14px;
}
.hidden { display: none !important; }
.btn-full { width: 100%; justify-content: center; }
.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 12px;
}
.form-note a { color: var(--text-muted); text-decoration: underline; }
.form-note a:hover { color: var(--cyan); }

/* ===== FOOTER CONTACT INFO ===== */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    background: none;
    border: none;
    cursor: default;
    padding: 0;
    font-family: inherit;
}
a.footer-contact-row { cursor: pointer; }
a.footer-contact-row:hover { color: var(--cyan); }

/* ===== FOOTER LINK BUTTON ===== */
.footer-link-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    transition: color var(--transition);
}
.footer-link-btn:hover { color: var(--cyan); }

/* ===== MODAL RESPONSIVE ===== */
@media (max-width: 600px) {
    .modal-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== ACCESSIBILITY & FOCUS STYLES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== INTERACTIVE DASHBOARD SHOWCASE ===== */
.showcase-section {
    padding: 100px 0;
    background-color: var(--background-secondary);
}
.showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}
.showcase-tab-btn {
    background: var(--surface-primary);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
}
.showcase-tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--brand-primary);
    background: var(--surface-elevated);
}
.showcase-tab-btn.active {
    background: var(--brand-primary);
    color: #020810;
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.35);
}
.showcase-content {
    position: relative;
    width: 100%;
}
.showcase-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.showcase-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Simulated App Window */
.app-window {
    background: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 2px rgba(0, 200, 255, 0.15);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}
.app-titlebar {
    background: var(--surface-primary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.window-controls {
    display: flex;
    gap: 8px;
}
.dot-ctrl {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }
.window-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.app-body {
    display: flex;
    flex: 1;
    min-height: 460px;
    background: var(--background-primary);
}
@media (max-width: 850px) {
    .app-body { flex-direction: column; }
}

/* Sidebar Simulation */
.app-sidebar {
    width: 220px;
    background: var(--surface-primary);
    border-right: 1px solid var(--border-subtle);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
@media (max-width: 850px) {
    .app-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 12px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: not-allowed;
    transition: background var(--transition), color var(--transition);
}
.sidebar-item.sim-active {
    background: var(--brand-soft);
    color: var(--brand-primary);
    font-weight: 600;
}
.sidebar-icon {
    flex-shrink: 0;
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
}

/* App Main Panel */
.app-panel {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--background-primary);
    overflow-x: auto;
}
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 14px;
}
.panel-title h3 {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.panel-title p {
    font-size: 13px;
    color: var(--text-muted);
}
.panel-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--brand-soft);
    color: var(--brand-primary);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.2);
}

/* Stats Cards */
.panel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.stat-card-sim {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-card-sim .val {
    font-family: var(--font-headings);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}
.stat-card-sim .lbl {
    font-size: 13px;
    color: var(--text-secondary);
}
.stat-card-sim.highlight {
    border-color: var(--brand-primary);
}
.stat-card-sim.highlight .val {
    color: var(--brand-primary);
}

/* Simulated Data Table */
.sim-table-wrap {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}
.sim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    text-align: left;
}
.sim-table th {
    background: var(--surface-elevated);
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.sim-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    vertical-align: middle;
}
.sim-table tr:last-child td { border-bottom: none; }
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}
.status-pill.online {
    background: rgba(56, 217, 150, 0.1);
    color: var(--success);
}
.status-pill.pending {
    background: rgba(243, 184, 75, 0.1);
    color: var(--warning);
}
.pulse-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}
.status-pill.online .pulse-dot {
    animation: simPulse 1.5s infinite alternate;
}
@keyframes simPulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Media Cards Simulation */
.media-sim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}
.media-sim-card {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.media-sim-thumb {
    height: 80px;
    background: var(--surface-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 24px;
    position: relative;
}
.media-sim-badge {
    position: absolute;
    bottom: 6px; right: 6px;
    background: rgba(7, 17, 31, 0.85);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 4px;
}
.media-sim-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.media-sim-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.media-sim-size {
    font-size: 11px;
    color: var(--text-muted);
}

/* Playlist Sim */
.playlist-sim-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.playlist-sim-item {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: grab;
}
.playlist-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.playlist-drag-handle {
    color: var(--text-muted);
    font-weight: 700;
}
.playlist-item-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.playlist-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
}
.playlist-item-time {
    font-size: 11.5px;
    color: var(--text-muted);
}
.playlist-item-dur {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--surface-elevated);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Capture Agent Sim */
.capture-sim-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 700px) {
    .capture-sim-layout { grid-template-columns: 1fr; }
}
.capture-settings {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.capture-setting-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.capture-setting-row label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
}
.capture-setting-row select, .capture-setting-row input {
    background: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-primary);
    padding: 8px 12px;
    font-size: 13px;
}
.capture-monitor {
    background: #020810;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}
.capture-screen-preview {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
.btn-capture-sim {
    background: var(--brand-primary);
    color: #020810;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 13px;
    cursor: not-allowed;
}

/* Branding Sim */
.branding-sim-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}
@media (max-width: 700px) {
    .branding-sim-layout { grid-template-columns: 1fr; }
}
.branding-editor-sim {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.color-picker-group {
    display: flex;
    gap: 12px;
}
.color-picker-sim {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.color-swatch-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 6px 10px;
}
.swatch-color {
    width: 20px; height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}
.swatch-hex {
    font-size: 13px;
    color: var(--text-primary);
}
.branding-preview-sim {
    background: var(--background-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sim-tv-frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: #020810;
    border: 10px solid #1c2635;
    border-bottom-width: 18px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.sim-tv-frame::after {
    content: '';
    position: absolute;
    bottom: -24px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 6px;
    background: #111a26;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.sim-tv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
}
.sim-tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.sim-tv-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
}
.sim-tv-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
}
.sim-tv-marquee {
    background: var(--brand-soft);
    border-top: 1px solid var(--brand-primary);
    padding: 4px 0;
    font-size: 10px;
    text-align: center;
    color: var(--brand-primary);
}

/* Hybrid comparison list styles */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.comparison-card {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform var(--transition), border-color var(--transition);
}
.comparison-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}
.comparison-card h3 {
    font-family: var(--font-headings);
    font-size: 20px;
    color: var(--text-primary);
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14.5px;
    color: var(--text-secondary);
}
.comparison-check {
    color: var(--brand-primary);
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

/* Form check input field styles */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}
.form-group-checkbox input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--brand-primary);
    margin-top: 2px;
    cursor: pointer;
}
.form-group-checkbox label {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}
.form-group-checkbox label a {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Honeypot field CSS - completely hide it from real users */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important; height: 0 !important;
    position: absolute !important;
    z-index: -9999 !important;
}

/* 2026 editorial signage redesign */
:root {
    --background-primary: #f5f7fb;
    --background-secondary: #eef2f7;
    --surface-primary: #ffffff;
    --surface-secondary: #f8fafc;
    --brand-primary: #4f46e5;
    --brand-secondary: #0891b2;
    --text-primary: #111827;
    --text-secondary: #586579;
    --border-subtle: #dbe2ea;
}

html { scroll-behavior: smooth; }
body {
    background: #f5f7fb;
    color: #111827;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.bg-glow { display: none; }
.navbar {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid #dbe2ea;
    box-shadow: 0 4px 20px rgba(15,23,42,.05);
    backdrop-filter: blur(16px);
}
.nav-link, .nav-mobile a { color: #475569; }
.nav-link:hover, .nav-link.active { color: #3730a3; }
.nav-link::after { background: #4f46e5; }
.hamburger span { background: #111827; }

.hero {
    min-height: 780px;
    background: #101827;
    color: #f8fafc;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 82% 28%, rgba(79,70,229,.24), transparent 34%), radial-gradient(circle at 12% 76%, rgba(8,145,178,.14), transparent 30%);
}
.hero-inner { gap: clamp(46px, 7vw, 110px); }
.hero-badge { background: rgba(255,255,255,.06); border-color: rgba(148,163,184,.28); color: #cbd5e1; letter-spacing: .12em; }
.badge-dot { background: #2dd4bf; box-shadow: 0 0 0 5px rgba(45,212,191,.12); }
.hero-headline { color: #f8fafc; font-size: clamp(50px, 5.4vw, 74px); line-height: .98; letter-spacing: -.05em; }
.cyan-glow { color: #93c5fd; text-shadow: none; }
.hero-sub { max-width: 650px; color: #b9c4d3; font-size: 18px; line-height: 1.7; }
.hero-stats { border-top: 1px solid rgba(148,163,184,.22); }
.stat-value.cyan { color: #a5b4fc; text-shadow: none; }
.stat-label { color: #94a3b8; }
.stat-divider { background: rgba(148,163,184,.22); }
.network-diagram { filter: none; }
.node, .server-console {
    background: #172238;
    border-color: #334155;
    box-shadow: 0 18px 60px rgba(0,0,0,.25);
    backdrop-filter: none;
}
.connection-line { opacity: .45; }
.hero-scroll-hint { color: #94a3b8; }

.btn { min-height: 46px; border-radius: 9px; font-weight: 700; box-shadow: none; }
.btn-primary { background: #5b5ce2; border-color: #5b5ce2; box-shadow: none; }
.btn-primary:hover { background: #4748c9; box-shadow: none; transform: translateY(-1px); }
.btn-outline { color: #3730a3; border-color: #c7d2fe; background: #eef2ff; }
.hero .btn-ghost, .cta-section .btn-ghost { color: #e2e8f0; border-color: rgba(255,255,255,.24); }

.section { background: #f5f7fb; }
.section:nth-of-type(even) { background: #eef2f7; }
.section-tag { color: #4f46e5; letter-spacing: .13em; font-weight: 800; }
.section-title { color: #111827; letter-spacing: -.04em; }
.section-sub { color: #5b6779; }
.glass-card, .step-card, .feature-card, .device-card, .comparison-card, .faq-item, .modal-card {
    background: #fff;
    border: 1px solid #dbe2ea;
    box-shadow: 0 8px 30px rgba(15,23,42,.055);
    backdrop-filter: none;
}
.step-card:hover, .feature-card:hover, .device-card:hover, .comparison-card:hover { border-color: #b7c2d2; box-shadow: 0 12px 36px rgba(15,23,42,.08); transform: translateY(-2px); }
.step-number { color: #c7d2fe; text-shadow: none; }
.step-connector .step-line { background: #cbd5e1; }
.step-arrow { color: #64748b; }
.feature-card h3, .step-card h3, .device-card h3, .comparison-card h3 { color: #182235; }
.feature-card p, .step-card p, .device-card p, .comparison-card li { color: #5c687b; }
.feature-icon, .step-icon, .device-icon { background: #eef2ff; border-color: #dce3ff; }
.feature-icon svg *, .step-icon svg *, .device-icon svg * { stroke: #4f46e5; }
.device-badge { color: #3730a3; background: #eef2ff; border-color: #c7d2fe; }

.showcase-section { background: #111827; }
.showcase-section .section-title { color: #f8fafc; }
.showcase-section .section-sub { color: #aab6c7; }
.showcase-window { box-shadow: 0 28px 80px rgba(0,0,0,.28); border-color: #334155; }
.showcase-tab-btn { color: #9daabd; }
.showcase-tab-btn.active { color: #c7d2fe; border-color: #818cf8; }

.faq-question { color: #182235; min-height: 56px; }
.faq-answer p { color: #5c687b; }
.cta-section { background: #eef2ff !important; }
.cta-card { overflow: hidden; background: #171d32; border-color: #283452; color: #fff; box-shadow: 0 24px 60px rgba(30,41,59,.16); }
.cta-card h2 { color: #fff; }
.cta-card p { color: #bdc7d6; }
.cta-glow { opacity: .12; }
.footer { background: #0f172a; border-top: 0; }
.footer-tagline, .footer-contact-row, .footer-links a, .footer-bottom { color: #94a3b8; }

input, select, textarea { min-height: 46px; background: #f8fafc; color: #111827; border-color: #cbd5e1; border-radius: 8px; }
input:focus, select:focus, textarea:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,.14); }
:focus-visible { outline: 3px solid rgba(79,70,229,.55); outline-offset: 3px; }

@media (max-width: 768px) {
    .nav-mobile { background: #fff; border-color: #dbe2ea; }
    .hero { min-height: auto; padding-top: 132px; }
    .hero-inner { gap: 56px; }
    .hero-text { order: 1; }
    .hero-visual { order: 2; }
    .hero-headline { font-size: clamp(44px, 13vw, 64px); }
    .hero-stats { overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* 2026 signage storytelling redesign */
:root {
    --story-ink: #07111f;
    --story-ink-soft: #111f35;
    --story-paper: #f5f2e9;
    --story-white: #fbfcff;
    --story-blue: #4f7cff;
    --story-sky: #80d8ff;
    --story-lime: #c8ff54;
    --story-orange: #ff7a45;
    --story-line: #17253a;
    --font-headings: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

body { background: var(--story-paper); color: var(--story-ink); font-family: var(--font-body); }
.font-outfit { font-family: var(--font-headings); }
.skip-link {
    position: fixed; top: -72px; left: 20px; z-index: 2000;
    padding: 12px 18px; background: var(--story-lime); color: var(--story-ink);
    border: 2px solid var(--story-ink); font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 18px; }

.navbar {
    background: rgba(7,17,31,.96);
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
    backdrop-filter: blur(14px);
}
.nav-inner { min-height: 82px; }
.nav-brand-text { color: #fff; font-weight: 800; letter-spacing: -.035em; }
.nav-brand-text .cyan { color: var(--story-sky); }
.nav-logo { box-shadow: 0 0 0 1px rgba(128,216,255,.28), 0 8px 22px rgba(0,0,0,.22); }
.nav-links a, .nav-link { color: #bac6d8; font-size: 14px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active, .nav-link:hover, .nav-link.active { color: #fff; }
.nav-links a::after, .nav-link::after { background: var(--story-lime); }
.navbar .nav-cta { background: var(--story-lime); border: 2px solid var(--story-lime); color: var(--story-ink); }
.navbar .nav-cta:hover { background: #ddff94; border-color: #ddff94; color: var(--story-ink); }
.hamburger span, .nav-hamburger span { background: #fff; }
.nav-hamburger { width: 48px; height: 48px; padding: 12px; align-items: center; justify-content: center; }

.hero {
    min-height: 900px;
    padding: 142px 0 84px;
    background: var(--story-ink);
    isolation: isolate;
}
.hero::before {
    background:
        linear-gradient(rgba(128,216,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128,216,255,.055) 1px, transparent 1px),
        radial-gradient(circle at 78% 16%, rgba(79,124,255,.34), transparent 32%),
        radial-gradient(circle at 15% 92%, rgba(0,181,204,.14), transparent 28%);
    background-size: 52px 52px, 52px 52px, auto, auto;
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
    align-items: center; gap: clamp(48px, 6vw, 96px);
}
.hero-text { max-width: 690px; }
.hero-badge {
    margin-bottom: 28px; padding: 10px 14px;
    background: transparent; border: 1px solid rgba(255,255,255,.25);
    color: #d8e1ef; border-radius: 2px; font-size: 11px; font-weight: 800; letter-spacing: .14em;
}
.badge-dot { width: 8px; height: 8px; background: var(--story-lime); box-shadow: 0 0 0 5px rgba(200,255,84,.12); }
.hero-headline {
    max-width: 760px; margin-bottom: 28px;
    color: #fff; font-size: clamp(54px, 5.5vw, 82px); line-height: .98; letter-spacing: -.065em;
}
.hero-headline .cyan-glow {
    color: var(--story-sky); font-family: "DM Serif Display", serif; font-weight: 400; font-style: italic;
    letter-spacing: -.025em; text-shadow: none;
}
.hero-sub { max-width: 670px; color: #bac6d8; font-size: 17px; line-height: 1.72; }
.hero-actions { margin-top: 32px; gap: 14px; }
.hero .btn { min-height: 52px; padding: 0 22px; border-radius: 2px; }
.hero .btn-primary {
    background: var(--story-blue); border: 2px solid var(--story-blue); color: #fff;
    box-shadow: 7px 7px 0 rgba(128,216,255,.22);
}
.hero .btn-primary:hover { background: #648cff; box-shadow: 4px 4px 0 rgba(128,216,255,.28); transform: translate(2px,2px); }
.hero .btn-ghost { border: 1px solid rgba(255,255,255,.24); color: #fff; }
.hero .btn-ghost:hover { border-color: var(--story-sky); background: rgba(128,216,255,.08); }
.hero-stats { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stats .stat-value { color: #fff; font-size: 15px; }
.hero-stats .stat-label { color: #8595ab; font-size: 11px; }
.hero-stats .stat-divider { background: rgba(255,255,255,.15); }
.hero-industries {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 26px;
    color: #aab7c9; font-size: 11px;
}
.hero-industries span:not(.hero-industries-label) {
    padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
}
.hero-industries-label { color: var(--story-lime); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll-hint { display: none; }
.network-diagram { display: none; }

.product-window {
    position: relative; overflow: hidden; color: #f6f9ff; background: #07111f;
    border: 1px solid #30425d; border-radius: 6px;
    box-shadow: 18px 18px 0 var(--story-blue), 34px 34px 70px rgba(0,0,0,.3);
}
.product-window::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 92% 8%, rgba(0,200,255,.12), transparent 34%);
}
.product-caption {
    position: relative; z-index: 1; min-height: 42px; padding: 0 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    color: #a7b6cc; background: #0b1728; border-bottom: 1px solid #233954;
    font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.product-caption span:first-child { color: var(--story-sky); }
.product-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 142px minmax(0,1fr); min-height: 460px; }
.product-sidebar { padding: 18px 12px; background: #091322; border-right: 1px solid #233954; }
.product-brand { display: flex; align-items: center; gap: 8px; padding: 0 5px 18px; border-bottom: 1px solid #1e3048; }
.product-brand img { width: 26px; height: 26px; object-fit: contain; }
.product-brand strong { display: block; color: #f6f9ff; font-size: 13px; line-height: 1.1; letter-spacing: -.03em; }
.product-brand strong span { color: var(--story-sky); }
.product-brand small { display: block; margin-top: 3px; color: #74869f; font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
.product-nav { display: grid; gap: 4px; margin-top: 16px; }
.product-nav-item { min-height: 32px; padding: 0 8px; display: flex; align-items: center; gap: 8px; color: #8999b0; border: 1px solid transparent; border-radius: 3px; font-size: 9px; font-weight: 700; }
.product-nav-item i { width: 6px; height: 6px; flex: 0 0 6px; border: 1px solid #61748e; border-radius: 50%; }
.product-nav-item.active { color: #f6f9ff; background: #11243a; border-color: #235170; }
.product-nav-item.active i { background: var(--story-sky); border-color: var(--story-sky); box-shadow: 0 0 0 3px rgba(128,216,255,.1); }
.product-workspace { min-width: 0; padding: 24px; }
.product-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 17px; border-bottom: 1px solid #1e3048; }
.product-header > div > span, .product-panel-title span { display: block; color: var(--story-sky); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.product-header h2 { margin: 5px 0 3px; color: #f6f9ff; font-size: 22px; line-height: 1.1; letter-spacing: -.04em; }
.product-header p { max-width: 360px; color: #8192aa; font-size: 9px; line-height: 1.5; }
.product-license { flex: 0 0 auto; padding: 7px 9px; color: #a9d9ff; background: #10273c; border: 1px solid #245476; border-radius: 999px; font-size: 7px; letter-spacing: .1em; }
.product-stats { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 16px 0 12px; }
.product-stats > div { min-height: 84px; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; background: #101f33; border: 1px solid #233954; border-radius: 4px; }
.product-stats strong { color: #f6f9ff; font-size: 28px; line-height: 1; font-variant-numeric: tabular-nums; }
.product-stats span { color: #9baac0; font-size: 9px; font-weight: 700; }
.product-panel { padding: 14px; background: #101f33; border: 1px solid #233954; border-radius: 4px; }
.product-panel-title strong { display: block; margin-top: 4px; color: #f6f9ff; font-size: 13px; }
.product-screen-list { margin-top: 12px; }
.product-screen-row { display: grid; grid-template-columns: 1.25fr .72fr 1fr .62fr; align-items: center; gap: 10px; min-height: 46px; padding: 8px 4px; color: #aebbd0; border-top: 1px solid #24364e; font-size: 8px; }
.product-screen-row b, .product-screen-row small { display: block; }
.product-screen-row b { color: #f6f9ff; font-size: 9px; }
.product-screen-row small { margin-top: 2px; color: #6f829c; font-size: 7px; }
.product-screen-head { min-height: 28px; padding-top: 0; color: #71849e; border-top: 0; font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-online { display: inline-flex !important; align-items: center; gap: 5px; color: #67dfa8; font-weight: 800; white-space: nowrap; }
.product-online i { width: 6px; height: 6px; background: #38d996; border-radius: 50%; box-shadow: 0 0 0 3px rgba(56,217,150,.1); }

/* Keep the footer wordmark legible after the light editorial tokens override --text-primary. */
.footer .footer-brand-name { color: #f8fafc; }
.footer .footer-brand-name .cyan { color: var(--story-sky); }

/* Compact hero and modal-specific light form treatment. */
.navbar,
.navbar.scrolled { padding: 0; }
.nav-inner { min-height: 76px; }
.hero {
    min-height: 760px;
    padding: 92px 0 36px;
}
.hero-inner {
    grid-template-columns: minmax(0,1.04fr) minmax(500px,.96fr);
    gap: clamp(32px,3.5vw,52px);
}
.hero-headline { margin-bottom: 20px; font-size: clamp(50px, 4.8vw, 66px); }
.hero-sub { font-size: 16px; line-height: 1.62; }
.hero-actions { margin-top: 24px; }
.hero-stats { margin-top: 26px; padding-top: 16px; }
.hero-industries { margin-top: 16px; gap: 6px; font-size: 10px; }
.hero-industries span:not(.hero-industries-label) { padding: 5px 8px; }
.hero .product-shell { min-height: 430px; }
.hero .product-workspace { padding: 20px; }
.hero .product-stats > div { min-height: 76px; }
.hero .product-screen-row { min-height: 42px; }

.modal-overlay { padding: 16px; background: rgba(3,8,18,.78); }
.modal-card,
.modal-card.glass-card {
    max-width: 760px;
    max-height: 92vh;
    max-height: calc(100dvh - 32px);
    padding: 30px 34px 26px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    color: #111827;
    box-shadow: 0 28px 90px rgba(2,8,23,.32);
    backdrop-filter: none;
}
.modal-card:hover,
.modal-card.glass-card:hover { transform: none; border-color: #dbe3ee; box-shadow: 0 28px 90px rgba(2,8,23,.32); }
.modal-close { top: 14px; right: 14px; width: 44px; height: 44px; color: #526176; }
.modal-close:hover { color: #111827; background: #eef2f7; }
.modal-header { margin-bottom: 20px; padding-right: 44px; }
.modal-header h2 { color: #111827; font-size: 28px; letter-spacing: -.035em; }
.modal-header p { color: #526176; line-height: 1.55; }
.form-row { gap: 14px; margin-bottom: 12px; }
.form-group { gap: 5px; margin-bottom: 12px; }
.form-group label { color: #334155; }
.modal-card .req { color: #315de8; }
.modal-card .form-group input,
.modal-card .form-group select,
.modal-card .form-group textarea,
.modal-card .captcha-box input[type="number"] {
    min-height: 44px;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #111827;
    border-radius: 8px;
    padding: 10px 12px;
}
.modal-card .form-group input::placeholder,
.modal-card .form-group textarea::placeholder,
.modal-card .captcha-box input[type="number"]::placeholder { color: #64748b; opacity: 1; }
.modal-card .form-group select option { color: #111827; background: #ffffff; }
.modal-card .form-group input:focus,
.modal-card .form-group select:focus,
.modal-card .form-group textarea:focus,
.modal-card .captcha-box input[type="number"]:focus {
    border-color: #4f7cff;
    box-shadow: 0 0 0 3px rgba(79,124,255,.16);
}
.modal-card .form-group textarea { min-height: 78px; resize: vertical; }
.modal-card .form-group-checkbox { margin: 2px 0 12px; }
.modal-card .form-group-checkbox label { color: #475569; line-height: 1.45; }
.modal-card .form-group-checkbox label a { color: #315de8; }
.modal-card .captcha-box {
    display: grid;
    grid-template-columns: auto minmax(180px,1fr) 118px;
    align-items: center;
    gap: 10px 14px;
    margin: 0 0 12px;
    padding: 11px 13px;
    background: #f1f8fc;
    border: 1px solid #c8dbe7;
    border-radius: 10px;
}
.modal-card .captcha-label { color: #315de8; opacity: 1; white-space: nowrap; }
.modal-card .captcha-question { color: #172033; font-size: 15px; }
.modal-card .captcha-refresh { width: 40px; height: 40px; color: #315de8; background: #e4f1f8; border-color: #b8cfdd; }
.modal-card .captcha-refresh:disabled { cursor: not-allowed; color: #94a3b8; opacity: .65; }
.modal-card .captcha-box input[type="number"] { width: 118px; }
.modal-card .captcha-box input:disabled { color: #64748b; background: #e8eef3; cursor: not-allowed; }
.captcha-help { grid-column: 1 / -1; color: #526176; font-size: 12px; line-height: 1.45; }
.modal-card .form-error { color: #9f1239; background: #fff1f2; border-color: #fecdd3; }
.modal-card .form-success { color: #166534; background: #f0fdf4; border-color: #bbf7d0; }
.modal-card .btn-primary { min-height: 46px; background: var(--story-blue); border-color: var(--story-blue); color: #ffffff; }
.modal-card .btn-primary:hover { background: #315de8; border-color: #315de8; }
.modal-card .btn-primary:disabled { cursor: not-allowed; opacity: .5; box-shadow: none; transform: none; }
.modal-card .form-note { color: #64748b; margin-top: 9px; }

@media (max-width: 600px) {
    .modal-overlay { align-items: flex-end; padding: 0; }
    .modal-card,
    .modal-card.glass-card {
        max-height: calc(100dvh - 12px);
        padding: 24px 20px 22px;
        border-radius: 18px 18px 0 0;
    }
    .modal-header { margin-bottom: 18px; }
    .modal-header h2 { font-size: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
    .modal-card .captcha-box { display: flex; align-items: stretch; }
    .modal-card .captcha-challenge { justify-content: space-between; }
    .modal-card .captcha-box input[type="number"] { width: 100%; }
}

.use-cases-section { padding: 120px 0; background: var(--story-paper); }
.use-cases-intro { display: grid; grid-template-columns: .85fr 1.2fr 1fr; align-items: end; gap: 36px; margin-bottom: 54px; }
.use-cases-intro .section-tag { align-self: start; justify-self: start; color: #214fc6; }
.use-cases-intro .section-title { margin: 0; color: var(--story-ink); font-size: clamp(42px,5vw,68px); line-height: .98; letter-spacing: -.055em; }
.use-cases-intro .section-title em { color: #214fc6; font-family: "DM Serif Display",serif; font-weight: 400; }
.use-cases-intro > p { margin: 0; color: #526076; font-size: 16px; line-height: 1.7; }
.business-bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.business-card {
    min-height: 300px; padding: 26px; display: flex; flex-direction: column;
    border: 2px solid var(--story-ink); border-radius: 3px; color: var(--story-ink);
    box-shadow: 7px 7px 0 rgba(7,17,31,.12); transition: transform .2s ease, box-shadow .2s ease;
}
.business-card:hover { transform: translate(-2px,-2px); box-shadow: 11px 11px 0 rgba(7,17,31,.15); }
.business-index { font: 800 12px/1 var(--font-headings); }
.business-label { margin-top: 8px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.business-card h3 { max-width: 430px; margin: auto 0 14px; font-size: clamp(25px,2.2vw,35px); line-height: 1.04; letter-spacing: -.045em; }
.business-card p { margin: 0 0 22px; font-size: 14px; line-height: 1.62; }
.business-card-footer { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 15px; border-top: 1px solid rgba(7,17,31,.22); }
.business-card-footer span { padding: 5px 8px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.business-card-retail { grid-column: span 7; background: var(--story-orange); }
.business-card-hospitality { grid-column: span 5; background: #d6efff; }
.business-card-food { grid-column: span 4; background: #fff; }
.business-card-workplace { grid-column: span 8; background: var(--story-lime); }
.business-card-care { grid-column: span 6; background: #b9c9ff; }
.business-card-public { grid-column: span 6; background: var(--story-ink-soft); color: #fff; }
.business-card-public .business-card-footer { border-color: rgba(255,255,255,.25); }

.section-features { padding: 120px 0; background: var(--story-ink) !important; }
.section-features .section-header {
    width: 100%; max-width: none; margin: 0 0 56px;
    display: grid; grid-template-columns: minmax(150px,.4fr) minmax(390px,1.15fr) minmax(280px,.75fr);
    gap: clamp(28px,4vw,56px); align-items: end; text-align: left;
}
.section-features .section-tag { justify-self: start; align-self: start; color: var(--story-lime); background: rgba(200,255,84,.09); border-color: rgba(200,255,84,.28); }
.section-features .section-title { margin: 0; color: #fff; font-size: clamp(40px,4.5vw,64px); line-height: 1; letter-spacing: -.05em; }
.section-features .section-sub { max-width: 430px; margin: 0; color: #aebbd0; }
.features-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 12px; }
.feature-card {
    grid-column: span 4; min-height: 270px; padding: 26px;
    background: #111f35; border: 1px solid #2a3952; border-radius: 3px; color: #fff; box-shadow: none;
}
.feature-card:nth-child(1), .feature-card:nth-child(2) { grid-column: span 6; }
.feature-card:hover { border-color: #7aa7ff; background: #152641; box-shadow: none; transform: translateY(-2px); }
.feature-card h3 { color: #fff; font-size: 20px; }
.feature-card p { color: #aebbd0; }
.feature-icon { width: 48px; height: 48px; background: rgba(128,216,255,.08); border: 1px solid rgba(128,216,255,.24); border-radius: 2px; }
.feature-icon svg * { stroke: var(--story-sky); }

@media (max-width: 1050px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-text { max-width: 850px; }
    .hero-visual { max-width: 760px; width: 100%; margin: 0 auto; }
    .use-cases-intro, .section-features .section-header { grid-template-columns: minmax(150px,.55fr) minmax(0,1.45fr); }
    .use-cases-intro > p, .section-features .section-sub { grid-column: 2; max-width: 600px; }
}

@media (max-width: 768px) {
    .navbar { background: rgba(7,17,31,.98); }
    .nav-mobile { background: var(--story-ink-soft); border-color: rgba(255,255,255,.12); }
    .nav-mobile a { color: #fff; }
    .hero { min-height: 0; padding: 118px 0 76px; }
    .hero-inner { display: flex; flex-direction: column; gap: 58px; }
    .hero-text { order: 1; }
    .hero-visual { order: 2; }
    .hero-headline { font-size: clamp(46px,13vw,64px); }
    .hero-sub { font-size: 16px; }
    .hero-actions { align-items: stretch; }
    .hero .btn { width: 100%; justify-content: center; }
    .hero-stats { display: grid; grid-template-columns: 1fr; gap: 12px; }
    .hero-stats .stat-divider { display: none; }
    .hero-stats .stat { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
    .product-window { box-shadow: 10px 10px 0 var(--story-blue); }
    .product-caption { padding: 0 12px; }
    .product-shell { display: block; min-height: 0; }
    .product-sidebar { padding: 12px; border-right: 0; border-bottom: 1px solid #233954; }
    .product-brand { padding: 0 0 10px; }
    .product-nav { display: flex; margin-top: 10px; gap: 5px; }
    .product-nav-item { min-height: 30px; padding: 0 8px; }
    .product-nav-item:nth-child(n+4) { display: none; }
    .product-workspace { padding: 14px; }
    .product-header { display: block; }
    .product-license { display: inline-block; margin-top: 10px; }
    .product-stats > div { min-height: 76px; }
    .product-screen-head { display: none; }
    .product-screen-row { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr) auto; gap: 8px; }
    .product-screen-row .product-location { display: none; }
    .use-cases-section, .section-features { padding: 82px 0; }
    .use-cases-intro, .section-features .section-header { display: block; }
    .use-cases-intro .section-tag, .section-features .section-tag { margin-bottom: 22px; }
    .use-cases-intro .section-title, .section-features .section-title { margin-bottom: 22px; }
    .business-bento, .features-grid { display: grid; grid-template-columns: 1fr; }
    .business-card, .business-card-retail, .business-card-hospitality, .business-card-food, .business-card-workplace, .business-card-care, .business-card-public,
    .feature-card, .feature-card:nth-child(1), .feature-card:nth-child(2) { grid-column: 1; }
    .business-card { min-height: 270px; }
}

/* Final compact hero override after all responsive theme layers. */
@media (max-width: 768px) {
    .nav-inner { min-height: 72px; }
    .hero { min-height: 0; padding: 92px 0 52px; }
    .hero-inner { gap: 42px; }
}
