/* ===== EMPIRE CAPITAL — Bold & Techy Theme ===== */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #f0f0f5;
    --text-secondary: #9898a8;
    --text-muted: #6a6a7a;
    --accent-1: #6366f1; /* indigo */
    --accent-2: #8b5cf6; /* violet */
    --accent-3: #06b6d4; /* cyan */
    --accent-4: #ec4899; /* pink */
    --accent-5: #10b981; /* emerald */
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(99, 102, 241, 0.3);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-3);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-title { margin-bottom: 24px; }
.section-text { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 16px; max-width: 600px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
}
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5), 0 0 80px rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
}
.btn-outline:hover {
    border-color: var(--accent-1);
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    gap: 6px;
}
.logo-text { color: var(--text-primary); }
.logo-accent { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}
.cta-link {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--gradient-main);
    color: #fff !important;
}
.cta-link:hover { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
.cta-link::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}
.glow-1 { width: 600px; height: 600px; background: var(--accent-1); top: -200px; left: -100px; }
.glow-2 { width: 500px; height: 500px; background: var(--accent-3); top: 100px; right: -150px; opacity: 0.25; }
.glow-3 { width: 400px; height: 400px; background: var(--accent-2); bottom: -100px; left: 30%; opacity: 0.2; }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-3);
    margin-bottom: 32px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-5);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title { margin-bottom: 24px; }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; }

/* Mission */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.section-visual {
    display: grid;
    gap: 16px;
}
.visual-card {
    position: relative;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}
.visual-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}
.visual-card:hover .card-glow { opacity: 1; }
.visual-icon { margin-bottom: 16px; }
.visual-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.visual-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Focus Section */
.focus-section { background: var(--bg-secondary); }
.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.orbit-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}
.orbit-ring {
    position: absolute;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 160px; height: 160px; border-color: rgba(99, 102, 241, 0.15); }
.orbit-ring-2 { width: 260px; height: 260px; border-color: rgba(6, 182, 212, 0.1); }
.orbit-ring-3 { width: 360px; height: 360px; border-color: rgba(139, 92, 246, 0.08); }
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}
.orbit-node {
    position: absolute;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}
.node-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.node-2 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: -1.5s; }
.node-3 { bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
.node-4 { left: 0; top: 50%; transform: translateY(-50%); animation-delay: -4.5s; }
@keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% - 6px)) translateX(0); }
}
.node-1, .node-3 {
    animation-name: floatV;
}
@keyframes floatV {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* Services Preview */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-title { max-width: 600px; margin: 0 auto 24px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-card.featured {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 100%);
}
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--gradient-main);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}
.service-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}
.service-icon {
    color: var(--accent-3);
    margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 16px; font-size: 1.15rem; }
.service-list { margin-bottom: 20px; }
.service-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-main);
    transform: translateY(-50%);
}
.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-3);
    transition: var(--transition);
}
.service-link:hover { color: var(--accent-1); }

/* CTA Section */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.glow-cta-1 { position: absolute; width: 500px; height: 500px; background: var(--accent-1); border-radius: 50%; filter: blur(150px); opacity: 0.15; top: -200px; left: 20%; }
.glow-cta-2 { position: absolute; width: 400px; height: 400px; background: var(--accent-3); border-radius: 50%; filter: blur(150px); opacity: 0.1; bottom: -200px; right: 20%; }
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}
.cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 32px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.footer-content { text-align: center; }
.footer-brand { margin-bottom: 24px; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 12px; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 24px;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        gap: 16px;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .section-grid, .focus-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    .orbit-container { width: 280px; height: 280px; }
    .orbit-ring-1 { width: 120px; height: 120px; }
    .orbit-ring-2 { width: 200px; height: 200px; }
    .orbit-ring-3 { width: 280px; height: 280px; }
    .section { padding: 70px 0; }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Page-Specific: Services ===== */
.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-content .section-tag { margin-bottom: 12px; }
.service-detail-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.service-detail-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }
.service-detail-visual {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detail-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.detail-feature:hover {
    border-color: var(--border-glow);
    background: rgba(99, 102, 241, 0.05);
}
.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-main);
    flex-shrink: 0;
}
.feature-dot.violet { background: var(--gradient-accent); }
.feature-dot.cyan { background: linear-gradient(135deg, #06b6d4, #10b981); }
.feature-dot.pink { background: var(--gradient-warm); }
.detail-feature span { font-size: 0.95rem; color: var(--text-secondary); }

/* AI Section Special */
.ai-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ai-visual {
    position: relative;
    padding: 40px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
}
.ai-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ai-node {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.ai-node:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}
.ai-node-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.ai-node-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== About Page ===== */
.about-content-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-3), var(--accent-5));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-1);
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.95rem; color: var(--text-secondary); }

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-method:hover { border-color: var(--border-glow); }
.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-3);
    flex-shrink: 0;
}
.method-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; }
.method-value { font-weight: 500; }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .service-detail-grid, .service-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .ai-grid-visual { grid-template-columns: 1fr; }
}
