:root {
    --bg-primary: #fbfdff;
    --bg-secondary: #f6f9fd;
    --bg-tertiary: #eef4fb;
    --bg-card: rgba(255, 255, 255, 0.7);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --brand-primary: #3370ff; /* Classic ByteDance/Lark/Master AI blue */
    --brand-hover: #1d4ed8;
    --brand-purple: #7c3aed;
    --brand-emerald: #10b981;
    --border-light: rgba(15, 23, 42, 0.06);
    --border-hover: rgba(15, 23, 42, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shadow-lg: 0 24px 54px -16px rgba(15, 23, 42, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.8);
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; background-color: var(--bg-primary); }

body {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 36%, #fbfdff 100%);
    color: var(--text-primary);
    font-family: var(--font-base);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Volumetric Lights */
.bg-orb {
    display: none;
    position: fixed; border-radius: 50%; filter: blur(140px);
    z-index: -2; pointer-events: none;
    opacity: 0.4;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 80%);
    top: -150px; left: -100px;
    animation: breathe1 16s ease-in-out infinite alternate;
}
.orb-2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 80%);
    bottom: -200px; right: -150px;
    animation: breathe2 20s ease-in-out infinite alternate;
}
.orb-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 80%);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe3 24s ease-in-out infinite alternate;
}

@keyframes breathe1 {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.2) translate(60px, 30px); opacity: 0.5; }
}
@keyframes breathe2 {
    0% { transform: scale(1.1) translate(0, 0); opacity: 0.25; }
    100% { transform: scale(0.9) translate(-80px, -40px); opacity: 0.45; }
}
@keyframes breathe3 {
    0% { transform: scale(0.9) translate(-30px, 60px); opacity: 0.15; }
    100% { transform: scale(1.15) translate(40px, -40px); opacity: 0.35; }
}

/* Layout */
main { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: 120px 0; }

section.bg-gray {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.8) 100%);
    padding: 120px 24px;
    margin: 0 -24px;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

/* Section Divider */
.section-divider {
    height: 1px; max-width: 320px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.06), transparent);
    border: none; opacity: 0.6;
}

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 0 15px rgba(51, 112, 255, 0.15); }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 24px; align-items: center; margin-left: auto; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.3s; }
.nav-links a:hover { color: var(--brand-primary); text-shadow: 0 0 10px rgba(51, 112, 255, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav-login {
    color: var(--text-secondary); font-size: 14px; font-weight: 500; text-decoration: none;
    transition: color 0.3s;
}
.btn-nav-login:hover { color: #0f172a; }

.btn-nav-download {
    background: rgba(15, 23, 42, 0.03); color: #0f172a;
    padding: 7px 14px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s;
}
.btn-nav-download:hover { background: rgba(15, 23, 42, 0.06); border-color: rgba(15, 23, 42, 0.15); }

.mobile-menu-toggle { display: none; }

.nav-user {
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    background: rgba(51, 112, 255, 0.06);
    border: 1px solid rgba(51, 112, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
    color: #fff;
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; cursor: pointer; position: relative; overflow: hidden;
    box-shadow: 0 4px 15px rgba(51, 112, 255, 0.15);
}
.btn-primary::after {
    content: ''; position: absolute; top: -50%; left: -100%;
    width: 50%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: btnShimmer 6s infinite cubic-bezier(0.19,1,0.22,1);
}
@keyframes btnShimmer { 0% { left: -100%; } 15% { left: 200%; } 100% { left: 200%; } }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 112, 255, 0.25);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.02); color: var(--text-primary);
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; cursor: pointer;
}
.btn-secondary:hover {
    border-color: rgba(15, 23, 42, 0.18);
    background: rgba(15, 23, 42, 0.06);
}

/* Hero Section */
.hero { padding-top: 190px; padding-bottom: 90px; text-align: center; position: relative; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    opacity: 0.8; pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 12px;
    background: linear-gradient(135deg, rgba(51, 112, 255, 0.05), rgba(124, 58, 237, 0.03));
    border: 1px solid rgba(51, 112, 255, 0.12);
    border-radius: 100px; font-size: 13px; font-weight: 500;
    color: var(--brand-primary); margin-bottom: 28px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(51, 112, 255, 0.04);
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 10px var(--brand-primary);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(44px, 5.8vw, 76px);
    font-weight: 900; line-height: 1.12;
    margin-bottom: 24px; letter-spacing: -0.04em;
    background: linear-gradient(135deg, #0f172a 20%, #1d4ed8 60%, var(--brand-purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 8s ease-in-out infinite alternate;
}
@keyframes textShine { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

.hero-subtitle {
    font-size: 18px; color: var(--text-secondary);
    max-width: 680px; margin: 0 auto 48px; line-height: 1.8;
}
.hero-actions {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 80px;
}
.hero-actions .btn-primary, .hero-actions .btn-secondary {
    padding: 14px 34px; font-size: 16px; border-radius: var(--radius-md);
}

/* Product Video Showcase */
.hero-video-wrapper {
    position: relative; max-width: 1040px; margin: 0 auto;
    z-index: 10;
}

.hero-video-inner {
    position: relative;
    border-radius: 16px; background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 24px 56px -18px rgba(15, 23, 42, 0.16);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
    z-index: 2;
}

.hero-video-wrapper:hover .hero-video-inner {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px -18px rgba(15, 23, 42, 0.2);
    border-color: rgba(15, 23, 42, 0.15);
}

.hero-video-inner video { width: 100%; display: block; position: relative; z-index: 1; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px; font-weight: 800; color: #0f172a;
    margin-bottom: 18px; letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 40%, #475569 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* Grid Layouts & Cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 18px; padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(51, 112, 255, 0.2);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), 0 0 20px rgba(51, 112, 255, 0.08);
}
.card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.7s ease; pointer-events: none;
}
.card:hover::before { left: 150%; }

.card-icon {
    width: 46px; height: 46px; background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; transition: all 0.3s;
}
.card:hover .card-icon {
    background: rgba(51, 112, 255, 0.06);
    border-color: rgba(51, 112, 255, 0.15);
    transform: scale(1.08) rotate(2deg);
}
.card-icon i { width: 22px; height: 22px; color: var(--brand-primary); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #0f172a; letter-spacing: -0.01em; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card-tag {
    display: inline-block; margin-top: 18px; padding: 4px 12px;
    background: rgba(15, 23, 42, 0.02); border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 100px; font-size: 12px; color: var(--text-tertiary);
}

/* Team Studio (New Section Styles) */
.team-layout {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.team-feature-grid {
    display: flex; flex-direction: column; gap: 24px;
}
.team-feature-item {
    display: flex; gap: 20px;
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid transparent;
    padding: 16px; border-radius: 16px;
    transition: all 0.3s;
}
.team-feature-item:hover {
    background: rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 23, 42, 0.04);
}
.item-icon-circle {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.item-icon-circle i { width: 20px; height: 20px; }
.item-icon-circle.purple { background: rgba(139, 92, 246, 0.08); color: var(--brand-purple); }
.item-icon-circle.blue { background: rgba(51, 112, 255, 0.08); color: var(--brand-primary); }
.item-icon-circle.emerald { background: rgba(16, 185, 129, 0.08); color: var(--brand-emerald); }
.item-icon-circle.orange { background: rgba(249, 115, 22, 0.08); color: #f97316; }

.team-feature-item h4 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.team-feature-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Glassmorphic Mockup for Team Studio */
.team-visual-preview {
    display: flex; justify-content: center;
}
.preview-card-glass {
    width: 100%; max-width: 440px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 2px solid var(--brand-purple);
    border-radius: 20px; padding: 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.preview-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.preview-title { font-size: 14px; font-weight: 700; color: #0f172a; }
.preview-badge-status {
    font-size: 11px; font-weight: 600; color: var(--brand-emerald);
    background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px;
}
.preview-badge-status::before {
    content: ''; width: 6px; height: 6px; background: var(--brand-emerald); border-radius: 50%;
}
.preview-badge-status.pulse::before {
    animation: flashGreen 1.5s infinite;
}
@keyframes flashGreen { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.clarity-bar-wrapper {
    background: rgba(15, 23, 42, 0.02); border: 1px solid rgba(15,23,42,0.03);
    padding: 14px; border-radius: 12px; margin-bottom: 24px;
}
.clarity-header { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.clarity-val { color: var(--brand-emerald); font-weight: 700; }
.clarity-track { height: 6px; background: rgba(15, 23, 42, 0.06); border-radius: 10px; overflow: hidden; }
.clarity-fill { height: 100%; background: linear-gradient(to right, var(--brand-purple), var(--brand-emerald)); border-radius: 10px; }

.agents-chips { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.agent-chip {
    font-size: 11px; color: var(--text-secondary);
    background: rgba(15,23,42,0.03); border: 1px solid rgba(15,23,42,0.05);
    padding: 6px 12px; border-radius: 8px; display: flex; align-items: center; gap: 6px;
    transition: all 0.3s;
}
.agent-chip i { width: 12px; height: 12px; }
.agent-chip.active {
    background: rgba(51, 112, 255, 0.06); border-color: rgba(51, 112, 255, 0.15); color: var(--brand-primary);
    box-shadow: 0 0 10px rgba(51, 112, 255, 0.05);
}

.preview-logs {
    background: rgba(15, 23, 42, 0.02); border: 1px solid rgba(15,23,42,0.04);
    border-radius: 10px; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    font-family: monospace; font-size: 11px;
}
.log-line { line-height: 1.5; }
.log-line.success { color: var(--brand-emerald); }
.log-line.active { color: var(--brand-primary); }
.log-line.muted { color: var(--text-tertiary); }

/* Workspace Layout */
.workspace-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.workspace-image img {
    width: 100%; border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.workspace-list { display: flex; flex-direction: column; gap: 30px; }
.workspace-item { display: flex; gap: 20px; }
.workspace-item .item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(51, 112, 255, 0.06); border: 1px solid rgba(51, 112, 255, 0.15);
    color: var(--brand-primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.workspace-item:hover .item-icon {
    background: rgba(51, 112, 255, 0.1); border-color: rgba(51, 112, 255, 0.25);
    transform: translateY(-2px);
}
.workspace-item .item-icon i { width: 18px; height: 18px; }
.workspace-item h4 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.workspace-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Compare Center */
.compare-container {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 60px;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px;
    position: relative; overflow: hidden;
}
.compare-container::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-purple), var(--brand-emerald));
}
.compare-title h2 { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 18px; letter-spacing: -0.02em; }
.compare-title p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.8; }
.compare-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.compare-list h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(15, 23, 42, 0.06); }
.compare-list ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.compare-list li { display: flex; gap: 12px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.compare-list.good li { color: #0f172a; }
.compare-list li i { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-list.bad li i { color: #ef4444; }
.compare-list.good li i { color: var(--brand-emerald); }
.compare-list.good { border-left: 1px solid rgba(15, 23, 42, 0.08); padding-left: 20px; }

/* Steps */
.step-number {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), #1d4ed8);
    color: #fff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(51, 112, 255, 0.25);
}

/* FAQ Accordions */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-md); transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(15, 23, 42, 0.1); background: #ffffff; }
.faq-item details { padding: 22px 28px; cursor: pointer; }
.faq-item summary {
    font-size: 16px; font-weight: 700; color: #0f172a;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--text-tertiary); font-size: 20px; transition: transform 0.3s; }
.faq-item details[open] summary::after { content: "\2212"; transform: rotate(180deg); color: var(--brand-primary); }
.faq-item details[open] .faq-answer { animation: faqSlideOpen 0.35s ease-out forwards; }
@keyframes faqSlideOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.faq-item p { margin-top: 14px; color: var(--text-secondary); font-size: 14px; line-height: 1.75; }
.faq-item strong { color: #0f172a; }

/* Creator Note Section */
.creator-container {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.creator-container i {
    background: #ffffff !important;
}

/* CTA Footer section */
.cta-section {
    text-align: center; padding: 110px 0;
    background: linear-gradient(135deg, rgba(51, 112, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-radius: var(--radius-lg); border: 1px solid rgba(15, 23, 42, 0.04);
    margin-top: 40px;
}
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800; color: #0f172a; margin-bottom: 20px; }

/* Footer */
footer { border-top: 1px solid rgba(15, 23, 42, 0.06); background: #f8fafc; padding: 80px 24px 48px; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo-text { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--text-tertiary); font-size: 13px; max-width: 290px; line-height: 1.7; }
.footer-title { font-size: 14px; font-weight: 700; margin-bottom: 18px; color: #0f172a; letter-spacing: 0.02em; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-primary); }
.footer-bottom {
    max-width: 1200px; margin: 56px auto 0; padding-top: 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-tertiary); font-size: 13px;
}

/* Page Animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    section { padding: 90px 0; }
    section.bg-gray { padding: 90px 24px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-layout { grid-template-columns: 1fr; gap: 36px; }
    .workspace-layout { grid-template-columns: 1fr; gap: 40px; }
    .compare-container { grid-template-columns: 1fr; padding: 40px; gap: 36px; }
    .compare-list.good { border-left: none; padding-left: 0; }
}
@media (max-width: 768px) {
    section { padding: 70px 0; }
    section.bg-gray { padding: 70px 24px; }
    .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .compare-lists { grid-template-columns: 1fr; }
    .hero { padding-top: 140px; padding-bottom: 50px; }
    .hero h1 { font-size: 38px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 36px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .nav-links, .nav-actions { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .compare-container { padding: 24px; }
    .mobile-menu-toggle {
        display: flex; flex-direction: column; gap: 5px;
        background: transparent; border: none; cursor: pointer;
    }
    .mobile-menu-toggle span { width: 20px; height: 2px; background: #000; }
}
