@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --background: #090d15;
    --background-2: #0d1220;
    --foreground: #f6f9ff;
    --muted-foreground: #98a4bf;
    --card: #121926;
    --card-soft: rgba(18, 25, 38, 0.72);
    --border: rgba(145, 164, 203, 0.2);
    --primary: #4ea7ff;
    --primary-soft: rgba(78, 167, 255, 0.12);
    --accent: #2ccf9b;
    --accent-soft: rgba(44, 207, 155, 0.12);
    --danger: #ff6a6a;
    --gold: #f8ca69;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--foreground);
    background:
        radial-gradient(circle at 8% 12%, rgba(78, 167, 255, 0.16), transparent 22%),
        radial-gradient(circle at 90% 10%, rgba(44, 207, 155, 0.12), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(60, 84, 140, 0.2), transparent 28%),
        linear-gradient(180deg, var(--background) 0%, var(--background-2) 52%, #090f19 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.mono {
    font-family: 'JetBrains Mono', Consolas, monospace;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(9, 13, 21, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.site-header .container {
    width: min(100% - 44px, 100%);
    max-width: none;
}

.header-row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
}

.brand img {
    height: 52px;
    width: auto;
    opacity: 0.95;
    flex: 0 0 auto;
}

.brand-name {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground);
    white-space: nowrap;
    line-height: 1;
}

.home-page ~ .footer .brand-name {
    display: none;
}

.home-page + .footer .brand-name {
    display: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav a {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--foreground);
    background: var(--primary-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #061a34;
    background: linear-gradient(135deg, var(--primary), #87c3ff);
    box-shadow: 0 14px 32px rgba(78, 167, 255, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(78, 167, 255, 0.34);
}

.btn-accent {
    color: #032118;
    background: linear-gradient(135deg, var(--accent), #79edc8);
    box-shadow: 0 14px 32px rgba(44, 207, 155, 0.26);
}

.btn-ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--foreground);
}

.btn-ghost:hover {
    border-color: rgba(78, 167, 255, 0.4);
    background: rgba(78, 167, 255, 0.1);
}

.btn-demo {
    color: #032118;
    background: linear-gradient(135deg, #2ccf9b, #5ce6b8);
    box-shadow: 0 14px 32px rgba(44, 207, 155, 0.3);
    position: relative;
    overflow: visible;
}

.btn-demo::before {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ccf9b;
    box-shadow: 0 0 0 4px rgba(44, 207, 155, 0.3);
    animation: demo-pulse 2s ease-in-out infinite;
}

.btn-demo:hover {
    box-shadow: 0 18px 40px rgba(44, 207, 155, 0.38);
}

@keyframes demo-pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(44, 207, 155, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(44, 207, 155, 0.08);
    }
}

.demo-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(44, 207, 155, 0.35);
    font-size: 0.84rem;
    font-weight: 700;
    color: #2ccf9b;
    background: rgba(44, 207, 155, 0.08);
    transition: all 0.25s ease;
}

.demo-chip::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ccf9b;
    box-shadow: 0 0 0 3px rgba(44, 207, 155, 0.28);
    animation: demo-pulse 2s ease-in-out infinite;
}

.demo-chip:hover {
    border-color: rgba(44, 207, 155, 0.55);
    background: rgba(44, 207, 155, 0.15);
    color: #5ce6b8;
}

.demo-section {
    border: 1px solid rgba(44, 207, 155, 0.22);
    border-radius: 22px;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(44, 207, 155, 0.06), rgba(44, 207, 155, 0.02));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
    text-align: center;
}

.demo-section .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 62ch;
}

.demo-section .hero-actions {
    justify-content: center;
}

.demo-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5ce6b8;
    transition: color 0.25s ease, filter 0.25s ease;
}

.demo-inline:hover {
    color: #86f4d3;
    filter: brightness(1.15);
}

.page {
    padding-top: 86px;
}

.section {
    padding: 88px 0;
    position: relative;
}

.section-tight {
    padding-top: 30px;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04));
    border-top: 1px solid rgba(145, 164, 203, 0.12);
    border-bottom: 1px solid rgba(145, 164, 203, 0.12);
}

.eyebrow {
    margin: 0;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
}

.eyebrow.accent {
    color: var(--accent);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--foreground);
}

h1 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 5.2vw, 5.2rem);
    font-weight: 900;
}

h2 {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3.3vw, 3.8rem);
    font-weight: 900;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    font-weight: 800;
}

p {
    margin: 0;
    color: var(--muted-foreground);
}

.lead {
    margin-top: 16px;
    max-width: 68ch;
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.hero-panel,
.card,
.glass-card,
.feature-card,
.stat-card,
.number-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(20, 28, 44, 0.86), rgba(14, 20, 34, 0.9));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.hero-panel {
    padding: 32px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chips {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(145, 164, 203, 0.24);
    font-size: 0.82rem;
    color: #d3def8;
    background: rgba(145, 164, 203, 0.08);
}

.image-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    min-height: 350px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    font-size: 0.84rem;
    color: #e8f0ff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
}

.section-head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 38px;
}

.section-head .lead {
    margin-left: auto;
    margin-right: auto;
}

.products-stack {
    display: grid;
    gap: 20px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.product-content {
    padding: 32px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #cad8f8;
}

.product-features {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}

.product-features span {
    font-size: 0.9rem;
    color: #c8d6f3;
}

.product-image {
    min-height: 260px;
    border-left: 1px solid var(--border);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steps-grid,
.benefits-grid,
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 14px;
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.feature-card,
.stat-card,
.number-card,
.glass-card,
.card {
    padding: 20px;
}

.feature-card h4,
.stat-card h4,
.number-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 800;
}

.feature-card p,
.stat-card p,
.number-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

.number-badge {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #031a14;
    background: linear-gradient(135deg, var(--accent), #86f4d3);
    font-weight: 800;
    font-size: 0.82rem;
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.image-card img,
.video-card video {
    width: 100%;
    display: block;
    object-fit: contain;
    background: #070b14;
}

.image-card figcaption,
.video-card figcaption {
    padding: 10px 12px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.cta-box {
    text-align: center;
    padding: 44px 26px;
    border: 1px solid rgba(145, 164, 203, 0.28);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(78, 167, 255, 0.12), rgba(44, 207, 155, 0.12)),
        rgba(12, 18, 30, 0.85);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.cta-box .lead {
    margin-left: auto;
    margin-right: auto;
}

.footer {
    border-top: 1px solid var(--border);
    background: rgba(8, 12, 20, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
    padding: 48px 0;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer p,
.footer a {
    color: var(--muted-foreground);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    padding: 16px 0 26px;
    border-top: 1px solid rgba(145, 164, 203, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-menu-toggle,
.mobile-nav {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Streamlined visual mode for pages that should feel less boxed */
.stream-page .section {
    padding: 74px 0;
}

.stream-page .section-tight {
    padding-top: 20px;
}

.stream-page .section-alt {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.stream-page .hero-grid {
    gap: 34px;
    align-items: center;
}

.stream-page .hero-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.stream-page .image-panel {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.stream-page .section-head {
    text-align: left;
    max-width: none;
    margin: 0 0 22px;
}

.stream-page .section-head .lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 72ch;
}

.stream-page .grid-2,
.stream-page .grid-3,
.stream-page .grid-4 {
    gap: 18px;
}

.stream-page .feature-card,
.stream-page .stat-card,
.stream-page .number-card,
.stream-page .card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid rgba(145, 164, 203, 0.24);
    padding: 14px 0 2px;
}

.stream-page .chips {
    margin-top: 14px;
}

.stream-page .chips span {
    background: transparent;
    border-color: rgba(145, 164, 203, 0.28);
}

.stream-page .image-card,
.stream-page .video-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.stream-page .image-card img,
.stream-page .video-card video {
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.stream-page .image-card figcaption,
.stream-page .video-card figcaption {
    padding: 10px 0 0;
}

.stream-page .media-video-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
}

.stream-page .media-video-wrap .video-card video {
    width: 100%;
    min-height: 0;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.stream-page .media-wide {
    width: 100%;
    margin: 0;
}

.stream-page .focus-graph {
    min-height: 0;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.stream-page .cta-box {
    border-radius: 22px;
    border-color: rgba(145, 164, 203, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    background:
        linear-gradient(135deg, rgba(78, 167, 255, 0.08), rgba(44, 207, 155, 0.08)),
        rgba(12, 18, 30, 0.56);
}

/* Proline Graphs hero with mirrored background image */
.stream-page .graphs-hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: 132px 34px 92px;
    isolation: isolate;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.graphs-page.page {
    padding-top: 0;
}

.home-page.page {
    padding-top: 0;
}

.graphs-page .section:first-child {
    padding-top: 0;
}

.home-page .section:first-child {
    padding-top: 0;
}

.stream-page .graphs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../proline_graphs_TV.png");
    background-size: cover;
    background-position: 50% 15%;
    transform: scaleX(-1);
    transform-origin: center;
    z-index: -2;
}

.stream-page .graphs-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 13, 21, 0.95) 0%, rgba(9, 13, 21, 0.75) 45%, rgba(9, 13, 21, 0.25) 100%),
        linear-gradient(180deg, rgba(9, 13, 21, 0.8) 0%, rgba(9, 13, 21, 0) 50%, rgba(9, 13, 21, 0.5) 100%);
    z-index: -1;
}

.stream-page .graphs-hero .hero-panel {
    max-width: 760px;
}

/* Homepage-specific streamlining to avoid card-heavy appearance */
.home-page .products-stack {
    gap: 30px;
}

.home-page .product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-top: 1px solid rgba(145, 164, 203, 0.24);
    padding-top: 16px;
}

.home-page .product-content {
    padding: 0;
}

.home-page .product-tag {
    background: transparent;
    border-color: rgba(145, 164, 203, 0.26);
}

.home-page .product-image {
    border-left: 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.home-page .image-panel {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.home-page .steps-grid,
.home-page .benefits-grid {
    gap: 20px;
}

.home-page .cta-box {
    border-width: 1px 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    box-shadow: none;
}

.contact-page {
    padding-top: 112px;
}

.contact-hero {
    padding-top: 36px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 28px;
    align-items: start;
}

.contact-copy {
    padding-top: 18px;
    max-width: 620px;
}

.contact-subtitle {
    margin-top: 34px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.trial-list {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.trial-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.trial-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    background: rgba(78, 167, 255, 0.12);
}

.contact-icon-svg {
    width: 18px;
    height: 18px;
    display: block;
}

.trial-item h3 {
    font-size: 0.95rem;
}

.trial-item p {
    margin-top: 6px;
    font-size: 0.88rem;
}

.contact-links {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.contact-links a,
.contact-links p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.96rem;
    color: var(--muted-foreground);
}

.contact-link-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(78, 167, 255, 0.12);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.contact-links a:hover {
    color: var(--primary);
}

.contact-form-card {
    border: 1px solid rgba(145, 164, 203, 0.16);
    border-radius: 26px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(18, 25, 38, 0.76), rgba(12, 18, 30, 0.88));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.contact-form-card .lead {
    max-width: none;
    font-size: 1rem;
}

.contact-form-shell,
.contact-form-card form {
    margin-top: 22px;
    display: grid;
    gap: 0;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form-field span {
    font-size: 0.86rem;
    font-weight: 700;
    color: #dce7ff;
}

.input-field {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(145, 164, 203, 0.14);
    border-radius: 14px;
    background: rgba(9, 13, 21, 0.92);
    color: var(--foreground);
    font: inherit;
}

.input-field::placeholder {
    color: #7d8aa7;
}

.input-field:focus {
    outline: none;
    border-color: rgba(78, 167, 255, 0.46);
    box-shadow: 0 0 0 4px rgba(78, 167, 255, 0.1);
}

.select-field {
    appearance: none;
    color: var(--foreground);
}

.textarea-field {
    min-height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;
}

.contact-status {
    margin-top: 12px;
    font-size: 0.84rem;
    text-align: center;
}

@media (max-width: 1040px) {
    .hero-grid,
    .product-card,
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid,
    .benefits-grid,
    .steps-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .product-image {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

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

    .mobile-nav {
        display: none;
        border-top: 1px solid var(--border);
        padding: 12px 0 16px;
    }

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

    .mobile-nav a {
        display: block;
        padding: 10px 0;
        color: var(--muted-foreground);
        font-weight: 600;
    }

    .mobile-nav a.active,
    .mobile-nav a:hover {
        color: var(--foreground);
    }

    .stream-page .section-head {
        margin-bottom: 16px;
    }

    .stream-page .graphs-hero {
        min-height: 84vh;
        padding: 102px 22px 52px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .home-page .product-image {
        margin-top: 10px;
    }

    .contact-page {
        padding-top: 98px;
    }

    .contact-form-card {
        padding: 22px;
    }

    .stream-page .media-video-wrap .video-card video {
        min-height: 0;
        height: auto;
    }

    .stream-page .focus-graph {
        min-height: 0;
        height: auto;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .hero-panel,
    .product-content,
    .feature-card,
    .stat-card,
    .number-card,
    .card,
    .glass-card,
    .cta-box {
        padding: 18px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .page {
        padding-top: 80px;
    }
}
