/* ByteInfer.ai — Styles */
:root {
    --bg-primary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-code: #111111;
    --border: #1a1a1a;
    --border-accent: rgba(255, 107, 53, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --text-dim: #999999;
    --accent: #ff6b35;
    --accent-dim: #cc5529;
    --accent-glow: rgba(255, 107, 53, 0.4);
    --accent-glow-soft: rgba(255, 107, 53, 0.08);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Background canvases */
#graph-canvas,
#neural-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
}
#graph-canvas { z-index: -2; opacity: 0.4; }
#neural-canvas { z-index: -1; opacity: 0.3; }

/* ═══════════ TOP NAV (blaze page) ═══════════ */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.topnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.topnav-flame {
    width: 24px;
    height: auto;
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.topnav-links {
    display: flex;
    gap: 24px;
}

.topnav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.topnav-links a:hover,
.topnav-links a.active {
    color: var(--accent);
}

/* ═══════════ MAIN PAGE — HERO ═══════════ */
.hero {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8vh 2rem 4vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeIn 1.5s ease-out;
}

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

/* Flame logo */
.logo-container {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.flame {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: flameFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.flame-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
    background: radial-gradient(ellipse at center, rgba(255,107,53,0.7) 0%, rgba(255,107,53,0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
    filter: blur(15px);
}

@keyframes flameFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(0.5deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(-0.5deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.brand-name {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.tagline {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════ MAIN PAGE — PRODUCT CARD ═══════════ */
.product-section {
    position: relative;
    z-index: 1;
    padding: 0 2rem 4rem;
    display: flex;
    justify-content: center;
}

.product-card {
    max-width: 820px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.product-card:hover {
    border-color: var(--border-accent);
}

.product-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.product-flame {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    flex-shrink: 0;
    margin-top: 2px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-dim);
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 4px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    width: fit-content;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.cta-btn:hover {
    background: #ff8c5a;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.35);
    transform: translateY(-1px);
}

.cta-btn-dim {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    box-shadow: none;
    cursor: default;
}

.cta-btn-dim:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.cta-btn .arrow {
    transition: transform 0.2s;
}

.cta-btn:hover .arrow {
    transform: translateX(3px);
}

.product-numbers {
    padding: 32px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.number-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.number-value {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.number-unit {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.number-label {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ═══════════ MAIN PAGE — PHILOSOPHY ═══════════ */
.philosophy {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem 5rem;
}

.philosophy p {
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-status {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

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

.footer-dot {
    color: var(--text-dim);
    margin: 0 8px;
    font-size: 0.8rem;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ═══════════ BLAZE PAGE — HERO ═══════════ */
.blaze-page {
    overflow-x: hidden;
}

.blaze-hero {
    padding: 140px 2rem 80px;
    text-align: center;
}

.blaze-hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.blaze-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blaze-hero-flame {
    width: 64px;
    height: auto;
    filter: drop-shadow(0 0 12px var(--accent-glow));
    animation: flameFloat 3s ease-in-out infinite;
}

.blaze-hero-title h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.blaze-badge {
    font-family: var(--font-mono);
    font-size: 0.4em;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-dim);
    padding: 4px 12px;
    border-radius: 5px;
    vertical-align: super;
}

.blaze-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blaze-hero-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
}

.blaze-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ═══════════ BLAZE PAGE — CTA STRIP ═══════════ */
.cta-strip {
    text-align: center;
    padding: 40px 2rem;
    border-bottom: 1px solid var(--border);
}

.cta-strip-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* ═══════════ BLAZE PAGE — ACCESS MODAL ═══════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-box {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-primary);
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0 0 24px 0;
}

.access-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.access-input {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.access-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.15);
}

.access-input::placeholder {
    color: var(--text-dim);
}

.access-textarea {
    resize: vertical;
    min-height: 60px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.access-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
    padding: 12px 24px;
}

.access-btn:hover {
    background: #ff8c5a;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.35);
}

.access-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px;
}

.access-check {
    font-size: 1.3rem;
}

.footer-access-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: border-color 0.2s;
    cursor: pointer;
}

.footer-access-link:hover {
    border-bottom-color: var(--accent);
}

@media (max-width: 600px) {
    .modal-box {
        margin: 16px;
        padding: 28px;
    }
}

/* ═══════════ BLAZE PAGE — NUMBERS STRIP ═══════════ */
.numbers-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 2rem;
    background: var(--bg-card);
}

.numbers-strip-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 20px 8px;
}

.strip-number {
    box-sizing: border-box;
    text-align: center;
    min-width: 0;
    padding: 0 10px;
}

.strip-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.strip-unit {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 2px;
}

.strip-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.strip-sep {
    display: none;
}

/* ═══════════ BLAZE PAGE — SECTIONS COMMON ═══════════ */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════ BLAZE PAGE — HOW IT WORKS ═══════════ */
.how-section {
    padding: 80px 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.how-columns {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.how-col {
    flex: 1;
    padding: 0 16px;
}

.how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dim);
    padding-top: 100px;
    flex-shrink: 0;
    width: 40px;
}

.how-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-dim);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.how-file {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.how-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 10px;
}

/* Code blocks */
.code-block {
    background: var(--bg-code);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.65;
    color: #ccc;
}

.code-block .kw { color: var(--accent); }
.code-block .fn { color: #fff; font-weight: 600; }
.code-block .ty { color: #8ab4f8; }
.code-block .str { color: #a8d08d; }
.code-block .cm { color: #555; }
.code-block .dim { color: #555; }
.code-block .accent { color: var(--accent); font-weight: 600; }
.code-block .prompt { color: var(--accent); }

.code-terminal {
    background: #080808;
}

/* ═══════════ BLAZE PAGE — PERFORMANCE ═══════════ */
.perf-section {
    padding: 80px 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.perf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
}

.perf-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.perf-hw {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-left: 6px;
}

.perf-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.perf-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 8px;
    border-bottom: 1px solid #141414;
}

.perf-kernel {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.perf-val {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(255, 107, 53, 0.15);
    white-space: nowrap;
}

.perf-callout {
    margin-top: 20px;
    padding: 14px;
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.perf-callout-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.perf-callout-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 3px 0;
}

.perf-callout-row .dim { color: var(--text-dim); }
.perf-callout-row .accent { color: var(--accent); font-weight: 600; }

.perf-note {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--text-dim);
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: center;
}

/* ═══════════ BLAZE PAGE — CHARTS ═══════════ */
.charts-section {
    padding: 0 2rem 96px;
    max-width: 1120px;
    margin: 0 auto;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.chart-card:hover {
    border-color: var(--border-accent);
}

.chart-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════ BLAZE PAGE — BACKENDS ═══════════ */
.backends-section {
    padding: 80px 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.backends-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.backend-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.3s;
}

.backend-card:hover {
    border-color: var(--border-accent);
}

.backend-experimental {
    opacity: 0.6;
}

.backend-icon {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-dim);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.backend-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.backend-card p {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ═══════════ BLAZE PAGE — CODE EXAMPLE ═══════════ */
.example-section {
    padding: 80px 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.example-block {
    position: relative;
}

.example-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 800px) {
    .product-card-inner {
        grid-template-columns: 1fr;
    }

    .product-numbers {
        border-left: none;
        border-top: 1px solid var(--border);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .number-item {
        text-align: center;
        justify-content: center;
    }

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

    .how-columns {
        flex-direction: column;
        gap: 24px;
    }

    .how-arrow {
        padding-top: 0;
        transform: rotate(90deg);
        width: auto;
    }

    .perf-grid,
    .charts-grid,
    .example-grid {
        grid-template-columns: 1fr;
    }

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

    .numbers-strip-inner {
        max-width: 360px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .strip-sep {
        display: none;
    }

    .strip-number {
        min-width: 0;
        padding: 8px 4px;
    }

    .strip-label {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    .numbers-strip {
        padding: 32px 1rem;
    }

    .strip-value {
        font-size: 1.45rem;
    }

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

    .topnav {
        padding: 0 16px;
    }
}
