.plugin-outer.new-cognitive-clarity-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.plugin-outer.new-cognitive-clarity-wrapper {
    /* Mapped to current variables used in page */
    --primary: #023c96;
    --secondary: #8e8f94;
    --white: #FFFFFF;
    --bg-light: #f5f8fc;
    --accent: #0f52b8;
    --font-family: 'Inter', sans-serif;
    --bg-base: #FFFFFF;
    --bg-surface: #f5f8fc;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --accent-glow: rgba(2, 60, 150, 0.05);
    --text-main: #333333;
    --text-muted: #555555;
    --border-glow: rgba(2, 60, 150, 0.2);

    font-family: var(--font-family);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: clip; 
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Typography */
.plugin-outer.new-cognitive-clarity-wrapper h1,
.plugin-outer.new-cognitive-clarity-wrapper h2,
.plugin-outer.new-cognitive-clarity-wrapper h3,
.plugin-outer.new-cognitive-clarity-wrapper h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.plugin-outer.new-cognitive-clarity-wrapper h2.gradient-text,
.plugin-outer.new-cognitive-clarity-wrapper h3.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.plugin-outer.new-cognitive-clarity-wrapper p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.plugin-outer.new-cognitive-clarity-wrapper strong {
    color: var(--primary);
    font-weight: 800;
}

/* Background Effects */
.plugin-outer.new-cognitive-clarity-wrapper .ambient-glow {
    position: absolute;
    top: -10vw;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.plugin-outer.new-cognitive-clarity-wrapper .ambient-glow.right {
    top: auto;
    bottom: -10vw;
    left: auto;
    right: -10vw;
    background: radial-gradient(circle, rgba(15, 82, 184, 0.03) 0%, transparent 60%);
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 5vw) scale(1.1); }
    100% { transform: translate(-5vw, 10vw) scale(0.9); }
}

/* Layout */
.plugin-outer.new-cognitive-clarity-wrapper .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.plugin-outer.new-cognitive-clarity-wrapper .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--white) 100%);
    overflow: hidden;
    perspective: 1000px;
}

.plugin-outer.new-cognitive-clarity-wrapper .hero-grid-bg {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(2, 60, 150, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(2, 60, 150, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    transform-origin: bottom center;
    transform: perspective(600px) rotateX(75deg);
    z-index: 0;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    animation: gridMove 10s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(600px) rotateX(75deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(75deg) translateY(60px); }
}

.plugin-outer.new-cognitive-clarity-wrapper .hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2, 60, 150, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.plugin-outer.new-cognitive-clarity-wrapper .hero-content {
    max-width: 900px;
    z-index: 10;
}

.plugin-outer.new-cognitive-clarity-wrapper .badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(2, 60, 150, 0.05);
    border: 1px solid rgba(2, 60, 150, 0.25);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(2, 60, 150, 0.05);
    animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    from { box-shadow: 0 0 10px rgba(2, 60, 150, 0.02); }
    to { box-shadow: 0 0 25px rgba(2, 60, 150, 0.1); }
}

.plugin-outer.new-cognitive-clarity-wrapper .hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plugin-outer.new-cognitive-clarity-wrapper .hero .intro-text {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Content Sections */
.plugin-outer.new-cognitive-clarity-wrapper .section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.plugin-outer.new-cognitive-clarity-wrapper .section-split.reverse {
    direction: rtl;
}

.plugin-outer.new-cognitive-clarity-wrapper .section-split.reverse>* {
    direction: ltr;
}

.plugin-outer.new-cognitive-clarity-wrapper .content-box {
    padding-right: 2rem;
}

.plugin-outer.new-cognitive-clarity-wrapper .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.plugin-outer.new-cognitive-clarity-wrapper .visual-box {
    position: relative;
    background: linear-gradient(145deg, var(--bg-surface), var(--white));
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(2, 60, 150, 0.3);
    box-shadow: 0 15px 35px rgba(2, 60, 150, 0.05);
    overflow: hidden;
    z-index: 1;
}

.plugin-outer.new-cognitive-clarity-wrapper .visual-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(2, 60, 150, 0.03) 0%, transparent 50%);
    animation: rotateBG 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes rotateBG {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.plugin-outer.new-cognitive-clarity-wrapper .list-items {
    list-style: none;
    margin-top: 2rem;
}

.plugin-outer.new-cognitive-clarity-wrapper .list-items li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 400;
}

.plugin-outer.new-cognitive-clarity-wrapper .list-items li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-weight: 800;
}

/* Quotes / Highlights */
.plugin-outer.new-cognitive-clarity-wrapper .highlight-quote {
    background: rgba(2, 60, 150, 0.03);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* Grid Layouts */
.plugin-outer.new-cognitive-clarity-wrapper .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.plugin-outer.new-cognitive-clarity-wrapper .feature-card {
    background: var(--white);
    border: 1px solid rgba(2, 60, 150, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(2, 60, 150, 0.02);
    position: relative;
    z-index: 1;
}

.plugin-outer.new-cognitive-clarity-wrapper .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(2, 60, 150, 0.03), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plugin-outer.new-cognitive-clarity-wrapper .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 60, 150, 0.08);
    border-color: rgba(2, 60, 150, 0.15);
}

.plugin-outer.new-cognitive-clarity-wrapper .feature-card:hover::before {
    opacity: 1;
}

.plugin-outer.new-cognitive-clarity-wrapper .feature-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Intersection Observer Animation Classes */
.plugin-outer.new-cognitive-clarity-wrapper .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.plugin-outer.new-cognitive-clarity-wrapper .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .plugin-outer.new-cognitive-clarity-wrapper .section-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .plugin-outer.new-cognitive-clarity-wrapper .section-split.reverse {
        direction: ltr;
    }

    .plugin-outer.new-cognitive-clarity-wrapper .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .plugin-outer.new-cognitive-clarity-wrapper .content-box {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .plugin-outer.new-cognitive-clarity-wrapper .grid-3 {
        grid-template-columns: 1fr;
    }

    .plugin-outer.new-cognitive-clarity-wrapper .container {
        padding: 4rem 1.5rem;
    }

    .plugin-outer.new-cognitive-clarity-wrapper .hero {
        padding-top: 6rem;
    }
}
