@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --text-pure: #ededed;
    --text-dim: #777777;
    --text-dark: #333333;
    --accent: #ff6b2b;
    --accent-red: #ff2d55;
    --accent-amber: #ff9500;
    --accent-glow: rgba(255, 107, 43, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
}

/* ===================== CURSORS ===================== */
.cursor-dot {
    width: 6px;
    height: 6px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 0 6px rgba(255, 107, 43, 0.9),
        0 0 20px rgba(255, 107, 43, 0.4),
        0 0 40px rgba(255, 107, 43, 0.15);
    transition: width 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s,
                box-shadow 0.3s;
}

.cursor-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.6) 0%, transparent 70%);
    animation: cursorPulse 2s ease-in-out infinite;
}

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

.cursor-outline {
    width: 44px;
    height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    border: none;
    background: conic-gradient(
        from 0deg,
        rgba(255, 107, 43, 0.5),
        rgba(255, 45, 85, 0.3),
        rgba(255, 149, 0, 0.5),
        rgba(255, 107, 43, 0.1),
        transparent,
        rgba(255, 107, 43, 0.5)
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
    animation: cursorSpin 4s linear infinite;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s;
}

@keyframes cursorSpin {
    0% { rotate: 0deg; }
    100% { rotate: 360deg; }
}

/* Hover states for interactive elements */
.cursor-dot.cursor-hover {
    width: 12px;
    height: 12px;
    background: var(--accent);
    box-shadow:
        0 0 12px rgba(255, 107, 43, 1),
        0 0 30px rgba(255, 107, 43, 0.6),
        0 0 60px rgba(255, 107, 43, 0.2);
}

.cursor-outline.cursor-hover {
    width: 64px;
    height: 64px;
    opacity: 0.7;
}

/* Trail canvas */
#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

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

ul {
    list-style: none;
}

/* ===================== TYPOGRAPHY ===================== */
.h-giant {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.h-large {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.h-medium {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
}

.t-lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-dim);
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* Animated Gradient — warm multi-color: orange → coral → amber */
.text-gradient {
    background: linear-gradient(90deg,
            var(--accent-amber) 0%,
            var(--accent) 25%,
            var(--accent-red) 50%,
            var(--accent) 75%,
            var(--accent-amber) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s ease infinite;
}

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

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* ===================== HERO AURORA MESH ===================== */
/* A single, very subtle aurora mesh glow behind hero text. Inspired by Linear.app */
.hero-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-aurora::before,
.hero-aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: auroraDrift 20s ease-in-out infinite alternate;
}

.hero-aurora::before {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -15%;
    left: 20%;
}

.hero-aurora::after {
    width: 500px;
    height: 500px;
    background: var(--accent-red);
    bottom: -10%;
    right: 15%;
    animation-delay: -10s;
    animation-direction: alternate-reverse;
}

@keyframes auroraDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

/* ===================== NAVIGATION ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===================== BUTTON ===================== */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text-pure);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.btn-magnetic .btn-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    aspect-ratio: 1;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-magnetic:hover {
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-magnetic:hover .btn-fill {
    transform: translate(-50%, -50%) scale(1);
}

/* ===================== LAYOUT ===================== */
.section {
    position: relative;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* ===================== HERO ===================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-subtitle span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.hero-title .line {
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.hero-title .line span {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
}

.hero-bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ===================== STORY SCROLL ===================== */
.story-wrap {
    position: relative;
}

.story-sticky {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.story-texts {
    width: 50%;
    padding-left: 10vw;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-step {
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto 0;
    opacity: 0;
    max-width: 500px;
}

.story-step p {
    margin-top: 20px;
}

.story-visuals {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img {
    width: 55%;
    aspect-ratio: 1;
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease;
    overflow: hidden;
}

/* Subtle accent glow on the active story card */
.story-img.active-glow {
    box-shadow: 0 30px 80px rgba(255, 107, 43, 0.15), 0 0 0 1px rgba(255, 107, 43, 0.2);
}

.story-img-content {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-top: 20px;
}

/* ===================== FEATURES ===================== */
.deep-dives {
    padding: 150px 0;
}

.deep-dives-header {
    text-align: center;
    margin-bottom: 120px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 200px;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-info {
    width: 45%;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 107, 43, 0.25);
    line-height: 1;
    margin-bottom: 20px;
}

.feature-info h3 {
    margin-bottom: 30px;
}

.feature-info p {
    margin-bottom: 40px;
}

.feature-visual {
    width: 45%;
    position: relative;
}

.feature-card-abstract {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #0d0d0d 0%, #050505 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.feature-card-abstract:hover {
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 43, 0.08);
}

/* Subtle grid pattern inside feature cards */
.feature-card-abstract::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

/* Animated scan line */
.feature-card-abstract::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 43, 0.03) 50%, transparent 100%);
    animation: scanLine 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: -100%;
    }
}

/* Ensure mockup content sits above backgrounds */
.mock-sidepanel,
.mock-providers,
.mock-templates,
.mock-thread {
    position: relative;
    z-index: 1;
}

.abstract-shape {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 43, 0.3), transparent);
    animation: morph 10s ease-in-out infinite both alternate;
    filter: blur(25px);
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(20deg) scale(1.1);
    }

    100% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: rotate(45deg) scale(1);
    }
}

.feature-ui-element {
    z-index: 2;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    width: 80%;
}

.ui-skeleton-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    background: var(--text-dark);
}

/* ===================== READ-MORE LINK ===================== */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    color: var(--accent);
}

.read-more-link svg {
    transition: transform 0.3s;
}

.read-more-link:hover {
    border-bottom-color: var(--accent);
}

.read-more-link:hover svg {
    transform: translateX(5px);
}

/* ===================== POLICY SECTION ===================== */
.policy-item {
    border-top: 1px solid var(--border-subtle);
    padding-top: 30px;
    transition: border-color 0.3s ease;
}

.policy-item:hover {
    border-top-color: rgba(94, 106, 210, 0.4);
}

/* ===================== PRICING ===================== */
.pricing {
    padding: 150px 0;
    position: relative;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    margin-top: 80px;
}

.price-card {
    flex: 1;
    padding: 60px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.price-card.pro {
    border-color: rgba(255, 107, 43, 0.2);
    background: linear-gradient(to bottom, #120a05, #080503);
    position: relative;
    overflow: hidden;
}

/* Subtle accent stripe at top of Pro card */
.price-card.pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-amber), var(--accent), var(--accent-red), transparent);
    animation: proStripe 4s ease-in-out infinite;
}

@keyframes proStripe {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.price-card.pro:hover {
    border-color: rgba(255, 107, 43, 0.5);
    box-shadow: 0 20px 60px rgba(255, 107, 43, 0.1);
}

.price-price {
    margin: 30px 0;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.price-list {
    margin-top: 40px;
    margin-bottom: 50px;
    flex-grow: 1;
}

.price-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-list li:last-child {
    border-bottom: none;
}

/* ===================== REVEAL ===================== */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
}

/* ===================== FOOTER ===================== */
.footer-big {
    padding: 150px 0 50px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.footer-cta {
    text-align: center;
    margin-bottom: 150px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-dim);
}

.footer-links a {
    margin-left: 30px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-pure);
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .story-sticky {
        flex-direction: column;
    }

    .story-texts,
    .story-visuals {
        width: 100%;
        padding: 0 5vw;
    }

    .story-visuals {
        height: 50vh;
    }

    .story-texts {
        height: 50vh;
        align-items: center;
        text-align: center;
    }

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .feature-info,
    .feature-visual {
        width: 100%;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .navbar {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-aurora::before,
    .hero-aurora::after {
        opacity: 0.08;
    }
}

/* ===================== RICH MOCKUP UI ===================== */

/* --- Story Cards Enhanced --- */
.story-img {
    gap: 0;
    padding: 0;
    overflow: hidden;
}

/* Animated gradient backgrounds for story cards */
.story-img.img-1 {
    background: radial-gradient(ellipse at 30% 80%, rgba(255, 107, 43, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(255, 45, 85, 0.08) 0%, transparent 50%),
        var(--bg-card);
}

.story-img.img-2 {
    background: radial-gradient(ellipse at 50% 70%, rgba(255, 45, 85, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 30%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
        var(--bg-card);
}

.story-img.img-3 {
    background: radial-gradient(ellipse at 40% 60%, rgba(255, 149, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 43, 0.08) 0%, transparent 50%),
        var(--bg-card);
}

/* Floating glow orb behind story card content */
.story-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatOrb 8s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.story-img.img-1::before {
    top: 10%;
    left: 10%;
}

.story-img.img-2::before {
    bottom: 15%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.15) 0%, transparent 70%);
}

.story-img.img-3::before {
    top: 5%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.15) 0%, transparent 70%);
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -10px) scale(1.15);
    }

    100% {
        transform: translate(-10px, 8px) scale(0.9);
    }
}

/* Grid pattern overlay on story cards */
.story-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* All mock content above the backgrounds */
.mock-tweet,
.mock-providers,
.mock-popup {
    position: relative;
    z-index: 1;
}

.mock-tweet {
    width: 100%;
    padding: 20px;
    text-align: left;
}

.mock-tweet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mock-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
}

.mock-handle {
    font-size: 0.75rem;
    color: #555;
}

.mock-text {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mock-metrics {
    display: flex;
    gap: 14px;
    font-size: 0.7rem;
    color: #666;
}

.mock-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 107, 43, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 10px;
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 43, 0.3);
    }

    50% {
        box-shadow: 0 0 12px 4px rgba(255, 107, 43, 0.15);
    }
}

.mock-providers {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-provider-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mock-chip {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    transition: all 0.3s;
}

.mock-chip.active {
    background: rgba(255, 107, 43, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

.mock-iframe-preview {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mock-typing {
    display: flex;
    gap: 4px;
    align-items: center;
}

.mock-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: typingDot 1.4s ease-in-out infinite;
}

.mock-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.mock-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --- Reply Popup Mockup --- */
.mock-popup {
    width: 100%;
    padding: 16px;
}

.mock-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px 10px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    font-size: 0.75rem;
    color: #ccc;
    font-family: var(--font-heading);
    font-weight: 600;
}

.mock-reply-option {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    font-size: 0.72rem;
    color: #aaa;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: default;
    transition: background 0.2s;
}

.mock-reply-option:last-child {
    border-radius: 0 0 10px 10px;
}

.mock-reply-option:hover {
    background: rgba(255, 107, 43, 0.05);
}

.mock-reply-num {
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

/* --- Template Pills Mockup --- */
.mock-templates {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-template-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.mock-pill {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    transition: all 0.3s;
}

.mock-pill.active {
    background: rgba(255, 107, 43, 0.15);
    border-color: rgba(255, 107, 43, 0.4);
    color: var(--accent);
}

.mock-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
}

.mock-setting {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.75rem;
    color: #666;
}

.mock-setting-label {
    font-size: 0.65rem;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.mock-setting-value {
    color: #bbb;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Thread Context Mockup --- */
.mock-thread {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mock-thread-node {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    position: relative;
}

.mock-thread-node::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: -2px;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.mock-thread-node:last-child::before {
    display: none;
}

.mock-thread-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin-top: 4px;
    margin-left: 10px;
}

.mock-thread-node.focal .mock-thread-dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(255, 107, 43, 0.4);
}

.mock-thread-content {
    flex: 1;
}

.mock-thread-label {
    font-size: 0.6rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.mock-thread-text {
    font-size: 0.72rem;
    color: #999;
    line-height: 1.4;
}

.mock-thread-node.focal .mock-thread-label {
    color: var(--accent);
}

.mock-thread-node.focal .mock-thread-text {
    color: #ccc;
}

/* --- Side Panel Mockup --- */
.mock-sidepanel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
}

.mock-sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-sp-logo {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1px;
}

.mock-sp-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255, 107, 43, 0.2);
    color: var(--accent);
}

.mock-sp-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-sp-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    font-family: var(--font-heading);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.mock-sp-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.mock-sp-body {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

.mock-sp-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 10px;
}

.mock-sp-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.mock-sp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
}

.mock-sp-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.mock-sp-card-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    font-weight: 600;
    font-family: var(--font-heading);
}

.mock-sp-card-name {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
}

.mock-sp-card-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
}

.mock-sp-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.mock-sp-card-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(255, 107, 43, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 107, 43, 0.2);
}

.mock-sp-card-btn.ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #888;
    border-color: rgba(255, 255, 255, 0.08);
}