/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    --bg-deep: #050B14;
    --bg-darker: #02050A;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    
    --electric-cyan: #00F0FF;
    --electric-blue: #0047FF;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(0, 240, 255, 0.3);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Accessibility: Focus States */
:focus-visible {
    outline: 2px solid var(--electric-cyan);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--electric-blue);
    color: white;
    padding: 8px;
    z-index: 1000;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-cyan { color: var(--electric-cyan); }
.text-sm { font-size: 0.875rem; }
.w-full { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.py-large { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.border-top { border-top: 1px solid var(--border-color); }
.bg-darker { background-color: var(--bg-darker); }
.bg-gradient {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #061122 100%);
}

/* Typography */
h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    font-weight: 900; 
    letter-spacing: -0.03em; 
    text-shadow: 1px 0px 0px rgba(0, 240, 255, 0.4), -1px 0px 0px rgba(0, 71, 255, 0.4);
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin: 0; }

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    color: var(--electric-cyan);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px; /* Slightly squared for tech feel */
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-primary {
    background: var(--electric-blue);
    color: #FFF;
}
.btn-primary:hover {
    background: #0036CC;
}
.btn-nav {
    border: 1px solid var(--electric-cyan);
    color: var(--electric-cyan);
    background: transparent;
    padding: 0.5rem 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.btn-nav:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
}
.logo span { color: var(--electric-cyan); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }
.mobile-menu-toggle { display: none; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: 
        "content visual"
        "footer visual";
    gap: 1rem 2rem;
    align-items: center;
    padding: 2rem 0;
}
.hero-content { grid-area: content; }
.hero-visual { grid-area: visual; }
.hero-footer { grid-area: footer; align-self: start; }
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    max-width: 90%;
}
.hero-cta-group {
    margin-bottom: 2rem;
}
.cta-explainer {
    font-size: 0.85rem;
    margin-top: 1rem;
    max-width: 400px;
}
.reassurance {
    font-size: 0.875rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: inline-block;
}

/* Hero Visual / Animation */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
}
.vis-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(45deg) translateY(-50px);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}
@keyframes gridMove {
    0% { transform: perspective(1000px) rotateX(45deg) translateY(0); }
    100% { transform: perspective(1000px) rotateX(45deg) translateY(40px); }
}

.node-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.node {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}
.node-input {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    left: 10%;
}
.node-output {
    color: var(--electric-cyan);
    border-color: var(--electric-cyan);
    background: rgba(0, 240, 255, 0.05);
    right: 10%;
}

.n-wa { top: 15%; animation: floatIn 6s ease-in-out infinite alternate; }
.n-sheet { top: 45%; animation: floatIn 5s ease-in-out infinite alternate-reverse; }
.n-mail { top: 75%; animation: floatIn 7s ease-in-out infinite alternate; }

.n-dash { top: 30%; animation: floatOut 6s ease-in-out infinite alternate; }
.n-follow { top: 60%; animation: floatOut 5s ease-in-out infinite alternate-reverse; }

.core-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    z-index: 20;
    box-shadow: 0 0 40px rgba(0, 71, 255, 0.5);
    animation: pulseCore 3s ease-in-out infinite alternate;
}
.core-inner {
    animation: spin 10s linear infinite;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 5;
    transform-origin: left center;
}
.line-in-1 { top: 20%; left: 30%; width: 100px; transform: rotate(30deg); animation: flowLine 2s linear infinite; }
.line-in-2 { top: 80%; left: 30%; width: 100px; transform: rotate(-30deg); animation: flowLine 2s linear infinite 1s; }
.line-out-1 { top: 50%; left: 55%; width: 120px; transform: rotate(-20deg); background: linear-gradient(90deg, var(--electric-cyan), transparent); opacity: 0.5; }
.line-out-2 { top: 50%; left: 55%; width: 120px; transform: rotate(20deg); background: linear-gradient(90deg, var(--electric-cyan), transparent); opacity: 0.5; }

@keyframes floatIn { 0% { transform: translateY(0); } 100% { transform: translateY(15px); } }
@keyframes floatOut { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulseCore {
    0% { box-shadow: 0 0 20px rgba(0, 71, 255, 0.5); }
    100% { box-shadow: 0 0 60px rgba(0, 71, 255, 0.8), 0 0 10px var(--electric-cyan); }
}
@keyframes flowLine {
    0% { background-position: -100px 0; }
    100% { background-position: 100px 0; }
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.workflow-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}
.timeline-step {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}
.step-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 0;
    background: var(--bg-deep);
    border: 2px solid var(--border-color);
}
.step-indicator.error { border-color: #EF4444; }
.step-indicator.success { border-color: var(--electric-cyan); box-shadow: 0 0 10px var(--electric-cyan); }
.timeline-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ==========================================================================
   Capabilities Section
   ========================================================================== */
.capabilities-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
}
.cap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}
.primary-cap {
    border-color: rgba(0, 71, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05) 0%, transparent 100%);
}
.cap-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.cap-badge.primary { background: var(--electric-blue); color: #fff; }
.cap-title { font-size: 2rem; margin-bottom: 1rem; }
.cap-desc { color: var(--text-muted); font-size: 1.1rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-main);
}
.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--electric-cyan);
}
.secondary-caps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.secondary-cap { padding: 2rem; }
.secondary-cap .cap-title { font-size: 1.25rem; }

/* ==========================================================================
   Use Cases (Interface Style)
   ========================================================================== */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.use-case-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}
.uc-interface {
    height: 120px;
    background: #0D1424;
    border-bottom: 1px solid var(--border-color);
    display: flex; flex-direction: column;
}
.uc-header {
    padding: 0.5rem;
    display: flex; gap: 4px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.uc-header span {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2);
}
.uc-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; justify-content: center; }
.line { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.w-20 { width: 20%; } .w-40 { width: 40%; } .w-60 { width: 60%; } .w-80 { width: 80%; } .w-full { width: 100%; }
.bg-cyan { background: var(--electric-cyan); }
.uc-row { display: flex; gap: 1rem; align-items: center; }
.uc-row.active { background: rgba(0,240,255,0.05); padding: 0.5rem; border-radius: 4px; border: 1px solid rgba(0,240,255,0.2); }
.badge { font-size: 0.6rem; padding: 2px 6px; background: var(--electric-cyan); color: #000; border-radius: 100px; }
.flex-col { flex-direction: column; align-items: flex-start; }
.chart-bar { width: 100%; height: 12px; background: rgba(255,255,255,0.05); border-radius: 2px; }
.chart-bar .fill { height: 100%; background: var(--electric-blue); border-radius: 2px; }
.doc-mockup { border: 1px solid rgba(255,255,255,0.1); padding: 0.5rem; display: flex; flex-direction: column; gap: 4px; }
.doc-mockup .title { width: 30%; height: 8px; margin-bottom: 4px; }
.uc-content { padding: 1.5rem; }
.uc-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.uc-content p { color: var(--text-muted); font-size: 0.9rem; }

/* ==========================================================================
   Audiences (Tabs)
   ========================================================================== */
.tab-list {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}
.tab-btn::after {
    content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px;
    background: var(--electric-cyan); transition: width 0.3s;
}
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active { color: var(--text-main); }
.tab-btn.active::after { width: 100%; }

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tab-panel.active { display: block; opacity: 1; }
.panel-content h3 { font-size: 2rem; margin-bottom: 1rem; }
.panel-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; }
.engagement-hint {
    display: inline-block;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-highlight);
    background: rgba(0, 240, 255, 0.05);
    border-radius: 4px;
}
.engagement-hint .label { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem;}
.engagement-hint .val { font-weight: 700; color: var(--electric-cyan); }

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.p-step {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
    transition: border-color 0.3s;
}
.p-step:hover { border-color: var(--electric-cyan); }
.p-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}
.p-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.p-step p { color: var(--text-muted); font-size: 0.95rem; }

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-list {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.price-row:first-child { border-top: 1px solid var(--border-color); }
.price-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.price-info p { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; }
.price-val { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.1rem; text-align: right; }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.border-list li { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
.border-list li:last-child { border-bottom: none; }
.founder-placeholder {
    border: 1px dashed var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    background: rgba(255,255,255,0.02);
}
.placeholder-img {
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--text-muted);
}
.placeholder-text h3 { color: var(--text-muted); margin-bottom: 0.5rem; }
.placeholder-text p { color: var(--text-muted); font-size: 0.9rem; }

/* ==========================================================================
   Form Preview
   ========================================================================== */
.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-methods .method { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; }
.contact-methods .label { color: var(--text-muted); }
.contact-methods .val { color: var(--electric-cyan); }
.form-preview {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}
.form-header h3 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row .half { flex: 1; }
label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 4rem 0 2rem; }
.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}
.footer-links-group h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-links-group ul { list-style: none; padding: 0; margin: 0; }
.footer-links-group li { margin-bottom: 0.5rem; }
.footer-links-group a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; font-size: 0.95rem; }
.footer-links-group a:hover { color: var(--text-main); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-color);
}
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }

.hero-visual.paused * { animation-play-state: paused !important; }

/* ==========================================================================
   Responsive Design & Mobile First Refinements
   ========================================================================== */

/* Mobile-First Adjustments */
@media (max-width: 1024px) {
    .capabilities-layout { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-layout {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .hero-content { order: 1; width: 100%; }
    .hero-visual {
        order: 2; /* Visual immediately after CTA */
        height: 380px;
        margin-top: 1rem;
        width: 100%;
        overflow: hidden;
    }
    .hero-footer { order: 3; width: 100%; margin-top: 2rem; }
    
    /* Ensure visual doesn't obscure text */
    .vis-grid { transform: perspective(800px) rotateX(25deg) translateY(0px); }

    /* Nav adjustments */
    .main-nav {
        display: none; /* Hide default */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    .main-nav.active { display: flex; }
    .nav-links { flex-direction: column; gap: 1rem; width: 100%; }
    .nav-actions { margin-top: 2rem; width: 100%; }
    .btn-nav { width: 100%; text-align: center; }

    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    .hamburger-line {
        display: block; width: 24px; height: 2px; background: var(--text-main); margin-bottom: 5px;
    }

    /* Grids to single column */
    .workflow-timeline { grid-template-columns: 1fr; }
    .workflow-timeline::before {
        top: 0; left: 10px; width: 2px; height: 100%;
    }
    .timeline-step { padding-top: 0; padding-left: 2rem; padding-bottom: 2rem; }
    .step-indicator { left: 1px; top: 0; }

    .use-cases-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .cap-card { padding: 1.5rem; }
    
    .tab-list { flex-direction: column; gap: 0; }
    .tab-btn { text-align: left; padding: 1rem; border-bottom: 1px solid var(--border-color); }
    .tab-btn::after { display: none; }
    .tab-btn.active { background: rgba(255,255,255,0.05); border-left: 2px solid var(--electric-cyan); }

    .pricing-list { border: none; }
    .price-row { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0.5rem;
        padding: 1.5rem; 
        background: rgba(255,255,255,0.02); 
        border: 1px solid var(--border-color); 
        border-radius: 8px; 
        margin-bottom: 1rem;
    }
    .price-row:first-child { border-top: 1px solid var(--border-color); }
    .price-val { text-align: left; }
    .form-row { flex-direction: column; }
    
    .footer-layout { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* Base Mobile (360px & 390px) Protection */
@media (max-width: 400px) {
    .container { padding: 0 24px; }
    .hero { padding: 2rem 0; }
    h1 { font-size: 2.25rem; text-shadow: none; }
    .hero-cta-group { margin-bottom: 1rem; }
    .btn-primary { width: 100%; padding: 1rem; }
    .node { font-size: 0.65rem; padding: 0.4rem; }
    .n-wa { top: 10%; }
    .n-sheet { top: 40%; left: 5%; }
    .n-mail { top: 70%; }
    
    .n-dash { top: 25%; right: 5%; }
    .n-follow { top: 60%; right: 2%; }
}
@media (max-width: 360px) {
    .container { padding: 0 20px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .vis-grid { animation: none; }
}
