/* Reset and Base */
:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #86868b;
    --accent: #2997ff;
    --accent-gradient: linear-gradient(135deg, #2997ff 0%, #0077ed 100%);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(28, 28, 30, 0.6);
    --glass-shine: rgba(255, 255, 255, 0.08);
    --nav-height: 60px;
    
    /* Widget Specific Colors */
    --status-green: #30d158;
    --status-orange: #ff9f0a;
    --status-blue: #0a84ff;
    --status-gray: #8e8e93;
    --status-red: #ff453a;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; /* Enable vertical scroll snapping */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.0); /* Transparent initially */
    backdrop-filter: blur(0px); /* No blur initially */
    border-bottom: 1px solid transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-logo-img {
    height: 28px;
    width: auto;
}

.nav-notify-btn {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nav-notify-btn:hover {
    transform: scale(1.05);
}

/* Parallax Wrapper */
.parallax-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* SVG Story Container */
.svg-story-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.5;
}

.story-lines {
    width: 100%;
    height: 100%;
}

.story-path {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* Floating Shapes (Gradients) */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -3;
    will-change: transform;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2997ff 0%, transparent 70%);
}

.shape-2 {
    top: 40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #bf5af2 0%, transparent 70%);
}

.shape-3 {
    top: 80%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #30d158 0%, transparent 70%);
}

/* 3D Geometric Shapes */
.geo-shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    will-change: transform;
}

.geo-shape.cube {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.geo-shape.pyramid {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.05);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.geo-shape.torus {
    width: 80px;
    height: 80px;
    border: 20px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* Content Sections */
.hero, .feature-section, .use-cases, .cta-section, .footer {
    position: relative;
    z-index: 1;
    scroll-snap-align: start; /* Snap each section to start */
    scroll-snap-stop: always; /* Force snap */
}

/* Ensure sections are tall enough for snapping */
.hero, .feature-section {
    min-height: 100vh; /* Ensure full viewport snap */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-cases, .cta-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer {
    scroll-snap-align: end;
    min-height: 300px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    margin-bottom: 4rem;
    will-change: transform, opacity;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-primary {
    background: var(--accent);
    border: none;
    color: white;
}

.cta-primary:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 237, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Visual */
.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 300px;
    margin-top: -2rem;
    z-index: 1;
    will-change: transform, opacity;
}

.glass-interface-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-bar {
    width: 600px;
    height: 60px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.glass-search {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    width: 100%;
}

.floating-icons {
    display: flex;
    gap: 30px;
}

.float-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: var(--d);
}

.float-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Feature Sections */
.feature-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
    perspective: 1000px;
}

.left-align { flex-direction: row; }
.right-align { flex-direction: row-reverse; }

.feature-content {
    flex: 1;
    will-change: transform, opacity;
}

.feature-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform, opacity;
    /* Base style for tilt */
    transform-style: preserve-3d;
}

/* Reveal Animations */
.reveal-text, .reveal-visual, .reveal-content, .reveal-up {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text { transform: translateY(30px); }
.reveal-visual { transform: scale(0.95) translateY(40px); }
.reveal-content { transform: translateY(40px); }
.reveal-up { transform: translateY(50px); }

.visible.reveal-text { opacity: 1; transform: translateY(0); }
.visible.reveal-visual { opacity: 1; transform: scale(1) translateY(0); }
.visible.reveal-content { opacity: 1; transform: translateY(0); }
.visible.reveal-up { opacity: 1; transform: translateY(0); }


.feature-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.6;
}

.feature-list li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 0.8;
}

/* --- MOCKUP COMMON STYLES --- */
.mockup-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    /* Removed transform transition for tilt effect to work smoothly via JS */
}

/* Hover effect on mockups */
.mockup-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* --- TRIGGER ANIMATION MOCKUP --- */
.trigger-animation {
    width: 400px;
    height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

.keyboard-base {
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.key-row {
    display: flex;
    gap: 6px;
}

.key {
    background: #3a3a3c;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 0 #1c1c1e;
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: transform 0.1s, box-shadow 0.1s;
}

.key.modifier { width: 50px; height: 50px; }
.key.space { width: 120px; height: 50px; }

.active-key {
    animation: keyPress 2s infinite;
    color: white;
    background: #4a4a4c;
}

.key-label { font-size: 1.2rem; margin-bottom: 2px; }
.key-text { font-size: 0.6rem; text-transform: uppercase; }

.screen-overlay-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    z-index: -1;
}

.liquid-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: liquidPulse 2s infinite;
}

@keyframes keyPress {
    0%, 10% { transform: translateY(0); box-shadow: 0 2px 0 #1c1c1e; }
    15% { transform: translateY(2px); box-shadow: 0 0 0 #1c1c1e; background: #636366; } /* First tap */
    20% { transform: translateY(0); box-shadow: 0 2px 0 #1c1c1e; }
    30% { transform: translateY(0); box-shadow: 0 2px 0 #1c1c1e; }
    35% { transform: translateY(2px); box-shadow: 0 0 0 #1c1c1e; background: #636366; } /* Second tap */
    40% { transform: translateY(0); box-shadow: 0 2px 0 #1c1c1e; }
    100% { transform: translateY(0); box-shadow: 0 2px 0 #1c1c1e; }
}

@keyframes liquidPulse {
    0%, 35% { width: 0; height: 0; opacity: 0; }
    40% { width: 20px; height: 20px; opacity: 0.8; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

/* --- KANBAN BOARD MOCKUP --- */
.kanban-board {
    width: 480px;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.kanban-columns {
    flex: 1;
    display: flex;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
}

.kanban-column {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.count { background: rgba(255,255,255,0.1); padding: 1px 6px; border-radius: 4px; }

.kanban-card {
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: transform 0.2s;
}

.kanban-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.kanban-card.active { border-left: 3px solid var(--accent); }
.kanban-card.done { opacity: 0.7; }

.card-tag {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
}

.card-tag.high { background: rgba(255, 69, 58, 0.2); color: var(--status-red); }
.card-tag.medium { background: rgba(255, 159, 10, 0.2); color: var(--status-orange); }
.card-tag.low { background: rgba(48, 209, 88, 0.2); color: var(--status-green); }

.card-title {
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-id { font-size: 0.7rem; color: var(--text-secondary); }

.card-avatar {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- MEDIA CARD MOCKUP --- */
.media-card {
    width: 380px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.media-art {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.media-info {
    flex: 1;
}

.track-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.track-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.media-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    color: white;
}

.control-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.control-icon:hover { opacity: 1; }

.control-icon.play {
    width: 32px;
    height: 32px;
}

.source-icon {
    align-self: flex-start;
    color: rgba(255,255,255,0.4);
}
.source-icon svg { width: 16px; height: 16px; }

/* --- TODO CARD MOCKUP --- */
.mockup-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 380px;
}

.todo-card {
    padding-bottom: 12px;
}

.card-header-slim {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--glass-border);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-icon {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
}

.action-btn {
    font-size: 0.75rem;
    color: var(--accent);
    cursor: pointer;
}

.refresh-icon { font-size: 1.2rem; cursor: pointer; opacity: 0.7; }

.input-row {
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.placeholder {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.todo-list {
    padding: 4px 0;
}

.todo-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.todo-item:hover {
    background: rgba(255,255,255,0.05);
}

.status-circle {
    width: 14px;
    height: 14px;
    border: 2px solid var(--status-blue);
    border-radius: 50%;
}

.status-icon.in-progress {
    width: 16px;
    height: 16px;
    color: var(--status-orange);
}

.status-icon.completed {
    color: var(--status-green);
    font-size: 14px;
}

.todo-text {
    flex: 1;
    font-size: 0.9rem;
}

.todo-item.completed .todo-text {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.status-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    background: rgba(10, 132, 255, 0.15);
    color: var(--status-blue);
}

.status-badge.orange {
    background: rgba(255, 159, 10, 0.15);
    color: var(--status-orange);
}

.status-badge.green {
    background: rgba(48, 209, 88, 0.15);
    color: var(--status-green);
}

/* --- PLAN BOARD MOCKUP --- */
.plan-card {
    padding-bottom: 12px;
}

.plan-list {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
}

.plan-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-badge.green { color: var(--status-green); background: rgba(48, 209, 88, 0.15); }
.plan-badge.gray { color: var(--status-gray); }

.source-badge {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    color: white;
}

.source-badge.blue { background: rgba(10, 132, 255, 0.2); color: var(--status-blue); }
.source-badge.orange { background: rgba(255, 159, 10, 0.2); color: var(--status-orange); }

.plan-text {
    font-size: 0.85rem;
    color: white;
    margin-left: 4px;
}

.lock-icon { font-size: 0.8rem; opacity: 0.5; }

/* --- FOCUS GROUP --- */
.focus-group {
    display: flex;
    gap: 20px;
}

.goal-card {
    width: 220px;
    height: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.goal-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.goal-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.goal-btn {
    margin-top: auto;
    width: 100%;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
}

.goal-btn:hover { background: rgba(255,255,255,0.15); }
.goal-btn svg { width: 14px; height: 14px; }

.pomodoro-card {
    width: 220px;
    height: 250px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pomodoro-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-pill {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(48, 209, 88, 0.2);
    color: var(--status-green);
    border: 1px solid rgba(48, 209, 88, 0.3);
}

.timer-display {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 10px 0;
}

.timer-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: var(--status-orange);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 20; /* Progress simulation */
    stroke-linecap: round;
}

.time-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mins { font-size: 2.2rem; font-weight: 700; line-height: 1; }
.secs { font-size: 1.2rem; color: var(--text-secondary); }

.timer-controls {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.control-btn {
    flex: 1;
    padding: 6px;
    border-radius: 15px;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.control-btn.break { background: rgba(48, 209, 88, 0.2); color: white; border: 1px solid rgba(48, 209, 88, 0.4); }
.control-btn.stop { background: rgba(255, 69, 58, 0.2); color: white; border: 1px solid rgba(255, 69, 58, 0.4); }

/* --- MEETING CARD MOCKUP --- */
.meeting-card {
    width: 400px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.meeting-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--status-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--status-green);
}

.meeting-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.meeting-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.meeting-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.action-btn.join {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--status-blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.action-btn.record {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--status-red);
    border: 1px solid rgba(255, 69, 58, 0.5);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 69, 58, 0.2);
}

.action-btn svg { width: 16px; height: 16px; }

.stop-icon {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.ai-insight {
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.insight-header svg { width: 14px; height: 14px; }

.insight-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Use Cases */
.use-cases {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.use-case-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.uc-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cta-form {
    max-width: 400px;
    margin: 3rem auto;
}

.form-group {
    position: relative;
    display: flex;
}

.email-input {
    width: 100%;
    padding: 16px 24px;
    padding-right: 140px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.email-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }

.submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 40px;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.footer-logo img { height: 24px; }

.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

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

/* Responsive */
@media (max-width: 900px) {
    .feature-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }
    
    .right-align {
        flex-direction: column;
    }
    
    .feature-content {
        margin-bottom: 2rem;
    }
    
    .mockup-grid-vertical,
    .focus-group,
    .media-card,
    .meeting-card,
    .kanban-board,
    .trigger-animation,
    .hero-visual-container {
        width: 100%;
        max-width: 400px;
    }
    
    .focus-group {
        flex-direction: column;
        align-items: center;
    }
    
    .kanban-columns {
        flex-direction: column;
        height: auto;
    }
    
    .kanban-board {
        height: auto;
    }
    
    .feature-list {
        display: inline-block;
        text-align: left;
    }
    
    .hero-visual-container {
        height: 300px;
        width: 100%;
        max-width: 400px;
    }
    
    .glass-bar {
        width: 90%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Disable complex transforms on mobile for better layout stability */
    .feature-visual {
        transform: none !important;
        will-change: auto;
    }
    
    .parallax-wrapper {
        overflow-x: hidden;
    }
    
    .svg-story-container {
        opacity: 0.3; /* Reduce opacity on mobile */
    }
    
    /* Mobile scroll snap preference */
    html {
        scroll-snap-type: y proximity;
    }
}

/* --- NEW STYLES FOR REVAMP --- */

/* Hero Alpha Badge */
.hero-badge.alpha {
    border-color: var(--accent);
    background: rgba(41, 151, 255, 0.1);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(41, 151, 255, 0.2);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(41, 151, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(41, 151, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(41, 151, 255, 0); }
}

.cta-primary-link {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 10px rgba(41, 151, 255, 0.3);
    border: none;
    transition: all 0.2s ease;
}

.cta-primary-link:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 237, 0.3);
}

/* Developer Section & Grand Grid */
.dev-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.grand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.grid-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.large-card {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 300px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.medium-card {
    grid-column: span 2;
    min-height: 180px;
}

.small-card {
    grid-column: span 1;
    min-height: 140px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.grid-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.grid-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Mini Mockups inside cards */
.mini-mockup {
    margin-top: auto;
    width: 100%;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.code-mockup {
    font-family: 'Menlo', monospace;
    font-size: 0.8rem;
}

.code-line { margin-bottom: 4px; }
.indent { padding-left: 15px; color: var(--accent); }
.c-k { color: #ff79c6; }
.c-f { color: #50fa7b; }

.kanban-mini {
    display: flex;
    gap: 5px;
    height: 60px;
}

.kanban-mini .col {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

/* Others Section (Students / Creators) */
.others-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.others-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.other-card {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.7; /* Dimmed slightly */
    transition: opacity 0.3s;
}

.other-card:hover {
    opacity: 1;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    background: rgba(255, 159, 10, 0.2);
    color: var(--status-orange);
    border: 1px solid rgba(255, 159, 10, 0.3);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .grand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large-card { grid-column: span 2; }
    .medium-card { grid-column: span 2; }
    .small-card { grid-column: span 1; }
}

@media (max-width: 600px) {
    .grand-grid {
        grid-template-columns: 1fr;
    }
    .large-card, .medium-card, .small-card {
        grid-column: span 1;
        grid-row: span 1; /* Reset row span */
    }
    .others-grid {
        flex-direction: column;
    }
    .section-title { font-size: 2.5rem; }
}