/* =========================================================================
   JMR / ADVISORY - Modern Agency Aesthetic
   ========================================================================= */

:root {
    --bg-base: #050505;
    --text-primary: #ffffff;
    --text-muted: #888888;

    /* Cyber/Tech Gradients */
    --neon-cyan: #00f0ff;
    --neon-purple: #7000ff;
    --neon-blue: #0055ff;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Depth tokens */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow-cyan: 0 0 30px rgba(0, 240, 255, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(112, 0, 255, 0.15);
}

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

/* Restore default cursor on touch devices */
@media (pointer: coarse) {
    * { cursor: auto; }
    #cursor, #cursor-follower { display: none; }
}

/* Offset anchor targets for fixed navbar */
section[id] {
    scroll-margin-top: 5rem;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--neon-purple);
    color: #fff;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}
#cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-hover #cursor { opacity: 0; }
.cursor-hover #cursor-follower {
    width: 80px; height: 80px;
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    mix-blend-mode: screen;
}

/* WebGL-esque Mesh Background */
.mesh-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.1), transparent 40%);
    filter: blur(60px);
    animation: mesh-breathe 20s infinite alternate linear;
}
@keyframes mesh-breathe {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 5%); }
}

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
h1, h2, h3, h4, .logo-mark {
    font-family: var(--font-heading);
}

/* Neo-Glass Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Buttons */
.btn-neo {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-neo:hover {
    background: var(--text-primary);
    color: var(--bg-base);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}
.btn-primary-neo {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.btn-primary-neo:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}
.btn-primary-neo .arr {
    transition: transform 0.3s;
}
.btn-primary-neo:hover .arr {
    transform: translate(2px, -2px);
}
.btn-text-neo {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s, color 0.3s;
}
.btn-text-neo:hover {
    border-color: var(--neon-cyan);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}
.hero-container {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}
.badge-neo {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.1em;
}
.hero-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}
.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 600px;
}
.cta-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

/* Marquee */
.marquee-container {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.3);
}
.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-right: 2rem;
    letter-spacing: 2px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section shared styles */
.section-header {
    margin-bottom: 4rem;
}
.mono-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}
.display-title {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

/* Section dividers */
.bento-section,
.process-section,
.stats-section,
.pricing-section,
.about-section,
.intake-section {
    position: relative;
}
.bento-section::before,
.pricing-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* Bento Architecture Section */
.bento-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}
.bento-item {
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.bento-item:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255,255,255,0.12);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}
.bento-content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.bento-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-column: span 1; grid-row: span 2; justify-content: space-between; }
.bento-wide { grid-column: span 3; grid-row: span 1; flex-direction: row; align-items: center; gap: 3rem; }

/* Bento Visuals — shared */
.bento-visual {
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: brightness(0.85);
}
.bento-item:hover .bento-visual {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* --- Visual: Mini Browser (E-Commerce) --- */
.visual-browser {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 280px;
}
.mini-browser {
    background: #0d0d10;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 30px rgba(112, 0, 255, 0.1);
}
.mini-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    background: #141416;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mini-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.mini-url {
    margin-left: auto;
    width: 60%;
    height: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.mini-browser-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mini-nav-line {
    height: 6px;
    width: 70%;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}
.mini-hero-block {
    height: 50px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.35), rgba(0, 240, 255, 0.25));
    border-radius: 4px;
    animation: hero-shimmer 3s ease-in-out infinite;
}
@keyframes hero-shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
.mini-content-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mini-line {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    animation: line-build 2.5s ease-in-out infinite;
}
.mini-line:nth-child(2) { animation-delay: 0.3s; }
.mini-line:nth-child(3) { animation-delay: 0.6s; }
@keyframes line-build {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); transform-origin: left; }
    50% { opacity: 1; transform: scaleX(1); }
}
.mini-cards {
    display: flex;
    gap: 6px;
}
.mini-card {
    flex: 1;
    height: 35px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
}
.bento-item:hover .mini-card {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
}
.bento-item:hover .mini-card:nth-child(2) { transition-delay: 0.1s; }
.bento-item:hover .mini-card:nth-child(3) { transition-delay: 0.2s; }

/* --- Visual: Pipeline (Data Automation) --- */
.visual-pipeline {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 1rem 0;
}
.pipeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.pipe-node {
    width: 56px; height: 56px;
    border: 1px solid rgba(0, 240, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pipe-node .node-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
}
.node-center {
    border-color: rgba(112, 0, 255, 0.5);
    background: rgba(112, 0, 255, 0.1);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.1);
}
.node-center .node-label {
    color: var(--neon-purple);
}
.bento-item:hover .pipe-node {
    background: rgba(0, 240, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    transform: scale(1.1);
}
.bento-item:hover .node-center {
    background: rgba(112, 0, 255, 0.15);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
}
.pipe-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 30px;
    justify-content: center;
}
.pipe-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--neon-cyan);
    animation: pipe-flow 1.5s ease-in-out infinite;
    opacity: 0.4;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.pipe-dot:nth-child(2) { animation-delay: 0.2s; }
.pipe-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pipe-flow {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}
.bento-item:hover .pipe-dot {
    animation-duration: 0.6s;
}

/* --- Visual: Dashboard (Internal Tools) --- */
.visual-dashboard {
    min-width: 180px;
}
.mini-dashboard {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}
.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}
.dash-bar {
    width: 14px;
    height: var(--bar-height);
    background: linear-gradient(to top, rgba(0, 240, 255, 0.45), rgba(112, 0, 255, 0.4));
    border-radius: 3px 3px 0 0;
    transform-origin: bottom;
    animation: bar-grow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
    transition: background 0.3s;
}
.dash-bar:nth-child(2) { animation-delay: 0.2s; }
.dash-bar:nth-child(3) { animation-delay: 0.4s; }
.dash-bar:nth-child(4) { animation-delay: 0.6s; }
.dash-bar:nth-child(5) { animation-delay: 0.8s; }
@keyframes bar-grow {
    0% { transform: scaleY(0.7); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}
.bento-item:hover .dash-bar {
    background: linear-gradient(to top, rgba(0, 240, 255, 0.6), rgba(112, 0, 255, 0.5));
    animation-duration: 0.8s;
}
.dash-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dash-metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s;
}
.bento-item:hover .dash-metric-value {
    color: var(--neon-cyan);
}
.dash-metric-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Process Section */
.process-section {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 2.5rem;
    position: relative;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.process-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.process-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    margin-top: 4.5rem;
    flex-shrink: 0;
    opacity: 0.4;
}

/* Stats Section */
.stats-section {
    padding: 6rem 4rem;
    background: rgba(10, 10, 12, 0.5);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    display: inline;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: inline;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Flip card container */
.pricing-flip {
    perspective: 1000px;
    position: relative;
    cursor: pointer;
}
.pricing-flip-inner {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}
.pricing-flip.flipped .pricing-flip-inner {
    transform: rotateY(180deg);
}
.pricing-front,
.pricing-back {
    backface-visibility: hidden;
}
.pricing-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotateY(180deg);
}

/* Shared tier styles */
.pricing-tier {
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

/* Back face variants */
.pricing-back-purple {
    background: linear-gradient(160deg, rgba(112, 0, 255, 0.15), rgba(20, 20, 22, 0.9) 60%);
    border-color: rgba(112, 0, 255, 0.2);
    box-shadow: var(--shadow-md), var(--shadow-glow-purple);
}
.pricing-back-cyan {
    background: linear-gradient(160deg, rgba(0, 240, 255, 0.12), rgba(20, 20, 22, 0.9) 60%);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-md), var(--shadow-glow-cyan);
}

/* Featured tier */
.pricing-flip.featured {
    z-index: 1;
}
.pricing-front.featured {
    background: rgba(30, 30, 35, 0.8);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-md), var(--shadow-glow-cyan);
}
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: var(--bg-base);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 2;
}

/* Flip hint */
.flip-hint {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.pricing-flip:hover .flip-hint {
    opacity: 1;
}

/* Tier content */
.pricing-tier h4 {
    font-size: 1.5rem;
    color: var(--neon-purple);
}
.pricing-front.featured h4 {
    color: var(--neon-cyan);
}
.pricing-back h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.tier-price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 1rem 0 2rem;
}
.tier-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.tier-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 0;
}
.tier-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
}
.tier-features li:last-child {
    border-bottom: none;
}
.w-100 { width: 100%; text-align: center; justify-content: center; }

/* Back face detail list */
.tier-features-detail {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.tier-features-detail li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.tier-features-detail li:last-child { border-bottom: none; }
.tier-features-detail li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 3rem;
}

/* About / Founder Section */
.about-section {
    padding: 8rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.about-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.about-avatar {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-base);
    box-shadow: var(--shadow-md), var(--shadow-glow-cyan);
}
.about-content .display-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-content p em {
    color: var(--text-primary);
    font-style: italic;
}
.about-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.about-stack span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.05);
}

/* Intake Terminal */
.intake-section {
    padding: 8rem 4rem;
    display: flex; justify-content: center;
}
.terminal-container {
    width: 100%; max-width: 800px;
    background: #0d0d0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}
.terminal-header {
    background: #151518;
    padding: 1rem;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 0.8rem; color: #666;
}
.terminal-body {
    padding: 4rem; text-align: center;
}
.terminal-body h2 { font-size: 3rem; margin-bottom: 1rem; }
.terminal-body > p { color: var(--text-muted); }
.terminal-action {
    margin-top: 3rem; background: #050505; padding: 1.5rem;
    border-radius: 4px; border: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-mono); text-align: left;
}
.prompt { color: var(--neon-cyan); margin-right: 10px; }
.blink-cursor {
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.terminal-link { color: #fff; text-decoration: none; }
.terminal-link:hover { text-decoration: underline; color: var(--neon-purple); }

/* Footer */
.footer-neo {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem;
}
.footer-grid {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 0.8rem; color: #555;
}
.footer-grid > * {
    flex: 1;
}
.footer-grid > *:nth-child(2) { text-align: center; }
.footer-grid > *:last-child { text-align: right; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; }

/* Animations classes controlled by JS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-large, .bento-tall, .bento-wide { grid-column: span 1; grid-row: auto; }
    .bento-wide { flex-direction: column; }
    .hero-title { font-size: 4rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-grid { flex-direction: column; align-items: center; }
    .process-connector { width: 1px; height: 40px; margin: 0; }
    .stats-grid { flex-direction: column; gap: 3rem; }
    .about-container { flex-direction: column; align-items: center; text-align: center; }
    .about-content .mono-title { text-align: center; }
    .about-stack { justify-content: center; }
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar { padding: 1rem 1.5rem; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.5rem; }

    /* Hero */
    .hero { padding-top: 4rem; }
    .hero-container { padding: 0 1.5rem; gap: 1.5rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-title br { display: none; }
    .hero-subtitle { font-size: 1.1rem; }
    .cta-row { flex-direction: column; align-items: center; gap: 1.2rem; }
    .btn-primary-neo { padding: 0.9rem 2rem; font-size: 0.9rem; justify-content: center; width: 100%; max-width: 280px; }
    .marquee-container { padding: 1rem 0; }
    .marquee-track span { font-size: 0.75rem; margin-right: 1.5rem; }

    /* Section spacing & typography */
    .bento-section { padding: 4rem 1.5rem; }
    .process-section { padding: 4rem 1.5rem; }
    .stats-section { padding: 4rem 1.5rem; }
    .pricing-section { padding: 4rem 1.5rem; }
    .about-section { padding: 4rem 1.5rem; }
    .intake-section { padding: 4rem 1.5rem; }
    .section-header { margin-bottom: 2rem; }
    .display-title { font-size: 2.2rem; }

    /* Bento grid */
    .bento-item { padding: 2rem; }
    .bento-content h4 { font-size: 1.5rem; }
    .bento-content p { font-size: 1rem; }
    .visual-browser { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 1.5rem; }
    .visual-dashboard { min-width: auto; margin-top: 1.5rem; }
    .bento-wide { flex-direction: column; }

    /* Process */
    .process-step { padding: 1.5rem; }
    .step-number { font-size: 3rem; }
    .process-step h4 { font-size: 1.3rem; }

    /* Stats */
    .stat-number { font-size: 3.5rem; }
    .stat-suffix { font-size: 2rem; }
    .stats-grid { gap: 2rem; }

    /* Pricing */
    .pricing-tier { padding: 2rem; }
    .tier-price { font-size: 2.5rem; margin: 0.5rem 0 1.5rem; }
    .tier-price span { font-size: 1rem; }
    .tier-features li { padding: 0.75rem 0; }
    .tier-features-detail li { font-size: 0.85rem; padding: 0.6rem 0; }
    .flip-hint { font-size: 0.7rem; padding-top: 1rem; }

    /* About */
    .about-container { gap: 2rem; }
    .about-avatar { width: 80px; height: 80px; min-width: 80px; font-size: 1.8rem; }
    .about-content .display-title { font-size: 1.8rem; }
    .about-content p { font-size: 1rem; }

    /* Terminal */
    .terminal-body { padding: 2rem; }
    .terminal-body h2 { font-size: 1.8rem; }
    .terminal-body > p { font-size: 0.95rem; }
    .terminal-action {
        margin-top: 2rem;
        padding: 1rem;
        font-size: 0.8rem;
        overflow-wrap: break-word;
        word-break: break-all;
    }

    /* Footer */
    .footer-neo { padding: 2rem 1.5rem; }
    .footer-grid {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-brand { font-size: 1.2rem; }
}
