/* ===== CSS Variables ===== */
:root {
    --bg-primary: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --accent-blue: #4043FF;
    --accent-green: #22c55e;
    --accent-orange: #f97316;
    --accent-purple: #8b5cf6;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Animation Variables */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Font Variables */
    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Enhanced smooth scrolling */
    scroll-padding-top: 100px;
}

/* Lenis smooth scrolling overrides */
html.lenis {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

body {
    font-family: "Instrument Sans", sans-serif;
    background-color: rgb(246, 246, 246);
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main content wrapper for consistent max-width */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.1;
}

.section-title {
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-family: "Instrument Sans", sans-serif;
    font-size: 58px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    max-width: 700px;
}

.title-sm {
    font-size: 45px;
    letter-spacing: -0.02em;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.title-italic {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
}

.section-subtitle {
    color: rgb(28, 28, 28);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: center;
    max-width: 550px;
}

/* ===== Animations & Keyframes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== Section Badge ===== */
.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 10px;
    background-color: #f6f6f6;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0px 0.602187px 0.602187px 0px rgba(28, 28, 28, 0),
        0px 2.288533px 2.288533px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08),
        0px -6px 6px -5px rgba(255, 255, 255, 1);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(28, 28, 28);
}

.section-badge svg {
    width: 16px;
    height: 16px;
    opacity: 1;
    color: #969696;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    font-family: "Instrument Sans", sans-serif;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -0.01em;
}

/* Rolling Button Base */
.rolling-btn {
    height: 50px;
    padding: 0 32px;
}

.rolling-btn .btn-text-hidden {
    visibility: hidden;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
}

.rolling-btn .rolling-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.rolling-btn:hover .rolling-container {
    transform: translateY(-100%);
}

.rolling-btn .rolling-text {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rolling-btn .rolling-text span {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1;
}

/* Primary Button */
.btn-primary {
    background: rgb(28, 28, 28);
    color: rgb(255, 255, 255);
    border: none;
    box-shadow: 
        rgba(255, 255, 255, 0.15) 0px 0px 20px 1.64px inset,
        rgba(0, 0, 0, 0.13) 0px 0.84px 0.5px -0.31px,
        rgba(0, 0, 0, 0.13) 0px 1.99px 1.19px -0.63px,
        rgba(0, 0, 0, 0.13) 0px 3.63px 2.18px -0.94px,
        rgba(0, 0, 0, 0.13) 0px 6.04px 3.62px -1.25px,
        rgba(0, 0, 0, 0.13) 0px 9.75px 5.85px -1.56px,
        rgba(0, 0, 0, 0.13) 0px 15.96px 9.57px -1.88px,
        rgba(0, 0, 0, 0.13) 0px 27.48px 16.49px -2.19px,
        rgba(0, 0, 0, 0.13) 0px 50px 30px -2.5px;
}

.btn-primary:hover {
    background: rgb(64, 67, 255);
    transform: scale(1.02);
    box-shadow: 
        rgba(255, 255, 255, 0.25) 0px 0px 20px 1.64px inset,
        rgba(64, 67, 255, 0.3) 0px 0.84px 0.5px -0.31px,
        rgba(64, 67, 255, 0.3) 0px 1.99px 1.19px -0.63px,
        rgba(64, 67, 255, 0.3) 0px 3.63px 2.18px -0.94px,
        rgba(64, 67, 255, 0.3) 0px 6.04px 3.62px -1.25px,
        rgba(64, 67, 255, 0.3) 0px 9.75px 5.85px -1.56px,
        rgba(64, 67, 255, 0.3) 0px 15.96px 9.57px -1.88px,
        rgba(64, 67, 255, 0.3) 0px 27.48px 16.49px -2.19px,
        rgba(64, 67, 255, 0.5) 0px 50px 30px -2.5px;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary .rolling-text span {
    color: rgb(255, 255, 255);
}

/* Secondary Button */
.btn-secondary {
    background: rgb(246, 246, 246);
    color: rgb(28, 28, 28);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
}

.btn-secondary:hover {
    transform: scale(1.02);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.btn-secondary .rolling-text span {
    color: rgb(28, 28, 28);
}

.btn-secondary .rolling-text-hover span {
    color: rgb(64, 67, 255);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-primary);
    transform: scale(1.02);
}

.btn-outline:active {
    transform: scale(0.98);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeInDown 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: top 0.3s ease, opacity 0.3s ease;
    padding: 0 24px;
    pointer-events: none;
}

.nav-container {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 6px 24px;
    width: 800px;
    max-width: 800px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.nav-container:hover {
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.04),
        0px 12px 12px 0px rgba(28, 28, 28, 0.14),
        0px -6px 6px -5px rgb(255, 255, 255);
    background: #ffffff;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgb(28, 28, 28);
    flex-shrink: 0;
}

.nav-logo svg {
    width: 18px;
    height: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Nav Item Styles - matching template exactly */
.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 28px;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-item span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.4px;
    color: rgb(28, 28, 28);
    white-space: nowrap;
    text-align: center;
}

.nav-item:hover {
    background-color: rgb(246, 246, 246);
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
}

/* Nav CTA Button - matching template exactly */
.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    height: min-content;
    background: rgb(28, 28, 28);
    color: rgb(255, 255, 255);
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
    transition: all 0.2s ease;
}

/* Text Container - matching template .framer-17vfovq */
.nav-cta .rolling-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 16px;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.nav-cta .rolling-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 16px;
    position: relative;
    white-space: nowrap;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-cta:hover .rolling-text {
    transform: translateY(-16px);
}

.nav-cta .rolling-text span {
    font-family: "Instrument Sans Variable", "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgb(64, 67, 255);
}

.nav-cta:active {
    transform: scale(0.98);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    gap: 64px;
}

/* Hero Badge - matching template exactly */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 16px 4px 4px;
    background-color: rgb(246, 246, 246);
    border-radius: 100px;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08),
        0px -6px 6px -5px rgb(255, 255, 255);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

/* Live now container with dot */
.badge-live-container {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
}

/* Pulse wrapper - contains the pulsing ring and dot */
.badge-pulse-wrapper {
    position: relative;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The pulsing ring effect */
.badge-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: rgb(64, 67, 255);
    animation: badgePulseRing 2s ease-in-out infinite;
}

/* The static center dot */
.badge-pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: rgb(64, 67, 255);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes badgePulseRing {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0;
        transform: scale(1.8);
    }
}

/* Live now text - matching template font styles */
.badge-live {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: rgb(64, 67, 255);
    white-space: nowrap;
}

/* Content section with divider effect */
.badge-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Used by SaaS & AI leaders text - matching template font styles */
.badge-text {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: rgb(28, 28, 28);
    white-space: nowrap;
}

.hero-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 68px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    color: rgb(18, 18, 18);
    max-width: 700px;
}

.hero-subtitle {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: rgb(28, 28, 28);
    line-height: 25.2px;
    letter-spacing: normal;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    z-index: 1;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: perspective(2000px) rotateX(25deg) scale(0.9) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: perspective(2000px) rotateX(0deg) scale(1) translateY(0);
    }
}

/* Hero Content wrapper */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0;
}

/* Hero text block (title + subtitle) */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* ===== Dashboard Mockup ===== */
.dashboard-mockup {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    opacity: 0;
    padding: 0;
    transform-origin: center top;
    transform: perspective(2000px) rotateX(25deg) scale(0.9) translateY(40px);
    transition: opacity 0.8s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0.6px 0.6px rgba(28, 28, 28, 0), 0px 2.3px 2.3px rgba(28, 28, 28, 0.05), 0px 10px 10px rgba(28, 28, 28, 0.14), 0px -6px 6px -5px rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 1);
}

.dashboard-mockup.loaded {
    opacity: 1;
}

.dashboard-image {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    overflow: hidden;
}

.dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: var(--bg-white);
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-left: 8px;
}

.sidebar-logo svg {
    width: 16px;
    height: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.15s ease;
}

.sidebar-item:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.sidebar-item.active {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.sidebar-item svg {
    width: 16px;
    height: 16px;
}

.sidebar-help {
    margin-top: auto;
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 16px;
    color: var(--bg-white);
}

.help-title {
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.help-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    line-height: 1.45;
}

.help-btn {
    width: 100%;
    padding: 8px;
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.help-btn:hover {
    transform: scale(1.02);
}

/* Dashboard Main */
.dashboard-main {
    background: var(--bg-primary);
    border-radius: 14px;
    padding: 16px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.header-greeting h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.header-greeting p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-white);
}

/* Feedback Section */
.feedback-section {
    margin-bottom: 14px;
}

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

.feedback-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.feedback-nav {
    display: flex;
    gap: 2px;
}

.nav-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    background: var(--bg-white);
    padding: 12px;
    border-radius: 10px;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.stat-dot {
    width: 6px;
    height: 6px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.stat-dot.blue {
    background: var(--accent-blue);
}

.stat-dot.purple {
    background: var(--accent-purple);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
}

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

.stat-link {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Progress Section */
.progress-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
}

.progress-chart {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-period {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.chart-container {
    position: relative;
}

.chart-tooltip {
    position: absolute;
    top: 10px;
    left: 50px;
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.chart-line {
    width: 100%;
    height: 60px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nexuma-ai-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 140px;
}

.ai-icon {
    margin-bottom: 8px;
}

.ai-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.ai-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ai-btn {
    width: 100%;
    padding: 10px;
    background: var(--accent-blue);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Coming Up Section */
.coming-up-section {
    margin-bottom: 0;
}

.coming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.coming-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.coming-nav {
    display: flex;
    gap: 4px;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.task-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.task-image {
    height: 100px;
    overflow: hidden;
}

.task-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.task-content {
    padding: 12px;
}

.task-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.task-category {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

.progress-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--bg-dark);
    border-radius: 2px;
}

.progress-bar.dark .progress-fill {
    background: var(--bg-white);
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.task-time {
    color: var(--text-secondary);
}

.task-priority {
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
}

.task-priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.task-priority.low {
    background: #dcfce7;
    color: var(--accent-green);
}

/* Dashboard Right Panel */
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-widget {
    background: var(--bg-white);
    padding: 12px;
    border-radius: 12px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cal-nav {
    color: var(--text-secondary);
    font-size: 1rem;
}

.cal-month {
    font-size: 0.85rem;
    font-weight: 500;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day-header {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 4px;
}

.cal-day {
    font-size: 0.8rem;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.cal-day.active {
    background: var(--accent-blue);
    color: var(--bg-white);
}

/* Task Today Widget */
.task-today-widget {
    background: var(--bg-dark);
    padding: 16px;
    border-radius: var(--radius-md);
    color: var(--bg-white);
}

.task-today-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.task-today-header h4 {
    font-size: 0.85rem;
    font-weight: 500;
}

.more-btn {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.task-today-image {
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.task-today-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.task-today-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.task-today-content > p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.task-today-progress {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.task-today-widget .progress-bar {
    background: rgba(255,255,255,0.2);
    margin-bottom: 12px;
}

.task-today-widget .progress-fill {
    background: var(--bg-white);
}

.task-today-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Detail Task Widget */
.detail-task-widget {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    flex: 1;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.detail-header h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-header span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.detail-num {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-primary);
    flex-shrink: 0;
}

.ai-assist-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== Logo Bar ===== */
.logo-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    overflow: hidden;
    width: 100%;
}

.logo-bar-title {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-style: normal;
    color: rgb(28, 28, 28);
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}

.trusted-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
}

.logo-track {
    display: flex;
    gap: 56px;
    padding: 10px 0;
    animation: scroll 20s linear infinite;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(18, 18, 18, 0.6);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-item svg {
    width: 16px;
    height: 16px;
}

/* ===== Problem Section ===== */
.problem-section {
    padding: 96px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1080px;
    width: 100%;
}

.problem-card {
    background: #f6f6f6;
    border-radius: 20px;
    padding: 28px 28px 32px;
    text-align: left;
    transition: all var(--transition-slow);
    cursor: default;
    box-shadow: 
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08),
        0px -6px 6px -5px rgb(255, 255, 255);
    border: none;
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-2px);
}

.problem-image-container {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    /* Fixed height to ensure alignment */
    height: 240px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-image-container.push-down {
    /* push-down is no longer needed if we center vertically in fixed height */
    padding-top: 0; 
}

.problem-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.problem-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 10px;
    color: rgb(28, 28, 28);
    letter-spacing: -0.56px;
    line-height: 30.8px;
}

.problem-card p {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: rgb(84, 84, 84);
    line-height: 25.2px;
    letter-spacing: normal;
    margin: 0;
}

.gradient-text {
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.problem-cta {
    background: #f6f6f6;
    padding: 28px 48px;
    border-radius: 20px;
    text-align: center;
    max-width: 1080px;
    width: 100%;
    margin-top: 12px;
    box-shadow: 
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08),
        0px -6px 6px -5px rgb(255, 255, 255);
    border: none;
}

.problem-cta p {
    font-family: sans-serif;
    color: rgb(84, 84, 84);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 25.2px;
    letter-spacing: normal;
    margin: 0;
}

/* ===== Inside Section ===== */
.inside-section {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.inside-section .section-title {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.inside-section .section-subtitle {
    font-size: 18px;
    max-width: 550px;
}

/* Tabs */
.inside-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgb(246, 246, 246);
    border-radius: 12px;
    padding: 6px;
}

.inside-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(28, 28, 28);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.inside-tab.active {
    background: rgb(255, 255, 255);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.inside-content {
    width: 100%;
    max-width: 1100px;
}

.inside-surface {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    padding: 10px;
    background: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.05);
}

.inside-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: transparent;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
}

.feature-item.active {
    background: rgb(246, 246, 246);
}

.feature-icon {
    color: rgb(28, 28, 28);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-item h4 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: rgb(28, 28, 28);
    margin: 0;
}

.feature-item p {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: rgb(100, 100, 100);
    margin: 0;
}

.inside-right {
    border-radius: 16px;
    background: rgb(246, 246, 246);
    overflow: hidden;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inside-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.inside-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default: slide from below */
.inside-panel:not(.active) {
    transform: translateY(30px);
}

/* Going down: next panel slides from below */
.inside-stage.slide-down .inside-panel:not(.active) {
    transform: translateY(30px);
}

/* Going up: next panel slides from above */
.inside-stage.slide-up .inside-panel:not(.active) {
    transform: translateY(-30px);
}

.inside-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Exiting panel animations */
.inside-panel.exit-down {
    opacity: 0;
    transform: translateY(30px);
}

.inside-panel.exit-up {
    opacity: 0;
    transform: translateY(-30px);
}

.panel-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* ===== Why Section ===== */
.why-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.why-section .section-title {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.why-section .section-subtitle {
    font-size: 18px;
    max-width: 550px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    width: 100%;
    align-items: stretch;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2px 2px 0px rgba(28, 28, 28, 0.03),
        0px 14px 20px 0px rgba(28, 28, 28, 0.10);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.02),
        0px 2px 2px 0px rgba(28, 28, 28, 0.05),
        0px 22px 36px 0px rgba(28, 28, 28, 0.16);
}

.feature-card.wide {
    grid-column: span 2;
}

.feature-card.wide.shift-right {
    grid-column: 2 / span 2;
}

.feature-card-preview {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 18, 18, 0.08);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90% auto;
}

.feature-card.wide .feature-card-preview {
    min-height: 170px;
}

.feature-card h4 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.feature-card > p {
    font-size: 0.9rem;
    color: rgba(18, 18, 18, 0.62);
    line-height: 1.55;
    max-width: 300px;
}

.feature-card.wide > p {
    max-width: 520px;
}

.features-grid .feature-card.wide:not(.shift-right) {
    grid-column: span 1;
}

/* Feature card preview children are visible (custom HTML micro-UIs) */

/* Next Steps Card Preview */
.next-steps-card {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 300px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 10px 18px rgba(0, 0, 0, 0.06);
}

.next-steps-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.next-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.next-steps-header .tag {
    color: var(--text-secondary);
}

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

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.step-item.active {
    background: var(--bg-primary);
}

.step-num {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
}

.cursor {
    margin-left: auto;
    color: var(--accent-blue);
}

/* Progress Preview */
.progress-preview-card {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 300px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 10px 18px rgba(0, 0, 0, 0.06);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.progress-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-dark);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.mini-chart {
    width: 100%;
    height: 40px;
}

.mini-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Calendar Preview */
.calendar-preview {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 10px 18px rgba(0, 0, 0, 0.06);
}

.cal-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cal-header-mini button {
    color: var(--text-secondary);
}

.cal-header-mini span {
    font-size: 0.85rem;
    font-weight: 500;
}

.cal-grid-mini {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 0.75rem;
}

.cal-grid-mini span {
    padding: 4px;
}

.cal-grid-mini .active {
    background: #1c1c1c;
    color: #ffffff;
    border-radius: var(--radius-sm);
}

/* Kanban Preview */
.kanban-preview {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 12px 22px rgba(0, 0, 0, 0.07);
}

.kanban-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.kanban-status {
    font-size: 0.8rem;
    font-weight: 500;
}

.kanban-count {
    background: var(--bg-primary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.kanban-menu {
    margin-left: auto;
    color: var(--text-secondary);
}

.kanban-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.kanban-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.kanban-content h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.kanban-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.kanban-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--bg-dark);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.add-task-btn {
    width: 100%;
    padding: 10px;
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* AI Guide Preview */
.ai-guide-preview {
    /* keep `.feature-card-preview` as the canvas; center the inner shell */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
}

.ai-guide-shell {
    width: 100%;
    max-width: 560px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 14px 26px rgba(0, 0, 0, 0.08);
}

.ai-guide-left {
    background: transparent;
    padding: 8px;
    border-radius: 12px;
}

.ai-guide-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ai-guide-header img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.ai-guide-header div {
    display: flex;
    flex-direction: column;
}

.ai-name {
    font-size: 0.8rem;
    font-weight: 500;
}

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

.ai-updated {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--accent-green);
}

.ai-tip {
    display: flex;
    gap: 8px;
    background: #fef3c7;
    padding: 12px;
    border-radius: var(--radius-md);
}

.tip-icon {
    font-size: 1rem;
}

.tip-title {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.tip-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.ai-guide-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
}

.date-block {
    background: var(--bg-white);
    padding: 12px;
    border-radius: var(--radius-md);
}

.date-block .date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.check-item {
    font-size: 0.75rem;
    color: var(--accent-green);
}

.guide-footer {
    display: flex;
    gap: 8px;
}

.reaction {
    padding: 4px 10px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

.reply-small {
    padding: 4px 10px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===== Scale Section ===== */
.scale-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.scale-dashboard {
    max-width: 1000px;
}

.scale-dashboard-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.scale-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
}

.scale-feature {
    background: #f6f6f6;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01), 
        0px 2.3px 2.3px 0px rgba(28, 28, 28, 0.03), 
        0px 10px 10px 0px rgba(28, 28, 28, 0.12);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.2s ease;
}

.scale-feature:hover {
    transform: translateY(-4px);
    box-shadow: 
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.02), 
        0px 2.3px 2.3px 0px rgba(28, 28, 28, 0.05), 
        0px 15px 20px 0px rgba(28, 28, 28, 0.15);
}

.scale-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1A1A1A 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 6px;
    margin-bottom: 24px;
    color: #f6f6f6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.scale-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.scale-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.comparison-section .section-title {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.comparison-section .title-italic {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
}

.comparison-section .section-subtitle {
    font-size: 18px;
    max-width: 550px;
    color: rgb(28, 28, 28);
}

.comparison-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    max-width: 980px;
    width: 100%;
    align-items: flex-start;
}

.comparison-column {
    flex: 1;
    min-width: 0;
}

.comparison-label {
    font-family: 'Caveat', cursive;
    font-style: normal;
    font-size: 24px;
    font-weight: 600;
    color: rgb(28, 28, 28);
    display: block;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.comparison-card {
    background: rgb(246, 246, 246);
    border-radius: 16px;
    padding: 42px;
    border: 1px solid rgb(255, 255, 255);
    box-shadow:
        0 0.6021873017743928px 0.6021873017743928px rgba(28, 28, 28, 0.01),
        0 2.288533303243457px 2.288533303243457px rgba(28, 28, 28, 0.03),
        0 10px 10px rgba(28, 28, 28, 0.12),
        0 -6px 6px -5px rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-card h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 42px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.06);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: rgb(84, 84, 84);
}

/* After card title should be darker */
.comparison-column.after .comparison-card h3 {
    color: rgb(28, 28, 28);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(84, 84, 84);
    line-height: 1.5;
}

.x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.x-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgb(150, 150, 150);
    stroke-width: 1.5;
}

.check-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 16px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    stroke: rgb(28, 28, 28);
    stroke-width: 2;
    position: absolute;
}

.check-icon svg:first-child {
    left: 0;
}

.check-icon svg:last-child {
    left: 6px;
}

.trial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: rgb(28, 28, 28);
    color: rgb(255, 255, 255);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 8px;
    box-shadow:
        rgba(255, 255, 255, 0.4) 0px 0px 20px 1.64px inset,
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
    transition: background 0.3s ease;
}

.trial-btn .rolling-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 18px;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.trial-btn .rolling-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 18px;
    position: relative;
    white-space: nowrap;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.trial-btn:hover .rolling-text {
    transform: translateY(-18px);
}

.trial-btn .rolling-text span {
    font-family: "Instrument Sans Variable", "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}

.trial-btn:hover {
    background: rgb(64, 67, 255);
    box-shadow:
        rgba(255, 255, 255, 0.4) 0px 0px 20px 1.64px inset,
        0px 10px 30px 0px rgba(64, 67, 255, 0.4);
}

.trial-btn:active {
    transform: scale(0.98);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 980px;
    width: 100%;
    background: rgb(246, 246, 246);
    padding: 32px 42px;
    border-radius: 16px;
    border: 1px solid rgb(255, 255, 255);
    box-shadow:
        0 0.6021873017743928px 0.6021873017743928px rgba(28, 28, 28, 0.01),
        0 2.288533303243457px 2.288533303243457px rgba(28, 28, 28, 0.03),
        0 10px 10px rgba(28, 28, 28, 0.12),
        0 -6px 6px -5px rgb(255, 255, 255);
}

.stats-bar .stat {
    text-align: left;
}

.stats-bar .stat-value {
    font-family: "Instrument Sans", sans-serif;
    font-size: 42px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: rgb(28, 28, 28);
    text-align: left;
}

.stats-bar .stat-label {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(84, 84, 84);
    line-height: 1.5;
}

/* ===== Demo Video Section ===== */
.demo-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.demo-section .section-title {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.demo-section .title-italic {
    font-family: "Instrument Sans", sans-serif;
    font-style: italic;
    font-weight: 500;
}

.demo-section .section-subtitle {
    font-size: 18px;
    max-width: 550px;
    color: rgb(84, 84, 84);
}

.demo-video-container {
    width: 100%;
    max-width: 980px;
    padding: 0 20px;
}

.demo-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgb(246, 246, 246);
    border: 1px solid rgb(255, 255, 255);
    box-shadow:
        0 0.6021873017743928px 0.6021873017743928px rgba(28, 28, 28, 0.01),
        0 2.288533303243457px 2.288533303243457px rgba(28, 28, 28, 0.03),
        0 10px 10px rgba(28, 28, 28, 0.12),
        0 -6px 6px -5px rgb(255, 255, 255);
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(230, 230, 230) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.demo-video.playing {
    display: block;
}

.video-placeholder.playing .play-button {
    display: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgb(28, 28, 28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 40px rgba(28, 28, 28, 0.3),
        0 -4px 8px -4px rgb(255, 255, 255) inset;
}

.play-button:hover {
    background: rgb(64, 67, 255);
    transform: scale(1.05);
    box-shadow:
        0 10px 50px rgba(64, 67, 255, 0.4),
        0 -4px 8px -4px rgb(255, 255, 255) inset;
}

.play-button svg {
    margin-left: 4px;
}

.demo-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgb(28, 28, 28);
    color: rgb(255, 255, 255);
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        rgba(255, 255, 255, 0.4) 0px 0px 20px 1.64px inset,
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01),
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.12),
        0px -6px 6px -5px rgb(255, 255, 255);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.demo-more-btn .rolling-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 18px;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.demo-more-btn .rolling-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 18px;
    position: relative;
    white-space: nowrap;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-more-btn:hover .rolling-text {
    transform: translateY(-18px);
}

.demo-more-btn .rolling-text span {
    font-family: "Instrument Sans Variable", "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}

.demo-more-btn svg {
    transition: transform 0.3s ease;
}

.demo-more-btn:hover {
    background: rgb(64, 67, 255);
    box-shadow:
        rgba(255, 255, 255, 0.4) 0px 0px 20px 1.64px inset,
        0px 10px 30px 0px rgba(64, 67, 255, 0.4);
}

.demo-more-btn:hover svg {
    transform: translateX(4px);
}

/* ===== Integrations Section ===== */
.integrations-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.integrations-visual {
    position: relative;
    max-width: 700px;
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.integration-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.integration-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-icon.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.integration-icon.left {
    top: 30%;
    left: 15%;
}

.integration-icon.right {
    top: 30%;
    right: 15%;
}

.integration-icon.bottom-left {
    bottom: 20%;
    left: 5%;
}

.integration-icon.bottom-right {
    bottom: 20%;
    right: 5%;
}

.integrations-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.integrations-center h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.integrations-center p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.integrations-btn {
    padding: 10px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

/* ===== App Section ===== */
.app-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.app-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
}

.phone-mockup {
    width: 280px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.phone-mockup img {
    width: 100%;
}

.phone-mockup.left {
    transform: rotate(-5deg);
}

.phone-mockup.right {
    transform: rotate(5deg);
}

.app-cta {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 300px;
}

.app-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.app-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.app-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-buttons .btn {
    padding: 12px 24px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    overflow: hidden;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 10px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    background-color: #f6f6f6;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0px 0.602187px 0.602187px 0px rgba(28, 28, 28, 0),
        0px 2.288533px 2.288533px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08),
        0px -6px 6px -5px rgba(255, 255, 255, 1);
    padding: 40px;
    font-family: sans-serif;
    font-size: 12px;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    max-width: 340px;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    font-family: sans-serif;
    font-size: 12px;
}

.stars svg {
    display: inline;
    width: 16px;
    height: 16px;
    fill: #1c1c1c;
    color: #1c1c1c;
    font-family: sans-serif;
    font-size: 12px;
}

.testimonial-text {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-weight: 400;
    font-style: normal;
    color: rgb(28, 28, 28);
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-text strong {
    color: #1c1c1c;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-weight: 500;
    font-style: normal;
    color: rgb(28, 28, 28);
    text-align: left;
}

.author-role {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: #9a9a9a;
    text-align: left;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    background: #d4d4d4;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    background: #a0a0a0;
}

.dot.active {
    background: #1c1c1c;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.pricing-cards {
    align-items: stretch;
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}

.pricing-card {
    align-items: flex-start;
    background-color: rgb(246, 246, 246);
    border-radius: 24px;
    box-shadow: 
        rgba(28, 28, 28, 0.01) 0px 0.602px 0.602px 0px,
        rgba(28, 28, 28, 0.03) 0px 2.289px 2.289px 0px,
        rgba(28, 28, 28, 0.04) 0px 10px 10px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    position: relative;
    flex: 1;
    max-width: 340px;
    min-width: 300px;
}

.pricing-card.popular {
    background-color: rgb(246, 246, 246);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 
        rgba(28, 28, 28, 0.01) 0px 0.602px 0.602px 0px,
        rgba(28, 28, 28, 0.03) 0px 2.289px 2.289px 0px,
        rgba(28, 28, 28, 0.04) 0px 10px 10px 0px;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(64, 67, 255);
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", var(--font-sans);
    line-height: 1;
    letter-spacing: -0.14px;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    border-radius: 12px;
}

.pricing-icon svg {
    width: 20px;
    height: 20px;
}

.pricing-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 500;
    font-family: "Instrument Sans", var(--font-sans);
    color: rgb(28, 28, 28);
    margin: 0;
    line-height: 26.4px;
    letter-spacing: -0.1px;
}

.pricing-desc {
    font-size: 16px;
    color: rgb(28, 28, 28);
    font-family: "Inter", var(--font-sans);
    font-weight: 400;
    margin: 0;
    line-height: 24px;
    letter-spacing: -0.16px;
    opacity: 0.6;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price {
    font-size: 42px;
    font-weight: 500;
    font-family: "Instrument Sans", var(--font-sans);
    color: rgb(28, 28, 28);
    line-height: 46.2px;
    letter-spacing: -1.26px;
}

.period {
    font-size: 16px;
    color: rgb(28, 28, 28);
    font-family: "Inter", var(--font-sans);
    font-weight: 400;
    opacity: 0.5;
}

/* Pricing buttons */
.pricing-btn {
    align-items: center;
    border-radius: 16px;
    display: flex;
    font-family: "Instrument Sans", var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    padding: 14px 24px;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pricing-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(28, 28, 28, 0.15);
    color: rgb(28, 28, 28);
}

.pricing-btn-outline:hover {
    background: rgba(28, 28, 28, 0.05);
    border-color: rgba(28, 28, 28, 0.25);
}

.pricing-btn-primary {
    background: rgb(28, 28, 28);
    border: 1px solid rgb(28, 28, 28);
    color: #fff;
    box-shadow: 
        rgba(28, 28, 28, 0.01) 0px 0.602px 0.602px 0px,
        rgba(28, 28, 28, 0.03) 0px 2.289px 2.289px 0px,
        rgba(28, 28, 28, 0.08) 0px 10px 10px 0px;
}

.pricing-btn-primary:hover {
    background: rgb(51, 51, 51);
    border-color: rgb(51, 51, 51);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgb(28, 28, 28);
    font-family: "Inter", var(--font-sans);
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
}

.pricing-features li span {
    line-height: 24px;
}

/* Checkmark icons */
.check-icon {
    flex-shrink: 0;
}

/* ===== Core Features Section (Scroll-driven Trupeer-style) ===== */
.core-features-section {
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.core-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.core-features-header .section-title {
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 800px;
}

.core-features-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 72px;
    width: 100%;
    max-width: 1280px;
    align-items: start;
}

/* Left sticky nav */
.core-features-nav {
    position: sticky;
    top: 120px;
    align-self: start;
}

.core-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.core-nav-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 0;
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(28, 28, 28, 0.4);
    cursor: pointer;
    transition: color 0.35s ease, font-weight 0.35s ease;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.core-nav-item:hover {
    color: rgba(28, 28, 28, 0.7);
}

.core-nav-item.active {
    color: rgb(28, 28, 28);
    font-weight: 600;
}

/* Right scrolling content */
.core-features-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.core-feature-block {
    padding: 0 0 100px 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-feature-block.in-view {
    opacity: 1;
    transform: translateY(0);
}

.core-feature-block:last-child {
    padding-bottom: 40px;
}

.core-feature-text {
    margin-bottom: 36px;
}

.core-feature-text h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: rgb(20, 20, 20);
    margin: 0 0 14px 0;
}

.core-feature-text p {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: rgb(100, 100, 100);
    margin: 0;
    max-width: 580px;
}

/* ---- Visual cards (shared) ---- */
.core-feature-visual {
    border-radius: 24px;
    padding: 48px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* --- 1. Script Generation visual --- */
.script-visual {
    background: linear-gradient(145deg, #E8EDFF 0%, #FCEADF 50%, #F0E8FF 100%);
}

.script-editor {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 19px;
    line-height: 1.75;
}

.script-line {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.script-text-dim {
    color: rgba(28, 28, 28, 0.45);
}

.script-text-bold {
    color: rgb(28, 28, 28);
    font-weight: 600;
}

.script-text-highlight {
    background: rgba(64, 67, 255, 0.12);
    color: #4043FF;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.script-text-strike {
    color: rgba(28, 28, 28, 0.25);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 60, 60, 0.5);
}

.script-sparkle {
    font-size: 14px;
    color: #4043FF;
    animation: sparkle-pulse 2s ease-in-out infinite;
}

.script-cursor {
    color: #4043FF;
    font-weight: 300;
    animation: cursor-blink 1s step-end infinite;
}

@keyframes sparkle-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* --- 2. Voiceover visual --- */
.voiceover-visual {
    background: linear-gradient(145deg, #FFF0E5 0%, #FFE4D0 50%, #FCEADF 100%);
}

.voice-selector {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.voice-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border-radius: 12px;
    transition: background 0.25s ease;
}

.voice-row.active-voice {
    background: rgba(255, 237, 220, 0.6);
}

.voice-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgb(28, 28, 28);
    flex-shrink: 0;
    padding-left: 2px;
}

.voice-play.active-play {
    background: #4043FF;
    color: white;
}

.voice-name {
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgb(28, 28, 28);
    flex: 1;
}

.voice-tags {
    display: flex;
    gap: 8px;
}

.voice-tag {
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgb(100, 100, 100);
    background: rgba(28, 28, 28, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

/* --- 3. Zoom Effects visual --- */
.zoom-visual {
    background: linear-gradient(145deg, #E3F0FF 0%, #EDE8FF 50%, #E8EDFF 100%);
    padding: 36px;
}

.zoom-browser {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 580px;
    overflow: hidden;
}

.zoom-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zoom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.1);
}

.zoom-url-bar {
    margin-left: 10px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(28, 28, 28, 0.4);
    background: rgba(28, 28, 28, 0.03);
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
}

.zoom-screen {
    display: flex;
    min-height: 280px;
    position: relative;
}

.zoom-sidebar-mock {
    width: 56px;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zoom-sb-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(28, 28, 28, 0.06);
}

.zoom-sb-item.active-sb {
    background: rgba(64, 67, 255, 0.2);
}

.zoom-main-mock {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zoom-content-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(28, 28, 28, 0.06);
}

.zoom-content-line.w80 { width: 80%; }
.zoom-content-line.w70 { width: 70%; }
.zoom-content-line.w60 { width: 60%; }
.zoom-content-line.w40 { width: 40%; }

.zoom-target {
    display: inline-flex;
    align-items: center;
    position: relative;
    align-self: flex-start;
    margin: 8px 0;
}

.zoom-btn-mock {
    background: #4043FF;
    color: white;
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.zoom-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(64, 67, 255, 0.35);
    border-radius: 14px;
    animation: zoom-pulse 2s ease-in-out infinite;
}

.zoom-ring-outer {
    inset: -16px;
    border-radius: 20px;
    border-color: rgba(64, 67, 255, 0.15);
    animation-delay: 0.3s;
}

@keyframes zoom-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.06); }
}

/* --- 4. AI-Guided Flows visual --- */
.guides-visual {
    background: linear-gradient(145deg, #E8FFF0 0%, #E0F5FF 50%, #E8EDFF 100%);
    flex-direction: column;
    gap: 20px;
}

.guide-avatars {
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 540px;
}

.guide-avatar-card {
    flex: 1;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: center;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Instrument Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.avatar-label {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(28, 28, 28);
}

.avatar-status {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgb(150, 150, 150);
}

.avatar-status.active-status {
    color: #22c55e;
    font-weight: 500;
}

.guide-steps {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 10px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    color: rgba(28, 28, 28, 0.4);
    border-radius: 10px;
}

.guide-step.active-step {
    color: rgb(28, 28, 28);
    font-weight: 500;
    background: rgba(64, 67, 255, 0.06);
}

.guide-step.done-step {
    color: rgba(28, 28, 28, 0.35);
}

.step-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.step-num-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.08);
    color: rgb(28, 28, 28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.guide-step.active-step .step-num-badge {
    background: #4043FF;
    color: white;
}

/* --- 5. Brand Customization visual --- */
.brand-visual {
    background: linear-gradient(145deg, #F0E8FF 0%, #E8EDFF 50%, #FCEADF 100%);
}

.brand-panel {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgb(28, 28, 28);
}

.brand-applied-tag {
    font-size: 12px;
    font-weight: 500;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

.brand-colors-row {
    display: flex;
    gap: 10px;
}

.brand-swatch {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.brand-swatch:hover {
    transform: scale(1.08);
}

.brand-font-preview {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-font-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgb(150, 150, 150);
}

.brand-font-sample {
    font-family: "Instrument Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(28, 28, 28);
    letter-spacing: -0.02em;
}

.brand-items-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.brand-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 15px;
    color: rgb(80, 80, 80);
    padding: 8px 0;
}

.brand-check {
    color: #4043FF;
    font-weight: 700;
    font-size: 12px;
}

/* --- 6. Instant Publishing visual --- */
.publish-visual {
    background: linear-gradient(145deg, #FCEADF 0%, #FFE4D0 50%, #FFF0E5 100%);
}

.publish-panel {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.publish-formats {
    display: flex;
    gap: 10px;
}

.publish-format {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(28, 28, 28, 0.03);
    font-family: "Instrument Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgb(80, 80, 80);
    transition: background 0.2s ease, color 0.2s ease;
    cursor: default;
}

.publish-format.active-format {
    background: #4043FF;
    color: white;
}

.publish-format.active-format svg {
    stroke: white;
}

.publish-link-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(28, 28, 28, 0.03);
    border-radius: 12px;
    padding: 16px 20px;
}

.publish-url {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 14px;
    color: rgb(100, 100, 100);
}

.publish-copied {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
}

.publish-embed-preview {
    background: rgba(28, 28, 28, 0.03);
    border-radius: 12px;
    padding: 16px 20px;
}

.publish-embed-preview code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 14px;
    color: rgba(28, 28, 28, 0.5);
}

/* ---- Core Features Responsive ---- */
@media (max-width: 768px) {
    .core-features-section {
        padding: 60px 16px 40px;
        gap: 40px;
    }

    .core-features-header .section-title {
        font-size: 34px;
    }

    .core-features-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .core-features-nav {
        position: relative;
        top: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .core-nav-list {
        flex-direction: row;
        gap: 0;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .core-nav-item {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .core-feature-block {
        padding-bottom: 48px;
    }

    .core-feature-text h3 {
        font-size: 24px;
    }

    .core-feature-text p {
        font-size: 15px;
    }

    .core-feature-visual {
        padding: 20px;
        min-height: 240px;
    }

    .guide-avatars {
        flex-direction: column;
    }

    .publish-formats {
        flex-wrap: wrap;
    }
}

/* Responsive pricing */
@media (max-width: 900px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 400px;
        width: 100%;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.faq-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    background: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.faq-list {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.faq-item {
    background: rgb(246, 246, 246);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0px 0.6021873017743928px 0.6021873017743928px 0px rgba(28, 28, 28, 0.01), 
        0px 2.288533303243457px 2.288533303243457px 0px rgba(28, 28, 28, 0.03), 
        0px 10px 10px 0px rgba(28, 28, 28, 0.12), 
        0px -6px 6px -5px rgb(255, 255, 255);
    width: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: scale(1.01);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.faq-question-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: rgb(28, 28, 28);
    text-align: left;
    margin: 0;
    flex: 1;
}

.faq-icon-wrapper {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(28, 28, 28);
    border-radius: 100px;
    flex-shrink: 0;
}

.faq-icon {
    width: 16px;
    height: 16px;
}

.faq-icon-minus {
    display: none;
}

.faq-icon-plus {
    display: block;
}

.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgb(84, 84, 84);
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

/* FAQ Section Responsive */
@media (max-width: 809px) {
    .faq-section {
        padding: 48px 20px;
        gap: 32px;
        max-width: unset;
    }
    
    .faq-title {
        font-size: 32px;
        max-width: 338px;
    }
    
    .faq-list {
        max-width: unset;
        padding: 0;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
    margin: 40px 20px 20px;
    border-radius: var(--radius-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar,
    .dashboard-right {
        display: none;
    }
    
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .feature-card.wide {
        grid-column: span 1;
    }

    .feature-card.wide.shift-right {
        grid-column: span 1;
    }
    
    .scale-features,
    .problem-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inside-surface {
        grid-template-columns: 1fr;
    }
    
    .app-showcase {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
        max-width: 340px;
    }
    
    .testimonial-card.center-card {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 10px 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .phone-mockup {
        width: 200px;
    }
    
    .testimonial-card {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 100%;
    }
    
    .testimonial-card.center-card {
        transform: none;
    }

    .comparison-card {
        padding: 24px;
    }

    .comparison-card h3 {
        font-size: 32px;
    }

    .stats-bar {
        padding: 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-bar .stat-value {
        font-size: 32px;
    }
}

/* Hero Typing Animation Styles */
.hero-typing-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Browser frame styling */
.browser-frame {
    border: 2px solid transparent;
    border-radius: 16px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) border-box;
    box-shadow:
        0 32px 64px -12px rgba(99, 102, 241, 0.25),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 80px -20px rgba(99, 102, 241, 0.3);
    overflow: hidden;
    position: relative;
    animation: borderGlow 8s ease infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) border-box;
    }
    50% {
        background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #6366f1 100%) border-box;
    }
}

/* Input area */
.prompt-input-area {
    padding: 40px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
}

.prompt-input-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.prompt-label {
    font-size: 13px;
    color: #6366f1;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.prompt-input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f3 100%);
    min-height: 80px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.prompt-input:focus-within {
    border-color: #6366f1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.12),
        0 0 0 1px rgba(99, 102, 241, 0.3),
        inset 0 2px 6px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(99, 102, 241, 0.15);
}

/* Typing cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.3em;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    margin-left: 3px;
    animation: blink 1s infinite;
    vertical-align: middle;
    border-radius: 2px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Create button */
.create-button-container {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.create-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 6s ease infinite;
}

.create-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.create-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.45),
        0 4px 12px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.create-button:hover::before {
    left: 100%;
}

.create-button:active {
    transform: translateY(0) scale(0.98);
}

.create-button.clicked {
    animation: buttonClick 0.3s ease;
}

@keyframes buttonClick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* Mouse cursor */
.mouse-cursor {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.mouse-cursor svg {
    width: 100%;
    height: 100%;
}

.mouse-cursor.clicking {
    animation: cursorClick 0.2s ease;
}

@keyframes cursorClick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.8); }
}

/* Loading state */
.loading-container {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background:
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%);
    position: relative;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border: 5px solid #e2e8f0;
    border-top-color: #6366f1;
    border-right-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.15),
        inset 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: #6366f1;
    font-size: 15px;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Demo preview */
.demo-preview {
    padding: 32px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: none;
}

.demo-preview.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 33%, #f093fb 66%, #6366f1 100%);
    background-size: 300% 300%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(102, 126, 234, 0.4),
        0 8px 16px rgba(118, 75, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animated gradient for demo placeholder */
.demo-video-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Video play icon */
.video-play-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: playIconPulse 2s ease-in-out infinite;
}

.video-play-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-play-icon:hover svg {
    transform: scale(1.1);
}

@keyframes playIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Workflow Animation Section ===== */
.workflow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.workflow-left {
    flex: 0 0 420px;
    max-width: 420px;
}

.workflow-left .section-badge {
    margin-bottom: 28px;
}

.workflow-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.workflow-subtitle {
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 360px;
}

/* Workflow CTA button */
.workflow-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 6px 6px 6px 22px;
    background: transparent;
    border: 1px solid rgba(28, 28, 28, 0.15);
    border-radius: 50px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1c1c1c;
    text-decoration: none;
    transition: border-color 0.35s ease, background 0.35s ease;
    position: relative;
    cursor: pointer;
}

.workflow-cta-text {
    display: flex;
    flex-direction: column;
    height: 18px;
    overflow: hidden;
    position: relative;
    margin-right: 14px;
}

.workflow-cta-text span {
    display: block;
    height: 18px;
    line-height: 18px;
    white-space: nowrap;
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.workflow-cta:hover .workflow-cta-text span {
    transform: translateY(-18px);
}

.workflow-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1c1c1c;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.workflow-cta-arrow svg {
    width: 18px;
    height: 18px;
    color: #fff;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.workflow-cta:hover {
    border-color: rgba(28, 28, 28, 0.35);
}

.workflow-cta:hover .workflow-cta-arrow svg {
    transform: translateX(3px);
}

.workflow-right {
    flex: 0 0 440px;
    display: flex;
    justify-content: center;
    min-width: 0;
}

/* ===== Workflow Animation ===== */
#workflow-animation-container.wf-modern {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 620px;
}

.wf-ambient-glow {
    display: none;
}

#workflow-animation-container.wf-modern .workflow-svg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 2;
}

/* Track paths (faint guide lines always visible) */
#workflow-animation-container.wf-modern .wf-tracks path {
    fill: none;
    stroke: rgba(28, 28, 28, 0.07);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 2 6;
}

/* Active paths (drawn by particle) */
#workflow-animation-container.wf-modern [id^="wf-path-"] {
    fill: none;
    stroke: rgba(28, 28, 28, 0.22);
    stroke-width: 2;
    stroke-linecap: round;
}

/* ===== Workflow Card Animations ===== */
@keyframes wf-card-enter {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px) scale(0.92);
    }
    65% {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes wf-card-enter-branch {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.92);
    }
    65% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wf-diamond-enter {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    65% {
        opacity: 1;
        transform: translateX(-50%) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes wf-pill-enter {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    65% {
        transform: scale(1.12);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Workflow Cards */
#workflow-animation-container.wf-modern .wf-card {
    position: absolute;
    width: 224px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(28, 28, 28, 0.04),
                0 0 0 1px rgba(28, 28, 28, 0.02);
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    box-sizing: border-box;
    z-index: 10;
    opacity: 0;
    transform: translateX(-50%) translateY(14px) scale(0.92);
}

#workflow-animation-container.wf-modern .wf-card.wf-visible {
    animation: wf-card-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Card Icon */
#workflow-animation-container.wf-modern .wf-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #f5f5f5;
    color: #1c1c1c;
}

#workflow-animation-container.wf-modern .wf-icon-recording {
    background: #f5f5f5;
    color: #1c1c1c;
}

#workflow-animation-container.wf-modern .wf-icon-done {
    background: #1c1c1c;
    color: #ffffff;
}

/* Card Content */
#workflow-animation-container.wf-modern .wf-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

#workflow-animation-container.wf-modern .wf-card-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1c1c1c;
    white-space: nowrap;
}

#workflow-animation-container.wf-modern .wf-card-sub {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Positions */
#wf-card-url { top: 0; left: 50%; }
#wf-card-describe { top: 80px; left: 50%; }
#wf-card-record { top: 160px; left: 50%; }
#wf-card-edit { top: 240px; left: 50%; }
#wf-card-final { top: 472px; left: 50%; }
#wf-card-share { top: 552px; left: 50%; }

/* Share card */
#workflow-animation-container.wf-modern .wf-card-success {
    border-color: rgba(28, 28, 28, 0.12);
}

/* Branch Cards */
#workflow-animation-container.wf-modern .wf-card-branch-left {
    top: 392px;
    left: 12px;
    width: 170px;
    transform: translateY(14px) scale(0.92);
}

#workflow-animation-container.wf-modern .wf-card-branch-right {
    top: 392px;
    right: 12px;
    left: auto;
    width: 170px;
    transform: translateY(14px) scale(0.92);
}

#workflow-animation-container.wf-modern .wf-card-branch-left.wf-visible,
#workflow-animation-container.wf-modern .wf-card-branch-right.wf-visible {
    animation: wf-card-enter-branch 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Diamond (Branch Decision) */
#workflow-animation-container.wf-modern .wf-diamond {
    position: absolute;
    top: 324px;
    left: 50%;
    width: 110px;
    height: 42px;
    transform: translateX(-50%) scale(0);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    opacity: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

#workflow-animation-container.wf-modern .wf-diamond.wf-visible {
    animation: wf-diamond-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#workflow-animation-container.wf-modern .wf-diamond span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #1c1c1c;
    white-space: nowrap;
}

/* Yes / No Pills */
#workflow-animation-container.wf-modern .wf-pill {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    z-index: 15;
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

#workflow-animation-container.wf-modern .wf-pill.wf-visible {
    animation: wf-pill-enter 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#workflow-animation-container.wf-modern .wf-pill-yes {
    top: 370px;
    left: 110px;
    color: #1c1c1c;
}

#workflow-animation-container.wf-modern .wf-pill-no {
    top: 370px;
    right: 110px;
    color: #999;
}

/* ===== Workflow Idle Float ===== */
@keyframes wf-float-center {
    0% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-4px) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes wf-float-branch {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-4px) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

#workflow-animation-container.wf-idle .wf-card.wf-visible {
    animation: wf-float-center 5.5s cubic-bezier(0.37, 0, 0.63, 1) infinite !important;
    opacity: 1 !important;
}

#workflow-animation-container.wf-idle .wf-card-branch-left.wf-visible,
#workflow-animation-container.wf-idle .wf-card-branch-right.wf-visible {
    animation: wf-float-branch 5.5s cubic-bezier(0.37, 0, 0.63, 1) infinite !important;
    opacity: 1 !important;
}

/* Staggered float delays for organic wave */
#workflow-animation-container.wf-idle #wf-card-url { animation-delay: 0s !important; }
#workflow-animation-container.wf-idle #wf-card-describe { animation-delay: 0.35s !important; }
#workflow-animation-container.wf-idle #wf-card-record { animation-delay: 0.7s !important; }
#workflow-animation-container.wf-idle #wf-card-edit { animation-delay: 1.05s !important; }
#workflow-animation-container.wf-idle #wf-card-branded { animation-delay: 1.2s !important; }
#workflow-animation-container.wf-idle #wf-card-clean { animation-delay: 1.35s !important; }
#workflow-animation-container.wf-idle #wf-card-final { animation-delay: 1.5s !important; }
#workflow-animation-container.wf-idle #wf-card-share { animation-delay: 1.7s !important; }

/* ===== Workflow Exit Animations ===== */
@keyframes wf-card-exit-center {
    from { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    to { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(0.95); }
}

@keyframes wf-card-exit-branch {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

@keyframes wf-diamond-exit {
    from { opacity: 1; transform: translateX(-50%) scale(1); }
    to { opacity: 0; transform: translateX(-50%) scale(0.7); }
}

@keyframes wf-pill-exit {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0); }
}

#workflow-animation-container.wf-modern .wf-card.wf-exit {
    animation: wf-card-exit-center 0.35s ease-in forwards !important;
}

#workflow-animation-container.wf-modern .wf-card-branch-left.wf-exit,
#workflow-animation-container.wf-modern .wf-card-branch-right.wf-exit {
    animation: wf-card-exit-branch 0.35s ease-in forwards !important;
}

#workflow-animation-container.wf-modern .wf-diamond.wf-exit {
    animation: wf-diamond-exit 0.3s ease-in forwards !important;
}

#workflow-animation-container.wf-modern .wf-pill.wf-exit {
    animation: wf-pill-exit 0.25s ease-in forwards !important;
}

/* ===== Diamond Pulse ===== */
@keyframes wf-diamond-pulse {
    0% { transform: translateX(-50%) scale(1); filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08)); }
    35% { transform: translateX(-50%) scale(1.12); filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15)); }
    65% { transform: translateX(-50%) scale(0.97); filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)); }
    100% { transform: translateX(-50%) scale(1); filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08)); }
}

#workflow-animation-container.wf-modern .wf-diamond.wf-pulse {
    animation: wf-diamond-pulse 0.7s ease-in-out !important;
    opacity: 1 !important;
}

/* ===== Icon Micro-animations ===== */
/* URL card - link snap on appear */
@keyframes wf-icon-snap {
    0% { transform: scale(0.7); opacity: 0.3; }
    60% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

#wf-card-url.wf-visible .wf-card-icon svg {
    animation: wf-icon-snap 0.4s ease-out 0.25s both;
}

/* Record card - recording dot pulse (only while wf-recording-active) */
@keyframes wf-recording-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

#wf-card-record.wf-recording-active .wf-icon-recording svg circle:last-child {
    transform-box: fill-box;
    transform-origin: center;
    animation: wf-recording-pulse 0.8s ease-in-out infinite;
}

/* Recording glow ring on outer circle */
@keyframes wf-recording-ring {
    0%, 100% { stroke-opacity: 1; }
    50% { stroke-opacity: 0.4; }
}

#wf-card-record.wf-recording-active .wf-icon-recording svg circle:first-child {
    stroke: #c44;
    animation: wf-recording-ring 0.8s ease-in-out infinite;
}

/* Edit card - pencil wiggle */
@keyframes wf-edit-wiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-4deg); }
    80% { transform: rotate(2deg); }
}

#wf-card-edit.wf-visible .wf-card-icon svg {
    transform-box: fill-box;
    transform-origin: 80% 80%;
    animation: wf-edit-wiggle 0.5s ease-in-out 0.3s;
}

/* Share card - checkmark draw */
#wf-card-share .wf-icon-done svg polyline {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    stroke: #fff;
    stroke-width: 3;
}

#wf-card-share.wf-check-animate .wf-icon-done svg polyline {
    animation: wf-check-draw 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes wf-check-draw {
    to { stroke-dashoffset: 0; }
}

/* Workflow Responsive */
@media (max-width: 1000px) {
    .workflow-content {
        flex-direction: column;
        gap: 50px;
    }

    .workflow-left {
        flex: none;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .workflow-subtitle {
        max-width: 480px;
    }

    .workflow-title {
        font-size: 38px;
    }

    .workflow-right {
        flex: none;
        width: 100%;
        max-width: 440px;
    }
}

@media (max-width: 600px) {
    .workflow-title {
        font-size: 32px;
    }

    .workflow-cta {
        width: 100%;
        justify-content: center;
    }

    #workflow-animation-container {
        transform: scale(0.7);
        transform-origin: top center;
        height: 434px !important;
    }
}

/* ===== Hero Trust Points ===== */
.hero-trust-points {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: -8px 0 8px;
}

.hero-trust-points span {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 16px;
}

.hero-trust-points span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
}

.hero-microcopy {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -4px;
    letter-spacing: 0.01em;
}

/* ===== How It Works Section ===== */
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hiw-step {
    display: grid;
    grid-template-columns: 56px 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px 0;
}

.hiw-step-number {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
    padding-top: 4px;
    letter-spacing: -0.02em;
}

.hiw-step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hiw-step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hiw-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-url-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    width: 100%;
    max-width: 320px;
}

.hiw-url-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.hiw-url-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hiw-prompt-box {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 16px;
    width: 100%;
    max-width: 320px;
}

.hiw-prompt-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.hiw-prompt-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
    font-style: italic;
}

.hiw-output-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.hiw-video-mock {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.hiw-output-meta {
    display: flex;
    gap: 8px;
}

.hiw-output-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(64, 67, 255, 0.1);
    color: var(--accent-blue);
    letter-spacing: 0.03em;
}

.hiw-connector {
    display: flex;
    justify-content: center;
    padding-left: 28px;
}

.hiw-bottom-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hiw-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hiw-step-number {
        font-size: 24px;
    }

    .hiw-step-visual {
        justify-content: flex-start;
    }

    .hiw-connector {
        padding-left: 0;
    }
}

/* ===== Smart Data Fields (Feature Card) ===== */
.smart-data-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.data-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid var(--border-light);
}

.data-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.data-value {
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

/* ===== Editing Preview (Feature Card) ===== */
.editing-preview {
    padding: 16px;
}

.edit-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-track {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 32px;
}

.edit-clip {
    height: 100%;
    background: rgba(64, 67, 255, 0.15);
    border-radius: 4px;
    flex-shrink: 0;
}

.edit-zoom-marker {
    width: 3px;
    height: 24px;
    background: var(--accent-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.edit-labels {
    display: flex;
    gap: 3px;
    align-items: center;
}

.edit-labels span {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
    text-align: center;
}

/* ===== Sharing Preview (Feature Card) ===== */
.sharing-preview {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-options {
    display: flex;
    gap: 8px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    transition: all 0.2s;
}

.share-option.active-share {
    background: rgba(64, 67, 255, 0.08);
    border-color: rgba(64, 67, 255, 0.3);
    color: var(--accent-blue);
}

.share-link-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
}

.copy-badge {
    font-size: 10px;
    color: var(--accent-green);
    font-weight: 600;
    font-family: var(--font-sans);
}

/* ===== Brand Kit Preview (Feature Card) ===== */
.brand-kit-preview {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-kit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-kit-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.brand-kit-status {
    font-size: 10px;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-kit-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.brand-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.brand-font-sample {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-secondary);
    padding-left: 8px;
}

.brand-kit-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-item-check {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.08);
    color: var(--accent-green);
    font-weight: 500;
}

.brand-item-check::before {
    content: '\2713 ';
}

/* ===== Built for You Section ===== */
/* ===== Built For You — Sidebar + Video ===== */
.built-for-you-section {
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Header — left-aligned like Clueso */
.bfy-header {
    margin-bottom: 48px;
}

.bfy-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: rgb(23, 23, 23);
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.bfy-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgb(92, 92, 92);
    line-height: 1.5;
}

/* Main layout container */
.bfy-content {
    width: 100%;
}

.bfy-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

/* Sidebar */
.bfy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    width: auto;
    padding-top: 4px;
}

.bfy-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 16px 16px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgb(92, 92, 92);
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    white-space: nowrap;
}

.bfy-nav-item svg {
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.2s ease;
}

.bfy-nav-item:hover {
    color: rgb(28, 28, 28);
    background: rgba(247, 247, 247, 0.6);
}

.bfy-nav-item:hover svg {
    opacity: 0.7;
}

.bfy-nav-item.active {
    color: rgb(23, 23, 23);
    background: rgb(247, 247, 247);
    border-color: rgb(235, 235, 235);
    font-weight: 600;
}

.bfy-nav-item.active svg {
    opacity: 1;
    color: rgb(23, 23, 23);
}

/* Video area — takes remaining space */
.bfy-video-area {
    flex: 1;
    min-width: 0;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

/* Panels */
.bfy-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.bfy-panel.active {
    opacity: 1;
    pointer-events: auto;
}

/* Video embed — responsive 16:9 */
.bfy-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bfy-video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .bfy-layout {
        flex-direction: column;
        gap: 16px;
    }

    .bfy-sidebar {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        width: 100%;
        padding: 0 0 4px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bfy-sidebar::-webkit-scrollbar {
        display: none;
    }

    .bfy-nav-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .bfy-nav-item svg {
        display: none;
    }

    .bfy-video-area {
        width: 100%;
    }

    .bfy-title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .built-for-you-section {
        padding: 60px 16px;
    }

    .bfy-title {
        font-size: 28px;
    }

    .bfy-subtitle {
        font-size: 15px;
    }
}

/* ===== Final CTA Section ===== */
/* ── Final CTA Card ── */
.final-cta-section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
}

.final-cta-card {
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e0daf0 0%, #d8d0ec 40%, #cfc6e8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 380px;
}

.final-cta-copy {
    flex: 1;
    padding: 64px 56px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 44px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.final-cta-title .title-italic {
    color: var(--accent-blue);
}

.final-cta-subtitle {
    font-size: 17px;
    color: #3a3a5c;
    margin-bottom: 36px;
    line-height: 1.55;
    max-width: 380px;
}

.final-cta-buttons {
    display: flex;
    margin-bottom: 14px;
}

.final-cta-btn.btn-primary {
    background: #1a1a2e;
}

.final-cta-btn.btn-primary:hover {
    background: var(--accent-blue);
}

.final-cta-micro {
    font-size: 13px;
    color: #5a5a7a;
}

/* Illustration side */
.final-cta-illustration {
    flex: 0 0 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 20px 24px 20px 0;
}

.final-cta-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(64, 67, 255, 0.15));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-card:hover .final-cta-image {
    transform: translateY(-6px) rotate(2deg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .final-cta-card {
        flex-direction: column;
        min-height: auto;
    }

    .final-cta-copy {
        padding: 48px 40px 32px;
        text-align: center;
    }

    .final-cta-subtitle {
        max-width: 100%;
    }

    .final-cta-buttons {
        justify-content: center;
    }

    .final-cta-micro {
        text-align: center;
    }

    .final-cta-illustration {
        flex: none;
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .final-cta-section {
        padding: 48px 16px;
    }

    .final-cta-card {
        border-radius: 20px;
    }

    .final-cta-copy {
        padding: 36px 28px 24px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-subtitle {
        font-size: 15px;
    }

    .final-cta-illustration {
        height: 220px;
    }
}

/* ============================================================
   INNER PAGES — Blog, Blog Single, Demo Catalog
   ============================================================ */

/* ===== Page Hero (compact hero for inner pages) ===== */
.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 140px 20px 60px;
    text-align: center;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.page-title {
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-family: "Instrument Sans", sans-serif;
    font-size: 58px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    max-width: 700px;
}

.page-hero .section-subtitle {
    max-width: 520px;
}

/* ===== Filter Chips ===== */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background-color: rgb(246, 246, 246);
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.02),
        0px 10px 10px 0px rgba(28, 28, 28, 0.06);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(84, 84, 84);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-chip:hover {
    color: rgb(28, 28, 28);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.1);
}

.filter-chip.active {
    background: rgb(28, 28, 28);
    color: rgb(255, 255, 255);
    border-color: rgb(28, 28, 28);
    box-shadow:
        rgba(255, 255, 255, 0.1) 0px 0px 12px 1px inset,
        rgba(0, 0, 0, 0.12) 0px 2px 8px 0px;
}

/* ===== Page Content Section ===== */
.page-content-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ===== Blog Featured Card ===== */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 48px;
    text-decoration: none;
    color: inherit;
}

.blog-featured-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0px 1px 1px 0px rgba(28, 28, 28, 0.02),
        0px 4px 4px 0px rgba(28, 28, 28, 0.05),
        0px 16px 24px 0px rgba(28, 28, 28, 0.12);
}

.blog-featured-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8ff 0%, #d4d5ff 40%, #c0c2ff 100%);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.03);
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 36px;
    gap: 14px;
}

.blog-featured-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text-primary);
}

.blog-featured-excerpt {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== Blog Card Grid ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0px 1px 1px 0px rgba(28, 28, 28, 0.02),
        0px 4px 4px 0px rgba(28, 28, 28, 0.05),
        0px 16px 24px 0px rgba(28, 28, 28, 0.12);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8ff 0%, #d4d5ff 40%, #c0c2ff 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 24px;
}

.blog-card-category {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 10px;
    background-color: rgb(246, 246, 246);
    border-radius: 20px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgb(84, 84, 84);
    letter-spacing: 0.02em;
}

.blog-card-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
}

.blog-card-excerpt {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Demo Catalog Grid ===== */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.demo-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.demo-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0px 1px 1px 0px rgba(28, 28, 28, 0.02),
        0px 4px 4px 0px rgba(28, 28, 28, 0.05),
        0px 16px 24px 0px rgba(28, 28, 28, 0.12);
}

.demo-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.demo-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-card:hover .demo-card-thumbnail img {
    transform: scale(1.04);
}

.demo-card-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-card:hover .demo-card-play-overlay {
    opacity: 1;
}

.demo-card-play-overlay svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-card:hover .demo-card-play-overlay svg {
    transform: scale(1.1);
}

.demo-card-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

.demo-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px 22px;
}

.demo-card-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 10px;
    background-color: rgb(246, 246, 246);
    border-radius: 20px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgb(84, 84, 84);
    letter-spacing: 0.02em;
}

.demo-card-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
}

.demo-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ===== Page CTA Section ===== */
.page-cta-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.page-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 64px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
}

.page-cta-card h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-cta-card p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 440px;
}

/* ===== Blog Card Author ===== */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-author-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #6366f1 100%);
    flex-shrink: 0;
}

.blog-card-author span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* ===== Article Header (full-width above 3-col layout) ===== */
.article-header-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 140px 20px 0;
}

/* ===== 3-Column Article Layout ===== */
.article-layout {
    display: grid;
    grid-template-columns: 200px 1fr 220px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    align-items: start;
}

/* ===== Article Layout (Blog Single) ===== */
.article-container {
    width: 100%;
    max-width: 720px;
    margin: 0;
    padding: 0;
}

/* ===== Left Sidebar: Table of Contents ===== */
.article-sidebar-left {
    position: sticky;
    top: 100px;
}

.toc-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toc-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.toc-link.active {
    color: var(--accent-blue);
    border-left-color: var(--accent-blue);
    font-weight: 500;
    background: rgba(64, 67, 255, 0.04);
}

/* ===== Right Sidebar: CTA Card ===== */
.article-sidebar-right {
    position: sticky;
    top: 100px;
}

.sidebar-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
}

.sidebar-cta-illustration {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, #e0daf0 0%, #d8d0ec 40%, #cfc6e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-cta-image {
    width: 80%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(64, 67, 255, 0.12));
}

.sidebar-cta-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text-primary);
}

.sidebar-cta-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
}

.sidebar-cta-btn {
    width: 100%;
    height: 42px;
    font-size: 14px;
    border-radius: var(--radius-md);
}

.sidebar-cta-btn .btn-text-hidden {
    font-size: 14px;
}

.sidebar-cta-btn .rolling-text span {
    font-size: 14px;
}

.sidebar-cta-micro {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: color 0.2s ease;
}

.article-back-link:hover {
    color: var(--accent-blue);
}

.article-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.article-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #6366f1 100%);
}

.article-author span {
    font-weight: 500;
    color: var(--text-primary);
}

.article-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #e8e8ff 0%, #d4d5ff 40%, #c0c2ff 100%);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Article Body Prose Typography ===== */
.article-body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: rgb(38, 38, 38);
}

.article-body > * + * {
    margin-top: 1.5em;
}

.article-body h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 2.5em;
}

.article-body h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
    color: var(--text-primary);
    margin-top: 2em;
}

.article-body p {
    margin-top: 1.25em;
}

.article-body strong {
    font-weight: 600;
    color: var(--text-primary);
}

.article-body a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: rgb(30, 33, 200);
}

.article-body blockquote {
    border-left: 3px solid var(--accent-blue);
    padding: 16px 24px;
    margin: 2em 0;
    background: rgba(64, 67, 255, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-body blockquote p {
    margin-top: 0;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5em;
}

.article-body li {
    margin-top: 0.5em;
}

.article-body li::marker {
    color: var(--text-muted);
}

.article-body img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 2em 0;
}

.article-body pre {
    background: rgb(28, 28, 28);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    overflow-x: auto;
    margin: 2em 0;
}

.article-body code {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    line-height: 1.6;
}

.article-body pre code {
    color: rgb(220, 220, 220);
}

.article-body :not(pre) > code {
    background: rgb(240, 240, 240);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--text-primary);
}

/* ===== Article CTA ===== */
.article-cta {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.article-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 52px 36px;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    color: #fff;
}

.article-cta-card h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.article-cta-card p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

.article-cta-card .btn-primary {
    margin-top: 8px;
}

/* ===== Related Posts ===== */
.related-posts {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 96px;
}

.related-posts-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background-image: linear-gradient(0deg, rgb(18, 18, 18) 0%, rgba(18, 18, 18, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 36px;
}

/* ===== Filter hide/show animation ===== */
.blog-card.filter-hidden,
.demo-card.filter-hidden,
.blog-featured-card.filter-hidden {
    display: none;
}

/* ===== Inner Pages — Responsive ===== */
@media (max-width: 1024px) {
    .page-title {
        font-size: 48px;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 28px 28px 32px;
    }

    .blog-featured-title {
        font-size: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 36px;
    }

    /* Collapse to 2-column: hide left sidebar */
    .article-layout {
        grid-template-columns: 1fr 220px;
        max-width: 960px;
    }

    .article-sidebar-left {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 40px;
    }

    .page-title {
        font-size: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 24px 20px 28px;
    }

    .blog-featured-title {
        font-size: 22px;
    }

    .article-header-wrap {
        padding: 120px 20px 0;
    }

    /* Collapse to single column: hide both sidebars */
    .article-layout {
        grid-template-columns: 1fr;
        padding: 32px 20px 40px;
        gap: 0;
    }

    .article-sidebar-left {
        display: none;
    }

    .article-sidebar-right {
        display: none;
    }

    .article-title {
        font-size: 30px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 24px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .page-cta-card {
        padding: 48px 24px;
    }

    .page-cta-card h2 {
        font-size: 28px;
    }

    .article-cta-card {
        padding: 40px 24px;
    }

    .article-cta-card h2 {
        font-size: 26px;
    }

    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 110px 16px 32px;
    }

    .page-title {
        font-size: 34px;
    }

    .page-hero .section-subtitle {
        font-size: 16px;
    }

    .filter-bar {
        gap: 6px;
        margin-bottom: 32px;
    }

    .filter-chip {
        padding: 6px 14px;
        font-size: 13px;
    }

    .blog-card-content {
        padding: 18px 18px 20px;
    }

    .demo-card-content {
        padding: 16px 18px 20px;
    }

    .article-header-wrap {
        padding: 100px 16px 0;
    }

    .article-layout {
        padding: 24px 16px 32px;
    }

    .article-title {
        font-size: 26px;
    }

    .article-featured-image {
        border-radius: var(--radius-md);
        margin-bottom: 32px;
    }

    .page-cta-card h2 {
        font-size: 24px;
    }

    .related-posts-title {
        font-size: 26px;
    }
}

/* ===== Author Bio (Blog Post) ===== */
.author-bio {
    display: flex;
    gap: 20px;
    padding: 36px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 56px;
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #6366f1 100%);
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-bio-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-bio-name {
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.author-bio-role {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.author-bio-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 10px;
}

.author-bio-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.author-bio-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgb(246, 246, 246);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.author-bio-socials a:hover {
    background: rgb(234, 234, 234);
    color: var(--text-primary);
}

/* ===== Demo Detail Page ===== */
.demo-detail-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.demo-detail-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.demo-detail-play-btn:hover {
    background: rgba(0, 0, 0, 0.35);
}

.demo-detail-play-btn svg {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-detail-play-btn:hover svg {
    transform: scale(1.08);
}

.demo-detail-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

/* Demo Info Sidebar */
.demo-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-info-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.demo-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.demo-info-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.demo-info-value {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.demo-info-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.demo-info-link:hover {
    color: rgb(30, 33, 200);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== Responsive — Author Bio ===== */
@media (max-width: 600px) {
    .author-bio {
        flex-direction: column;
        gap: 16px;
    }

    .author-bio-avatar {
        width: 56px;
        height: 56px;
    }
}

/* ============================================================
   LEGAL PAGES — Privacy Policy, Terms of Use
   ============================================================ */
.legal-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 96px;
}

.legal-content .article-body {
    margin-top: 0;
}

.legal-content .article-body h2 {
    margin-top: 2em;
}

.legal-content .article-body h2:first-child {
    margin-top: 0;
}

.legal-last-updated {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 48px 36px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow:
        0px 0.6px 0.6px 0px rgba(28, 28, 28, 0.01),
        0px 2.29px 2.29px 0px rgba(28, 28, 28, 0.03),
        0px 10px 10px 0px rgba(28, 28, 28, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-card h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
}

.contact-card p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 400px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgb(28, 28, 28);
    color: #fff;
    border-radius: 27px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow:
        rgba(255, 255, 255, 0.1) 0px 0px 12px 1px inset,
        rgba(0, 0, 0, 0.12) 0px 2px 8px 0px;
}

.contact-email-link:hover {
    background: rgb(50, 50, 50);
    transform: translateY(-1px);
    box-shadow:
        rgba(255, 255, 255, 0.1) 0px 0px 12px 1px inset,
        rgba(0, 0, 0, 0.18) 0px 4px 12px 0px;
}

.contact-email-link svg {
    flex-shrink: 0;
}

/* Contact page FAQ spacing */
.contact-faq {
    padding-top: 20px;
}

@media (max-width: 600px) {
    .contact-card {
        padding: 36px 24px;
    }

    .contact-card h2 {
        font-size: 20px;
    }
}