/* ============================================================================
   VX Studio Website
   ============================================================================ */

:root {
    --primary: #1a5cff;
    --primary-deep: #1038b8;
    --accent: #33d18f;
    --accent-warm: #f6b54a;
    --surface-ink: #101723;
    --surface-deep: #161f30;
    --text-primary: #141923;
    --text-secondary: #556072;
    --text-muted: #7f899a;
    --border-soft: rgba(16, 23, 35, 0.08);
    --border-strong: rgba(16, 23, 35, 0.14);
    --bg-page: #f6f8fc;
    --bg-soft: #eef3ff;
    --bg-cream: #fcfaf5;
    --white: #ffffff;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.875rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.75rem;
    --spacing-xl: 2.75rem;
    --spacing-2xl: 4.5rem;
    --spacing-3xl: 6rem;

    --radius-sm: 0.75rem;
    --radius-md: 1.1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --shadow-sm: 0 10px 30px rgba(16, 23, 35, 0.05);
    --shadow-md: 0 18px 50px rgba(16, 23, 35, 0.09);
    --shadow-lg: 0 28px 80px rgba(16, 23, 35, 0.16);

    --transition: 180ms ease;
}

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

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(26, 92, 255, 0.12), transparent 24rem),
        radial-gradient(circle at 82% 8%, rgba(51, 209, 143, 0.12), transparent 20rem),
        linear-gradient(180deg, #fdfcf8 0%, #ffffff 24%, #f6f8fc 100%);
    background-color: var(--bg-page);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.08;
}

h1, h2 {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

a:hover {
    color: var(--primary-deep);
}

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-label::before {
    content: "";
    width: 2.6rem;
    height: 1px;
    background: rgba(26, 92, 255, 0.3);
}

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

.section-header p:last-child {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 23, 35, 0.06);
    backdrop-filter: blur(18px);
    background: rgba(252, 250, 245, 0.84);
}

.nav-container {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5rem;
}

.nav-brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo {
    width: auto;
    height: 2rem;
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--surface-ink);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.96rem;
    font-weight: 700;
}

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

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--surface-ink);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.37rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.37rem) rotate(-45deg);
}

.hero {
    width: min(1280px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 4rem 0 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 3.25rem;
    align-items: center;
}

.hero-content {
    max-width: 38rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 92, 255, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-content > p:nth-of-type(2) {
    max-width: 35rem;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.6rem;
}

.hero-proof span {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 23, 35, 0.08);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stat {
    padding: 1.15rem 1.1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 23, 35, 0.07);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero-stat strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--surface-ink);
}

.hero-stat span {
    display: block;
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.hero-graphic {
    position: relative;
}

.hero-waveform {
    position: relative;
    min-height: 31rem;
    padding: 2rem;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-lg);
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.05), rgba(255, 255, 255, 0) 40%),
        linear-gradient(135deg, #0f56ff 0%, #237dff 35%, #24c3ce 68%, #5ae48b 100%);
}

.hero-waveform-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 100% 4.5rem, 4.5rem 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
}

.waveform-panel {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.waveform-panel-a {
    top: -3.5rem;
    right: -2.25rem;
    width: 13rem;
    height: 13rem;
}

.waveform-panel-b {
    left: -2rem;
    bottom: -2rem;
    width: 10rem;
    height: 10rem;
}

.waveform-line {
    position: absolute;
    left: 7%;
    right: 7%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.waveform-line-a {
    top: 33%;
}

.waveform-line-b {
    top: 63%;
}

.waveform-chip {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 13, 26, 0.2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-console {
    position: relative;
    z-index: 2;
    width: min(100%, 22rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 13, 26, 0.22);
    color: white;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.hero-console-primary {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 6rem;
    width: auto;
    padding: 1.35rem;
    border-radius: 1.4rem;
}

.console-label {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero-console-primary strong {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

.hero-console-primary p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.hero-console-secondary {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: auto;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-console-secondary span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, #4c8aff 100%);
    box-shadow: 0 14px 34px rgba(26, 92, 255, 0.28);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(26, 92, 255, 0.35);
}

.btn-secondary {
    color: var(--surface-ink);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(16, 23, 35, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    color: var(--surface-ink);
    border-color: rgba(16, 23, 35, 0.2);
    transform: translateY(-1px);
}

.btn-nav {
    min-height: 2.9rem;
    padding-inline: 1.15rem;
    background: rgba(16, 23, 35, 0.04);
    border-color: rgba(16, 23, 35, 0.08);
    color: var(--surface-ink);
}

.btn-nav:hover {
    background: rgba(16, 23, 35, 0.08);
    color: var(--surface-ink);
}

.btn-large {
    min-height: 3.7rem;
    padding-inline: 1.9rem;
    font-size: 1rem;
}

.btn-sm {
    min-height: 2.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.products-section,
.product-details-section,
.features-section,
.download-section,
.tech-section,
.docs-section {
    padding: 5rem 0;
}

.products-section {
    position: relative;
}

.products-section::before,
.download-section::before,
.tech-section::before {
    content: "";
    display: block;
    width: min(1180px, calc(100% - 2.5rem));
    height: 1px;
    margin: 0 auto 5rem;
    background: linear-gradient(90deg, transparent, rgba(16, 23, 35, 0.08), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card {
    position: relative;
    padding: 1.6rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(16, 23, 35, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -24% auto;
    width: 9rem;
    height: 9rem;
    background: radial-gradient(circle, rgba(26, 92, 255, 0.1), transparent 72%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 92, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.product-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 1rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.product-card p {
    min-height: 5.8rem;
    margin-bottom: 1.25rem;
    font-size: 0.94rem;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.learn-more {
    font-size: 0.9rem;
    font-weight: 800;
}

.product-details-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.82));
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.detail-card {
    padding: 1.35rem 1.4rem;
    border-radius: 1.35rem;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.detail-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.features-section {
    background: linear-gradient(180deg, #fcfaf5 0%, #f7f9ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature {
    padding: 1.6rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(16, 23, 35, 0.07);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(26, 92, 255, 0.14), rgba(51, 209, 143, 0.16));
    color: var(--surface-ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.download-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, #f7faff 100%);
}

.platform-notice,
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.notice-box,
.system-requirements,
.tech-item,
.doc-link {
    border: 1px solid rgba(16, 23, 35, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.notice-box {
    padding: 1.5rem;
    border-radius: 1.6rem;
}

.notice-box.macos {
    border-color: rgba(26, 92, 255, 0.28);
}

.notice-box.windows {
    border-color: rgba(51, 209, 143, 0.38);
}

.notice-badge {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 92, 255, 0.1);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.notice-badge-muted {
    background: rgba(51, 209, 143, 0.12);
    color: #198757;
}

.notice-box h3 {
    margin-bottom: 0.85rem;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.download-button-container {
    text-align: center;
    margin: 2.2rem 0 0;
}

.download-note {
    margin-top: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.system-requirements {
    margin-top: 1rem;
    padding: 1.85rem;
    border-radius: 1.8rem;
}

.system-requirements h3 {
    text-align: center;
    margin-bottom: 1.6rem;
}

.requirement h4 {
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.requirement ul {
    list-style: none;
}

.requirement li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.2rem;
    color: var(--text-secondary);
}

.requirement li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.tech-section {
    background: linear-gradient(180deg, #f3f7ff 0%, #fcfaf5 100%);
}

.tech-grid,
.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tech-item,
.doc-link {
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.tech-item h3 {
    color: var(--primary);
}

.tech-item p,
.doc-link p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.doc-link {
    color: var(--text-primary);
}

.doc-link:hover,
.tech-item:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 92, 255, 0.16);
    box-shadow: var(--shadow-md);
}

.footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    color: white;
    background: linear-gradient(180deg, #161c28 0%, #0d1118 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 0.85rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-version {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-section li + li {
    margin-top: 0.7rem;
}

.footer-bottom {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3.25rem;
    }

    .hero-content {
        max-width: none;
    }

    .products-grid,
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-grid,
    .docs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container,
    .nav-container,
    .hero {
        width: min(100% - 1.25rem, 100%);
    }

    .navbar {
        background: rgba(252, 250, 245, 0.96);
    }

    .nav-container {
        min-height: 4.35rem;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 0;
        right: 0;
        display: none;
        padding: 1rem;
        border-radius: 1.4rem;
        border: 1px solid rgba(16, 23, 35, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }

    .nav-panel.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .btn-nav {
        width: 100%;
    }

    .hero {
        padding: 2.25rem 0 3.2rem;
        gap: 1.5rem;
    }

    .hero-kicker {
        font-size: 0.74rem;
        padding: 0.6rem 0.8rem;
    }

    .hero-content > p:nth-of-type(2) {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons,
    .hero-proof {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-proof span,
    .btn,
    .btn-large {
        width: 100%;
    }

    .hero-stats,
    .products-grid,
    .detail-grid,
    .features-grid,
    .platform-notice,
    .requirements-grid,
    .tech-grid,
    .docs-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-waveform {
        min-height: 22rem;
        padding: 1rem;
    }

    .hero-console-primary {
        left: 1rem;
        right: 1rem;
        bottom: 4.8rem;
        padding: 1.05rem;
    }

    .hero-console-secondary {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: flex-start;
    }

    .waveform-chip {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        text-align: center;
    }

    .products-section,
    .product-details-section,
    .features-section,
    .download-section,
    .tech-section,
    .docs-section {
        padding: 3.4rem 0;
    }

    .products-section::before,
    .download-section::before,
    .tech-section::before {
        margin-bottom: 3.4rem;
    }

    .product-card,
    .detail-card,
    .feature,
    .notice-box,
    .tech-item,
    .doc-link,
    .system-requirements {
        border-radius: 1.3rem;
    }

    .product-card {
        padding: 1.25rem;
    }

    .product-card p {
        min-height: 0;
    }

    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .card-actions .btn-sm,
    .learn-more {
        width: 100%;
        text-align: center;
    }

    .section-header {
        margin-bottom: 2.4rem;
    }

    .footer {
        margin-top: 2.5rem;
        padding-top: 2.4rem;
    }
}

@media (max-width: 520px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-waveform {
        min-height: 20rem;
    }

    .hero-console-primary strong {
        font-size: 1.1rem;
    }

    .hero-console-primary p,
    .hero-console-secondary span {
        font-size: 0.78rem;
    }
}

@media print {
    .navbar,
    .footer,
    .menu-toggle {
        display: none;
    }
}
