:root {
    /* New Pastel Palette based on the cute Mochi logo */
    --bg-color: #ffffff;
    --surface-color: #fff0f3;
    /* Very light pink */
    --surface-hover: #ffe4e9;
    --border-color: #f0d4d8;

    --primary-color: #ff9aa2;
    /* Pastel Pink */
    --primary-hover: #ff808b;
    --secondary-color: #b5ead7;
    /* Pastel Green */
    --accent-color: #ffdac1;
    /* Pastel Orange */

    --text-main: #4a4a4a;
    --text-muted: #888888;
    --text-light: #ffffff;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 30px rgba(255, 154, 162, 0.15);
    --shadow-hover: 0 15px 40px rgba(255, 154, 162, 0.25);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 154, 162, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(181, 234, 215, 0.15) 0%, transparent 40%);
}

/* Remove old noise/glows */
.noise-overlay,
.glow-spot {
    display: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    /* Cleaner, rounder font */
    font-weight: 800;
    font-size: 1.8rem;
    color: #2d2d2d;
    /* Darker, sharper contrast */
    letter-spacing: -0.02em;
    position: relative;
}

.logo span {
    background: linear-gradient(135deg, #2d2d2d 0%, #5a5a5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 48px;
    /* Slightly larger */
    width: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 6px rgba(255, 154, 162, 0.2));
    /* Subtle depth */
}

.nav-links {
    display: flex;
    gap: 1rem;
    /* Reduced gap to fit pill backgrounds */
    list-style: none;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    /* Reset the lift, use bg instead */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.no-scroll {
    overflow: hidden;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    /* Rounder buttons */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 154, 162, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(255, 154, 162, 0.4);
}

.btn-primary.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--surface-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--surface-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}

.full-form {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.4rem;
    cursor: default;
    justify-content: flex-start;
    flex-wrap: wrap;
    /* Prevent overflow on small screens */
}

.full-form .word {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    /* First letter (M,O,C,H,I) will be pink */
}

.full-form .rest {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: expand-text 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    color: var(--text-muted);
    /* Rest of the word will be muted/black */
}

@keyframes expand-text {
    to {
        max-width: 120px;
        opacity: 1;
    }
}

/* Stagger the animation */
.full-form .word:nth-child(1) .rest {
    animation-delay: 0.5s;
}

.full-form .word:nth-child(2) .rest {
    animation-delay: 0.6s;
}

.full-form .word:nth-child(3) .rest {
    animation-delay: 0.7s;
}

.full-form .word:nth-child(4) .rest {
    animation-delay: 0.8s;
}

.full-form .word:nth-child(5) .rest {
    animation-delay: 0.9s;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #ffb7b2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-container {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 8px solid white;
    overflow: hidden;
    background: white;
}

.dashboard-container:hover {
    transform: rotateY(0) rotateX(0);
}

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

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Features */
.features {
    padding: 100px 2rem;
    background: linear-gradient(to bottom, transparent, #fff9fa);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.glass {
    background: white;
    border: 1px solid var(--surface-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 154, 162, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--surface-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Capabilities */
.capabilities {
    padding: 100px 2rem;
}

.capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    /* Add spacing between rows */
}

.capability-row:last-child {
    margin-bottom: 0;
}

.capability-row.reversed .cap-text {
    order: 2;
}

.capability-row.reversed .cap-visual {
    order: 1;
}

.cap-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.check-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: #3d7a60;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.cap-visual {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

/* Debug Visual - Compact Triangle */
.debug-visual {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.debug-node {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    position: absolute;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.debug-node.d1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: highlight-node 3s infinite;
    animation-delay: 0.45s;
}

.debug-node.d2 {
    bottom: 40px;
    right: 20px;
    animation: highlight-node 3s infinite;
    animation-delay: 1.5s;
}

.debug-node.d3 {
    bottom: 40px;
    left: 20px;
    animation: highlight-node 3s infinite;
    animation-delay: 2.55s;
}

.debug-connection {
    position: absolute;
    background: var(--surface-color);
    height: 3px;
    transform-origin: 0 50%;
    z-index: 1;
}

/* d1 to d2 */
.debug-connection.c1 {
    top: 75px;
    left: 50%;
    width: 140px;
    transform: rotate(60deg);
}

/* d2 to d3 */
.debug-connection.c2 {
    bottom: 75px;
    right: 55px;
    width: 150px;
    transform: rotate(0deg);
}

/* Entry from top */
.debug-connection.c-entry {
    top: 0;
    left: 50%;
    width: 3px;
    height: 40px;
    transform: translateX(-50%);
}

.debug-signal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0;
    animation: signal-flow 3s infinite linear;
}

@keyframes highlight-node {

    0%,
    100% {
        border-color: var(--surface-color);
        color: var(--text-muted);
        transform: scale(1) translateX(0);
    }

    10% {
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: scale(1.1) translateX(0);
    }

    20% {
        border-color: var(--surface-color);
        color: var(--text-muted);
        transform: scale(1) translateX(0);
    }
}

/* Fix transform for d1 since it has translateX(-50%) */
@keyframes highlight-node-top {

    0%,
    100% {
        border-color: var(--surface-color);
        color: var(--text-muted);
        transform: translateX(-50%) scale(1);
    }

    10% {
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: translateX(-50%) scale(1.1);
    }

    20% {
        border-color: var(--surface-color);
        color: var(--text-muted);
        transform: translateX(-50%) scale(1);
    }
}

.debug-node.d1 {
    animation-name: highlight-node-top;
}

@keyframes signal-flow {}

/* Lock Visual */
.lock-visual {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-body {
    width: 80px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.3);
}

.lock-shackle {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 8px solid var(--primary-color);
    border-bottom: none;
    border-radius: 25px 25px 0 0;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: lock-toggle 4s infinite;
}

.lock-hole {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.lock-hole::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: white;
}

.lock-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: pulse-lock 4s infinite;
}

@keyframes lock-toggle {

    0%,
    10% {
        transform: translateX(-50%) translateY(-15px);
    }

    /* Open */
    15%,
    90% {
        transform: translateX(-50%) translateY(0);
    }

    /* Closed */
    100% {
        transform: translateX(-50%) translateY(-15px);
    }

    /* Open */
}

@keyframes pulse-lock {
    15% {
        width: 80px;
        height: 80px;
        opacity: 0.8;
    }

    50% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }

    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

/* Context Visual */
.context-visual {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-node {
    font-size: 3rem;
    z-index: 10;
    position: relative;
    background: white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 154, 162, 0.2);
    border: 3px solid var(--surface-color);
    animation: brain-pulse 3s infinite ease-in-out;
}

@keyframes brain-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 154, 162, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 154, 162, 0.4);
    }
}

.file-node {
    position: absolute;
    font-size: 1.5rem;
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--surface-color);
    z-index: 5;
    animation: float-node 4s infinite ease-in-out;
}

.file-node.f1 {
    top: 20px;
    left: 50%;
    animation-name: float-node-center;
    animation-delay: 0s;
}

.file-node.f2 {
    bottom: 40px;
    left: 30px;
    animation-delay: 1.5s;
}

.file-node.f3 {
    bottom: 40px;
    right: 30px;
    animation-delay: 0.8s;
}

@keyframes float-node {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-node-center {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.beam {
    position: absolute;
    background: var(--surface-color);
    height: 3px;
    transform-origin: 0 50%;
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
}

.beam.b1 {
    top: 50%;
    left: 50%;
    width: 90px;
    transform: rotate(-90deg);
}

.beam.b2 {
    top: 50%;
    left: 50%;
    width: 110px;
    transform: rotate(135deg);
}

.beam.b3 {
    top: 50%;
    left: 50%;
    width: 110px;
    transform: rotate(45deg);
}

.beam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    animation: data-flow-in 2s infinite linear;
    box-shadow: 0 0 8px var(--primary-color);
}

.beam.b2::after {
    animation-delay: 0.7s;
}

.beam.b3::after {
    animation-delay: 1.2s;
}

@keyframes data-flow-in {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%);
        opacity: 0;
    }
}

/* Calendar Visual */
.calendar-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.calendar-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.calendar-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100px;
    text-align: center;
    transform-origin: center;
    transition: transform 0.3s;
    border: 1px solid var(--surface-color);
}

.calendar-card:hover {
    transform: translateY(-5px);
}

.cal-header {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 5px 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cal-body {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    padding: 10px 0;
    font-family: var(--font-heading);
}

.cal-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.calendar-card.c1 {
    animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8);
}

.calendar-card.c2 {
    animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.3s;
    opacity: 0;
    transform: scale(0.8);
}

.calendar-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    animation: slide-right 1s infinite alternate;
}

@keyframes pop-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-5px);
    }

    to {
        transform: translateX(5px);
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    text-align: center;
}

#playground {
    padding-top: 0;
    padding-bottom: 3rem;
}

#roadmap {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#roadmap .roadmap-box {
    padding: 3rem 2rem;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff0f3, #e8fbf4);
    border-radius: 40px;
}

.roadmap-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fdfbf7, #eef2ff);
    /* Warm to Cool White */
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-box h2,
.roadmap-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.cta-box p,
.roadmap-box p {
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Playground Section */
.playground-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff, #fef3f8);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.playground-preview {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.playground-screenshot {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playground-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}



/* Footer */
footer {
    border-top: 1px solid var(--surface-color);
    padding: 4rem 0;
    margin-top: 2rem;
    background: #fafafa;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-logo {
    color: var(--text-muted);
    font-family: inherit;
    font-size: inherit;
    margin-bottom: 0;
    font-weight: normal;
}

.footer-logo span {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        border-radius: 0;
        border: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        margin: 0 auto 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .capability-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cap-visual {
        order: -1;
        /* Show visual first on mobile */
        height: 250px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .node-graph {
        transform: scale(0.7);
    }
}

/* Interest Form */
.interest-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.interest-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid white;
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.interest-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 154, 162, 0.2);
}

@media (max-width: 600px) {
    .interest-form {
        flex-direction: column;
    }

    .interest-form input {
        width: 100%;
    }

    .interest-form button {
        width: 100%;
    }
}