:root {
    --bg-color: #050713;
    --text-color: #FFFFFF;
    --text-muted: #AAB1C8;
    --accent-green: #DFFF00;
    --accent-cyan: #24E8FF;
    --accent-blue: #3D7BFF;
    --accent-purple: #8B5CFF;
    --accent-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 46%, var(--accent-purple) 100%);
    --surface-1: #0B1020;
    --surface-2: #11172A;
    --border-color: rgba(96, 202, 255, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: 'Inter', -apple-system, sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
body { overflow-x: hidden; transition: opacity 0.3s; }

body.lang-en .lang-it { display: none !important; }
body.lang-it .lang-en { display: none !important; }

.page-loader { position: fixed; inset: 0; background: var(--bg-color); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease; }
.page-loader.hide { opacity: 0; pointer-events: none; }

h1, h2, h3, .logo { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.5rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.large-text { font-size: 1.5rem; color: var(--text-color); }
.highlight { color: var(--accent-green); }
.highlight-gradient { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; border-radius: 10px; }
.brand-gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(36, 232, 255, 0.22));
}
.section-kicker,
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(223, 255, 0, 0.08);
    border: 1px solid rgba(223, 255, 0, 0.25);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.section-kicker.text-center {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.section-intro {
    max-width: 860px;
    margin: 0 auto 3rem;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.bg-darker { background: #050505; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary { display: inline-block; background-color: var(--accent-green); color: #000; font-weight: 800; text-decoration: none; padding: 1.2rem 2.5rem; border-radius: 50px; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 4px 20px rgba(223, 255, 0, 0.25); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px rgba(223, 255, 0, 0.4); }
.btn-small { border: 1px solid var(--accent-green); color: var(--accent-green); text-decoration: none; padding: 0.6rem 1.2rem; border-radius: 30px; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-small:hover { background: var(--accent-green); color: #000; }
.btn-large { font-size: 1.25rem; padding: 1.25rem 3rem; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; position: fixed; top: 0; width: 100%; background: rgba(11, 11, 11, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); z-index: 1000; }
.logo { font-weight: 900; font-size: 1.25rem; letter-spacing: 0.1em; margin-bottom: 0; display: inline-flex; align-items: center; }
.logo span { color: var(--accent-green); }
.brand-mark {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}
.brand-wordmark {
    width: min(280px, 34vw);
    height: auto;
    max-height: 46px;
}
.brand-logo-full {
    display: block;
    width: min(420px, 82vw);
    height: auto;
    border-radius: 8px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-color); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; letter-spacing: 0.05em; }
.nav-links a:hover { color: var(--accent-green); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch { display: flex; gap: 0.5rem; background: var(--surface-2); padding: 5px; border-radius: 20px; border: 1px solid var(--border-color); }
.lang-btn { background: none; border: none; font-size: 1.3rem; padding: 0.2rem 0.6rem; cursor: pointer; border-radius: 15px; opacity: 0.5; transition: 0.3s; filter: grayscale(100%); }
.lang-btn.active { opacity: 1; filter: grayscale(0%); background: rgba(255,255,255,0.1); }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 8.2rem;
    padding-bottom: 5.2rem;
    min-height: auto;
    display: flex;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(36, 232, 255, 0.08), transparent 38%),
        radial-gradient(circle at 82% 24%, rgba(139, 92, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #060915 0%, #050713 100%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 4.8rem 0 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 5.5rem 5.5rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 80%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 1.05fr);
    grid-template-areas:
        "text visual"
        "support support";
    gap: 2.25rem 4rem;
    align-items: center;
    text-align: left;
}
.hero-text { grid-area: text; max-width: 45rem; margin: 0; }
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.hero-meta-row .hero-eyebrow {
    margin-bottom: 0;
}
.hero-countdown-bar {
    display: inline-grid;
    justify-items: center;
    gap: 0.28rem;
    margin: 0;
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 0%, rgba(223, 255, 0, 0.18), transparent 62%),
        linear-gradient(135deg, rgba(36, 232, 255, 0.08), rgba(139, 92, 255, 0.08)),
        rgba(5, 7, 19, 0.72);
    border: 1px solid rgba(223, 255, 0, 0.32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 34px rgba(223, 255, 0, 0.09);
}
.hero-countdown-label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}
.hero-countdown-time {
    color: var(--accent-green);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.9rem;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(223, 255, 0, 0.24);
}
.hero-text h1 {
    max-width: 15.5ch;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 3.45rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}
.subheadline {
    max-width: 35rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.02rem;
    line-height: 1.6;
}
.hero-visual {
    grid-area: visual;
    width: 100%;
    margin: 0;
}
.hero-support {
    grid-area: support;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}
.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}
.hero-action-row .btn-primary {
    padding: 1rem 1.65rem;
    font-size: 1rem;
}
.hero-mini-proof {
    display: grid;
    gap: 0.12rem;
    padding: 0.58rem 0.72rem;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-mini-proof strong {
    color: #fff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0;
}
.hero-mini-proof span {
    max-width: 9.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}
.hero-visual-stage {
    position: relative;
    min-height: 31rem;
    overflow: visible;
}
.hero-visual-stage-home {
    min-height: clamp(30rem, 41vw, 39rem);
    isolation: isolate;
}
.hero-visual-stage-home::before {
    content: '';
    position: absolute;
    inset: 8% 1% 7% 7%;
    z-index: 0;
    border-radius: 34px;
    background:
        radial-gradient(circle at 22% 22%, rgba(36, 232, 255, 0.24), transparent 34%),
        radial-gradient(circle at 82% 30%, rgba(139, 92, 255, 0.24), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(96, 202, 255, 0.14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    opacity: 0.62;
}
.hero-screen-card {
    position: absolute;
    z-index: 3;
    overflow: hidden;
    border-radius: 28px;
}
.hero-screen-main {
    top: 2rem;
    right: 5%;
    width: min(56%, 22rem);
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}
.hero-screen-main-home {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(96%, 36rem);
    max-width: none;
    transform: translate(-50%, -50%);
    animation: homeHeroFloat 7s ease-in-out infinite;
}
.hero-screen-card img,
.problem-visual img,
.product-visual img {
    width: 100%;
    border-radius: 24px;
}
.hero-screen-card img {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 75px rgba(139, 92, 255, 0.16), 0 0 70px rgba(36, 232, 255, 0.15);
}
@keyframes homeHeroFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-14px); }
}
.hero-floating-card,
.hero-metric-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 19, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}
.hero-floating-card {
    top: 2rem;
    left: 1.25rem;
    display: grid;
    gap: 0.18rem;
    width: min(46%, 15rem);
    padding: 1rem;
    border-radius: 22px;
}
.hero-card-kicker {
    color: var(--accent-green);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}
.hero-floating-card strong {
    color: #fff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.12;
    letter-spacing: 0;
}
.hero-floating-card small {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
}
.hero-metric-card {
    right: 1.25rem;
    bottom: 1.25rem;
    display: grid;
    gap: 0.25rem;
    width: min(34%, 12.6rem);
    padding: 1rem;
    border-radius: 22px;
}
.hero-metric-card strong {
    color: var(--accent-green);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.25rem;
    line-height: 0.92;
    letter-spacing: 0;
}
.hero-metric-card span {
    color: #fff;
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1.24;
}
.hero-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}
.hero-benefit-card {
    min-height: 100%;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero-benefit-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    background: rgba(223, 255, 0, 0.1);
    border: 1px solid rgba(223, 255, 0, 0.28);
    color: var(--accent-green);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
}
.hero-benefit-card strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #fff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.15;
    letter-spacing: 0;
}
.hero-benefit-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.46;
}
.hero-support .benefits-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
}
.benefits-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 1.125rem; }
.hero-support .benefits-list li { align-items: flex-start; margin-bottom: 0; text-align: left; line-height: 1.48; }
.hero-support .benefits-list li strong { color: #fff; }
.benefits-list li::before { content: '✓'; color: #000; background: var(--accent-green); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; flex-shrink: 0; }
.social-proof-hero { margin: 0.35rem auto 1.55rem; font-size: 0.95rem; border: 1px dashed var(--accent-green); padding: 1rem; border-radius: 15px; display: inline-block; background: rgba(223, 255, 0, 0.05); }
.social-proof-hero p { margin: 0; color: #fff; }
.hero-note { margin: 1rem 0 0; font-size: 0.98rem; max-width: 40rem; }
.hero-support .hero-note { margin-left: auto; margin-right: auto; }
.hero-proof-row { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 0.75rem; margin-top: 1.25rem; }
.trust-badge-strip {
    display: grid;
    gap: 0.75rem;
}
.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: left;
}
.trust-badge-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(223, 255, 0, 0.08);
    border: 1px solid rgba(223, 255, 0, 0.22);
    color: var(--accent-green);
}
.trust-badge:nth-child(2) .trust-badge-icon {
    background: rgba(36, 232, 255, 0.08);
    border-color: rgba(36, 232, 255, 0.24);
    color: var(--accent-cyan);
}
.trust-badge:nth-child(3) .trust-badge-icon {
    background: rgba(139, 92, 255, 0.1);
    border-color: rgba(139, 92, 255, 0.24);
    color: var(--accent-purple);
}
.trust-badge-icon svg {
    width: 1.24rem;
    height: 1.24rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.trust-badge-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}
.trust-badge > div > strong {
    display: block;
    margin-bottom: 0.18rem;
    color: #fff;
    font-size: 0.95rem;
}
.trust-badge > div > span {
    display: block;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}
.trust-badge-strip-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}
.proof-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.problem-method-graphic {
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(36, 232, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 80px rgba(36, 232, 255, 0.16), 0 0 100px rgba(139, 92, 255, 0.14);
}
.problem-workflow-stack {
    display: grid;
    gap: 1rem;
}
.workflow-tool-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(36, 232, 255, 0.18);
    background:
        radial-gradient(circle at 12% 0%, rgba(223, 255, 0, 0.12), transparent 34%),
        rgba(8, 9, 12, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 70px rgba(36, 232, 255, 0.12);
}
.workflow-tool-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 42%, rgba(0, 0, 0, 0.22));
    pointer-events: none;
}
.workflow-tool-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 255, 0, 0.25);
    background: rgba(5, 5, 7, 0.82);
    color: var(--accent-green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}
.workflow-tool-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6.8;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.04);
}
.workflow-tool-image-contain {
    object-fit: contain;
    padding: 0.85rem;
    background: #020203;
}
.workflow-tool-image-wide {
    object-position: center;
}
.workflow-tool-video {
    background: #000;
}
.floating { animation: float 6s ease-in-out infinite; }
.hero-screen-main-home.floating { animation: homeHeroFloat 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Layouts */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-layout.align-start { align-items: flex-start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Components */
.solution-box { background: var(--surface-1); padding: 4rem; border-radius: 32px; border: 1px solid var(--border-color); text-align: center; position: relative; }
.solution-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent-gradient); }
.solution-features { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.check-list li { margin-bottom: 1.5rem; padding-left: 2.5rem; position: relative; font-size: 1.125rem; }
.check-list li::before { content: '⚡'; position: absolute; left: 0; top: 0; }
.check-list li strong { color: #fff; }
.inside-lead {
    max-width: 43rem;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.65;
}
.inside-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}
.inside-card {
    min-height: 8.5rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(36, 232, 255, 0.14);
    background:
        radial-gradient(circle at 14% 0%, rgba(223, 255, 0, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.04);
}
.inside-card span {
    display: block;
    margin-bottom: 0.45rem;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
}
.inside-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.inside-cta {
    margin-top: 1.6rem;
}

.capcut-module {
    position: relative;
    overflow: hidden;
}
.capcut-module::before {
    content: '';
    position: absolute;
    inset: 8% auto auto 50%;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 232, 255, 0.13), transparent 68%);
    filter: blur(70px);
    pointer-events: none;
    transform: translateX(-50%);
}
.capcut-module-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: 2.4rem;
    align-items: center;
}
.capcut-module-copy {
    max-width: 34rem;
}
.capcut-module-copy .section-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
}
.capcut-module-copy p {
    margin-bottom: 1.4rem;
    line-height: 1.68;
}
.capcut-module-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.capcut-module-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.66rem 0.9rem;
    border-radius: 999px;
    background: rgba(36, 232, 255, 0.08);
    border: 1px solid rgba(36, 232, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}
.capcut-module-frame {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(36, 232, 255, 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44), 0 0 90px rgba(36, 232, 255, 0.13), 0 0 105px rgba(139, 92, 255, 0.12);
}
.capcut-module-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.kling-module {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(36, 232, 255, 0.12), transparent 31%),
        radial-gradient(circle at 84% 82%, rgba(139, 92, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #070811 0%, #050507 100%);
}
.kling-module::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 36%, rgba(36, 232, 255, 0.045));
    pointer-events: none;
}
.kling-module-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    justify-items: center;
    align-items: center;
    text-align: center;
}
.kling-module-copy {
    max-width: 62rem;
    margin: 0 auto;
}
.kling-module-copy .section-title {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 4.2vw, 3.65rem);
}
.kling-module-copy p {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.45rem;
    line-height: 1.7;
}
.kling-module-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    max-width: 50rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.kling-module-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(139, 92, 255, 0.12);
    border: 1px solid rgba(139, 92, 255, 0.28);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.45;
}
.kling-module-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr);
    align-items: center;
    gap: 1rem;
    width: min(100%, 72rem);
    margin: 0 auto;
}
.kling-module-video {
    width: 100%;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(36, 232, 255, 0.13), rgba(139, 92, 255, 0.12)),
        rgba(8, 8, 12, 0.94);
    border-color: rgba(36, 232, 255, 0.18);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 90px rgba(36, 232, 255, 0.12);
}
.kling-module-media {
    aspect-ratio: 1280 / 568;
    background: #050507;
}
.kling-module-video-vertical {
    justify-self: center;
    width: min(100%, 21rem);
}
#kling-motion .kling-module-video-vertical .kling-module-media {
    aspect-ratio: 9 / 16;
}
#kling-motion .kling-module-video .kling-module-media video {
    object-fit: contain;
    transform: none;
    filter: saturate(1.05) contrast(1.03);
}
#kling-motion .kling-module-video-vertical .kling-module-media video {
    object-fit: cover;
    object-position: center;
}
#kling-motion .kling-module-video:hover .kling-module-media video {
    transform: none;
    filter: saturate(1.05) contrast(1.03);
}

.social-ai-lesson {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(36, 232, 255, 0.14), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(223, 255, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #050507 0%, #081018 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.social-ai-lesson::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
    pointer-events: none;
}
.social-ai-lesson-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.social-ai-lesson-copy {
    max-width: 44rem;
}
.social-ai-lesson-copy .section-title {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1.02;
}
.social-ai-lesson-copy p {
    margin-bottom: 1.35rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.72;
}
.social-ai-lesson-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.social-ai-lesson-points > span {
    padding: 0.72rem 0.9rem;
    border-radius: 999px;
    background: rgba(36, 232, 255, 0.09);
    border: 1px solid rgba(36, 232, 255, 0.24);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0;
}
.social-ai-lesson-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}
.social-ai-lesson-card {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(36, 232, 255, 0.12), rgba(223, 255, 0, 0.08)),
        rgba(5, 5, 7, 0.96);
    border-color: rgba(36, 232, 255, 0.18);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48), 0 0 80px rgba(36, 232, 255, 0.12);
    cursor: default;
}
.social-ai-lesson-card:nth-child(2) {
    margin-top: 2.2rem;
}
.social-ai-lesson-card:hover {
    transform: translateY(-4px);
}
.social-ai-lesson-media {
    aspect-ratio: 1244 / 1660;
    background: #050507;
}
.social-ai-lesson-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: saturate(1.05) contrast(1.04);
}
.social-ai-lesson-card:hover .social-ai-lesson-media video {
    transform: none;
    filter: saturate(1.05) contrast(1.04);
}
.social-ai-lesson-caption {
    padding: 1rem;
}
.social-ai-lesson-caption h3 {
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}
.social-ai-lesson-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.5;
}

.ai-reel-proof {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #050507 0%, #0b0f1d 48%, #050507 100%);
}
.ai-reel-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
    pointer-events: none;
}
.ai-reel-proof-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.ai-reel-proof-copy .section-title {
    max-width: 13ch;
    margin-bottom: 1.1rem;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.02;
}
.ai-reel-proof-copy p {
    max-width: 43rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
    line-height: 1.72;
}
.ai-reel-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 1.5rem 0 1.65rem;
}
.ai-reel-proof-stats div {
    min-height: 6.2rem;
    padding: 0.95rem;
    border: 1px solid rgba(36, 232, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}
.ai-reel-proof-stats strong,
.ai-reel-proof-stats span {
    display: block;
}
.ai-reel-proof-stats strong {
    color: #fff;
    font-size: clamp(1.45rem, 2.3vw, 2.1rem);
    line-height: 1;
}
.ai-reel-proof-stats span {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ai-reel-proof-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.ai-reel-proof-cta small {
    max-width: 17rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    line-height: 1.45;
}
.ai-reel-proof-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}
.ai-reel-card {
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(36, 232, 255, 0.11), rgba(223, 255, 0, 0.08)),
        rgba(5, 5, 7, 0.96);
    border-color: rgba(36, 232, 255, 0.18);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46), 0 0 68px rgba(36, 232, 255, 0.1);
    cursor: default;
}
.ai-reel-card:nth-child(2) {
    margin-top: 2.5rem;
}
.ai-reel-card:hover {
    transform: translateY(-4px);
}
.ai-reel-media {
    aspect-ratio: 9 / 16;
    background: #030305;
}
.ai-reel-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: saturate(1.04) contrast(1.04);
}
.ai-reel-card:hover .ai-reel-media video {
    transform: none;
    filter: saturate(1.07) contrast(1.05);
}
.ai-reel-caption {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    text-align: left;
}
.ai-reel-caption span {
    color: var(--accent-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ai-reel-caption h3 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.avatar-clone-module {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(36, 232, 255, 0.12), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(139, 92, 255, 0.16), transparent 32%),
        linear-gradient(180deg, #050507 0%, #080814 100%);
}
.avatar-clone-module::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
    pointer-events: none;
}
.avatar-clone-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
}
.avatar-clone-copy {
    max-width: 44rem;
}
.avatar-clone-copy .section-title {
    max-width: 14ch;
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.01;
}
.avatar-clone-copy p {
    margin-bottom: 1.45rem;
    font-size: 1.08rem;
    line-height: 1.72;
}
.avatar-clone-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.avatar-clone-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(36, 232, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.48;
}
.avatar-clone-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.18rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 0 18px rgba(36, 232, 255, 0.35);
}
.avatar-clone-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
}
.avatar-clone-video {
    flex: 0 1 17.25rem;
    width: min(100%, 17.25rem);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(36, 232, 255, 0.12), rgba(139, 92, 255, 0.15)),
        rgba(5, 5, 7, 0.98);
    border-color: rgba(36, 232, 255, 0.2);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.52), 0 0 92px rgba(139, 92, 255, 0.15);
}
#avatar-clone .avatar-clone-video .avatar-clone-media {
    aspect-ratio: 1080 / 1920;
    background: #050507;
    border-radius: 34px;
}
#avatar-clone .avatar-clone-video .avatar-clone-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
}
#avatar-clone .avatar-clone-video.inline-video-card {
    cursor: default;
}
#avatar-clone .avatar-clone-video.inline-video-card:hover {
    transform: none;
}
#avatar-clone .avatar-clone-video.inline-video-card .avatar-clone-media video {
    cursor: default;
}
#avatar-clone .avatar-clone-video:hover .avatar-clone-media video {
    transform: none;
    filter: saturate(1.05) contrast(1.03);
}

.ai-spot-module {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(223, 255, 0, 0.13), transparent 32%),
        radial-gradient(circle at 86% 22%, rgba(36, 232, 255, 0.15), transparent 34%),
        radial-gradient(circle at 50% 105%, rgba(139, 92, 255, 0.12), transparent 36%),
        linear-gradient(180deg, #050507 0%, #08110d 52%, #050507 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-spot-module::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
    pointer-events: none;
}
.ai-spot-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.85fr);
    gap: 2.4rem;
    align-items: center;
}
.ai-spot-copy {
    display: grid;
    gap: 1.05rem;
    max-width: 46rem;
}
.ai-spot-copy .section-title {
    max-width: 13ch;
    margin-bottom: 0;
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    line-height: 1.02;
}
.ai-spot-copy p {
    margin-bottom: 0;
    font-size: 1.06rem;
    line-height: 1.72;
}
.ai-spot-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.2rem;
}
.ai-spot-metric {
    min-height: 7rem;
    padding: 1rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(223, 255, 0, 0.24);
    background:
        radial-gradient(circle at 14% 0%, rgba(223, 255, 0, 0.13), transparent 44%),
        rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.ai-spot-metric strong {
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.05rem, 2.1vw, 1.45rem);
    line-height: 1.08;
}
.ai-spot-metric span {
    display: block;
    margin-top: 0.32rem;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.42;
}
.ai-spot-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ai-spot-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.65rem;
    border-radius: 16px;
    border: 1px solid rgba(36, 232, 255, 0.16);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.96rem;
    line-height: 1.48;
}
.ai-spot-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.18rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 0 18px rgba(223, 255, 0, 0.26);
}
.ai-spot-visual {
    display: grid;
    gap: 0.95rem;
    align-items: start;
    width: min(100%, 38rem);
    justify-self: center;
}
.ai-spot-video-card {
    width: 100%;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(223, 255, 0, 0.12), rgba(36, 232, 255, 0.12)),
        rgba(7, 7, 8, 0.96);
    border-color: rgba(223, 255, 0, 0.18);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 100px rgba(223, 255, 0, 0.12);
}
.ai-spot-media {
    aspect-ratio: 16 / 9;
    background: #050507;
}
#ai-commercial-spot .ai-spot-media video {
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}
.ai-spot-caption {
    padding: 1rem;
}
.ai-spot-caption h4 {
    font-size: clamp(1.08rem, 1.65vw, 1.36rem);
}

.benefit-card { background: var(--surface-1); padding: 3rem 2rem; border-radius: 24px; border: 1px solid var(--border-color); text-align: center; transition: 0.3s; }
.benefit-card:hover { transform: translateY(-10px); border-color: var(--accent-green); }
.icon-large { font-size: 3rem; margin-bottom: 1.5rem; }
.audience {
    position: relative;
    overflow: hidden;
}
.audience::before,
.audience::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.14;
    pointer-events: none;
}
.audience::before {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    left: -10rem;
    background: var(--accent-cyan);
}
.audience::after {
    width: 24rem;
    height: 24rem;
    right: -8rem;
    bottom: -6rem;
    background: var(--accent-purple);
}
.audience-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.25rem;
}
.audience-top {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 2.75rem;
    align-items: center;
}
.audience-intro {
    max-width: 40rem;
    display: grid;
    align-content: start;
    gap: 1rem;
}
.audience-intro .section-title {
    max-width: 13ch;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 4.7vw, 4.4rem);
    line-height: 1.04;
}
.audience-lead-copy {
    max-width: 42rem;
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.68;
}
.audience-intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}
.audience-intro-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8rem;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.audience-intro-personas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.audience-intro-persona {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
}
.audience-intro-visual {
    position: relative;
}
.audience-intro-canvas {
    position: relative;
    min-height: 33rem;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 18% 16%, rgba(36, 232, 255, 0.16), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(139, 92, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 56px rgba(0, 0, 0, 0.24);
}
.audience-intro-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 58px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 58px);
    opacity: 0.42;
    pointer-events: none;
}
.audience-intro-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.3;
    pointer-events: none;
}
.audience-intro-glow-one {
    width: 11rem;
    height: 11rem;
    top: -1rem;
    left: -2rem;
    background: rgba(36, 232, 255, 0.34);
}
.audience-intro-glow-two {
    width: 12rem;
    height: 12rem;
    right: -1rem;
    bottom: -2rem;
    background: rgba(223, 255, 0, 0.22);
}
.audience-intro-toolbar {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: calc(100% - 2.4rem);
}
.audience-intro-toolbar-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.66);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.audience-intro-mainshot {
    position: absolute;
    top: 4.35rem;
    right: 1.25rem;
    width: min(72%, 30rem);
    aspect-ratio: 16 / 10.4;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
    z-index: 1;
}
.audience-intro-mainshot img,
.audience-intro-mini img,
.audience-intro-mockup img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}
.audience-intro-mainshot::after,
.audience-intro-mini::after,
.audience-intro-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.audience-intro-mainshot:hover img,
.audience-intro-mini:hover img,
.audience-intro-mockup:hover img {
    transform: scale(1.05);
    filter: saturate(1.08);
}
.audience-intro-mockup {
    position: absolute;
    left: 1.65rem;
    bottom: 1.45rem;
    width: min(38%, 14.75rem);
    aspect-ratio: 0.82;
    z-index: 4;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(8, 8, 8, 0.34);
    box-shadow: 0 28px 40px rgba(0, 0, 0, 0.34);
}
.audience-intro-mockup img {
    object-fit: contain;
    transform: scale(1.03);
}
.audience-intro-mini {
    position: absolute;
    width: min(26%, 9rem);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    z-index: 4;
}
.audience-intro-mini-top {
    left: 1.3rem;
    top: 4.95rem;
}
.audience-intro-mini-bottom {
    right: 1.55rem;
    bottom: 8rem;
    width: min(23%, 8rem);
}
.audience-intro-frame-label {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.46rem 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}
.audience-intro-frame-label-main {
    left: auto;
    right: 0.75rem;
}
.audience-intro-frame-label-mockup {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    justify-content: center;
    border-radius: 16px;
    padding: 0.56rem 0.72rem;
    font-size: 0.64rem;
}
.audience-intro-badge-panel {
    position: absolute;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-start;
    width: min(50%, 16rem);
    padding: 0.85rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}
.audience-intro-chip {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}
.audience-intro-chip-four {
    color: var(--accent-green);
    border-color: rgba(223, 255, 0, 0.24);
    background: rgba(223, 255, 0, 0.08);
}
.audience-board {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
}
.audience-feature,
.audience-summary {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 56px rgba(0, 0, 0, 0.22);
}
.audience-feature {
    min-height: 32rem;
}
.audience-feature-media,
.audience-feature-media img {
    width: 100%;
    height: 100%;
}
.audience-feature-media {
    position: absolute;
    inset: 0;
}
.audience-feature-media img {
    display: block;
    object-fit: cover;
}
.audience-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(36, 232, 255, 0.22), transparent 28%),
        radial-gradient(circle at 80% 18%, rgba(139, 92, 255, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(4, 4, 4, 0.08) 0%, rgba(4, 4, 4, 0.26) 36%, rgba(4, 4, 4, 0.88) 100%);
}
.audience-feature-overlay {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 2;
    max-width: 34rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}
.audience-feature-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(223, 255, 0, 0.08);
    border: 1px solid rgba(223, 255, 0, 0.24);
    color: var(--accent-green);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.audience-feature-overlay h3 {
    max-width: 17ch;
    margin-bottom: 0.55rem;
    font-size: 1.6rem;
}
.audience-feature-overlay p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.52;
}
.audience-summary {
    padding: 1.25rem;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 1rem;
}
.audience-summary-visual {
    position: relative;
    overflow: hidden;
    min-height: 17rem;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(36, 232, 255, 0.16), transparent 48%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(36, 232, 255, 0.14);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}
.audience-summary-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 19, 0.02) 0%, rgba(5, 7, 19, 0.2) 100%);
    pointer-events: none;
}
.audience-summary-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}
.audience-summary-copy h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}
.audience-summary-copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}
.audience-signal-list {
    display: grid;
    gap: 0.95rem;
}
.audience-signal {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1rem 1rem 1rem 0.95rem;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 13% 18%, rgba(36, 232, 255, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.02)),
        rgba(5, 7, 19, 0.66);
    border: 1px solid rgba(36, 232, 255, 0.15);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03),
        0 18px 34px rgba(0, 0, 0, 0.24);
}
.audience-signal::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0.9;
    z-index: 0;
}
.audience-signal:nth-child(2) {
    background:
        radial-gradient(circle at 13% 18%, rgba(139, 92, 255, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.02)),
        rgba(5, 7, 19, 0.66);
    border-color: rgba(139, 92, 255, 0.18);
}
.audience-signal:nth-child(2)::before {
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan));
}
.audience-signal:nth-child(3) {
    background:
        radial-gradient(circle at 13% 18%, rgba(223, 255, 0, 0.11), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.02)),
        rgba(5, 7, 19, 0.66);
    border-color: rgba(223, 255, 0, 0.16);
}
.audience-signal:nth-child(3)::before {
    background: linear-gradient(180deg, var(--accent-green), var(--accent-purple));
}
.audience-signal-icon {
    position: relative;
    z-index: 1;
    width: 5rem;
    height: 5rem;
    padding: 0.18rem;
    border-radius: 24px;
    display: block;
    flex-shrink: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(36, 232, 255, 0.34), rgba(139, 92, 255, 0.22)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(36, 232, 255, 0.22);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(36, 232, 255, 0.13);
}
.audience-signal:nth-child(2) .audience-signal-icon {
    background:
        linear-gradient(135deg, rgba(139, 92, 255, 0.34), rgba(36, 232, 255, 0.2)),
        rgba(255, 255, 255, 0.03);
    border-color: rgba(139, 92, 255, 0.24);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(139, 92, 255, 0.14);
}
.audience-signal:nth-child(3) .audience-signal-icon {
    background:
        linear-gradient(135deg, rgba(223, 255, 0, 0.28), rgba(36, 232, 255, 0.2), rgba(139, 92, 255, 0.18)),
        rgba(255, 255, 255, 0.03);
    border-color: rgba(223, 255, 0, 0.22);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(223, 255, 0, 0.1);
}
.audience-signal-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    filter: saturate(1.1) contrast(1.05);
}
.audience-signal > div {
    position: relative;
    z-index: 1;
    padding-top: 0.22rem;
    min-width: 0;
}
.audience-signal > div span {
    display: block;
}
.audience-signal strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.02rem;
    color: #fff;
}
.audience-signal span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.audience-card {
    --audience-accent: var(--accent-green);
    --audience-accent-soft: rgba(223, 255, 0, 0.1);
    --audience-accent-border: rgba(223, 255, 0, 0.24);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%),
        var(--surface-1);
    border: 1px solid rgba(36, 232, 255, 0.12);
    border-radius: 28px;
    padding: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.audience-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--audience-accent), rgba(255, 255, 255, 0));
}
.audience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 60px rgba(0, 0, 0, 0.28);
}
.audience-card-creator {
    --audience-accent: #DFFF00;
    --audience-accent-soft: rgba(223, 255, 0, 0.1);
    --audience-accent-border: rgba(223, 255, 0, 0.24);
}
.audience-card-marketer {
    --audience-accent: var(--accent-cyan);
    --audience-accent-soft: rgba(36, 232, 255, 0.1);
    --audience-accent-border: rgba(36, 232, 255, 0.24);
}
.audience-card-agency {
    --audience-accent: #A779FF;
    --audience-accent-soft: rgba(167, 121, 255, 0.1);
    --audience-accent-border: rgba(167, 121, 255, 0.24);
}
.audience-card-media {
    position: relative;
    min-height: 25rem;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, var(--audience-accent-soft) 0%, transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.audience-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 56px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 56px);
    opacity: 0.4;
    pointer-events: none;
}
.audience-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, var(--audience-accent-soft), transparent 28%),
        linear-gradient(180deg, rgba(5, 7, 19, 0.05) 0%, rgba(5, 7, 19, 0.34) 54%, rgba(5, 7, 19, 0.9) 100%);
    pointer-events: none;
}
.audience-media-kicker {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.74);
    backdrop-filter: blur(16px);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.audience-media-orb {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
}
.audience-media-orb-one {
    width: 11rem;
    height: 11rem;
    top: -2.5rem;
    right: -2.2rem;
    background: radial-gradient(circle, var(--audience-accent-soft) 0%, transparent 70%);
    opacity: 0.9;
}
.audience-media-orb-two {
    width: 8rem;
    height: 8rem;
    bottom: 1rem;
    left: -2.2rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    opacity: 0.65;
}
.audience-card-shot {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #000;
}
.audience-card-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 7, 19, 0.42) 0%, rgba(5, 7, 19, 0.04) 56%),
        linear-gradient(180deg, rgba(5, 7, 19, 0.08) 0%, rgba(5, 7, 19, 0.78) 100%);
    pointer-events: none;
}
.audience-card-shot img,
.audience-card-mini-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.55s ease;
    filter: saturate(1.06);
}
.audience-card:hover .audience-card-shot img,
.audience-card:hover .audience-card-mini-preview img {
    transform: scale(1.06);
    filter: saturate(1.18);
}
.audience-card-mini-preview,
.audience-card-delivery {
    position: absolute;
    right: 1rem;
    z-index: 5;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}
.audience-card-mini-preview {
    top: 4.5rem;
    width: min(36%, 9rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #111;
    transform: rotate(4deg);
}
.audience-card-mini-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.26) 100%);
    pointer-events: none;
}
.audience-card-mini-preview-wide {
    top: auto;
    bottom: 1rem;
    width: min(44%, 10rem);
    aspect-ratio: 1 / 1.02;
    transform: rotate(2deg);
}
.audience-card-delivery {
    top: 4.4rem;
    width: min(40%, 10rem);
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.84), rgba(24, 24, 24, 0.78));
    backdrop-filter: blur(16px);
}
.audience-card-delivery::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
    pointer-events: none;
}
.audience-card-delivery-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 0.8rem;
    color: var(--audience-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.audience-card-delivery-lines {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
}
.audience-card-delivery-lines span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.56rem 0.65rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
}
.audience-card-delivery-lines span::before {
    content: '';
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--audience-accent);
    box-shadow: 0 0 12px var(--audience-accent);
    flex-shrink: 0;
}
.audience-card-chip-stack {
    position: absolute;
    top: 3.95rem;
    left: 1.05rem;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-width: calc(100% - 2.1rem);
}
.audience-media-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.audience-media-chip-strong {
    background: var(--audience-accent);
    border-color: transparent;
    color: #000;
}
.audience-card-result {
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: 1.05rem;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: auto;
    padding: 0.92rem 0.98rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.76);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.audience-card-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--audience-accent-soft);
    border: 1px solid var(--audience-accent-border);
    color: var(--audience-accent);
}
.audience-card-result-icon svg {
    width: 1.08rem;
    height: 1.08rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.audience-card-result-copy strong {
    display: block;
    margin-bottom: 0.22rem;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.2;
}
.audience-card-result-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    line-height: 1.35;
}
.audience-card-body {
    display: grid;
    gap: 0.85rem;
    padding: 1.35rem 1.35rem 1.45rem;
    background: linear-gradient(180deg, rgba(5, 7, 19, 0.15), rgba(5, 7, 19, 0.54));
}
.audience-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}
.audience-index {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.36);
    letter-spacing: 0.14em;
}
.audience-role-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.audience-role-type {
    color: var(--audience-accent);
    border-color: var(--audience-accent-border);
    background: var(--audience-accent-soft);
}
.audience-card h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}
.audience-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.6;
}
.audience-card-subline {
    margin: 0;
    padding: 0.84rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}
.audience-points {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}
.audience-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.45;
}
.audience-points li::before {
    content: '';
    width: 0.52rem;
    height: 0.52rem;
    margin-top: 0.42rem;
    border-radius: 50%;
    background: var(--audience-accent);
    flex-shrink: 0;
}
.audience-card-clean {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(9, 10, 14, 0.94);
}
.audience-card-clean .audience-card-media {
    min-height: auto;
    padding: 0.9rem 0.9rem 0;
    background: transparent;
    border-bottom: 0;
}
.audience-card-clean .audience-card-media::before,
.audience-card-clean .audience-card-media::after,
.audience-card-clean .audience-card-shot::after {
    display: none;
}
.audience-card-clean .audience-card-shot {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10.5;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #050507;
}
.audience-card-clean .audience-card-shot img {
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}
.audience-card-clean:hover .audience-card-shot img {
    transform: scale(1.025);
}
.audience-card-clean .audience-card-body {
    gap: 0.75rem;
    padding: 1.15rem 1.2rem 1.25rem;
    background: transparent;
}
.audience-card-clean .audience-card-top {
    justify-content: space-between;
}
.audience-card-clean .audience-index {
    color: var(--audience-accent);
}
.audience-card-clean .audience-role-type {
    padding: 0.34rem 0.62rem;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
}
.audience-card-clean h3 {
    font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}
.audience-card-clean p {
    font-size: 0.96rem;
    line-height: 1.55;
}
.audience-clean-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-top: 0.1rem;
}
.audience-clean-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.66rem;
    border-radius: 999px;
    border: 1px solid var(--audience-accent-border);
    background: var(--audience-accent-soft);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.detailed-list { list-style: none; margin-top: 1.5rem; text-align: left; }
.detailed-list li { margin-bottom: 1rem; position: relative; padding-left: 1.8rem; color: var(--text-muted); font-size: 1.1rem; }
.detailed-list li::before { content: '🔸'; position: absolute; left: 0; top: 2px; font-size: 0.9rem; }
.possibility-box { background: var(--surface-1); padding: 3rem; border-radius: 24px; border: 1px solid var(--border-color); height: 100%; transition: 0.3s; }
.possibility-box:hover { border-color: var(--accent-green); }
.box-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Video Showcase & Modal */
.showcase-header {
    max-width: 60rem;
    margin: 0 auto;
}
.showcase-lead {
    margin: 0 auto 3rem;
}
.featured-video-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-color);
    text-align: left;
}
.featured-video-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(223, 255, 0, 0.08);
    border: 1px solid rgba(223, 255, 0, 0.25);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.featured-video-copy h3 {
    max-width: 14ch;
    margin-bottom: 1rem;
}
.featured-video-copy p {
    margin-bottom: 1.5rem;
}
.featured-video-points {
    list-style: none;
}
.featured-video-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
    color: var(--text-color);
    font-size: 1rem;
}
.featured-video-points li::before {
    content: '✓';
    color: #000;
    background: var(--accent-green);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}
.featured-video-frame {
    position: relative;
    padding: 0;
    border-radius: 30px;
    background: transparent;
    border: none;
    overflow: hidden;
    isolation: isolate;
}
.featured-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0) 18%),
        linear-gradient(to bottom, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0) 18%),
        linear-gradient(to left, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0) 14%),
        linear-gradient(to right, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0) 14%);
    box-shadow: inset 0 0 82px rgba(8, 8, 8, 0.84);
}
.featured-video-frame video {
    display: block;
    width: 100%;
    border-radius: 30px;
    background: #000;
    box-shadow: none;
}
.showcase-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 2rem;
}
.showcase-proof-item {
    display: grid;
    gap: 0.45rem;
    align-content: start;
    padding: 0.75rem 0.75rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    text-align: left;
    overflow: hidden;
}
.showcase-proof-item img {
    display: block;
    width: 100%;
    height: clamp(8.5rem, 13vw, 11rem);
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #050507;
}
.showcase-proof-item strong {
    color: #fff;
    font-size: 0.96rem;
    padding: 0 0.35rem;
}
.showcase-proof-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.45;
    padding: 0 0.35rem;
}
.video-clusters {
    display: grid;
    gap: 1.6rem;
    margin-top: 2.2rem;
}
.video-cluster {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(11, 11, 11, 0.82);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}
.video-cluster-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.45rem;
    text-align: left;
}
.video-cluster-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(223, 255, 0, 0.08);
    border: 1px solid rgba(223, 255, 0, 0.2);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.video-cluster-head h3 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}
.video-cluster-head-centered {
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.video-cluster-head-centered > div {
    max-width: 760px;
}
.video-cluster-head-centered .video-cluster-kicker {
    justify-content: center;
}
.video-cluster-head p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.65;
}
.video-cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.video-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 15, 0.95);
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 255, 0, 0.34);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), 0 0 28px rgba(223, 255, 0, 0.08);
}
.video-card-media {
    position: relative;
    aspect-ratio: 16 / 10.8;
    background: #000;
    overflow: hidden;
}
.video-card-media video,
.video-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.video-card:hover .video-card-media video,
.video-card:hover .video-card-media img {
    transform: scale(1.04);
    filter: saturate(1.08);
}
#avatar-clone .avatar-clone-video .avatar-clone-media {
    aspect-ratio: 9 / 16;
    background: #050507;
}
#avatar-clone .avatar-clone-video .avatar-clone-media video {
    object-fit: cover;
    transform: none;
}
#avatar-clone .avatar-clone-video.inline-video-card {
    cursor: default;
}
#avatar-clone .avatar-clone-video.inline-video-card:hover {
    transform: none;
}
#avatar-clone .avatar-clone-video.inline-video-card .avatar-clone-media video {
    cursor: default;
}
#avatar-clone .avatar-clone-video:hover .avatar-clone-media video {
    transform: none;
    filter: saturate(1.05) contrast(1.03);
}
#ai-reel-proof .ai-reel-card {
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(36, 232, 255, 0.11), rgba(223, 255, 0, 0.08)),
        rgba(5, 5, 7, 0.96);
    border-color: rgba(36, 232, 255, 0.18);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46), 0 0 68px rgba(36, 232, 255, 0.1);
    cursor: default;
}
#ai-reel-proof .ai-reel-card:hover {
    transform: translateY(-4px);
}
#ai-reel-proof .ai-reel-media {
    aspect-ratio: 9 / 16;
    background: #030305;
}
#ai-reel-proof .ai-reel-media video {
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: saturate(1.04) contrast(1.04);
}
#ai-reel-proof .ai-reel-card:hover .ai-reel-media video {
    transform: none;
    filter: saturate(1.07) contrast(1.05);
}
.video-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0) 18%),
        linear-gradient(to bottom, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0) 18%),
        linear-gradient(to left, rgba(8, 8, 8, 0.8) 0%, rgba(8, 8, 8, 0) 14%),
        linear-gradient(to right, rgba(8, 8, 8, 0.8) 0%, rgba(8, 8, 8, 0) 14%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.42) 100%);
    box-shadow: inset 0 0 58px rgba(8, 8, 8, 0.74);
    pointer-events: none;
}
.play-btn {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    background: rgba(11, 11, 11, 0.78);
    color: var(--accent-green);
    border: 1.5px solid rgba(223, 255, 0, 0.42);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.video-card:hover .play-btn {
    background: var(--accent-green);
    color: #000;
    transform: scale(1.07);
}
.video-card-body {
    display: grid;
    gap: 0.8rem;
    padding: 1.2rem 1.15rem 1.25rem;
    text-align: left;
}
.video-card-eyebrow {
    color: var(--accent-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.video-card-body h4 {
    margin-bottom: 0;
    font-size: 1.18rem;
    line-height: 1.18;
    color: #fff;
}
.video-card-body p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.58;
}
.video-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.video-card-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
}
.showcase-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* AI Filmmaking */
.filmmaking-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(36, 232, 255, 0.13), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(139, 92, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #050713 0%, #080812 48%, #050507 100%);
}
.filmmaking-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
    opacity: 0.36;
    pointer-events: none;
}
.filmmaking-shell {
    position: relative;
    z-index: 1;
}
.filmmaking-header {
    max-width: 64rem;
    margin: 0 auto 2.8rem;
    text-align: center;
}
.filmmaking-header .section-title {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}
.filmmaking-header .large-text {
    max-width: 54rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
}
.filmmaking-proof-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.35rem;
}
.filmmaking-proof {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(36, 232, 255, 0.22);
    background: rgba(36, 232, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
}
.filmmaking-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
}
.film-card {
    grid-column: span 3;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(10, 10, 14, 0.94);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}
.film-card-feature {
    grid-column: span 6;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}
.film-card .video-card-media {
    aspect-ratio: 16 / 9;
}
.film-card-feature .video-card-media {
    aspect-ratio: 16 / 8.2;
    min-height: 24rem;
}
.film-card .video-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(36, 232, 255, 0.12), transparent 34%, rgba(139, 92, 255, 0.12));
    mix-blend-mode: screen;
}
.film-card .video-card-overlay,
.film-card .play-btn {
    z-index: 2;
}
.film-card .video-card-body {
    padding: 1.35rem;
}
.film-card-feature .video-card-body {
    align-content: center;
    margin-left: 1cm;
    padding: 2rem;
}
.film-card .video-card-eyebrow {
    color: #24e8ff;
}
.film-card .video-card-body h4 {
    font-size: 1.45rem;
}
.film-card-feature .video-card-body h4 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 0.98;
}
.film-card-feature .video-card-body p {
    font-size: 1.04rem;
}
.film-card .video-card-tags span {
    border-color: rgba(36, 232, 255, 0.16);
    background: rgba(36, 232, 255, 0.055);
}

/* Image to Video Transformation */
.transformation-showcase {
    position: relative;
    overflow: hidden;
}
.transformation-showcase::before,
.transformation-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.16;
    pointer-events: none;
}
.transformation-showcase::before {
    width: 24rem;
    height: 24rem;
    top: 3rem;
    left: -8rem;
    background: #DFFF00;
}
.transformation-showcase::after {
    width: 22rem;
    height: 22rem;
    right: -7rem;
    bottom: -1rem;
    background: var(--accent-cyan);
}
.transformation-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: grid;
    gap: 2rem;
    padding: 4rem 3.25rem 3rem;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #090909;
    background-image:
        radial-gradient(circle at 16% 18%, rgba(223, 255, 0, 0.08), transparent 22%),
        radial-gradient(circle at 84% 14%, rgba(36, 232, 255, 0.1), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(18, 18, 18, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 64px rgba(0, 0, 0, 0.28);
}
.transformation-shell::before,
.transformation-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.transformation-shell::before {
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 26%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 52px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 52px);
    opacity: 0.26;
}
.transformation-shell::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(223, 255, 0, 0.95), rgba(36, 232, 255, 0.82), rgba(139, 92, 255, 0.8));
}
.transformation-heading {
    position: relative;
    z-index: 1;
    max-width: 64rem;
    margin: 0 auto;
}
.transformation-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    padding: 0.5rem 0.92rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 255, 0, 0.22);
    background: rgba(223, 255, 0, 0.08);
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.transformation-title {
    max-width: 11.5ch;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}
.transformation-lead {
    max-width: 56rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.7;
}
.transformation-stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: stretch;
    margin-top: 1rem;
    padding-top: 7rem;
}
.transformation-stage-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    width: min(44vw, 30rem);
    pointer-events: none;
}
.transformation-stage-arrow-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
.transformation-stage-arrow-svg path {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(223, 255, 0, 0.16));
}
.transformation-stage-mobile-arrow {
    display: none;
}
.transformation-arrow-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 255, 0, 0.18);
    background: rgba(12, 12, 12, 0.9);
    color: var(--accent-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}
.transformation-stage-arrow .transformation-arrow-label {
    transform: translateY(-2cm);
}
.transformation-card {
    --transformation-accent: var(--accent-green);
    --transformation-glow: rgba(223, 255, 0, 0.16);
    position: relative;
    display: grid;
    gap: 1rem;
    min-height: 100%;
    padding: 1.3rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(16, 16, 16, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 44px rgba(0, 0, 0, 0.24);
    color: #fff;
}
.transformation-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--transformation-accent), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.transformation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%);
    pointer-events: none;
}
.transformation-card-video {
    --transformation-accent: var(--accent-cyan);
    --transformation-glow: rgba(36, 232, 255, 0.16);
}
.transformation-step-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}
.transformation-step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: var(--transformation-accent);
    color: #000;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px var(--transformation-glow);
}
.transformation-step-caption {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.transformation-media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0.85rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 20%, var(--transformation-glow), transparent 54%),
        rgba(255, 255, 255, 0.03);
    aspect-ratio: 1 / 1;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.transformation-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(8, 8, 8, 0.52) 0%, rgba(8, 8, 8, 0) 16%),
        linear-gradient(to bottom, rgba(8, 8, 8, 0.38) 0%, rgba(8, 8, 8, 0) 14%);
}
.transformation-media img,
.transformation-media video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
}
.transformation-media-image img {
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
}
.transformation-media-video video {
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
}
.transformation-card-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
}
.transformation-card-copy h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.46rem, 2vw, 1.95rem);
    line-height: 1.08;
}
.transformation-card-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.58;
}
.transformation-result-bar {
    position: relative;
    z-index: 1;
    padding: 1.3rem 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(10, 10, 10, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}
.transformation-result-bar p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.62;
}
.transformation-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.transformation-use-case {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.68rem 0.96rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
}

/* Lightbox Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s ease; backdrop-filter: blur(10px); }
.modal.show { opacity: 1; pointer-events: auto; }
.modal-close { position: absolute; top: 20px; right: 30px; font-size: 3rem; color: #fff; cursor: pointer; font-weight: 300; transition: 0.3s; }
.modal-close:hover { color: var(--accent-green); }
.modal-content { display: flex; flex-direction: column; align-items: center; max-width: 90%; max-height: 90vh; }
.modal-content img { max-width: 100%; max-height: 80vh; border-radius: 12px; border: 2px solid var(--border-color); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.modal-content video { display: none; max-width: 100%; max-height: 80vh; border-radius: 12px; border: 2px solid var(--border-color); background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.modal-content img[hidden],
.modal-content video[hidden] { display: none !important; }
.modal-play-indicator { margin-top: 1.5rem; max-width: 36rem; font-size: 1.05rem; font-weight: 600; color: var(--accent-green); text-transform: uppercase; letter-spacing: 1.2px; text-align: center; }

/* Reviews */
.review-card { background: var(--surface-1); border: 1px solid var(--border-color); padding: 2.5rem; border-radius: 24px; transition: 0.3s; }
.review-card:hover { transform: translateY(-8px); border-color: rgba(223, 255, 0, 0.4); }
.stars { color: var(--accent-green); font-size: 1.3rem; margin-bottom: 1rem; }
.review-text { font-style: italic; font-size: 1.05rem; line-height: 1.5;}
.review-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; justify-content: center; text-align: left; }
.review-author img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--accent-green); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--surface-1); border: 1px solid var(--border-color); border-radius: 12px; cursor: pointer; transition: 0.3s; overflow: hidden; }
.faq-item:hover { border-color: var(--accent-green); }
.faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { font-size: 1.22rem; margin-bottom: 0; }
.faq-answer { max-height: 0; padding: 0 1.5rem; opacity: 0; transition: all 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.5rem; opacity: 1; }
.toggle-icon { font-size: 1.5rem; color: var(--accent-green); transition: 0.3s; }
.faq-item.active .toggle-icon { transform: rotate(45deg); }
.faq-subheadline { max-width: 700px; margin: 0 auto 2rem; }

.trust-content { max-width: 800px; margin: 0 auto; text-align: center; padding: 4rem; border-radius: 24px; background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg-color) 100%); border: 1px solid var(--border-color); }
.trust-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.trust-point {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Pricing & Urgency */
.timer { font-size: clamp(3rem, 8vw, 5rem); font-weight: 900; font-variant-numeric: tabular-nums; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 20px rgba(139, 92, 255, 0.4)); line-height: 1; margin: 1rem 0; }
.timer-label { font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.pricing { margin: 2.5rem 0; font-size: 2.8rem; font-weight: 900; }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.8rem; margin-right: 1.5rem; }
.new-price { color: var(--accent-green); filter: drop-shadow(0 0 10px rgba(223, 255, 0, 0.3));}
.urgency-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.urgency-point {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}
.cta-mockup-wrap {
    max-width: 520px;
    margin: 2.5rem auto 0;
    padding: 0.8rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.cta-mockup {
    display: block;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.cta-note { max-width: 640px; margin: 1.5rem auto 0; }
.guarantee { margin: 1rem 0 1.5rem; font-size: 1rem; color: #fff; }
.trust-badge-strip-cta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto 1.5rem;
}
.cta-assurance-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.75rem;
}
.cta-assurance-list li {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 0.95rem;
}

.cta-section .container { background: var(--surface-1); padding: 5rem 2rem; border-radius: 32px; border: 1px solid var(--border-color); position: relative; }
.pulse-shadow { animation: pulseGlow 4s infinite alternate; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 30px rgba(36, 232, 255, 0.12); } 100% { box-shadow: 0 0 50px rgba(139, 92, 255, 0.22); } }

/* Popup */
.purchase-popup { position: fixed; bottom: 20px; left: 20px; background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--accent-green); padding: 12px 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; z-index: 5000; box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(223, 255, 0, 0.2); transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); transform: translateY(150px); opacity: 0; pointer-events: none; }
.purchase-popup.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.popup-img-bg img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--accent-green); object-fit: cover; }
.popup-text p { margin: 0; font-size: 0.9rem; color: #fff; line-height: 1.3;}
.popup-text strong { color: var(--accent-green); }
.popup-text small { font-size: 0.75rem; color: var(--text-muted); }

.live-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5400;
    display: none !important;
}
.live-chat-launcher {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(15rem, calc(100vw - 40px));
    padding: 0.78rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(223, 255, 0, 0.04)),
        rgba(12, 12, 12, 0.94);
    backdrop-filter: blur(14px);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 22px rgba(223, 255, 0, 0.08);
    text-align: left;
}
.live-chat-launcher-status {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(223, 255, 0, 0.12), rgba(223, 255, 0, 0.04));
    border: 2px solid rgba(223, 255, 0, 0.42);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26), 0 0 0 4px rgba(223, 255, 0, 0.06);
}
.live-chat-launcher-status::after {
    content: "";
    position: absolute;
    right: 0.08rem;
    bottom: 0.08rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: #7dff7a;
    border: 2px solid rgba(8, 8, 8, 0.95);
    box-shadow: 0 0 18px rgba(125, 255, 122, 0.6);
}
.live-chat-launcher-status img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 63% 24%;
}
.live-chat-launcher-copy strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}
.live-chat-launcher-copy span {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}
.live-chat-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(24rem, calc(100vw - 40px));
    height: min(36rem, calc(100vh - 40px));
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(223, 255, 0, 0.08);
}
.live-chat-panel[hidden] {
    display: none !important;
}
.live-chat-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(223, 255, 0, 0.12), rgba(36, 232, 255, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.live-chat-avatar {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(223, 255, 0, 0.08);
    border: 2px solid rgba(223, 255, 0, 0.34);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24), 0 0 0 4px rgba(223, 255, 0, 0.05);
}
.live-chat-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 63% 24%;
}
.live-chat-header-copy {
    flex: 1;
}
.live-chat-header-copy strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.live-chat-header-copy span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.3;
}
.live-chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}
.live-chat-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}
.live-chat-messages {
    flex: 1;
    min-height: 0;
    padding: 1rem;
    overflow-y: auto;
    display: grid;
    gap: 0.85rem;
}
.chat-message {
    display: flex;
}
.chat-message-ai {
    justify-content: flex-start;
}
.chat-message-user {
    justify-content: flex-end;
}
.chat-bubble {
    max-width: 88%;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    line-height: 1.48;
    font-size: 0.9rem;
}
.chat-message-ai .chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}
.chat-message-user .chat-bubble {
    background: rgba(223, 255, 0, 0.12);
    border: 1px solid rgba(223, 255, 0, 0.18);
    color: #fff;
}
.chat-bubble p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}
.chat-bubble strong {
    color: var(--accent-green);
}
.chat-inline-offer {
    margin-top: 0.75rem;
    padding: 0.62rem 0.86rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 255, 0, 0.22);
    background: rgba(223, 255, 0, 0.08);
    color: var(--accent-green);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}
.live-chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}
.chat-quick-action {
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
}
.chat-quick-action-discount {
    border-color: rgba(223, 255, 0, 0.22);
    background: rgba(223, 255, 0, 0.08);
    color: var(--accent-green);
}
.live-chat-form {
    display: flex;
    gap: 0.55rem;
    padding: 0 1rem 1rem;
}
.live-chat-input {
    flex: 1;
    min-width: 0;
    padding: 0.88rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
}
.live-chat-input:focus {
    outline: none;
    border-color: rgba(223, 255, 0, 0.36);
    box-shadow: 0 0 0 2px rgba(223, 255, 0, 0.12);
}
.live-chat-send {
    padding: 0 1rem;
    border-radius: 16px;
    border: none;
    background: var(--accent-green);
    color: #000;
    font-weight: 800;
    cursor: pointer;
}

/* Global Utilities */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.w-100 { width: 100%; text-align: center; }

/* ---------------- PARALLAX E BACKGROUND PROFONDITA' ---------------- */
.glow-orb { --orb-x: 0; position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.12; z-index: -1; pointer-events: none; animation: floatOrb 12s infinite alternate linear; }
.orb-1 { width: 45vw; height: 45vw; background: var(--accent-green); top: 15%; left: 0; }
.orb-2 { width: 50vw; height: 50vw; background: var(--accent-purple); top: 55%; right: 0; animation-delay: -5s; }
.orb-3 { width: 60vw; height: 60vw; background: var(--accent-cyan); bottom: 5%; left: 5vw; animation-delay: -2s; }

@keyframes floatOrb {
    0% { transform: translate(var(--orb-x), 0); }
    100% { transform: translate(var(--orb-x), 80px); }
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.85);
    z-index: 1;
}

/* --- UPSELL MODAL --- */
.upsell-content { max-width: 600px; width: 95%; max-height: 85vh; border: 2px solid var(--accent-green); background: var(--bg-color); border-radius: 12px; padding: 0; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px rgba(223, 255, 0, 0.15); }
.upsell-header { background: var(--accent-green); color: #000; padding: 1.2rem; font-weight: 800; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; text-transform: uppercase; line-height: 1.2; box-shadow: 0 4px 10px rgba(0,0,0,0.5); z-index: 10; animation: pulseYellow 3s infinite; flex-shrink: 0; }
.upsell-body { padding: 1rem 1.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; overflow: hidden; flex: 1; }
.upsell-intro { margin-bottom: 1rem; font-size: 0.92rem; text-align: center; color: #d8d8d8; }

.upsell-products-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
    overflow-y: auto;
    padding-right: 5px;
    flex: 1;
    min-height: 0;
}
.upsell-products-list::-webkit-scrollbar { width: 6px; }
.upsell-products-list::-webkit-scrollbar-track { background: var(--surface-1); border-radius: 4px; }
.upsell-products-list::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
.upsell-products-list::-webkit-scrollbar-thumb:hover { background: var(--accent-green); }

.upsell-product {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--surface-1);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}
.upsell-product:hover {
    border-color: var(--accent-green);
    background: var(--surface-2);
}
.upsell-checkbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upsell-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.upsell-checkbox-container input:checked ~ .checkbox-circle {
    border-color: var(--accent-green);
    background: var(--accent-green);
}
.upsell-checkbox-container input:checked ~ .checkbox-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}
.upsell-prod-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
}
.upsell-prod-info {
    flex: 1;
    text-align: left;
    min-width: 0; /* To allow text truncation */
}
.upsell-prod-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #fff;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    line-height: 1.3;
}
.upsell-prod-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.upsell-prod-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    min-width: 84px;
}
.upsell-prod-price .old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    margin: 0;
}
.upsell-prod-price .new-price {
    font-size: 1.1rem;
    font-weight: 800;
}

.upsell-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    flex-shrink: 0;
}
.upsell-decline { color: var(--text-muted); font-size: 0.85rem; text-decoration: underline; cursor: pointer; transition: 0.3s; padding: 0.5rem; }
.upsell-decline:hover { color: #fff; }
@keyframes pulseYellow { 0% { background: var(--accent-green); color: #000; } 50% { background: #A8CC00; color: #000; } 100% { background: var(--accent-green); color: #000; } }

@media (max-width: 768px) {
    .upsell-header { font-size: 0.85rem; padding: 1rem; }
    .upsell-body { padding: 1rem; }
    .upsell-product { padding: 0.8rem; gap: 0.8rem; }
    .upsell-prod-info h4 { font-size: 0.85rem; }
    .upsell-prod-info p { font-size: 0.75rem; }
    .upsell-prod-price .new-price { font-size: 1rem !important; }
    .upsell-prod-price .old-price { font-size: 0.75rem !important; margin-right: 0;}
    .upsell-prod-img { width: 40px; height: 40px; }
}

/* ---------------- RESPONSIVENESS ---------------- */

/* iPad Pro (1024px & large screens) */
@media (max-width: 1200px) {
    .container { padding: 0 2.5rem; }
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    .hero-content, .split-layout { gap: 3rem; }
    .hero-content { grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1fr); }
    .hero-text h1 { font-size: 3.25rem; }
    .hero-visual { max-width: none; }
    .hero-visual-stage { min-height: 30rem; }
    .solution-box { padding: 3rem; }
    .possibility-box { padding: 2.5rem; }
}

@media (max-width: 1100px) {
    .hero {
        padding-top: 8rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "visual"
            "support";
        text-align: center;
        gap: 2.5rem;
    }
    .hero-text {
        max-width: 48rem;
        margin: 0 auto;
    }
    .hero-meta-row { justify-content: center; }
    .hero-text h1,
    .subheadline,
    .hero-note {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-action-row { justify-content: center; }
    .hero-visual {
        max-width: min(38rem, 100%);
        margin: 0 auto;
    }
    .benefits-list li { justify-content: center; text-align: left; }
    .hero-proof-row { justify-content: center; }
    .trust-badge-strip-hero { margin-left: auto; margin-right: auto; }
}

/* iPad Air & Tablets (820px / 992px) */
@media (max-width: 992px) {
    .brand-mark { height: 42px; }
    .brand-wordmark { width: min(220px, 46vw); height: auto; max-height: 40px; }
    .brand-logo-full { width: min(340px, 78vw); }
    .nav-links { display: none; }
    .section { padding: 5rem 0; }
    .hero { padding-top: 8rem; min-height: auto; padding-bottom: 4rem; }
    .split-layout, .hero-content { grid-template-columns: 1fr; text-align: center; gap: 3rem;}
    .hero-content {
        grid-template-areas:
            "text"
            "visual"
            "support";
    }
    .hero-text { order: 1; }
    .hero-visual { order: 2; max-width: min(36rem, 100%); margin: 0 auto; }
    .problem-visual, .product-visual { order: 2; max-width: 80%; margin: 0 auto; }
    .problem-text, .product-text { order: 1; }
    .inside-lead { margin-left: auto; margin-right: auto; }
    .inside-card { text-align: left; }
    .capcut-module-shell { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .capcut-module-copy { max-width: 48rem; margin: 0 auto; }
    .capcut-module-points { justify-content: center; }
    .capcut-module-visual { width: 100%; }
    .kling-module-shell { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .kling-module-copy { order: 1; max-width: 48rem; margin: 0 auto; }
    .kling-module-visual { order: 2; width: min(100%, 54rem); grid-template-columns: 1fr; }
    .kling-module-video-vertical { width: min(100%, 21rem); }
    .kling-module-points { justify-content: center; }
    .social-ai-lesson-shell { grid-template-columns: 1fr; text-align: center; }
    .social-ai-lesson-copy { max-width: 48rem; margin: 0 auto; }
    .social-ai-lesson-copy .section-title { max-width: none; }
    .social-ai-lesson-points { justify-content: center; }
    .social-ai-lesson-videos { width: min(100%, 42rem); margin: 0 auto; }
    .social-ai-lesson-caption { text-align: left; }
    .ai-reel-proof-shell { grid-template-columns: 1fr; text-align: center; }
    .ai-reel-proof-copy { max-width: 50rem; margin: 0 auto; }
    .ai-reel-proof-copy .section-title,
    .ai-reel-proof-copy p { max-width: none; }
    .ai-reel-proof-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ai-reel-proof-cta { justify-content: center; }
    .ai-reel-proof-videos { width: min(100%, 42rem); margin: 0 auto; }
    .avatar-clone-shell { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .avatar-clone-copy { max-width: 48rem; margin: 0 auto; }
    .avatar-clone-copy .section-title { max-width: none; }
    .avatar-clone-visual { width: 100%; }
    .avatar-clone-list li { text-align: left; }
    .ai-spot-shell { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .ai-spot-copy { max-width: 48rem; margin: 0 auto; }
    .ai-spot-copy .section-title { max-width: none; }
    .ai-spot-list li { text-align: left; }
    .ai-spot-video-card { width: min(100%, 34rem); }
    .benefits-list li, .detailed-list li { justify-content: center; text-align: left; }
    .detailed-list li { display: inline-block; width: 100%; text-align: center; padding-left: 0; }
    .detailed-list li::before { display: none; }
    .solution-features, .grid-3, .trust-points, .cta-assurance-list { grid-template-columns: 1fr; }
    .nav-actions { gap: 1rem; }
    .btn-small { padding: 0.5rem 1rem; }
    .featured-video-showcase { grid-template-columns: 1fr; text-align: center; }
    .featured-video-copy h3 { max-width: none; }
    .featured-video-points li { justify-content: center; text-align: left; }
    .showcase-proof-strip { grid-template-columns: 1fr; }
    .video-cluster-head { grid-template-columns: 1fr; gap: 1rem; }
    .filmmaking-header .section-title { max-width: none; }
    .filmmaking-grid { grid-template-columns: 1fr; }
    .film-card,
    .film-card-feature { grid-column: auto; }
    .film-card-feature { grid-template-columns: 1fr; }
    .film-card-feature .video-card-body { margin-left: 0; }
    .film-card-feature .video-card-media { min-height: 20rem; }
    .transformation-shell { padding: 3rem 2.2rem 2.4rem; }
    .transformation-stage {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 0.75rem;
        padding-top: 0;
    }
    .transformation-stage-arrow {
        display: none;
    }
    .transformation-stage-mobile-arrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: -0.1rem 0 0.15rem;
    }
    .transformation-stage-mobile-line {
        width: 2px;
        height: 4.3rem;
        border-radius: 999px;
        background: #101010;
    }
    .transformation-stage-mobile-head {
        width: 0.95rem;
        height: 0.95rem;
        margin-top: -0.55rem;
        border-right: 2px solid #101010;
        border-bottom: 2px solid #101010;
        transform: rotate(45deg);
    }
    .hero-proof-row, .urgency-points { justify-content: center; }
    .trust-badge-strip-hero,
    .trust-badge-strip-cta { grid-template-columns: 1fr; }
    .audience-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .audience-intro { max-width: 48rem; margin: 0 auto; text-align: center; }
    .audience-intro .section-title,
    .audience-lead-copy { max-width: none; }
    .audience-intro-highlights { max-width: 52rem; margin: 0 auto; }
    .audience-intro-personas { justify-content: center; }
    .audience-intro-visual { max-width: 56rem; width: 100%; margin: 0 auto; }
    .audience-intro-canvas { min-height: 31rem; }
    .audience-intro-toolbar { top: 1rem; left: 1rem; max-width: calc(100% - 2rem); }
    .audience-intro-mainshot { top: 4.1rem; right: 1rem; width: min(74%, 31rem); }
    .audience-intro-mockup { left: 1.15rem; bottom: 1.15rem; width: min(37%, 14rem); }
    .audience-intro-mini-top { left: 1rem; top: 4.6rem; }
    .audience-intro-mini-bottom { right: 1.1rem; bottom: 7.45rem; width: min(22%, 7.8rem); }
    .audience-intro-badge-panel { right: 1rem; bottom: 1rem; width: min(48%, 16rem); padding: 0.8rem; }
    .audience-board { grid-template-columns: 1fr; }
    .audience-feature,
    .audience-summary { max-width: 56rem; width: 100%; margin: 0 auto; }
    .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .audience-card:last-child { grid-column: 1 / -1; }
    .pricing { font-size: 2.2rem; }
    .old-price { font-size: 1.4rem; }
}

/* Smartphones (Max width: 768px, effectively all general mobile screens) */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 4rem 0; }
    .hero { padding-top: 6rem; }
    .navbar { width: 100dvw; max-width: 100dvw; padding: 0.78rem 0.9rem; }
    .brand-wordmark { width: min(178px, 43vw); }
    .nav-actions { gap: 0.55rem; }
    .lang-switch { gap: 0.25rem; padding: 4px; }
    .lang-btn { font-size: 1.05rem; padding: 0.18rem 0.42rem; }
    .logo { min-width: 0; }
    .nav-actions { flex-shrink: 0; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    p { font-size: 1.05rem; }
    .btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
    .btn-small { display: none; } /* Hide small nav CTA to save space */
    .hero-text h1 {
        max-width: min(100%, 10.6ch);
        font-size: 2.28rem;
        line-height: 1.08;
    }
    .hero-text,
    .hero-meta-row,
    .subheadline,
    .hero-action-row {
        width: 100%;
        max-width: calc(100dvw - 3rem);
        margin-left: auto;
        margin-right: auto;
    }
    .subheadline {
        font-size: 0.98rem;
        line-height: 1.68;
    }
    .hero-action-row { flex-direction: column; align-items: stretch; }
    .hero-action-row .btn-primary { width: 100%; text-align: center; }
    .hero-mini-proof,
    .hero-proof-row { display: none; }
    .proof-chip { font-size: 0.78rem; padding: 0.58rem 0.72rem; }
    .hero-visual { max-width: min(32rem, 100%); }
    .hero-visual-stage {
        min-height: 27rem;
        border-radius: 26px;
    }
    .hero-screen-main {
        top: 4.1rem;
        right: 0.85rem;
        width: 52%;
    }
    .hero-screen-main-home {
        top: 50%;
        left: 50%;
        right: auto;
        width: min(100%, 34rem);
    }
    .hero-floating-card {
        top: 0.85rem;
        left: 0.85rem;
        width: 52%;
        padding: 0.82rem;
        border-radius: 18px;
    }
    .hero-floating-card strong { font-size: 0.95rem; }
    .hero-floating-card small { font-size: 0.72rem; }
    .hero-metric-card { display: none; }
    .hero-benefit-grid { grid-template-columns: 1fr; }
    .problem-visual, .product-visual { max-width: 100%; }
    .inside-grid { grid-template-columns: 1fr; }
    .inside-card { min-height: auto; }
    .capcut-module-frame { border-radius: 22px; }
    .capcut-module-points { gap: 0.55rem; }
    .capcut-module-points span { font-size: 0.82rem; }
    .kling-module-video { border-radius: 22px; }
    .kling-module-media { aspect-ratio: 16 / 9; }
    #kling-motion .kling-module-video-vertical .kling-module-media { aspect-ratio: 9 / 16; }
    .kling-module-list { gap: 0.65rem; }
    .kling-module-list li { padding: 0.9rem; font-size: 0.9rem; }
    .social-ai-lesson-videos { grid-template-columns: 1fr; width: min(100%, 22rem); }
    .social-ai-lesson-card,
    .social-ai-lesson-card:nth-child(2) { margin-top: 0; border-radius: 24px; }
    .social-ai-lesson-caption { padding: 0.9rem; }
    .social-ai-lesson-points > span { font-size: 0.76rem; }
    .ai-reel-proof-stats { grid-template-columns: 1fr; }
    .ai-reel-proof-stats div { min-height: auto; }
    .ai-reel-proof-videos { grid-template-columns: 1fr; width: min(100%, 22rem); }
    .ai-reel-card,
    .ai-reel-card:nth-child(2) { margin-top: 0; border-radius: 24px; }
    .ai-reel-caption { padding: 0.9rem; }
    .avatar-clone-video { width: min(100%, 20rem); border-radius: 26px; }
    .avatar-clone-media { border-radius: 26px; }
    .avatar-clone-list li { padding: 0.9rem 0.9rem 0.9rem 2.45rem; font-size: 0.92rem; }
    .avatar-clone-list li::before { left: 0.9rem; }
    .ai-spot-proof { grid-template-columns: 1fr; }
    .ai-spot-metric { min-height: auto; }
    .ai-spot-video-card { border-radius: 22px; }
    .ai-spot-caption { padding: 1rem; }
    .benefits-list li { font-size: 1rem; }
    
    .featured-video-showcase { padding: 1.25rem; border-radius: 22px; }
    .featured-video-kicker { width: 100%; justify-content: center; }
    .showcase-proof-item { text-align: left; }
    .showcase-proof-item img { height: 10rem; }
    .video-cluster { padding: 1.25rem; border-radius: 22px; }
    .video-cluster-grid { grid-template-columns: 1fr; }
    .play-btn { width: 2.8rem; height: 2.8rem; left: 0.85rem; bottom: 0.85rem; }
    .filmmaking-proof { width: 100%; }
    .film-card,
    .film-card-feature { border-radius: 22px; }
    .film-card .video-card-body,
    .film-card-feature .video-card-body { padding: 1rem; }
    .film-card-feature .video-card-body { margin-left: 0; }
    .film-card-feature .video-card-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .transformation-shell { padding: 2rem 1.25rem 1.4rem; border-radius: 26px; }
    .transformation-title { max-width: 10ch; font-size: clamp(2.25rem, 12vw, 3.6rem); }
    .transformation-card { padding: 1rem; border-radius: 24px; }
    .transformation-step-row { justify-content: flex-start; }
    .transformation-step-caption { font-size: 0.76rem; }
    .transformation-media {
        aspect-ratio: 1 / 1;
        padding: 0.65rem;
        border-radius: 22px;
    }
    .transformation-media-image img,
    .transformation-media-video video { border-radius: 18px; }
    .transformation-card-copy h3 { font-size: 1.4rem; }
    .transformation-result-bar { padding: 1rem; border-radius: 22px; }
    .transformation-result-bar p,
    .transformation-lead { font-size: 1rem; }
    .transformation-use-cases { gap: 0.55rem; }
    .transformation-use-case {
        width: calc(50% - 0.3rem);
        padding: 0.75rem 0.65rem;
        font-size: 0.78rem;
    }
    .solution-box { padding: 2rem 1.5rem; }
    .possibility-box { padding: 1.5rem; }
    .audience-intro { text-align: left; }
    .audience-intro .section-title { max-width: none; }
    .audience-intro-highlights { grid-template-columns: 1fr; }
    .audience-intro-highlight { justify-content: flex-start; min-height: auto; text-align: left; }
    .audience-intro-personas { justify-content: flex-start; }
    .audience-intro-canvas { min-height: 26.5rem; border-radius: 30px; }
    .audience-intro-toolbar { top: 0.95rem; left: 0.95rem; gap: 0.45rem; max-width: calc(100% - 1.9rem); }
    .audience-intro-toolbar-item { padding: 0.42rem 0.62rem; font-size: 0.63rem; }
    .audience-intro-mainshot { top: 4rem; right: 0.95rem; width: min(77%, 24rem); border-radius: 22px; }
    .audience-intro-mockup { left: 1rem; bottom: 1rem; width: min(41%, 12.5rem); border-radius: 20px; }
    .audience-intro-mini { border-radius: 18px; }
    .audience-intro-mini-top { left: 0.95rem; top: 4.35rem; width: min(29%, 7.2rem); }
    .audience-intro-mini-bottom { right: 1rem; bottom: 6.75rem; width: min(24%, 6.4rem); }
    .audience-intro-frame-label { left: 0.55rem; bottom: 0.55rem; padding: 0.4rem 0.54rem; font-size: 0.56rem; }
    .audience-intro-frame-label-main { left: auto; right: 0.55rem; }
    .audience-intro-frame-label-mockup { left: 0.55rem; right: 0.55rem; bottom: 0.55rem; padding: 0.45rem 0.55rem; }
    .audience-intro-badge-panel { left: 1rem; right: 1rem; bottom: 1rem; width: auto; padding: 0.72rem; border-radius: 18px; }
    .audience-intro-chip { font-size: 0.68rem; padding: 0.44rem 0.62rem; }
    .audience-board { gap: 1rem; }
    .audience-feature { min-height: 24rem; }
    .audience-feature-overlay { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; padding: 1rem; }
    .audience-feature-overlay h3 { max-width: none; font-size: 1.35rem; }
    .audience-summary { padding: 1rem; }
    .audience-summary-visual { min-height: 13rem; }
    .audience-signal-icon { width: 4rem; height: 4rem; border-radius: 20px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card:last-child { grid-column: auto; }
    .audience-card-media { min-height: 23rem; padding: 0; }
    .audience-card-shot { inset: 0; border-radius: 0; }
    .audience-media-kicker { top: 0.9rem; left: 0.9rem; }
    .audience-card-chip-stack { top: 3.95rem; left: 0.9rem; max-width: calc(100% - 1.8rem); }
    .audience-media-chip { padding: 0.45rem 0.62rem; font-size: 0.66rem; }
    .audience-card-mini-preview,
    .audience-card-delivery { right: 0.9rem; top: 4rem; border-radius: 18px; }
    .audience-card-mini-preview { width: min(37%, 8.25rem); }
    .audience-card-mini-preview-wide { bottom: 0.9rem; width: min(44%, 9rem); }
    .audience-card-delivery { width: min(40%, 8.8rem); padding: 0.8rem; }
    .audience-card-delivery-label { margin-bottom: 0.7rem; font-size: 0.62rem; }
    .audience-card-delivery-lines span { padding: 0.46rem 0.55rem; font-size: 0.7rem; }
    .audience-card-result { left: 0.9rem; right: 0.9rem; bottom: 0.9rem; width: auto; padding: 0.8rem 0.85rem; border-radius: 18px; }
    .audience-card-result-icon { width: 2.1rem; height: 2.1rem; border-radius: 13px; }
    .audience-card-result-copy strong { font-size: 0.82rem; }
    .audience-card-result-copy p { font-size: 0.73rem; }
    .audience-card-body { padding: 1.2rem; }
    .audience-card h3 { font-size: 1.4rem; }
    .cta-section .container { padding: 3rem 1.5rem; }
    .cta-mockup-wrap { max-width: 100%; margin-top: 2rem; padding: 0.6rem; border-radius: 22px; }
    .cta-mockup { border-radius: 18px; }
    .section-kicker, .hero-eyebrow { width: 100%; }
    .faq-question { align-items: flex-start; gap: 1rem; }
    .faq-question h3 { font-size: 1.05rem; }
    .pricing { font-size: 2rem; display: flex; flex-direction: column; gap: 0.5rem;}
    .old-price { margin-right: 0; }
    .trust-badge { padding: 0.85rem; }
    .trust-badge-icon { width: 2.5rem; height: 2.5rem; border-radius: 14px; }
    .trust-badge strong { font-size: 0.9rem; }
    .trust-badge span { font-size: 0.8rem; }
    
    
    .purchase-popup { bottom: 92px; left: 10px; right: 10px; padding: 10px; flex-direction: row; justify-content: center; background: rgba(15,15,15,0.98); }
    .popup-img-bg img { width: 40px; height: 40px;}
    .popup-text p { font-size: 0.85rem; }
    .live-chat-widget { left: auto; right: 10px; bottom: 16px; }
    .live-chat-launcher,
    .live-chat-panel { width: min(100%, calc(100vw - 20px)); }
}

/* Small smartphones (under 480px, e.g. iPhone SE) */
@media (max-width: 480px) {
    .navbar { padding: 0.85rem 1rem; }
    .brand-wordmark { width: min(158px, 42vw); max-height: 34px; }
    .nav-actions { gap: 0.45rem; }
    .lang-btn { font-size: 0.98rem; padding: 0.16rem 0.36rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-text h1 { max-width: min(100%, 10.2ch); font-size: 2.02rem; }
    .hero-countdown-bar { width: 100%; padding: 0.7rem 0.75rem; }
    .hero-countdown-time { font-size: 1.55rem; }
    .hero-visual-stage { min-height: 22.5rem; border-radius: 22px; }
    .hero-screen-main { top: 3.8rem; width: 51%; }
    .hero-screen-main-home { top: 50%; left: 50%; right: auto; width: min(100%, 28rem); }
    .hero-floating-card { width: 54%; padding: 0.72rem; }
    .hero-card-kicker { font-size: 0.62rem; }
    .hero-floating-card strong { font-size: 0.86rem; }
    .transformation-title { max-width: 9ch; }
    .transformation-kicker { padding: 0.5rem 0.78rem; font-size: 0.72rem; }
    .transformation-use-case { width: 100%; }
    .capcut-module-points span { width: 100%; }
    .live-chat-launcher { padding: 0.8rem 0.9rem; }
    .live-chat-launcher-status { width: 2.6rem; height: 2.6rem; }
    .live-chat-panel { height: min(32rem, calc(100vh - 28px)); border-radius: 20px; }
    .feature .icon, .box-icon, .icon-large { font-size: 2.5rem; }
    .benefits-list li { font-size: 1rem; }
    .timer { font-size: 2.5rem; }
    .trust-content { padding: 2.5rem 1.5rem; }
    .play-btn { width: 50px; height: 50px; font-size: 1.3rem; }
    .audience-intro-canvas { min-height: 22.25rem; border-radius: 26px; }
    .audience-intro-toolbar { top: 0.75rem; left: 0.75rem; gap: 0.35rem; max-width: calc(100% - 1.5rem); }
    .audience-intro-toolbar-item { padding: 0.34rem 0.48rem; font-size: 0.54rem; }
    .audience-intro-mainshot { top: 3.45rem; right: 0.75rem; width: min(79%, 17rem); border-radius: 18px; }
    .audience-intro-mockup { left: 0.75rem; bottom: 0.75rem; width: min(43%, 9.6rem); border-radius: 18px; }
    .audience-intro-mini { border-radius: 16px; }
    .audience-intro-mini-top { left: 0.75rem; top: 3.85rem; width: min(29%, 5.4rem); }
    .audience-intro-mini-bottom { right: 0.8rem; bottom: 5.95rem; width: min(24%, 4.6rem); }
    .audience-intro-frame-label { left: 0.45rem; bottom: 0.45rem; padding: 0.34rem 0.46rem; font-size: 0.5rem; }
    .audience-intro-frame-label-main { left: auto; right: 0.45rem; }
    .audience-intro-frame-label-mockup { left: 0.45rem; right: 0.45rem; bottom: 0.45rem; padding: 0.38rem 0.44rem; }
    .audience-intro-badge-panel { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 0.55rem; border-radius: 16px; gap: 0.38rem; }
    .audience-intro-chip { font-size: 0.58rem; padding: 0.34rem 0.46rem; }
    .audience-intro-highlight { padding: 0.85rem 0.9rem; border-radius: 18px; font-size: 0.85rem; }
    .audience-intro-persona { font-size: 0.74rem; padding: 0.48rem 0.72rem; }
    .audience-feature { min-height: 20rem; }
    .audience-feature-overlay { left: 0.85rem; right: 0.85rem; bottom: 0.85rem; padding: 0.9rem; }
    .audience-feature-overlay h3 { font-size: 1.12rem; }
    .audience-summary-visual { min-height: 11.5rem; }
    .audience-signal { gap: 0.72rem; padding: 0.85rem; }
    .audience-signal-icon { width: 3.45rem; height: 3.45rem; border-radius: 18px; }
    .audience-card-media { min-height: 21.5rem; padding: 0; }
    .audience-media-kicker { top: 0.75rem; left: 0.75rem; padding: 0.4rem 0.56rem; font-size: 0.56rem; }
    .audience-card-shot { inset: 0; border-radius: 0; }
    .audience-card-chip-stack { top: 3.35rem; left: 0.75rem; max-width: calc(100% - 1.5rem); gap: 0.34rem; }
    .audience-media-chip { padding: 0.36rem 0.48rem; font-size: 0.58rem; }
    .audience-card-mini-preview,
    .audience-card-delivery { right: 0.75rem; top: 3.4rem; border-radius: 16px; }
    .audience-card-mini-preview { width: min(36%, 6.8rem); }
    .audience-card-mini-preview-wide { bottom: 0.75rem; width: min(45%, 7.6rem); }
    .audience-card-delivery { width: min(40%, 7.2rem); padding: 0.65rem; }
    .audience-card-delivery-label { margin-bottom: 0.5rem; font-size: 0.54rem; }
    .audience-card-delivery-lines { gap: 0.35rem; }
    .audience-card-delivery-lines span { padding: 0.38rem 0.42rem; font-size: 0.6rem; border-radius: 11px; }
    .audience-card-result { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; width: auto; gap: 0.6rem; padding: 0.68rem 0.72rem; border-radius: 16px; }
    .audience-card-result-icon { width: 1.85rem; height: 1.85rem; border-radius: 11px; }
    .audience-card-result-icon svg { width: 0.92rem; height: 0.92rem; }
    .audience-card-result-copy strong { font-size: 0.72rem; }
    .audience-card-result-copy p { font-size: 0.66rem; }
    .audience-card-body { gap: 0.72rem; }
    .audience-card-subline { padding: 0.75rem 0.8rem; border-radius: 16px; }
    .audience-points li { gap: 0.6rem; font-size: 0.9rem; }
}

/* Variante B White */
body.theme-white {
    --bg-color: #F5F8FF;
    --text-color: #071426;
    --text-muted: #536279;
    --surface-1: #FFFFFF;
    --surface-2: #EEF4FF;
    --border-color: rgba(20, 65, 120, 0.16);
    background:
        radial-gradient(circle at 12% 6%, rgba(36, 232, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(139, 92, 255, 0.13), transparent 30rem),
        linear-gradient(180deg, #FBFDFF 0%, #F1F6FF 46%, #F8FBFF 100%);
    color: var(--text-color);
}

body.theme-white .page-loader {
    background: #F7FAFF;
}

body.theme-white .glow-orb {
    opacity: 0.16;
    filter: blur(120px);
}

body.theme-white .navbar {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(20, 65, 120, 0.12);
    box-shadow: 0 14px 40px rgba(9, 22, 45, 0.08);
}

body.theme-white .nav-links a,
body.theme-white .logo,
body.theme-white h1,
body.theme-white h2,
body.theme-white h3,
body.theme-white .section-title {
    color: var(--text-color);
}

body.theme-white .nav-links a:hover {
    color: var(--accent-blue);
}

body.theme-white p,
body.theme-white .subheadline,
body.theme-white .large-text,
body.theme-white .inside-lead,
body.theme-white .audience-lead-copy,
body.theme-white .faq-subheadline,
body.theme-white .urgency-subtext,
body.theme-white .cta-note,
body.theme-white .footer-text,
body.theme-white .footer-copy {
    color: var(--text-muted);
}

body.theme-white .hero {
    background:
        linear-gradient(115deg, rgba(36, 232, 255, 0.16), transparent 42%),
        radial-gradient(circle at 82% 24%, rgba(139, 92, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #FBFDFF 0%, #F2F7FF 100%);
}

body.theme-white .hero::after {
    background:
        linear-gradient(rgba(9, 24, 48, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 24, 48, 0.045) 1px, transparent 1px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

body.theme-white .brand-gradient-text,
body.theme-white .highlight-gradient,
body.theme-white .timer {
    background: linear-gradient(135deg, #00B7D9 0%, #315CFF 48%, #7B4DFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

body.theme-white .highlight,
body.theme-white .new-price,
body.theme-white .timer,
body.theme-white .toggle-icon {
    color: #315CFF;
}

body.theme-white .section-kicker,
body.theme-white .hero-eyebrow,
body.theme-white .featured-video-kicker,
body.theme-white .video-cluster-kicker,
body.theme-white .video-card-eyebrow,
body.theme-white .transformation-kicker {
    background: rgba(36, 232, 255, 0.12);
    border-color: rgba(49, 92, 255, 0.2);
    color: #153EBA;
}

body.theme-white .hero-countdown-bar,
body.theme-white .lang-switch {
    background:
        radial-gradient(circle at 50% 0%, rgba(36, 232, 255, 0.18), transparent 62%),
        rgba(255, 255, 255, 0.78);
    border-color: rgba(49, 92, 255, 0.2);
    box-shadow: 0 14px 34px rgba(20, 65, 120, 0.1);
}

body.theme-white .hero-countdown-label {
    color: #536279;
}

body.theme-white .hero-countdown-time {
    color: #153EBA;
    text-shadow: 0 0 18px rgba(36, 232, 255, 0.28);
}

body.theme-white .btn-primary {
    background: linear-gradient(135deg, #071426 0%, #153EBA 55%, #6E48FF 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(21, 62, 186, 0.24);
}

body.theme-white .btn-primary:hover {
    box-shadow: 0 22px 48px rgba(21, 62, 186, 0.32);
}

body.theme-white .btn-small {
    border-color: rgba(21, 62, 186, 0.28);
    background: rgba(255, 255, 255, 0.72);
    color: #153EBA;
}

body.theme-white .btn-small:hover {
    background: #071426;
    border-color: #071426;
    color: #FFFFFF;
}

body.theme-white .hero-mini-proof {
    border-left-color: rgba(20, 65, 120, 0.18);
}

body.theme-white .hero-mini-proof strong,
body.theme-white .hero-benefit-card strong,
body.theme-white .trust-badge > div > strong,
body.theme-white .inside-card span,
body.theme-white .feature h3,
body.theme-white .benefit-card h3,
body.theme-white .review-author strong,
body.theme-white .audience-card h3,
body.theme-white .featured-video-copy h3,
body.theme-white .video-card h3,
body.theme-white .faq-question h3,
body.theme-white .trust-point,
body.theme-white .urgency-point,
body.theme-white .cta-assurance-list li,
body.theme-white .capcut-module-points span,
body.theme-white .kling-module-list li,
body.theme-white .social-ai-lesson-points > span,
body.theme-white .ai-reel-proof-stats strong,
body.theme-white .ai-reel-caption h3,
body.theme-white .avatar-clone-list li,
body.theme-white .ai-spot-list li,
body.theme-white .ai-spot-metric strong,
body.theme-white .audience-intro-highlight,
body.theme-white .audience-intro-persona,
body.theme-white .audience-role-type,
body.theme-white .audience-index,
body.theme-white .audience-clean-tag,
body.theme-white .transformation-use-case,
body.theme-white .guarantee {
    color: var(--text-color);
}

body.theme-white .hero-mini-proof span,
body.theme-white .hero-benefit-card p,
body.theme-white .trust-badge > div > span,
body.theme-white .inside-card p,
body.theme-white .review-text,
body.theme-white .audience-card p,
body.theme-white .video-card p,
body.theme-white .ai-reel-proof-stats span,
body.theme-white .ai-reel-proof-cta small,
body.theme-white .ai-spot-metric span {
    color: var(--text-muted);
}

body.theme-white .hero-benefit-card,
body.theme-white .trust-badge,
body.theme-white .proof-chip,
body.theme-white .solution-box,
body.theme-white .inside-card,
body.theme-white .workflow-tool-card,
body.theme-white .capcut-module-frame,
body.theme-white .video-card,
body.theme-white .ai-reel-proof-stats div,
body.theme-white .ai-reel-card,
body.theme-white .benefit-card,
body.theme-white .review-card,
body.theme-white .featured-video-showcase,
body.theme-white .showcase-proof-strip,
body.theme-white .showcase-proof-item,
body.theme-white .video-cluster,
body.theme-white .audience-card,
body.theme-white .audience-summary,
body.theme-white .faq-item,
body.theme-white .trust-content,
body.theme-white .cta-section .container,
body.theme-white .cta-mockup-wrap {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.82));
    border-color: rgba(20, 65, 120, 0.14);
    box-shadow: 0 24px 58px rgba(9, 22, 45, 0.08);
}

body.theme-white .hero-screen-card img,
body.theme-white .cta-mockup {
    border-color: rgba(20, 65, 120, 0.14);
    box-shadow: 0 24px 58px rgba(9, 22, 45, 0.18), 0 0 60px rgba(36, 232, 255, 0.12);
}

body.theme-white .bg-darker,
body.theme-white .capcut-module,
body.theme-white .kling-module,
body.theme-white .social-ai-lesson,
body.theme-white .ai-reel-proof,
body.theme-white .avatar-clone-module,
body.theme-white .audience,
body.theme-white .benefits,
body.theme-white .video-showcase,
body.theme-white .urgency,
body.theme-white .faq,
body.theme-white .footer {
    background:
        radial-gradient(circle at 12% 8%, rgba(36, 232, 255, 0.11), transparent 25rem),
        radial-gradient(circle at 86% 10%, rgba(139, 92, 255, 0.1), transparent 28rem),
        linear-gradient(180deg, #F7FAFF 0%, #EEF4FF 100%);
}

body.theme-white .kling-module::before,
body.theme-white .capcut-module::before {
    opacity: 0.58;
}

body.theme-white .parallax-section {
    color: var(--text-color);
    background-blend-mode: screen;
}

body.theme-white .parallax-overlay,
body.theme-white .parallax-overlay[style] {
    background: rgba(246, 250, 255, 0.78) !important;
    backdrop-filter: blur(2px);
}

body.theme-white .trust-content,
body.theme-white .trust-content[style] {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(49, 92, 255, 0.18) !important;
    box-shadow: 0 28px 70px rgba(9, 22, 45, 0.12) !important;
}

body.theme-white .trust-point,
body.theme-white .urgency-point,
body.theme-white .cta-assurance-list li,
body.theme-white .capcut-module-points span,
body.theme-white .kling-module-list li,
body.theme-white .social-ai-lesson-points > span,
body.theme-white .avatar-clone-list li,
body.theme-white .ai-spot-list li,
body.theme-white .audience-intro-highlight,
body.theme-white .audience-intro-persona,
body.theme-white .audience-clean-tag,
body.theme-white .transformation-use-case {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(49, 92, 255, 0.18);
}

body.theme-white .trust-badge-icon,
body.theme-white .hero-benefit-card > span,
body.theme-white .audience-index,
body.theme-white .play-btn {
    background: rgba(36, 232, 255, 0.13);
    border-color: rgba(49, 92, 255, 0.2);
    color: #153EBA;
}

body.theme-white .workflow-tool-label,
body.theme-white .audience-intro-toolbar-item,
body.theme-white .audience-intro-frame-label,
body.theme-white .audience-intro-chip,
body.theme-white .audience-media-kicker,
body.theme-white .audience-media-chip,
body.theme-white .audience-card-result,
body.theme-white .audience-card-delivery,
body.theme-white .featured-video-point,
body.theme-white .video-card-tags span {
    background: rgba(7, 20, 38, 0.82);
    border-color: rgba(49, 92, 255, 0.22);
    color: #FFFFFF;
}

body.theme-white .video-card-media,
body.theme-white .workflow-tool-image-contain,
body.theme-white .kling-module-media,
body.theme-white .social-ai-lesson-media,
body.theme-white .ai-reel-media,
body.theme-white .avatar-clone-media,
body.theme-white .ai-spot-media {
    background: #071426;
}

body.theme-white .video-card-overlay {
    background: linear-gradient(180deg, transparent 38%, rgba(7, 20, 38, 0.72));
}

body.theme-white .old-price {
    color: #7C8799;
}

body.theme-white .new-price {
    color: #153EBA;
    filter: drop-shadow(0 0 12px rgba(36, 232, 255, 0.24));
}

body.theme-white .countdown-wrapper,
body.theme-white .pricing {
    color: var(--text-color);
}

body.theme-white .purchase-popup {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(49, 92, 255, 0.28);
    box-shadow: 0 18px 48px rgba(9, 22, 45, 0.16);
}

body.theme-white .popup-text p {
    color: var(--text-color);
}

body.theme-white .popup-text strong {
    color: #153EBA;
}

body.theme-white .modal-content img,
body.theme-white .modal-content video {
    border-color: rgba(36, 232, 255, 0.3);
}

body.theme-white .upsell-content,
body.theme-white .live-chat-panel,
body.theme-white .live-chat-launcher {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(49, 92, 255, 0.2);
    color: var(--text-color);
}
