/* ==================================================================
   CANDY AI CLONE — NIGHT MODE REDESIGN (2026)
   Palette: Black · Red · Pink · Blue
   ================================================================== */

:root {
    /* New brand tokens */
    --brand-black: #07070d;
    --brand-ink: #0e0e1a;
    --brand-coal: #14142a;
    --brand-panel: rgba(16, 16, 28, 0.72);
    --brand-line: rgba(255, 255, 255, 0.08);
    --brand-text: #f7f6fc;
    --brand-text-muted: #a0a1bd;
    --brand-red: #ff1744;
    --brand-pink: #ff2d92;
    --brand-blue: #2f7dff;
    --brand-blue-soft: #5a97ff;
    --brand-success: #2fd98f;
    --brand-container: 1200px;
    --brand-radius: 22px;
    --brand-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);

    /* Legacy alias bridge so existing partials keep rendering */
    --cai-bg: var(--brand-black);
    --cai-bg-soft: var(--brand-ink);
    --cai-panel: var(--brand-panel);
    --cai-panel-strong: rgba(22, 22, 38, 0.9);
    --cai-panel-border: rgba(255, 23, 68, 0.24);
    --cai-text: var(--brand-text);
    --cai-text-muted: var(--brand-text-muted);
    --cai-accent: var(--brand-red);
    --cai-accent-strong: var(--brand-pink);
    --cai-secondary: var(--brand-blue);
    --cai-secondary-soft: var(--brand-blue-soft);
    --cai-success: var(--brand-success);
    --cai-shadow: var(--brand-shadow);
    --cai-radius: var(--brand-radius);
    --cai-container: var(--brand-container);
}

/* ---------- Base reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Tahoma, system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--brand-text);
    background: var(--brand-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ---------- Typography tokens ---------- */
:where(h1, h2, h3, h4, h5, h6) {
    font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
body.lead-modal-open { overflow: hidden; }
.site-shell { min-height: 100vh; }
.site-main { position: relative; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(7, 7, 13, 0.55);
    border-bottom: 1px solid var(--brand-line);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 32px), var(--brand-container));
    margin: 0 auto;
    padding: 16px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-pink) 50%, var(--brand-blue) 100%);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.35), 0 0 22px rgba(47, 125, 255, 0.25);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}
.brand__copy { display: grid; gap: 2px; }
.brand__copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.brand__copy small {
    font-family: "Inter", sans-serif;
    color: var(--brand-text-muted);
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.site-nav__list,
.footer-links__list,
.footer-meta-links {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}
.site-nav__list a,
.footer-links__list a,
.footer-meta-links a {
    color: var(--brand-text-muted);
    position: relative;
    transition: color 0.25s ease;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: -0.005em;
}
.site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    transition: transform 0.25s ease;
}
.site-nav__list a:hover,
.footer-links__list a:hover,
.footer-meta-links a:hover { color: var(--brand-text); }
.site-nav__list a:hover::after { transform: scaleX(1); }

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

/* ---------- Buttons ---------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.005em;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-pink) 55%, var(--brand-blue) 120%);
    box-shadow: 0 12px 32px rgba(255, 23, 68, 0.42), 0 0 40px rgba(47, 125, 255, 0.18);
}
.button--primary:hover {
    box-shadow: 0 18px 48px rgba(255, 23, 68, 0.5), 0 0 52px rgba(47, 125, 255, 0.28);
}
.button--secondary,
.button--ghost {
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}
.button--secondary:hover,
.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-blue);
}
.button--block { width: 100%; }

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================================
   HERO — NIGHT MODE
   ================================================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 115px 0 60px;
    background: var(--brand-black);
    color: var(--brand-text);
    overflow: hidden;
    isolation: isolate;
}

/* ----- Backdrop layers ----- */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
    animation: heroGlow 16s ease-in-out infinite alternate;
}
.hero__glow--red {
    top: -20%;
    right: -12%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, var(--brand-red), transparent 62%);
    opacity: 0.75;
}
.hero__glow--pink {
    bottom: -18%;
    left: -12%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, var(--brand-pink), transparent 62%);
    opacity: 0.7;
    animation-duration: 19s;
}
.hero__glow--blue {
    top: 40%;
    left: 42%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--brand-blue), transparent 64%);
    opacity: 0.45;
    animation-duration: 21s;
}
.hero__laser {
    position: absolute;
    top: 22%;
    left: -10%;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-red) 28%, var(--brand-pink) 50%, var(--brand-blue) 72%, transparent 100%);
    transform: rotate(-6deg);
    opacity: 0.7;
    box-shadow: 0 0 24px rgba(255, 45, 146, 0.4);
}
.hero__laser::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    bottom: -7px;
    background: inherit;
    filter: blur(16px);
    opacity: 0.55;
}
.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
}
.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.75) 100%);
}

/* ----- Editorial marker ----- */
.hero__marker {
    position: absolute;
    top: 108px;
    left: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.hero__marker-bar {
    width: 32px;
    height: 2px;
    background: var(--brand-red);
    box-shadow: 0 0 12px var(--brand-red);
}
.hero__marker-text {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--brand-text-muted);
    font-weight: 700;
}

/* ----- Main frame ----- */
.hero__frame {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: min(calc(100% - 48px), 1100px);
    margin: 0 auto;
    padding-top: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 45, 146, 0.32);
    color: var(--brand-text);
    font-family: "JetBrains Mono", "Space Grotesk", monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 0 32px rgba(255, 45, 146, 0.22);
    margin-bottom: 38px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 14px var(--brand-red);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}

.hero__title {
    margin: 0 0 30px;
    font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
    font-size: clamp(calc(2.3rem - 12px), calc(6.2vw - 12px), calc(5.4rem - 12px));
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--brand-text);
    text-wrap: balance;
}
.hero__title-row {
    display: block;
}
.hero__title-row--stamp {
    margin: 0.12em 0 0.14em;
}
.hero__title-stamp {
    display: inline-block;
    position: relative;
    padding: 0.04em 0.42em 0.1em;
    border-radius: 0.18em;
    background: linear-gradient(120deg, var(--brand-red) 0%, var(--brand-pink) 55%, var(--brand-blue) 110%);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
    transform: rotate(-1.6deg);
    box-shadow:
        0 24px 60px rgba(255, 23, 68, 0.45),
        0 0 46px rgba(255, 45, 146, 0.38),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        inset 0 -3px 0 rgba(0, 0, 0, 0.12);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero__title-stamp::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    z-index: -1;
    filter: blur(20px);
    opacity: 0.7;
}
.hero__title-stamp::after {
    content: "";
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    height: 40%;
    border-radius: inherit inherit 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
}

.hero__lead {
    max-width: 600px;
    margin: 0 0 42px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.005em;
    color: #c4c5d8;
    text-wrap: pretty;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 999px;
    border: 0;
    font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-pink) 55%, var(--brand-blue) 120%);
    box-shadow: 0 14px 40px rgba(255, 23, 68, 0.45), 0 0 56px rgba(47, 125, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(255, 23, 68, 0.55), 0 0 68px rgba(47, 125, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.hero__btn-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 1.15rem;
}
.hero__btn--primary:hover .hero__btn-arrow { transform: translateX(6px); }

.hero__btn--ghost {
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}
.hero__btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-blue);
    box-shadow: 0 14px 40px rgba(47, 125, 255, 0.3);
}
.hero__btn-icon {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    color: #fff;
    font-size: 0.62rem;
    padding-left: 2px;
    box-shadow: 0 6px 16px rgba(255, 23, 68, 0.45);
}

.hero__signals {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.hero__signal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", system-ui, sans-serif;
    color: #b4b5cc;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.hero__signal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.hero__signal-dot--red { background: var(--brand-red); box-shadow: 0 0 10px var(--brand-red); }
.hero__signal-dot--pink { background: var(--brand-pink); box-shadow: 0 0 10px var(--brand-pink); }
.hero__signal-dot--blue { background: var(--brand-blue); box-shadow: 0 0 10px var(--brand-blue); }

/* ----- Floating profile card ----- */
.hero__card {
    position: absolute;
    right: 56px;
    bottom: 120px;
    z-index: 3;
    width: 240px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(20, 18, 36, 0.96), rgba(10, 8, 20, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 44px rgba(255, 23, 68, 0.2);
    transform: rotate(3deg);
    animation: heroCardFloat 6.5s ease-in-out infinite;
}
.hero__card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-red), transparent 40%, var(--brand-blue));
    z-index: -1;
    opacity: 0.55;
    filter: blur(8px);
}
.hero__card-tape {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    margin-bottom: 12px;
    border-radius: 5px;
    background: repeating-linear-gradient(135deg, var(--brand-red) 0 8px, var(--brand-pink) 8px 16px);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0a0a12;
}
.hero__card-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 2px 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}
.hero__card-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
}
.hero__card-avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    animation: heroCardSpin 10s linear infinite;
}
.hero__card-meta { flex: 1; display: grid; gap: 2px; }
.hero__card-meta strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
}
.hero__card-meta span {
    font-family: "Inter", sans-serif;
    font-size: 0.66rem;
    font-weight: 400;
    color: var(--brand-text-muted);
    letter-spacing: -0.005em;
}
.hero__card-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-success);
}
.hero__card-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-success);
    box-shadow: 0 0 10px var(--brand-success);
    animation: heroBadgePulse 1.6s ease-in-out infinite;
}
.hero__card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 2px;
}
.hero__card-stats div {
    display: grid;
    gap: 1px;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__card-stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
}
.hero__card-stats span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.52rem;
    font-weight: 500;
    color: var(--brand-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ----- Giant editorial numeral ----- */
.hero__numeral {
    position: absolute;
    left: -28px;
    bottom: -44px;
    z-index: 1;
    font-family: "Instrument Serif", "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(14rem, 26vw, 26rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
    pointer-events: none;
    user-select: none;
}

/* ----- Scroll cue ----- */
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--brand-text-muted);
    text-decoration: none;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    transform: translateY(-100%);
    animation: heroScrollLine 2.2s ease-in-out infinite;
}
.hero__scroll-text {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
}

/* ----- Floating romantic chat (right side of hero) ----- */
.hero__chatrail {
    position: absolute;
    top: 0;
    right: 3%;
    bottom: 0;
    width: min(300px, 26vw);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.55;
    perspective: 900px;
    perspective-origin: 50% 50%;
    mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 76%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 76%, transparent 100%);
}
.hero__chat-track {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 80px 0;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    animation: chatScroll 76s linear infinite;
    will-change: transform;
}
.hero__chatrail:hover .hero__chat-track { animation-play-state: paused; }

.hero__chat-msg {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 92%;
    font-family: "Inter", "Segoe UI", sans-serif;
}
.hero__chat-msg--she { align-self: flex-start; text-align: left; }
.hero__chat-msg--he  { align-self: flex-end;   text-align: right; }

.hero__chat-name {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero__chat-msg--she .hero__chat-name { color: rgba(255, 145, 195, 0.65); }
.hero__chat-msg--he  .hero__chat-name { color: rgba(145, 180, 255, 0.65); }

.hero__chat-text {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.005em;
    color: rgba(240, 240, 255, 0.78);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

/* Floating hearts */
.hero__chat-heart {
    position: absolute;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 75, 140, 0.45));
    animation: heartRise 9s ease-in infinite;
}
.hero__chat-heart--one   { left: 14%; animation-delay: 0s; }
.hero__chat-heart--two   { left: 54%; animation-delay: 3s; font-size: 0.9rem; }
.hero__chat-heart--three { left: 78%; animation-delay: 6s; font-size: 1.25rem; }

@keyframes chatScroll {
    from { transform: rotateX(26deg) translateY(0); }
    to   { transform: rotateX(26deg) translateY(-50%); }
}
@keyframes heartRise {
    0%   { bottom: -4%;  opacity: 0;   transform: translateX(0)   scale(0.6); }
    15%  { opacity: 0.85; }
    50%  { transform: translateX(-14px) scale(1); }
    100% { bottom: 108%; opacity: 0;   transform: translateX(6px) scale(1.1); }
}

@media (max-width: 1200px) {
    .hero__chatrail { display: none; }
}

/* ----- Hero animations ----- */
@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-22px, 22px) scale(1.08); }
}
@keyframes heroBadgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.45); opacity: 0.55; }
}
@keyframes heroCardFloat {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-14px); }
}
@keyframes heroCardSpin {
    to { transform: rotate(360deg); }
}
@keyframes heroScrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ==================================================================
   SECTION PRIMITIVES (shared by section 2, 3, ...)
   ================================================================== */
.section {
    position: relative;
    padding: 112px 0;
    background: var(--brand-black);
    color: var(--brand-text);
    overflow: hidden;
    isolation: isolate;
}
.section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.section__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.32;
}
.section__glow--red   { top: -20%;  right: -10%; width: 520px; height: 520px; background: radial-gradient(circle, var(--brand-red),  transparent 65%); }
.section__glow--pink  { top: 48%;   left: -12%;  width: 480px; height: 480px; background: radial-gradient(circle, var(--brand-pink), transparent 65%); }
.section__glow--blue  { bottom: -20%; left: 40%; width: 520px; height: 520px; background: radial-gradient(circle, var(--brand-blue), transparent 65%); }

.section__inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--brand-container));
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.section-eyebrow__bar {
    width: 28px;
    height: 2px;
    background: var(--brand-red);
    box-shadow: 0 0 12px var(--brand-red);
}
.section-eyebrow__text {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

.section__title {
    margin: 0 0 22px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.035em;
    max-width: 880px;
    color: var(--brand-text);
    text-wrap: balance;
}
.section__title > span { display: inline; }
.section__stamp {
    display: inline-block;
    position: relative;
    padding: 0.02em 0.3em 0.08em;
    margin-left: 0.18em;
    border-radius: 0.18em;
    background: linear-gradient(120deg, var(--brand-red) 0%, var(--brand-pink) 55%, var(--brand-blue) 110%);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.03em;
    transform: rotate(-1.4deg);
    box-shadow:
        0 18px 48px rgba(255, 23, 68, 0.4),
        0 0 36px rgba(255, 45, 146, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        inset 0 -3px 0 rgba(0, 0, 0, 0.12);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.section__stamp::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    z-index: -1;
    filter: blur(18px);
    opacity: 0.6;
}

.section__lead {
    max-width: 640px;
    margin: 0 0 56px;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: #c4c5d8;
    text-wrap: pretty;
}

/* ==================================================================
   SPOTLIGHT + LIGHT RAYS (Section 2 — adds drama over dark bg)
   ================================================================== */
.section__spotlight {
    position: absolute;
    top: -16%;
    left: 50%;
    transform: translateX(-50%);
    width: min(94%, 1100px);
    height: 70%;
    background:
        radial-gradient(ellipse at center top, rgba(255, 210, 230, 0.22), rgba(255, 150, 200, 0.08) 40%, transparent 66%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.section__ray {
    position: absolute;
    top: -8%;
    width: 220px;
    height: 140%;
    background: linear-gradient(180deg,
        rgba(255, 220, 235, 0.22) 0%,
        rgba(255, 190, 220, 0.12) 30%,
        rgba(120, 150, 255, 0.06) 65%,
        transparent 88%);
    filter: blur(34px);
    transform-origin: top center;
    pointer-events: none;
    opacity: 0.75;
    mix-blend-mode: screen;
    animation: rayFlicker 7s ease-in-out infinite alternate;
}
.section__ray--1 {
    left: 16%;
    transform: rotate(12deg);
    animation-delay: 0s;
}
.section__ray--2 {
    left: 46%;
    width: 160px;
    transform: rotate(-4deg);
    opacity: 0.55;
    animation-duration: 9s;
    animation-delay: -2s;
}
.section__ray--3 {
    right: 12%;
    width: 240px;
    transform: rotate(-14deg);
    opacity: 0.7;
    animation-duration: 8s;
    animation-delay: -4s;
}

@keyframes rayFlicker {
    0%   { opacity: 0.35; transform: rotate(var(--r, 10deg)) translateY(0); }
    50%  { opacity: 0.85; transform: rotate(var(--r, 10deg)) translateY(-6px); }
    100% { opacity: 0.5;  transform: rotate(var(--r, 10deg)) translateY(2px); }
}
.section__ray--1 { --r: 12deg; }
.section__ray--2 { --r: -4deg; }
.section__ray--3 { --r: -14deg; }
.section__ray--4 {
    left: 68%;
    width: 200px;
    transform: rotate(8deg);
    opacity: 0.6;
    animation-duration: 10s;
    animation-delay: -1s;
    --r: 8deg;
}

/* Lens-flare / sun burst */
.section__flare {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
    pointer-events: none;
    mix-blend-mode: screen;
    background:
        radial-gradient(circle at center, rgba(255, 220, 235, 0.55) 0%, rgba(255, 170, 210, 0.25) 22%, transparent 60%);
    filter: blur(6px);
    animation: flarePulse 6s ease-in-out infinite;
}
.section__flare::before,
.section__flare::after {
    content: "";
    position: absolute;
    inset: 38% 10%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    filter: blur(2px);
}
.section__flare::after {
    inset: 10% 38%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}
@keyframes flarePulse {
    0%, 100% { transform: translateX(-50%) scale(1);    opacity: 0.85; }
    50%      { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

/* Solutions-specific warmer/sunnier tuning */
.section--solutions .section__spotlight {
    background:
        radial-gradient(ellipse at center top, rgba(255, 200, 180, 0.28), rgba(255, 140, 180, 0.1) 38%, transparent 66%);
}
.section--solutions .section__ray {
    background: linear-gradient(180deg,
        rgba(255, 230, 215, 0.26) 0%,
        rgba(255, 190, 200, 0.14) 30%,
        rgba(150, 170, 255, 0.06) 65%,
        transparent 88%);
}

/* ==================================================================
   SECTION 2 — WHY 2026
   ================================================================== */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.opportunity-card {
    position: relative;
    padding: 30px 30px 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.opportunity-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    opacity: 0.7;
}
.opportunity-card--red::before  { background: linear-gradient(90deg, transparent, var(--brand-red),  transparent); }
.opportunity-card--pink::before { background: linear-gradient(90deg, transparent, var(--brand-pink), transparent); }
.opportunity-card--blue::before { background: linear-gradient(90deg, transparent, var(--brand-blue), transparent); }
.opportunity-card--mix::before  { background: linear-gradient(90deg, var(--brand-red), var(--brand-pink), var(--brand-blue)); }

.opportunity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 146, 0.32);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.opportunity-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--brand-text-muted);
    margin-bottom: 20px;
}
.opportunity-card--red  .opportunity-card__tag { color: var(--brand-red);  border-color: rgba(255, 23, 68, 0.38); }
.opportunity-card--pink .opportunity-card__tag { color: var(--brand-pink); border-color: rgba(255, 45, 146, 0.38); }
.opportunity-card--blue .opportunity-card__tag { color: var(--brand-blue); border-color: rgba(47, 125, 255, 0.38); }
.opportunity-card--mix  .opportunity-card__tag {
    color: #fff;
    border-color: rgba(255, 45, 146, 0.38);
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.22), rgba(47, 125, 255, 0.22));
}

.opportunity-card__title {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.24rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
}
.opportunity-card p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.96rem;
    line-height: 1.62;
    color: var(--brand-text-muted);
}

.opportunity-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}
.opportunity-callout__bar {
    flex-shrink: 0;
    width: 4px;
    height: 44px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
}
.opportunity-callout p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #d4d5e8;
}

/* ==================================================================
   SECTION 3 — SOLUTIONS
   ================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.solution-card--red:hover  { transform: translateY(-6px); border-color: rgba(255, 23, 68, 0.45);  box-shadow: 0 26px 64px rgba(255, 23, 68, 0.24); }
.solution-card--pink:hover { transform: translateY(-6px); border-color: rgba(255, 45, 146, 0.45); box-shadow: 0 26px 64px rgba(255, 45, 146, 0.24); }
.solution-card--blue:hover { transform: translateY(-6px); border-color: rgba(47, 125, 255, 0.45); box-shadow: 0 26px 64px rgba(47, 125, 255, 0.24); }

.solution-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.solution-card__glyph {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    color: #fff;
}
.solution-card--red  .solution-card__glyph { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 12px 30px rgba(255, 23, 68, 0.4); }
.solution-card--pink .solution-card__glyph { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 12px 30px rgba(255, 45, 146, 0.4); }
.solution-card--blue .solution-card__glyph { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 12px 30px rgba(47, 125, 255, 0.4); }

.solution-card__tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

.solution-card__title {
    margin: 4px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.24rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
    line-height: 1.25;
}
.solution-card > p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
}

.solution-card__list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    gap: 10px;
}
.solution-card__list li {
    position: relative;
    padding-left: 22px;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #c4c5d8;
}
.solution-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 2px;
    border-radius: 1px;
}
.solution-card--red  .solution-card__list li::before { background: var(--brand-red);  box-shadow: 0 0 8px rgba(255, 23, 68, 0.7); }
.solution-card--pink .solution-card__list li::before { background: var(--brand-pink); box-shadow: 0 0 8px rgba(255, 45, 146, 0.7); }
.solution-card--blue .solution-card__list li::before { background: var(--brand-blue); box-shadow: 0 0 8px rgba(47, 125, 255, 0.7); }

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-text);
    transition: color 0.2s ease;
}
.solution-card--red  .solution-card__link:hover { color: var(--brand-red); }
.solution-card--pink .solution-card__link:hover { color: var(--brand-pink); }
.solution-card--blue .solution-card__link:hover { color: var(--brand-blue); }
.solution-card__link span { transition: transform 0.2s ease; }
.solution-card__link:hover span { transform: translateX(4px); }

/* ==================================================================
   CTA — ADULT BUSINESS REGISTRATION (sits between Solutions & Features)
   ================================================================== */
.section--registration { padding: 88px 0; }
.section--registration .section__flare {
    top: -12%;
    left: 20%;
    width: 280px;
    height: 280px;
    opacity: 0.8;
}

.registration-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 44px 48px;
    border-radius: 26px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255, 23, 68, 0.14), transparent 55%),
        radial-gradient(ellipse at 90% 85%, rgba(47, 125, 255, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(22, 20, 38, 0.78), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 45, 146, 0.26);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}
.registration-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-red), transparent 40%, transparent 60%, var(--brand-blue));
    z-index: -1;
    opacity: 0.45;
    filter: blur(18px);
}

.registration-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    background: rgba(255, 45, 146, 0.1);
    border: 1px solid rgba(255, 45, 146, 0.32);
    color: var(--brand-pink);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.registration-panel__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 10px var(--brand-red);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}

.registration-panel__title {
    margin: 0 0 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: var(--brand-text);
}
.registration-panel__title > span { display: inline; }

.registration-panel__lead {
    margin: 0 0 22px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--brand-text-muted);
    max-width: 560px;
}

.registration-panel__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}
.registration-panel__checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    color: #d4d5e8;
    line-height: 1.4;
}
.registration-panel__check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    color: #fff;
    box-shadow: 0 6px 14px rgba(255, 23, 68, 0.38);
}

.registration-panel__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.registration-panel__note {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

/* Approved badge visual */
.registration-panel__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.registration-badge {
    position: relative;
    width: 240px;
    height: 240px;
    display: grid;
    place-items: center;
    transform: rotate(-6deg);
    color: var(--brand-text);
}
.registration-badge__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 45, 146, 0.6);
    box-shadow:
        inset 0 0 40px rgba(255, 23, 68, 0.2),
        0 0 40px rgba(47, 125, 255, 0.18);
    animation: badgeSpin 24s linear infinite;
}
.registration-badge__ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.registration-badge__inner {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 4px;
    text-align: center;
    padding: 0 20px;
}
.registration-badge__top,
.registration-badge__bot {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(230, 230, 245, 0.85);
}
.registration-badge__big {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(255, 45, 146, 0.4));
    padding: 6px 0;
}
.registration-badge__seal {
    position: absolute;
    right: -14px;
    top: -14px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 23, 68, 0.4);
    transform: rotate(8deg);
}

.registration-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.registration-chip {
    padding: 6px 12px;
    border-radius: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-text-muted);
}

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

@media (max-width: 980px) {
    .registration-panel {
        grid-template-columns: 1fr;
        padding: 32px 28px;
        gap: 32px;
        text-align: left;
    }
    .registration-panel__visual { order: -1; }
}
@media (max-width: 680px) {
    .section--registration { padding: 56px 0; }
    .registration-panel { padding: 26px 20px; border-radius: 22px; }
    .registration-badge { width: 200px; height: 200px; }
    .registration-badge__big { font-size: 1.6rem; }
    .registration-panel__actions { width: 100%; }
    .registration-panel__actions .hero__btn { width: 100%; justify-content: center; }
}

/* ==================================================================
   SECTION 4 — FEATURES (ghost tile bento)
   ================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.feature-tile {
    position: relative;
    padding: 24px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(22, 20, 38, 0.55), rgba(12, 10, 24, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-tile::after {
    content: "";
    position: absolute;
    inset: -40% -40% auto auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(38px);
    pointer-events: none;
}
.feature-tile:hover { transform: translateY(-4px); }
.feature-tile:hover::after { opacity: 0.6; }
.feature-tile--red:hover  { border-color: rgba(255, 23, 68, 0.42);  box-shadow: 0 18px 50px rgba(255, 23, 68, 0.18); }
.feature-tile--red:hover::after  { background: var(--brand-red); }
.feature-tile--pink:hover { border-color: rgba(255, 45, 146, 0.42); box-shadow: 0 18px 50px rgba(255, 45, 146, 0.18); }
.feature-tile--pink:hover::after { background: var(--brand-pink); }
.feature-tile--blue:hover { border-color: rgba(47, 125, 255, 0.42); box-shadow: 0 18px 50px rgba(47, 125, 255, 0.18); }
.feature-tile--blue:hover::after { background: var(--brand-blue); }

.feature-tile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.feature-tile__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    color: #fff;
}
.feature-tile--red  .feature-tile__icon { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 8px 22px rgba(255, 23, 68, 0.38); }
.feature-tile--pink .feature-tile__icon { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 8px 22px rgba(255, 45, 146, 0.38); }
.feature-tile--blue .feature-tile__icon { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 8px 22px rgba(47, 125, 255, 0.38); }

.feature-tile__num {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--brand-text-muted);
}
.feature-tile__title {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
    line-height: 1.3;
}
.feature-tile p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
}

.feature-footer {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 48px 0 0;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.feature-footer__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 14px rgba(255, 45, 146, 0.6);
    flex-shrink: 0;
}
.feature-footer p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    color: #d4d5e8;
}

/* ==================================================================
   SECTION 5 — AI IMAGE MODELS
   ================================================================== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.model-card {
    position: relative;
    padding: 26px 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover { transform: translateY(-5px); }
.model-card--red:hover  { border-color: rgba(255, 23, 68, 0.45);  box-shadow: 0 26px 64px rgba(255, 23, 68, 0.22); }
.model-card--pink:hover { border-color: rgba(255, 45, 146, 0.45); box-shadow: 0 26px 64px rgba(255, 45, 146, 0.22); }
.model-card--blue:hover { border-color: rgba(47, 125, 255, 0.45); box-shadow: 0 26px 64px rgba(47, 125, 255, 0.22); }
.model-card--mix:hover  { border-color: rgba(255, 45, 146, 0.45); box-shadow: 0 26px 64px rgba(255, 45, 146, 0.22); }

.model-card__num {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

.model-card__orb {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    filter: blur(1px);
    animation: modelOrbPulse 5s ease-in-out infinite;
}
.model-card__orb--red  { background: radial-gradient(circle at 32% 30%, #ff8aa2, var(--brand-red) 55%, #230510 100%); box-shadow: 0 0 24px rgba(255, 23, 68, 0.5), inset 0 0 14px rgba(255, 255, 255, 0.18); }
.model-card__orb--pink { background: radial-gradient(circle at 32% 30%, #ffa8d4, var(--brand-pink) 55%, #200620 100%); box-shadow: 0 0 24px rgba(255, 45, 146, 0.5), inset 0 0 14px rgba(255, 255, 255, 0.18); }
.model-card__orb--blue { background: radial-gradient(circle at 32% 30%, #99c1ff, var(--brand-blue) 55%, #071225 100%); box-shadow: 0 0 24px rgba(47, 125, 255, 0.5), inset 0 0 14px rgba(255, 255, 255, 0.18); }
.model-card__orb--mix  { background: conic-gradient(from 200deg, var(--brand-red), var(--brand-pink), var(--brand-blue), var(--brand-red)); box-shadow: 0 0 26px rgba(255, 45, 146, 0.55), inset 0 0 14px rgba(255, 255, 255, 0.2); animation-duration: 7s; }

.model-card__title {
    margin: 28px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--brand-text);
    line-height: 1;
}
.model-card__tag {
    margin: 0 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #d4d5e8;
    letter-spacing: -0.005em;
}
.model-card__desc {
    margin: 0 0 18px;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.58;
    color: var(--brand-text-muted);
}
.model-card__chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.model-card__chip {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-text-muted);
    text-transform: uppercase;
}
.model-card--red  .model-card__chip { color: var(--brand-red);  border-color: rgba(255, 23, 68, 0.32);  background: rgba(255, 23, 68, 0.06); }
.model-card--pink .model-card__chip { color: var(--brand-pink); border-color: rgba(255, 45, 146, 0.32); background: rgba(255, 45, 146, 0.06); }
.model-card--blue .model-card__chip { color: var(--brand-blue); border-color: rgba(47, 125, 255, 0.32); background: rgba(47, 125, 255, 0.06); }
.model-card--mix  .model-card__chip { color: #fff; border-color: rgba(255, 45, 146, 0.32); background: linear-gradient(135deg, rgba(255, 23, 68, 0.15), rgba(47, 125, 255, 0.15)); }

.model-footnote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 44px 0 0;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.model-footnote__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    box-shadow: 0 0 14px rgba(255, 23, 68, 0.55);
    flex-shrink: 0;
}
.model-footnote p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    color: #d4d5e8;
}

@keyframes modelOrbPulse {
    0%, 100% { transform: scale(1); filter: blur(1px) brightness(1); }
    50%      { transform: scale(1.08); filter: blur(1px) brightness(1.15); }
}

/* ==================================================================
   SECTION 6 — VIDEO (portrait reels)
   ================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}
.video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    border-radius: 22px;
    background: #0a0a12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover  { transform: translateY(-6px); }
.video-card--red:hover  { border-color: rgba(255, 23, 68, 0.55);  box-shadow: 0 30px 70px rgba(255, 23, 68, 0.28); }
.video-card--pink:hover { border-color: rgba(255, 45, 146, 0.55); box-shadow: 0 30px 70px rgba(255, 45, 146, 0.28); }
.video-card--blue:hover { border-color: rgba(47, 125, 255, 0.55); box-shadow: 0 30px 70px rgba(47, 125, 255, 0.28); }

/* YouTube iframe layer — the card is 9:16 and the Short inside the embed is
   also 9:16, so we let the iframe fill the card 1:1. !important beats any
   inline width/height attributes the YT IFrame API applies to the iframe. */
.video-card__yt {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #0a0a12;
    pointer-events: none;
}
.video-card__yt iframe,
.video-card__yt > div {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    pointer-events: none;
    display: block;
}
/* Subtle saturation boost on hover so the active card pops. */
.video-card:hover .video-card__yt iframe { filter: saturate(1.08); }

/* Readability tint + bottom gradient for the meta text over any thumbnail. */
.video-card__tint {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 7, 13, 0.45) 0%, rgba(7, 7, 13, 0) 18%, rgba(7, 7, 13, 0) 40%, rgba(7, 7, 13, 0.88) 100%);
    transition: background 0.35s ease;
}
.video-card:hover .video-card__tint {
    background:
        linear-gradient(180deg, rgba(7, 7, 13, 0.25) 0%, rgba(7, 7, 13, 0) 25%, rgba(7, 7, 13, 0) 55%, rgba(7, 7, 13, 0.82) 100%);
}

/* Top-left model badge. */
.video-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 9px;
    border-radius: 999px;
    background: rgba(7, 7, 13, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.video-card__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 8px rgba(255, 45, 146, 0.8);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}
.video-card--red  .video-card__badge-dot { background: var(--brand-red);  box-shadow: 0 0 8px rgba(255, 23, 68, 0.8); }
.video-card--blue .video-card__badge-dot { background: var(--brand-blue); box-shadow: 0 0 8px rgba(47, 125, 255, 0.8); }

/* Top-right "Hover to preview" hint — fades out on hover so the playing video is clean. */
.video-card__play-hint {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 8px;
    border-radius: 999px;
    background: rgba(7, 7, 13, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-card__play-hint-icon {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    color: #fff;
}
.video-card__play-hint-icon svg { width: 8px; height: 8px; padding-left: 1px; }
.video-card:hover .video-card__play-hint {
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}

/* Meta block at the bottom. */
.video-card__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 18px 20px 20px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.video-card--red .video-card__preview {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 47, 109, 0.55), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(90, 169, 255, 0.25), transparent 60%),
        #0b0714;
}
.video-card--blue .video-card__preview {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(47, 125, 255, 0.55), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 45, 146, 0.25), transparent 60%),
        #050a14;
}
.video-card__preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.video-card__frame {
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    display: grid;
    place-items: center;
}
.video-card__time {
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 2;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.78);
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}
.video-card__rec {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #ff3a5c;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}
.video-card__rec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3a5c;
    box-shadow: 0 0 8px #ff3a5c;
    animation: recPulse 1.3s ease-in-out infinite;
}
.video-card__play {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    color: #fff;
    padding-left: 3px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.video-card:hover .video-card__play {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.22);
}
.video-card__bar {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}
.video-card__bar-fill {
    display: block;
    height: 100%;
    width: 38%;
    border-radius: inherit;
}
.video-card--red  .video-card__bar-fill { background: linear-gradient(90deg, var(--brand-red), var(--brand-pink));  box-shadow: 0 0 10px rgba(255, 23, 68, 0.6); }
.video-card--blue .video-card__bar-fill { background: linear-gradient(90deg, var(--brand-blue), #5a97ff); box-shadow: 0 0 10px rgba(47, 125, 255, 0.6); }

.video-card__title {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.video-card__tag {
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.video-card__desc {
    margin: 0 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.video-card__chip {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.video-card--red  .video-card__chip { border-color: rgba(255, 88, 115, 0.55); }
.video-card--pink .video-card__chip { border-color: rgba(255, 114, 184, 0.55); }
.video-card--blue .video-card__chip { border-color: rgba(94, 155, 255, 0.55); }

.video-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}
.video-callout__bar {
    flex-shrink: 0;
    width: 4px;
    height: 44px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 18px rgba(255, 23, 68, 0.5);
}
.video-callout p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #d4d5e8;
}

@keyframes recPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

/* ==================================================================
   SECTION 7 — MODERATION & COMPLIANCE
   ================================================================== */
.compliance-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
    gap: 56px;
    align-items: start;
}
.compliance-copy { position: relative; }
.compliance-copy .section__title,
.compliance-copy .section__lead { margin-top: 0; }

.compliance-shield {
    position: relative;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin-top: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.14), rgba(47, 125, 255, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.compliance-shield::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    z-index: -1;
    opacity: 0.5;
    filter: blur(18px);
}
.compliance-shield svg {
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 45, 146, 0.45));
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.compliance-item {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.7), rgba(12, 10, 24, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.compliance-item:hover { transform: translateX(4px); }
.compliance-item--red:hover  { border-color: rgba(255, 23, 68, 0.4);  box-shadow: -12px 0 36px rgba(255, 23, 68, 0.18); }
.compliance-item--pink:hover { border-color: rgba(255, 45, 146, 0.4); box-shadow: -12px 0 36px rgba(255, 45, 146, 0.18); }
.compliance-item--blue:hover { border-color: rgba(47, 125, 255, 0.4); box-shadow: -12px 0 36px rgba(47, 125, 255, 0.18); }

.compliance-item__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
}
.compliance-item--red  .compliance-item__icon { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 8px 20px rgba(255, 23, 68, 0.38); }
.compliance-item--pink .compliance-item__icon { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 8px 20px rgba(255, 45, 146, 0.38); }
.compliance-item--blue .compliance-item__icon { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 8px 20px rgba(47, 125, 255, 0.38); }

.compliance-item h3 {
    margin: 2px 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
    line-height: 1.25;
}
.compliance-item p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
}

.compliance-footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 48px 0 0;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(47, 125, 255, 0.08), rgba(255, 23, 68, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.compliance-footer__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    box-shadow: 0 0 14px rgba(47, 125, 255, 0.55);
}
.compliance-footer p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    color: #d4d5e8;
}

/* ==================================================================
   SECTION 8 — DEVELOPMENT PROCESS (horizontal timeline)
   ================================================================== */
.process-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    counter-reset: process;
}
.process-step {
    position: relative;
    padding: 0 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.process-step__head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    margin-bottom: 4px;
}
.process-step__node {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #fff;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step__node::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    opacity: 0.35;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.3s ease;
}
.process-step--red  .process-step__node { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 10px 26px rgba(255, 23, 68, 0.4),  inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.process-step--red  .process-step__node::before { background: var(--brand-red); }
.process-step--pink .process-step__node { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 10px 26px rgba(255, 45, 146, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.process-step--pink .process-step__node::before { background: var(--brand-pink); }
.process-step--blue .process-step__node { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 10px 26px rgba(47, 125, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.process-step--blue .process-step__node::before { background: var(--brand-blue); }
.process-step:hover .process-step__node { transform: scale(1.08); }
.process-step:hover .process-step__node::before { opacity: 0.7; }

.process-step__connector {
    position: absolute;
    left: 56px;
    right: -18px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 6px, transparent 6px 12px);
    z-index: 1;
}
.process-step__connector::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.process-step:hover .process-step__connector::after { opacity: 0.7; }

.process-step__title {
    margin: 4px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--brand-text);
}
.process-step p {
    margin: 0;
    padding-right: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
}
.process-step--final::after {
    content: "";
    position: absolute;
    left: 28px;
    top: -10px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.26), transparent 60%);
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

/* ==================================================================
   SECTION 9 — MONETIZATION (bento revenue grid)
   ================================================================== */
.section--monetization { position: relative; }
.monetization-numeral {
    position: absolute;
    right: -40px;
    bottom: -60px;
    z-index: 0;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(14rem, 24vw, 22rem);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    user-select: none;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.revenue-card--wide  { grid-column: span 2; }
.revenue-card--wider { grid-column: span 3; }

.revenue-card {
    position: relative;
    padding: 24px 24px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.revenue-card:hover { transform: translateY(-5px); }
.revenue-card--red:hover  { border-color: rgba(255, 23, 68, 0.45);  box-shadow: 0 24px 60px rgba(255, 23, 68, 0.22); }
.revenue-card--pink:hover { border-color: rgba(255, 45, 146, 0.45); box-shadow: 0 24px 60px rgba(255, 45, 146, 0.22); }
.revenue-card--blue:hover { border-color: rgba(47, 125, 255, 0.45); box-shadow: 0 24px 60px rgba(47, 125, 255, 0.22); }

.revenue-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.revenue-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
}
.revenue-card--red  .revenue-card__icon { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 10px 26px rgba(255, 23, 68, 0.4); }
.revenue-card--pink .revenue-card__icon { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 10px 26px rgba(255, 45, 146, 0.4); }
.revenue-card--blue .revenue-card__icon { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 10px 26px rgba(47, 125, 255, 0.4); }

.revenue-card__tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-text-muted);
}
.revenue-card__tag--recurring  { color: var(--brand-success); border-color: rgba(47, 217, 143, 0.35); background: rgba(47, 217, 143, 0.06); }
.revenue-card__tag--consumable { color: var(--brand-pink);    border-color: rgba(255, 45, 146, 0.35); background: rgba(255, 45, 146, 0.06); }
.revenue-card__tag--premium    { color: var(--brand-blue);    border-color: rgba(47, 125, 255, 0.35); background: rgba(47, 125, 255, 0.06); }
.revenue-card__tag--ppv        { color: var(--brand-red);     border-color: rgba(255, 23, 68, 0.35);  background: rgba(255, 23, 68, 0.06); }

.revenue-card__title {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
    line-height: 1.25;
}
.revenue-card p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
}

.revenue-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}
.revenue-callout__bar {
    flex-shrink: 0;
    width: 4px;
    height: 44px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 18px rgba(255, 23, 68, 0.5);
}
.revenue-callout p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #d4d5e8;
}

/* ==================================================================
   SECTION 10 — PAYMENTS
   ================================================================== */
.payments-block { margin-top: 14px; }
.payments-block + .payments-block { margin-top: 36px; }

.payments-block__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.payments-block__idx {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0;
}

.payments-gateways {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.gateway-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.8), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gateway-pill:hover { transform: translateY(-3px); }
.gateway-pill--red:hover  { border-color: rgba(255, 23, 68, 0.42);  box-shadow: 0 16px 40px rgba(255, 23, 68, 0.2); }
.gateway-pill--pink:hover { border-color: rgba(255, 45, 146, 0.42); box-shadow: 0 16px 40px rgba(255, 45, 146, 0.2); }
.gateway-pill--blue:hover { border-color: rgba(47, 125, 255, 0.42); box-shadow: 0 16px 40px rgba(47, 125, 255, 0.2); }

.gateway-pill__dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-success);
    box-shadow: 0 0 10px var(--brand-success);
    animation: recPulse 2s ease-in-out infinite;
}
.gateway-pill__name {
    flex: 1;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
}
.gateway-pill__status {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-success);
}

.payments-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.pay-feature {
    padding: 22px 22px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.7), rgba(12, 10, 24, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pay-feature:hover { transform: translateY(-4px); }
.pay-feature--red:hover  { border-color: rgba(255, 23, 68, 0.42);  box-shadow: 0 18px 50px rgba(255, 23, 68, 0.18); }
.pay-feature--pink:hover { border-color: rgba(255, 45, 146, 0.42); box-shadow: 0 18px 50px rgba(255, 45, 146, 0.18); }
.pay-feature--blue:hover { border-color: rgba(47, 125, 255, 0.42); box-shadow: 0 18px 50px rgba(47, 125, 255, 0.18); }

.pay-feature__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 16px;
    color: #fff;
}
.pay-feature--red  .pay-feature__icon { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 8px 20px rgba(255, 23, 68, 0.38); }
.pay-feature--pink .pay-feature__icon { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 8px 20px rgba(255, 45, 146, 0.38); }
.pay-feature--blue .pay-feature__icon { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 8px 20px rgba(47, 125, 255, 0.38); }

.pay-feature h3 {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
}
.pay-feature p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
}

.payments-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}
.payments-callout__bar {
    flex-shrink: 0;
    width: 4px;
    height: 44px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 18px rgba(255, 45, 146, 0.5);
}
.payments-callout p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #d4d5e8;
}

/* ==================================================================
   SECTION 11 — TECH STACK (stacked layer ladder)
   ================================================================== */
.stack-ladder {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.stack-layer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: center;
    gap: 32px;
    padding: 22px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.75), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stack-layer::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 0 3px 3px 0;
}
.stack-layer--red::before  { background: linear-gradient(180deg, var(--brand-red),  transparent); box-shadow: 0 0 16px rgba(255, 23, 68, 0.55); }
.stack-layer--pink::before { background: linear-gradient(180deg, var(--brand-pink), transparent); box-shadow: 0 0 16px rgba(255, 45, 146, 0.55); }
.stack-layer--blue::before { background: linear-gradient(180deg, var(--brand-blue), transparent); box-shadow: 0 0 16px rgba(47, 125, 255, 0.55); }

.stack-layer:hover { transform: translateX(4px); }
.stack-layer--red:hover  { border-color: rgba(255, 23, 68, 0.4);  box-shadow: -14px 0 40px rgba(255, 23, 68, 0.18); }
.stack-layer--pink:hover { border-color: rgba(255, 45, 146, 0.4); box-shadow: -14px 0 40px rgba(255, 45, 146, 0.18); }
.stack-layer--blue:hover { border-color: rgba(47, 125, 255, 0.4); box-shadow: -14px 0 40px rgba(47, 125, 255, 0.18); }

.stack-layer__label {
    display: flex;
    align-items: center;
    gap: 14px;
}
.stack-layer__idx {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}
.stack-layer--red  .stack-layer__idx { background: linear-gradient(135deg, var(--brand-red),  #ff5e7a); box-shadow: 0 8px 20px rgba(255, 23, 68, 0.4); }
.stack-layer--pink .stack-layer__idx { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); box-shadow: 0 8px 20px rgba(255, 45, 146, 0.4); }
.stack-layer--blue .stack-layer__idx { background: linear-gradient(135deg, var(--brand-blue), #5e9bff); box-shadow: 0 8px 20px rgba(47, 125, 255, 0.4); }

.stack-layer__name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
}

.stack-layer__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.stack-chip {
    padding: 7px 14px;
    border-radius: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.stack-chip:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); }

/* ==================================================================
   SECTION 12 — PRICING
   ================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.pricing-card {
    position: relative;
    padding: 34px 32px 32px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card--basic:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.pricing-card--pro {
    border-color: rgba(255, 45, 146, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(47, 125, 255, 0.08)),
        linear-gradient(180deg, rgba(22, 20, 38, 0.92), rgba(12, 10, 24, 0.98));
}
.pricing-card--pro::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    z-index: -1;
    opacity: 0.55;
    filter: blur(16px);
}
.pricing-card--pro:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 45, 146, 0.6);
    box-shadow: 0 30px 70px rgba(255, 45, 146, 0.28);
}
.pricing-card__ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink), var(--brand-blue));
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 45, 146, 0.45);
}

.pricing-card__tag {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.pricing-card--pro .pricing-card__tag {
    color: var(--brand-pink);
    border-color: rgba(255, 45, 146, 0.42);
    background: rgba(255, 45, 146, 0.08);
}

.pricing-card__title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--brand-text);
    line-height: 1.15;
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.pricing-card__price-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.pricing-card__price-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--brand-text);
    line-height: 1;
}
.pricing-card--pro .pricing-card__price-value {
    background: linear-gradient(120deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pricing-card__price-plus {
    font-weight: 500;
    margin-left: 2px;
}

.pricing-card__desc {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
}

.pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.pricing-card__list li {
    position: relative;
    padding-left: 24px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #c4c5d8;
}
.pricing-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 3px, transparent 3px),
        linear-gradient(135deg, rgba(255, 45, 146, 0.2), rgba(47, 125, 255, 0.2));
    border: 1px solid rgba(255, 45, 146, 0.35);
}
.pricing-card--pro .pricing-card__list li::before {
    background:
        radial-gradient(circle, #fff 0 3px, transparent 3px),
        linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    border-color: transparent;
    box-shadow: 0 0 10px rgba(255, 45, 146, 0.55);
}

.pricing-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card__cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}
.pricing-card__cta--primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    border-color: transparent;
    box-shadow: 0 14px 36px rgba(255, 23, 68, 0.42);
}
.pricing-card__cta--primary:hover {
    box-shadow: 0 20px 48px rgba(255, 23, 68, 0.55);
}
.pricing-card__cta span:last-child { transition: transform 0.2s ease; }
.pricing-card__cta:hover span:last-child { transform: translateX(4px); }

.pricing-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(47, 125, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}
.pricing-contact__copy { display: grid; gap: 6px; }
.pricing-contact__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-pink);
}
.pricing-contact h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-text);
    line-height: 1.3;
}
.pricing-contact__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(255, 23, 68, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-contact__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(255, 23, 68, 0.55);
}
.pricing-contact__cta span:last-child { transition: transform 0.2s ease; }
.pricing-contact__cta:hover span:last-child { transform: translateX(4px); }

/* ==================================================================
   SECTION 14 — LATEST BLOGS (AI chat-thread style)
   Unique "blogs as messages from the AI" chat-app aesthetic.
   ================================================================== */

.blogs-chat__head {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}
.blogs-chat__head .section-eyebrow { justify-content: center; }
.blogs-chat__head .section__title { margin-bottom: 14px; }
.blogs-chat__head .section__lead { margin: 0 auto; }

/* The chat window container */
.blogs-chat {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.82), rgba(9, 8, 18, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
    isolation: isolate;
}
.blogs-chat::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.45), rgba(255, 45, 146, 0) 35%, rgba(47, 125, 255, 0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

/* Window chrome (macOS-style bar) */
.blogs-chat__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.blogs-chat__dots { display: inline-flex; gap: 7px; }
.blogs-chat__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}
.blogs-chat__dot--red    { background: #ff5f57; }
.blogs-chat__dot--yellow { background: #febc2e; }
.blogs-chat__dot--green  { background: #28c840; }

.blogs-chat__peer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.blogs-chat__peer-avatar {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blogs-chat__peer-avatar-inner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0a0a12;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.blogs-chat__peer-avatar-pulse {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2af24f;
    border: 2px solid #0a0a12;
    box-shadow: 0 0 10px rgba(42, 242, 79, 0.7);
    animation: blogs-chat-pulse 1.8s ease-in-out infinite;
}
@keyframes blogs-chat-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.15); opacity: 0.7; }
}
.blogs-chat__peer-meta { display: grid; gap: 2px; min-width: 0; }
.blogs-chat__peer-meta strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-text);
    letter-spacing: -0.01em;
}
.blogs-chat__peer-meta span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

.blogs-chat__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    white-space: nowrap;
}
.blogs-chat__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2af24f;
    box-shadow: 0 0 8px rgba(42, 242, 79, 0.7);
}

/* Message thread */
.blogs-chat__thread {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 32px 28px;
    background:
        radial-gradient(600px 300px at 20% -10%, rgba(255, 45, 146, 0.12), transparent 60%),
        radial-gradient(500px 280px at 100% 110%, rgba(47, 125, 255, 0.12), transparent 65%);
}

/* Individual chat message */
.blogs-chat__msg {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    animation: blogs-chat-in 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
    animation-delay: calc(var(--i, 0) * 0.12s);
}
@keyframes blogs-chat-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.blogs-chat__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255, 45, 146, 0.3);
}
.blogs-chat__msg--blue .blogs-chat__avatar {
    background: linear-gradient(135deg, var(--brand-blue), #5a97ff 50%, var(--brand-pink));
    box-shadow: 0 10px 24px rgba(47, 125, 255, 0.3);
}
.blogs-chat__avatar--small { width: 32px; height: 32px; box-shadow: 0 6px 14px rgba(255, 45, 146, 0.25); }
.blogs-chat__avatar-glyph {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0a0a12;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blogs-chat__avatar--small .blogs-chat__avatar-glyph {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
}

.blogs-chat__msg-main { min-width: 0; display: grid; gap: 8px; }
.blogs-chat__msg-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.blogs-chat__msg-header strong {
    color: var(--brand-text);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.78rem;
    text-transform: none;
}
.blogs-chat__msg-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}
.blogs-chat__msg-badge {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-text);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    margin-left: auto;
}

/* The bubble */
.blogs-chat__bubble {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    border-radius: 18px 18px 18px 4px;
    background: linear-gradient(180deg, rgba(30, 28, 48, 0.9), rgba(16, 14, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.blogs-chat__bubble::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.55), rgba(255, 45, 146, 0) 45%, rgba(47, 125, 255, 0.45));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.blogs-chat__msg--blue .blogs-chat__bubble::before {
    background: linear-gradient(135deg, rgba(47, 125, 255, 0.55), rgba(94, 155, 255, 0) 45%, rgba(255, 45, 146, 0.4));
}
.blogs-chat__bubble:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}
.blogs-chat__bubble:hover::before { opacity: 1; }

/* Bubble tail (chat-app aesthetic) */
.blogs-chat__bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, transparent 50%, rgba(16, 14, 30, 0.96) 50%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transform: rotate(0deg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.blogs-chat__bubble-media {
    position: relative;
    display: block;
    background: #11101a;
    overflow: hidden;
    min-height: 160px;
}
.blogs-chat__bubble-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}
.blogs-chat__bubble:hover .blogs-chat__bubble-media img { transform: scale(1.06); }
.blogs-chat__bubble-media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(255, 23, 68, 0.2), rgba(47, 125, 255, 0.22)),
        #11101a;
}
.blogs-chat__msg--blue .blogs-chat__bubble-media--empty {
    background:
        linear-gradient(135deg, rgba(47, 125, 255, 0.25), rgba(255, 45, 146, 0.18)),
        #11101a;
}
.blogs-chat__bubble-media-mark {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.28);
}
.blogs-chat__bubble-media-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text);
    z-index: 2;
}
.blogs-chat__bubble-media-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 6px rgba(255, 45, 146, 0.7);
}
.blogs-chat__msg--blue .blogs-chat__bubble-media-tag-dot {
    background: var(--brand-blue);
    box-shadow: 0 0 6px rgba(47, 125, 255, 0.7);
}

.blogs-chat__bubble-body {
    display: grid;
    gap: 10px;
    padding: 20px 22px 18px;
    align-content: start;
}
.blogs-chat__bubble-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.blogs-chat__bubble-eyebrow-emoji { font-size: 0.78rem; }
.blogs-chat__bubble-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--brand-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.blogs-chat__bubble:hover .blogs-chat__bubble-title {
    background: linear-gradient(135deg, #ffffff 0%, #ffd9e6 55%, #c9d9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.blogs-chat__bubble-excerpt {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs-chat__bubble-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.blogs-chat__bubble-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.blogs-chat__bubble-read-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 6px rgba(255, 45, 146, 0.7);
}
.blogs-chat__msg--blue .blogs-chat__bubble-read-dot {
    background: var(--brand-blue);
    box-shadow: 0 0 6px rgba(47, 125, 255, 0.7);
}
.blogs-chat__bubble-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff5873, #ff72b8 50%, #5a97ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.blogs-chat__bubble-cta-arrow {
    color: var(--brand-pink);
    -webkit-text-fill-color: currentColor;
    transition: transform 0.2s ease;
    display: inline-block;
}
.blogs-chat__bubble:hover .blogs-chat__bubble-cta-arrow { transform: translateX(4px); }

/* Delivered receipt */
.blogs-chat__msg-receipt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-left: 4px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    justify-self: start;
}
.blogs-chat__msg-receipt svg {
    width: 16px;
    height: 10px;
    color: var(--brand-blue);
}

/* Typing indicator */
.blogs-chat__typing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: blogs-chat-in 0.55s 0.4s both;
}
.blogs-chat__typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 16px 16px 16px 4px;
    background: linear-gradient(180deg, rgba(30, 28, 48, 0.9), rgba(16, 14, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.blogs-chat__typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-text-muted);
    animation: blogs-chat-typing 1.4s ease-in-out infinite;
}
.blogs-chat__typing-dot:nth-child(2) { animation-delay: 0.2s; }
.blogs-chat__typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blogs-chat-typing {
    0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
    30%           { opacity: 1;    transform: translateY(-3px); background: var(--brand-pink); }
}
.blogs-chat__typing-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

/* Fake input bar as "browse all" CTA */
.blogs-chat__input {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(14, 13, 26, 0.7), rgba(9, 8, 18, 0.9));
    text-decoration: none;
    transition: background 0.3s ease;
}
.blogs-chat__input:hover { background: linear-gradient(180deg, rgba(26, 22, 48, 0.75), rgba(14, 12, 28, 0.95)); }
.blogs-chat__input-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-text-muted);
    flex-shrink: 0;
}
.blogs-chat__input-icon svg { width: 16px; height: 16px; }
.blogs-chat__input-placeholder {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: var(--brand-text-muted);
}
.blogs-chat__input-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    box-shadow: 0 10px 22px rgba(255, 45, 146, 0.3);
    white-space: nowrap;
}
.blogs-chat__input-cta-arrow { transition: transform 0.2s ease; display: inline-block; }
.blogs-chat__input:hover .blogs-chat__input-cta-arrow { transform: translateX(3px); }

/* Responsive */
@media (max-width: 780px) {
    .blogs-chat__thread { padding: 24px 18px; gap: 22px; }
    .blogs-chat__msg { grid-template-columns: 36px 1fr; gap: 10px; }
    .blogs-chat__avatar { width: 36px; height: 36px; }
    .blogs-chat__avatar-glyph { width: 30px; height: 30px; font-size: 0.7rem; }
    .blogs-chat__bubble { grid-template-columns: 1fr; }
    .blogs-chat__bubble-media { min-height: 0; aspect-ratio: 16 / 9; }
    .blogs-chat__bubble-body { padding: 18px 18px 16px; }
    .blogs-chat__msg-badge { display: none; }
    .blogs-chat__input { padding: 14px 18px; gap: 10px; flex-wrap: wrap; }
    .blogs-chat__input-placeholder { font-size: 0.84rem; }
    .blogs-chat__input-cta { padding: 8px 14px; font-size: 0.76rem; }
    .blogs-chat__bar { padding: 12px 18px; gap: 12px; }
    .blogs-chat__status { display: none; }
}


/* ==================================================================
   SECTION 15 — FAQ (magazine layout: sticky aside + accordion)
   ================================================================== */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 56px;
    align-items: start;
}
.faq-aside {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
/* Cleaner title — three tiers of typography instead of the stamp treatment */
.faq-aside__title {
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.08;
}
.faq-aside__title-kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    margin-bottom: 4px;
}
.faq-aside__title-main {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd9e6 45%, #c9d9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.faq-aside__title-sub {
    font-family: "Instrument Serif", "Space Grotesk", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    letter-spacing: -0.01em;
    color: var(--brand-text);
    opacity: 0.88;
}
.faq-aside__lead { margin: 0; max-width: 360px; }
.faq-aside__meta {
    margin-top: 10px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.7), rgba(12, 10, 24, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-aside__counter {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.faq-aside__counter-num {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.faq-aside__counter-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.faq-aside__cta { display: flex; flex-direction: column; gap: 10px; }
.faq-aside__cta-copy {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    color: var(--brand-text-muted);
}
.faq-aside__cta .button--sm {
    padding: 10px 16px;
    font-size: 0.86rem;
    align-self: flex-start;
    gap: 8px;
}
.faq-aside__cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.faq-aside__cta .button:hover .faq-aside__cta-arrow { transform: translateX(4px); }

/* Latest blog card (lives in the FAQ aside) */
.faq-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.72), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--brand-text);
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-blog-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.4), rgba(255, 45, 146, 0) 45%, rgba(47, 125, 255, 0.35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.faq-blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.faq-blog-card:hover::before { opacity: 1; }
.faq-blog-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.faq-blog-card__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 8px rgba(255, 45, 146, 0.7);
}
.faq-blog-card__media {
    display: block;
    position: relative;
    margin: 4px 0 2px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.04);
}
.faq-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.faq-blog-card:hover .faq-blog-card__media img { transform: scale(1.04); }
.faq-blog-card__title {
    margin: 2px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--brand-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.faq-blog-card__excerpt {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--brand-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.faq-blog-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    margin-top: 2px;
}
.faq-blog-card__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}
.faq-blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-text);
    background: linear-gradient(135deg, #ff5873, #ff72b8 50%, #5a97ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.faq-blog-card__cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    color: var(--brand-pink);
    -webkit-text-fill-color: currentColor;
}
.faq-blog-card:hover .faq-blog-card__cta-arrow { transform: translateX(4px); }

.faq-list {
    display: grid;
    gap: 12px;
    min-width: 0;
}
.faq-item {
    position: relative;
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.78), rgba(12, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}
.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.faq-item--red[open]  { border-color: rgba(255, 23, 68, 0.35); }
.faq-item--pink[open] { border-color: rgba(255, 45, 146, 0.38); }
.faq-item--blue[open] { border-color: rgba(47, 125, 255, 0.35); }

/* Left accent bar grows when opened */
.faq-item__accent {
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: rgba(255, 255, 255, 0.08);
    transform-origin: center;
    transform: scaleY(0.55);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.faq-item[open] .faq-item__accent { transform: scaleY(1); }
.faq-item--red[open]  .faq-item__accent { background: linear-gradient(180deg, var(--brand-red), #ff5873); box-shadow: 0 0 14px rgba(255, 23, 68, 0.55); }
.faq-item--pink[open] .faq-item__accent { background: linear-gradient(180deg, var(--brand-pink), #ff72b8); box-shadow: 0 0 14px rgba(255, 45, 146, 0.55); }
.faq-item--blue[open] .faq-item__accent { background: linear-gradient(180deg, var(--brand-blue), #5a97ff); box-shadow: 0 0 14px rgba(47, 125, 255, 0.55); }

.faq-item__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px 22px 30px;
    outline: none;
    position: relative;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__num {
    flex-shrink: 0;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--brand-text-muted);
    min-width: 34px;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-item__num {
    color: #fff;
    border-color: transparent;
}
.faq-item--red[open]  .faq-item__num { background: linear-gradient(135deg, var(--brand-red), #ff5873); }
.faq-item--pink[open] .faq-item__num { background: linear-gradient(135deg, var(--brand-pink), #ff72b8); }
.faq-item--blue[open] .faq-item__num { background: linear-gradient(135deg, var(--brand-blue), #5a97ff); }

.faq-item__question {
    flex: 1;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--brand-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-item__question { color: #fff; }

/* Plus/minus toggle icon */
.faq-item__icon {
    flex-shrink: 0;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.faq-item__icon-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    background: var(--brand-text);
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}
.faq-item__icon-bar--v { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 60%, var(--brand-blue));
    border-color: transparent;
    transform: rotate(180deg);
    box-shadow: 0 0 18px rgba(255, 45, 146, 0.45);
}
.faq-item[open] .faq-item__icon-bar { background: #fff; }
.faq-item[open] .faq-item__icon-bar--v { opacity: 0; }

/* Answer body with subtle divider + slide-in animation */
.faq-item__a {
    padding: 0 26px 24px 82px;
    position: relative;
}
.faq-item__a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 82px;
    right: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    margin-bottom: 14px;
}
.faq-item__a p {
    margin: 14px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--brand-text-muted);
}
.faq-item[open] .faq-item__a p {
    animation: faq-answer-in 0.45s ease both;
}
@keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-aside { position: static; }
    .faq-aside__lead { max-width: none; }
}
@media (max-width: 680px) {
    .faq-item__q { padding: 18px 18px 18px 22px; gap: 12px; }
    .faq-item__num { min-width: 30px; font-size: 0.64rem; padding: 4px 7px; }
    .faq-item__question { font-size: 0.96rem; }
    .faq-item__icon { width: 26px; height: 26px; }
    .faq-item__a { padding: 0 20px 20px 62px; }
    .faq-item__a::before { left: 62px; right: 20px; }
    .faq-aside__meta { padding: 18px 18px; }
    .faq-aside__counter-num { font-size: 2.2rem; }
}

/* ==================================================================
   BLOG — floating reading tools (left side, single posts only)
   ================================================================== */
.blog-fab {
    position: fixed;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.blog-fab__btn {
    pointer-events: auto;
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(22, 20, 38, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(14px);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.blog-fab__btn svg { width: 18px; height: 18px; }
.blog-fab__btn:hover {
    transform: translateX(4px) scale(1.06);
    border-color: rgba(255, 45, 146, 0.6);
    box-shadow: 0 14px 34px rgba(255, 45, 146, 0.28);
}
.blog-fab__btn.is-active {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 32px rgba(255, 23, 68, 0.42);
}
.blog-fab__btn--whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}
.blog-fab__tip {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translate(-4px, -50%);
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    background: #0f0d1e;
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.blog-fab__btn:hover .blog-fab__tip {
    opacity: 1;
    transform: translate(0, -50%);
}
@media (max-width: 900px) {
    .blog-fab { left: 10px; gap: 10px; }
    .blog-fab__btn { width: 40px; height: 40px; }
    .blog-fab__btn svg { width: 16px; height: 16px; }
    .blog-fab__tip { display: none; }
}

/* ==================================================================
   BLOG — light reading mode (body.blog-reader--light)
   ================================================================== */
body.blog-reader--light .blog-post { background: #fbfaf6; color: #1b1824; }
body.blog-reader--light .blog-post__header {
    background: linear-gradient(180deg, #fdfbf4, #fbfaf6);
}
body.blog-reader--light .blog-post__glow { opacity: 0.18; mix-blend-mode: multiply; filter: blur(100px); }
body.blog-reader--light .blog-post__crumbs,
body.blog-reader--light .blog-post__crumbs a { color: #6f6980; }
body.blog-reader--light .blog-post__crumbs a:hover { color: #1b1824; }
body.blog-reader--light .blog-post__chip {
    background: rgba(255, 45, 146, 0.08);
    color: #c7185f;
    border-color: rgba(255, 45, 146, 0.3);
}
body.blog-reader--light .blog-post__title { color: #11101a; }
body.blog-reader--light .blog-post__excerpt { color: #524c65; }
body.blog-reader--light .blog-post__meta {
    background: #ffffff;
    border-color: #ecebf0;
    color: #524c65;
    box-shadow: 0 6px 20px rgba(17, 16, 26, 0.05);
}
body.blog-reader--light .blog-post__meta strong,
body.blog-reader--light .blog-post__meta time { color: #11101a; }
body.blog-reader--light .blog-post__meta-label { color: #8a849f; }
body.blog-reader--light .blog-post__feature img { border-color: #e7e4ec; box-shadow: 0 20px 60px rgba(17, 16, 26, 0.08); }
body.blog-reader--light .blog-post__content.prose { color: #2a2634; }
body.blog-reader--light .prose h4 { color: #11101a; }
body.blog-reader--light .prose h2 {
    background: linear-gradient(100deg, #1b1824 0%, #5e3f6d 55%, #3d5278 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--light .prose h3 {
    background: linear-gradient(100deg, #1b1824 0%, #6b4a74 55%, #475a7c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--light .prose strong { color: #11101a; }
body.blog-reader--light .prose em { color: #46405a; }
body.blog-reader--light .prose a { color: #d81b7d; }
body.blog-reader--light .prose a:hover { color: #a0125c; }
body.blog-reader--light .prose blockquote {
    background: #fff3f8;
    color: #3a2d42;
    border-left-color: #d81b7d;
}
body.blog-reader--light .prose code {
    background: #fde7f0;
    border-color: #f8cbdd;
    color: #b01765;
}
body.blog-reader--light .prose pre {
    background: #1a1822;
    border-color: #d5d1dc;
    color: #e8e6ef;
}
body.blog-reader--light .prose img { border-color: #ecebf0; }
body.blog-reader--light .prose hr { background: linear-gradient(90deg, transparent, rgba(216, 27, 125, 0.35), transparent); }
body.blog-reader--light .prose table th { background: #fff3f8; color: #11101a; }
body.blog-reader--light .prose table th,
body.blog-reader--light .prose table td { border-color: #ecebf0; }

body.blog-reader--light .blog-progress,
body.blog-reader--light .blog-toc {
    background: #ffffff;
    border-color: #ecebf0;
    box-shadow: 0 8px 24px rgba(17, 16, 26, 0.04);
}
body.blog-reader--light .blog-progress__label,
body.blog-reader--light .blog-toc__label { color: #6f6980; }
body.blog-reader--light .blog-progress__track { stroke: #ecebf0; }
body.blog-reader--light .blog-progress__pct { color: #11101a; }
body.blog-reader--light .blog-progress__status { color: #524c65; }
body.blog-reader--light .blog-toc__list li { border-left-color: #ecebf0; }
body.blog-reader--light .blog-toc__list a { color: #6f6980; }
body.blog-reader--light .blog-toc__list li.is-active a { color: #11101a; }
body.blog-reader--light .blog-toc__list li.is-active { border-left-color: #d81b7d; }

body.blog-reader--light .blog-post__tags-label,
body.blog-reader--light .blog-post__share > span:first-child { color: #6f6980; }
body.blog-reader--light .blog-post__tag,
body.blog-reader--light .blog-post__share a {
    background: #ffffff;
    border-color: #ecebf0;
    color: #2a2634;
}
body.blog-reader--light .blog-post__tag:hover,
body.blog-reader--light .blog-post__share a:hover {
    border-color: #d81b7d;
    color: #d81b7d;
    background: #fff3f8;
}
body.blog-reader--light .blog-post__author-box {
    background: #ffffff;
    border-color: #ecebf0;
    box-shadow: 0 8px 24px rgba(17, 16, 26, 0.04);
}
body.blog-reader--light .blog-post__author-box strong { color: #11101a; }
body.blog-reader--light .blog-post__author-box p { color: #524c65; }
body.blog-reader--light .blog-post__author-label { color: #8a849f; }

/* ==================================================================
   BLOG — Kindle reading mode (body.blog-reader--kindle)
   Warm sepia paper with Georgia-family serif for a calm e-reader feel.
   ================================================================== */
body.blog-reader--kindle .blog-post { background: #f4ecd5; color: #2c2518; }
body.blog-reader--kindle .blog-post__header {
    background: linear-gradient(180deg, #efe4c8, #f4ecd5);
}
body.blog-reader--kindle .blog-post__glow { opacity: 0; }
body.blog-reader--kindle .blog-post__crumbs,
body.blog-reader--kindle .blog-post__crumbs a { color: #6e5f3e; }
body.blog-reader--kindle .blog-post__chip {
    background: rgba(110, 70, 35, 0.08);
    color: #7a4c1e;
    border-color: rgba(110, 70, 35, 0.3);
}
body.blog-reader--kindle .blog-post__chip-dot { background: #a0571a; box-shadow: 0 0 6px rgba(160, 87, 26, 0.4); }
body.blog-reader--kindle .blog-post__title { color: #1f1a10; font-weight: 700; }
body.blog-reader--kindle .blog-post__excerpt { color: #5a4b31; }
body.blog-reader--kindle .blog-post__meta {
    background: #ebe1c5;
    border-color: #d5c59d;
    color: #5a4b31;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
body.blog-reader--kindle .blog-post__meta strong,
body.blog-reader--kindle .blog-post__meta time { color: #2c2518; }
body.blog-reader--kindle .blog-post__meta-label { color: #8a7750; }
body.blog-reader--kindle .blog-post__feature img {
    border-color: #d5c59d;
    box-shadow: 0 20px 50px rgba(90, 60, 20, 0.15);
}
body.blog-reader--kindle .blog-post__content.prose {
    color: #2a2214;
    font-size: 1.08rem;
    line-height: 1.85;
}
body.blog-reader--kindle .prose h4 {
    color: #1f1a10;
}
body.blog-reader--kindle .prose h2 {
    background: linear-gradient(100deg, #1f1a10 0%, #1f1a10 30%, #a0571a 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--kindle .prose h3 {
    background: linear-gradient(100deg, #1f1a10 0%, #1f1a10 40%, #7a4c1e 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--kindle .prose h2::before { background: linear-gradient(90deg, #a0571a, #7a4c1e 70%, transparent); }
body.blog-reader--kindle .prose strong { color: #1f1a10; }
body.blog-reader--kindle .prose em { color: #4a3a1e; }
body.blog-reader--kindle .prose a { color: #7a4c1e; text-decoration-color: rgba(122, 76, 30, 0.5); }
body.blog-reader--kindle .prose a:hover { color: #5a3812; }
body.blog-reader--kindle .prose blockquote {
    background: #ede1bf;
    color: #3a2e18;
    border-left-color: #a0571a;
    font-family: inherit;
}
body.blog-reader--kindle .prose ul li::before { background: linear-gradient(90deg, #a0571a, #c07a3a); box-shadow: none; }
body.blog-reader--kindle .prose code {
    background: #ebe1c5;
    border-color: #d5c59d;
    color: #7a4c1e;
    font-family: "JetBrains Mono", Consolas, Menlo, monospace;
}
body.blog-reader--kindle .prose pre {
    background: #2c2518;
    color: #ede4c9;
    border-color: #c9b988;
}
body.blog-reader--kindle .prose img { border-color: #d5c59d; }
body.blog-reader--kindle .prose hr { background: linear-gradient(90deg, transparent, rgba(160, 87, 26, 0.4), transparent); }
body.blog-reader--kindle .prose table th { background: #ebe1c5; color: #2c2518; }
body.blog-reader--kindle .prose table th,
body.blog-reader--kindle .prose table td { border-color: #d5c59d; }

body.blog-reader--kindle .blog-progress,
body.blog-reader--kindle .blog-toc {
    background: #ebe1c5;
    border-color: #d5c59d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
body.blog-reader--kindle .blog-progress__label,
body.blog-reader--kindle .blog-toc__label { color: #6e5f3e; }
body.blog-reader--kindle .blog-progress__track { stroke: #d5c59d; }
body.blog-reader--kindle .blog-progress__fill { stroke: #a0571a; filter: drop-shadow(0 0 5px rgba(160, 87, 26, 0.35)); }
body.blog-reader--kindle .blog-progress__pct { color: #1f1a10; }
body.blog-reader--kindle .blog-progress__status { color: #5a4b31; }
body.blog-reader--kindle .blog-toc__list li { border-left-color: #d5c59d; }
body.blog-reader--kindle .blog-toc__list a { color: #6e5f3e; }
body.blog-reader--kindle .blog-toc__list li.is-active { border-left-color: #a0571a; box-shadow: -1px 0 8px rgba(160, 87, 26, 0.2); }
body.blog-reader--kindle .blog-toc__list li.is-active a { color: #1f1a10; }

body.blog-reader--kindle .blog-post__tags-label,
body.blog-reader--kindle .blog-post__share > span:first-child { color: #6e5f3e; }
body.blog-reader--kindle .blog-post__tag,
body.blog-reader--kindle .blog-post__share a {
    background: #ebe1c5;
    border-color: #d5c59d;
    color: #3a2e18;
}
body.blog-reader--kindle .blog-post__tag:hover,
body.blog-reader--kindle .blog-post__share a:hover {
    border-color: #a0571a;
    color: #7a4c1e;
    background: #ede1bf;
}
body.blog-reader--kindle .blog-post__author-box {
    background: #ebe1c5;
    border-color: #d5c59d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
body.blog-reader--kindle .blog-post__author-box strong,
body.blog-reader--kindle .blog-post__author-box p { color: #2c2518; }
body.blog-reader--kindle .blog-post__author-label { color: #8a7750; }

/* Smooth transition between modes */
body.blog-reader--light .blog-post,
body.blog-reader--light .blog-post *,
body.blog-reader--kindle .blog-post,
body.blog-reader--kindle .blog-post * {
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

/* ==================================================================
   BLOG — single post
   ================================================================== */
.blog-post {
    position: relative;
    background: var(--brand-black);
    color: var(--brand-text);
}

.blog-post__header {
    position: relative;
    padding: 140px 24px 40px;
    overflow: hidden;
    isolation: isolate;
}
.blog-post__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.blog-post__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.32;
}
.blog-post__glow--red  { top: -10%; left: -8%;   width: 520px; height: 520px; background: radial-gradient(circle, var(--brand-red),  transparent 65%); }
.blog-post__glow--blue { top: 30%;  right: -10%; width: 520px; height: 520px; background: radial-gradient(circle, var(--brand-blue), transparent 65%); }

.blog-post__head-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.blog-post__crumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.blog-post__crumbs a {
    color: var(--brand-text-muted);
    transition: color 0.2s ease;
}
.blog-post__crumbs a:hover { color: var(--brand-text); }
.blog-post__crumbs span { color: rgba(160, 161, 189, 0.5); }

.blog-post__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    background: rgba(255, 45, 146, 0.1);
    border: 1px solid rgba(255, 45, 146, 0.3);
    color: var(--brand-pink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.blog-post__chip:hover {
    background: rgba(255, 45, 146, 0.18);
    border-color: var(--brand-pink);
    transform: translateY(-1px);
}
.blog-post__chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 10px var(--brand-red);
}

.blog-post__title {
    margin: 0 0 22px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--brand-text);
    text-wrap: balance;
}

.blog-post__excerpt {
    margin: 0 auto 32px;
    max-width: 640px;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
    text-wrap: pretty;
}

.blog-post__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    color: var(--brand-text-muted);
}
.blog-post__author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.blog-post__author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 45, 146, 0.4);
    display: block;
}
.blog-post__author span { text-align: left; }
.blog-post__meta-label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(160, 161, 189, 0.75);
}
.blog-post__meta strong,
.blog-post__meta time {
    color: var(--brand-text);
    font-weight: 600;
    font-size: 0.9rem;
}
.blog-post__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(160, 161, 189, 0.4);
}
.blog-post__meta-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

/* Featured image */
.blog-post__feature {
    margin: 0 auto 32px;
    max-width: 980px;
    padding: 0 24px;
}
.blog-post__feature img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Body + prose */
.blog-post__body {
    position: relative;
    padding: 0 24px 72px;
}
.blog-post__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 56px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}
.blog-post__main { min-width: 0; }

.blog-post__content.prose {
    max-width: 720px;
    margin: 0 auto 0 0;
    font-family: "Inter", sans-serif;
    font-size: 1.04rem;
    line-height: 1.75;
    color: #d8d9ef;
}

/* Sticky sidebar */
.blog-post__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-height: calc(100vh - 120px);
}

/* Reading progress ring */
.blog-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.72), rgba(12, 10, 24, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-progress__label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(160, 161, 189, 0.75);
}
.blog-progress__ring {
    --pct: 0;
    position: relative;
    width: 54px;
    height: 54px;
}
.blog-progress__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.blog-progress__ring circle {
    fill: none;
    stroke-width: 3.5;
}
.blog-progress__track {
    stroke: rgba(255, 255, 255, 0.08);
}
.blog-progress__fill {
    stroke: url(#blogProgressGradient, var(--brand-pink));
    stroke: var(--brand-pink);
    stroke-linecap: round;
    stroke-dasharray: 125.66; /* 2 * PI * r (r=20) */
    stroke-dashoffset: calc(125.66 - (125.66 * var(--pct) / 100));
    filter: drop-shadow(0 0 6px rgba(255, 45, 146, 0.55));
    transition: stroke-dashoffset 0.25s ease-out;
}
.blog-progress__pct {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--brand-text);
}
.blog-progress__status {
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--brand-text-muted);
}

/* Table of contents */
.blog-toc {
    padding: 18px 20px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.72), rgba(12, 10, 24, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 45, 146, 0.4) transparent;
}
.blog-toc::-webkit-scrollbar { width: 5px; }
.blog-toc::-webkit-scrollbar-thumb { background: rgba(255, 45, 146, 0.4); border-radius: 4px; }
.blog-toc__label {
    display: block;
    margin-bottom: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 230, 245, 0.85);
}
.blog-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.blog-toc__list li {
    counter-increment: toc;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease;
}
.blog-toc__list li.is-active {
    border-left-color: var(--brand-pink);
    box-shadow: -1px 0 10px rgba(255, 45, 146, 0.35);
}
.blog-toc__list a {
    display: block;
    padding: 7px 0 7px 14px;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(200, 200, 220, 0.7);
    transition: color 0.2s ease, transform 0.2s ease;
}
.blog-toc__list a:hover {
    color: var(--brand-text);
}
.blog-toc__list li.is-active a {
    color: var(--brand-text);
    font-weight: 600;
}

/* Responsive: hide sidebar on tablet & mobile */
@media (max-width: 1024px) {
    .blog-post__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }
    .blog-post__sidebar { display: none; }
    .blog-post__content.prose { margin: 0 auto; }
}

.prose > *:first-child { margin-top: 0; }
.prose > *:last-child  { margin-bottom: 0; }
.prose p {
    margin: 0 0 1.3em;
}
.prose a {
    color: var(--brand-pink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.prose a:hover {
    color: #ff6fb0;
    text-decoration-color: #ff6fb0;
}
.prose h2,
.prose h3,
.prose h4 {
    font-family: "Space Grotesk", sans-serif;
    color: var(--brand-text);
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.prose h2 {
    margin: 2.2em 0 0.7em;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    position: relative;
    padding-top: 0.4em;
    background: linear-gradient(100deg, #ffffff 0%, #ecd8ee 55%, #c8d5ec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 22px rgba(200, 190, 230, 0.08);
}
.prose h2::before {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-bottom: 0.55em;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    border-radius: 2px;
}
.prose h3 {
    margin: 1.8em 0 0.6em;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(100deg, #f5ecf4 0%, #e4dceb 55%, #d6dcec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.prose h4 {
    margin: 1.6em 0 0.5em;
    font-size: 1.12rem;
    font-weight: 600;
}
.prose strong { color: var(--brand-text); font-weight: 600; }
.prose em { color: #ead6f0; }
.prose ul,
.prose ol {
    margin: 0 0 1.4em;
    padding: 0 0 0 1.4em;
}
.prose ul li,
.prose ol li {
    margin: 0 0 0.55em;
    padding-left: 0.25em;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
    position: relative;
    padding-left: 1.6em;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-pink));
    box-shadow: 0 0 6px rgba(255, 45, 146, 0.5);
}
.prose blockquote {
    margin: 1.8em 0;
    padding: 18px 24px;
    border-left: 3px solid var(--brand-pink);
    background: rgba(255, 45, 146, 0.06);
    border-radius: 4px 12px 12px 4px;
    font-family: "Instrument Serif", Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #f0e6f3;
}
.prose blockquote p { margin: 0 0 0.4em; }
.prose blockquote p:last-child { margin-bottom: 0; }
.prose code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.88em;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(255, 45, 146, 0.1);
    border: 1px solid rgba(255, 45, 146, 0.22);
    color: #ffb3d5;
}
.prose pre {
    margin: 1.8em 0;
    padding: 20px 22px;
    border-radius: 14px;
    background: #0c0b18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.86rem;
    line-height: 1.6;
    color: #dcdcea;
}
.prose pre code {
    padding: 0;
    background: none;
    border: 0;
    color: inherit;
    font-size: inherit;
}
.prose img,
.prose figure img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.6em 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.prose figure {
    margin: 1.8em 0;
}
.prose figcaption {
    margin-top: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    text-align: center;
}
.prose hr {
    margin: 2.4em 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 146, 0.4), transparent);
}

/* Inline CTA — embedded inside blog posts between sections */
.prose .inline-cta,
.inline-cta {
    position: relative;
    margin: 2.6em 0;
    padding: 32px 34px;
    border-radius: 20px;
    background:
        radial-gradient(400px 180px at 0% 0%, rgba(255, 45, 146, 0.18), transparent 65%),
        radial-gradient(400px 180px at 100% 100%, rgba(47, 125, 255, 0.16), transparent 65%),
        linear-gradient(180deg, rgba(22, 20, 38, 0.95), rgba(12, 10, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    isolation: isolate;
}
.inline-cta::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.55), rgba(255, 45, 146, 0) 50%, rgba(47, 125, 255, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

.inline-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    margin-bottom: 14px;
}
.inline-cta__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 10px rgba(255, 45, 146, 0.8);
    animation: inline-cta-pulse 1.8s ease-in-out infinite;
}
@keyframes inline-cta-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.6; }
}

.prose .inline-cta__title,
.inline-cta__title {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd9e6 50%, #c9d9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.prose .inline-cta__title::before { display: none; } /* cancel the h3 chip if .prose adds one */

.prose .inline-cta__body,
.inline-cta__body {
    margin: 0 0 22px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--brand-text-muted);
    max-width: 640px;
}

.inline-cta__btn {
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.98rem;
}
.inline-cta__arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.inline-cta__btn:hover .inline-cta__arrow { transform: translateX(5px); }

.inline-cta__trust {
    display: block;
    margin-top: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    opacity: 0.85;
}

/* Light + Kindle mode variants keep the same structure but swap the palette. */
body.blog-reader--light .inline-cta {
    background:
        radial-gradient(400px 180px at 0% 0%, rgba(216, 27, 125, 0.1), transparent 65%),
        radial-gradient(400px 180px at 100% 100%, rgba(47, 125, 255, 0.08), transparent 65%),
        linear-gradient(180deg, #fff, #fbf7fa);
    border-color: #ecebf0;
    box-shadow: 0 18px 40px rgba(17, 16, 26, 0.06);
}
body.blog-reader--light .inline-cta::before { opacity: 0.25; }
body.blog-reader--light .inline-cta__eyebrow { color: #6b6778; }
body.blog-reader--light .inline-cta__title {
    background: linear-gradient(135deg, #11101a 0%, #d81b7d 55%, #2f7dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--light .inline-cta__body { color: #46405a; }
body.blog-reader--light .inline-cta__trust { color: #8a869a; }

body.blog-reader--kindle .inline-cta {
    background:
        radial-gradient(400px 180px at 0% 0%, rgba(160, 87, 26, 0.14), transparent 65%),
        linear-gradient(180deg, #f1e7ca, #ece0be);
    border-color: #d5c59d;
    box-shadow: 0 14px 28px rgba(68, 48, 20, 0.08);
}
body.blog-reader--kindle .inline-cta::before { opacity: 0; }
body.blog-reader--kindle .inline-cta__eyebrow { color: #7a6640; }
body.blog-reader--kindle .inline-cta__eyebrow-dot { background: #a0571a; box-shadow: 0 0 8px rgba(160, 87, 26, 0.6); }
body.blog-reader--kindle .inline-cta__title {
    background: linear-gradient(100deg, #1f1a10 0%, #1f1a10 30%, #a0571a 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.blog-reader--kindle .inline-cta__body { color: #4a3a1e; }
body.blog-reader--kindle .inline-cta__trust { color: #8a7750; }

@media (max-width: 680px) {
    .inline-cta { padding: 22px 20px; margin: 2em 0; }
    .inline-cta__btn { width: 100%; justify-content: center; }
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: 0.96rem;
}
.prose table th,
.prose table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prose table th {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.03);
}

/* Tags + share */
.blog-post__tags,
.blog-post__share {
    max-width: 720px;
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: var(--brand-text-muted);
}
.blog-post__tags-label,
.blog-post__share > span:first-child {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(160, 161, 189, 0.7);
    margin-right: 4px;
}
.blog-post__tag {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4d5e8;
    font-size: 0.82rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.blog-post__tag:hover {
    border-color: rgba(255, 45, 146, 0.5);
    color: var(--brand-pink);
}
.blog-post__share a {
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #d4d5e8;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.blog-post__share a:hover {
    border-color: var(--brand-pink);
    background: rgba(255, 45, 146, 0.08);
    color: #fff;
}

/* Author box */
.blog-post__author-box {
    max-width: 720px;
    margin: 44px auto 0;
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.72), rgba(12, 10, 24, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-post__author-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 45, 146, 0.4);
    flex-shrink: 0;
}
.blog-post__author-box strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    color: var(--brand-text);
    margin-bottom: 4px;
}
.blog-post__author-label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(160, 161, 189, 0.7);
    margin-bottom: 4px;
}
.blog-post__author-box p {
    margin: 0;
    color: var(--brand-text-muted);
    line-height: 1.6;
    font-size: 0.94rem;
}

/* Related posts */
.blog-post__related {
    position: relative;
    padding: 72px 24px;
    background: linear-gradient(180deg, rgba(18, 16, 32, 0.7), transparent);
    border-top: 1px solid var(--brand-line);
}
.blog-post__related-inner {
    max-width: 1140px;
    margin: 0 auto;
}
.blog-post__related-title {
    margin: 10px 0 34px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--brand-text);
}
.blog-post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Blog cards (used in related + archive) */
.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 20, 38, 0.82), rgba(12, 10, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 45, 146, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.blog-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0c0b18;
}
.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card__cat {
    align-self: flex-start;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-pink);
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 45, 146, 0.08);
    border: 1px solid rgba(255, 45, 146, 0.26);
}
.blog-card__title {
    margin: 2px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.blog-card__title a {
    color: var(--brand-text);
    transition: color 0.2s ease;
}
.blog-card__title a:hover { color: var(--brand-pink); }
.blog-card__excerpt {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
    flex: 1;
}
.blog-card__meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(160, 161, 189, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

/* CTA banner at the bottom of posts */
.blog-post__cta {
    padding: 0 24px 88px;
    background: var(--brand-black);
}
.blog-post__cta-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 34px 36px;
    border-radius: 24px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255, 23, 68, 0.18), transparent 55%),
        radial-gradient(ellipse at 90% 85%, rgba(47, 125, 255, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(22, 20, 38, 0.85), rgba(12, 10, 24, 0.95));
    border: 1px solid rgba(255, 45, 146, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.blog-post__cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-pink);
}
.blog-post__cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 10px var(--brand-red);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}
.blog-post__cta-inner h2 {
    margin: 10px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--brand-text);
}
.blog-post__cta-inner p {
    margin: 0;
    color: var(--brand-text-muted);
    max-width: 520px;
}

/* Pages (regular WP pages) */
.blog-post--page .blog-post__header { padding-bottom: 48px; }

/* Archive */
.blog-archive {
    position: relative;
    padding: 140px 24px 96px;
    background: var(--brand-black);
    color: var(--brand-text);
    overflow: hidden;
    isolation: isolate;
}
.blog-archive__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.blog-archive__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}
.blog-archive__title {
    margin: 12px 0 14px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
    max-width: 880px;
    text-wrap: balance;
}
.blog-archive__desc {
    max-width: 680px;
    margin: 0 0 44px;
    font-family: "Inter", sans-serif;
    font-size: 1.04rem;
    line-height: 1.65;
    color: var(--brand-text-muted);
}
.blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.blog-archive__nav {
    margin-top: 44px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-archive__nav .page-numbers {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--brand-text-muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.blog-archive__nav .page-numbers:hover,
.blog-archive__nav .page-numbers.current {
    border-color: var(--brand-pink);
    background: rgba(255, 45, 146, 0.1);
    color: var(--brand-text);
}
.blog-archive__empty {
    font-family: "Inter", sans-serif;
    color: var(--brand-text-muted);
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 1100px) {
    .blog-post__related-grid,
    .blog-archive__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .blog-post__header { padding: 112px 18px 32px; }
    .blog-post__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .blog-post__meta { padding: 12px 16px; gap: 10px; font-size: 0.8rem; }
    .blog-post__feature { padding: 0 18px; }
    .blog-post__body { padding: 0 18px 48px; }
    .blog-post__content.prose { font-size: 1rem; }
    .prose h2 { font-size: 1.45rem; }
    .prose h3 { font-size: 1.2rem; }
    .blog-post__related { padding: 56px 18px; }
    .blog-post__related-grid,
    .blog-archive__grid { grid-template-columns: 1fr; }
    .blog-post__cta-inner { padding: 26px 22px; flex-direction: column; align-items: flex-start; }
    .blog-post__cta-inner .button { width: 100%; justify-content: center; }
    .blog-post__cta { padding: 0 18px 64px; }
    .blog-archive { padding: 110px 18px 72px; }
    .blog-post__author-box { flex-direction: column; gap: 12px; }
}

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer {
    position: relative;
    padding: 72px 0 24px;
    border-top: 1px solid var(--brand-line);
    background: var(--brand-black);
    overflow: hidden;
    isolation: isolate;
}
.site-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.site-footer__glow {
    position: absolute;
    left: 50%;
    top: -20%;
    width: 820px;
    height: 520px;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center, rgba(255, 23, 68, 0.14), transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(47, 125, 255, 0.12), transparent 55%);
    filter: blur(60px);
}

.site-footer__inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 32px), var(--brand-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.85fr 1.1fr;
    gap: 48px;
    align-items: flex-start;
}

.footer-col__title {
    margin: 0 0 18px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}

/* Brand column */
.footer-col--brand .brand { margin-bottom: 18px; }
.footer-col--brand p {
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    line-height: 2.15;
    color: var(--brand-text-muted);
    max-width: 360px;
}
.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
}
.footer-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.footer-badge__dot--red  { background: var(--brand-red);  box-shadow: 0 0 8px var(--brand-red); }
.footer-badge__dot--blue { background: var(--brand-blue); box-shadow: 0 0 8px var(--brand-blue); }

/* Features list */
.footer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #d4d5e8;
    line-height: 1.4;
}
.footer-features__dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.footer-features__dot--red  { background: var(--brand-red);  box-shadow: 0 0 8px rgba(255, 23, 68, 0.6); }
.footer-features__dot--pink { background: var(--brand-pink); box-shadow: 0 0 8px rgba(255, 45, 146, 0.6); }
.footer-features__dot--blue { background: var(--brand-blue); box-shadow: 0 0 8px rgba(47, 125, 255, 0.6); }

/* Explore links */
.footer-col--links .footer-links__list {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.footer-col--links .footer-links__list a {
    font-size: 0.92rem;
    font-weight: 500;
    color: #c4c5d8;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-col--links .footer-links__list a:hover {
    color: var(--brand-text);
    transform: translateX(3px);
}

/* CTA column */
.footer-col--cta p {
    margin: 0 0 18px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--brand-text-muted);
}
.footer-cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-cta__actions .button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.86rem;
}

/* Bottom bar */
.site-footer__bottom {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid var(--brand-line);
}
.site-footer__bottom-inner {
    width: min(calc(100% - 32px), var(--brand-container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.site-footer__copy {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
    color: var(--brand-text-muted);
}
.footer-meta-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-meta-links a {
    color: var(--brand-text-muted);
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-meta-links a:hover { color: var(--brand-text); }

/* ==================================================================
   LEAD MODAL
   ================================================================== */
.lead-modal[hidden] { display: none; }
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    overflow-y: auto;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- fadeOutDown close animation (Animate.css style) --- */
.lead-modal.is-closing {
    pointer-events: none;
    animation: leadModalFadeOut 0.6s ease-out forwards;
}
.lead-modal.is-closing .lead-modal__backdrop {
    animation: leadBackdropFade 0.6s ease-out forwards;
}
.lead-modal.is-closing .lead-modal__dialog {
    animation: leadDialogFadeOutDown 0.6s ease-in forwards;
    transform-origin: center;
    will-change: transform, opacity;
}
@keyframes leadModalFadeOut {
    to { opacity: 0; }
}
@keyframes leadBackdropFade {
    0%   { opacity: 1; backdrop-filter: blur(10px); }
    100% { opacity: 0; backdrop-filter: blur(0); }
}
@keyframes leadDialogFadeOutDown {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
.lead-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 10, 0.82);
    backdrop-filter: blur(10px);
}
.lead-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
    gap: 0;
    width: min(100%, 980px);
    margin: auto;
    border-radius: 26px;
    background:
        radial-gradient(ellipse at top right, rgba(255, 23, 68, 0.12), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(47, 125, 255, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(22, 20, 38, 0.98), rgba(10, 8, 20, 0.98));
    border: 1px solid rgba(255, 45, 146, 0.28);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 23, 68, 0.22);
    animation: modalIn 0.3s ease;
    overflow: hidden;
}
.lead-modal__dialog::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 50%, var(--brand-blue));
    z-index: -1;
    opacity: 0.4;
    filter: blur(18px);
}

.lead-modal__aside {
    position: relative;
    padding: 40px 36px;
    background:
        radial-gradient(ellipse at bottom left, rgba(255, 45, 146, 0.15), transparent 60%),
        linear-gradient(180deg, rgba(20, 18, 36, 0.6), rgba(10, 8, 20, 0.4));
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}
.lead-modal__aside::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 45, 146, 0.35), transparent);
}
.lead-modal__body {
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

/* Book-fold flip container */
.lead-modal__flip {
    position: relative;
    perspective: 1600px;
    transform-style: preserve-3d;
}
.lead-modal__face {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: left center;
    transition: transform 0.95s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
}
.lead-modal__face--back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    opacity: 0;
    pointer-events: none;
}
.is-submitted .lead-modal__face.lead-form {
    transform: rotateY(-180deg);
    opacity: 0;
    pointer-events: none;
}
.is-submitted .lead-modal__face--back {
    transform: rotateY(0deg);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.1s;
}

/* Thank-you panel content */
.lead-thankyou {
    display: block;
}
.lead-thankyou[hidden] { display: none; }
.lead-thankyou__sheet {
    position: relative;
    padding: 4px 2px;
}
.lead-thankyou__spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    width: 6px;
    background: linear-gradient(180deg, rgba(255,45,146,0.0), rgba(255,45,146,0.22), rgba(255,45,146,0.0));
    border-radius: 999px;
    pointer-events: none;
}
.lead-thankyou__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    background: rgba(47, 217, 143, 0.1);
    border: 1px solid rgba(47, 217, 143, 0.3);
    color: #2fd98f;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lead-thankyou__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2fd98f;
    box-shadow: 0 0 10px rgba(47, 217, 143, 0.7);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}
.lead-thankyou__title {
    margin: 0 0 14px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--brand-text);
    text-wrap: balance;
}
.lead-thankyou__body {
    margin: 0 0 22px;
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #d4d5e8;
    text-wrap: pretty;
}
.lead-thankyou__points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}
.lead-thankyou__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    color: #c4c5d8;
    line-height: 1.5;
}
.lead-thankyou__check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 55%, var(--brand-blue));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(255, 23, 68, 0.35);
}
.lead-thankyou__timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    color: #d4d5e8;
}
.lead-thankyou__timer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 10px rgba(255, 45, 146, 0.55);
    animation: heroBadgePulse 1.6s ease-in-out infinite;
}

/* While submitting, dim the form subtly */
.lead-form.is-loading { opacity: 0.6; pointer-events: none; }
.lead-form__submit.is-loading .lead-form__submit-arrow { animation: heroBadgePulse 0.8s ease-in-out infinite; }

.lead-modal__points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}
.lead-modal__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #d4d5e8;
}
.lead-modal__points-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.lead-modal__points-dot--red  { background: var(--brand-red);  box-shadow: 0 0 10px rgba(255, 23, 68, 0.7); }
.lead-modal__points-dot--pink { background: var(--brand-pink); box-shadow: 0 0 10px rgba(255, 45, 146, 0.7); }
.lead-modal__points-dot--blue { background: var(--brand-blue); box-shadow: 0 0 10px rgba(47, 125, 255, 0.7); }
.lead-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    background: rgba(255, 45, 146, 0.1);
    border: 1px solid rgba(255, 45, 146, 0.32);
    color: var(--brand-pink);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.lead-modal__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 10px var(--brand-red);
    animation: heroBadgePulse 1.8s ease-in-out infinite;
}
.lead-modal h2 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--brand-text);
}
.lead-modal__aside p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--brand-text-muted);
}
.lead-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lead-modal__close:hover {
    background: rgba(255, 45, 146, 0.14);
    border-color: rgba(255, 45, 146, 0.4);
    transform: rotate(90deg);
}

.lead-form {
    display: grid;
    gap: 14px;
}

/* Anti-spam honeypot: positioned way off-screen so humans never see it,
   but bots that parse the DOM still happily fill it. */
.lead-form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Elephant CAPTCHA challenge — only revealed when the server flags a submission. */
.lead-form__challenge {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 45, 146, 0.1);
    border: 1px solid rgba(255, 45, 146, 0.35);
    animation: leadChallengeSlide 0.35s ease-out;
}
.lead-form__challenge[hidden] { display: none; }
.lead-form__challenge-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--brand-text);
}
.lead-form__challenge-emoji { font-size: 1.2em; line-height: 1; }
.lead-form__challenge input {
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 45, 146, 0.35);
}
.lead-form__challenge input:focus {
    outline: none;
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 3px rgba(255, 45, 146, 0.18);
}
.lead-form__challenge-hint {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(220, 212, 240, 0.75);
}
.lead-form__challenge-error {
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #ff6688;
}
@keyframes leadChallengeSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lead-form__row { display: grid; gap: 14px; }
.lead-form__row--2col { grid-template-columns: 1fr 1fr; }
.lead-form__row--4060 { grid-template-columns: 2fr 3fr; }
.lead-form__row--5050 { grid-template-columns: 1fr 1fr; }
.lead-form__row--captcha {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}
.lead-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
}
.lead-form__actions .lead-form__submit {
    min-width: 220px;
    justify-content: center;
}

/* NDA checkbox — styled like a premium consent toggle */
.lead-form__nda {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(47, 125, 255, 0.06), rgba(255, 45, 146, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.lead-form__nda:hover {
    border-color: rgba(255, 255, 255, 0.16);
}
.lead-form__nda input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.lead-form__nda-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    margin-top: 2px;
}
.lead-form__nda-box svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.lead-form__nda input[type="checkbox"]:checked ~ .lead-form__nda-box {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-pink) 60%, var(--brand-blue));
    border-color: transparent;
}
.lead-form__nda input[type="checkbox"]:checked ~ .lead-form__nda-box svg {
    opacity: 1;
    transform: scale(1);
}
.lead-form__nda input[type="checkbox"]:focus-visible ~ .lead-form__nda-box {
    outline: 2px solid var(--brand-pink);
    outline-offset: 2px;
}
.lead-form__nda-copy {
    display: grid;
    gap: 2px;
    line-height: 1.4;
}
.lead-form__nda-copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brand-text);
    letter-spacing: -0.005em;
}
.lead-form__nda-copy em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--brand-text-muted);
    line-height: 1.5;
}

/* NDA block when rendered inside the modal aside (left column).
   Sits under the bullet points, acts as a prominent pre-checked promo. */
.lead-modal__nda {
    margin-top: 22px;
    padding: 14px 14px;
    background: linear-gradient(180deg, rgba(255, 45, 146, 0.08), rgba(47, 125, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.lead-modal__nda .lead-form__nda-copy strong {
    font-size: 0.96rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd9e6 55%, #c9d9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead-modal__nda .lead-form__nda-copy em {
    font-size: 0.8rem;
    line-height: 1.55;
}

.lead-form__field {
    display: grid;
    gap: 8px;
}
.lead-form__field > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--brand-text);
}
.lead-form__optional {
    font-family: "JetBrains Mono", monospace;
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(160, 161, 189, 0.5);
}
.lead-form textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--brand-pink);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 45, 146, 0.14);
}

.lead-form__submit {
    min-height: 50px;
    padding: 0 26px;
    font-size: 0.95rem;
    white-space: nowrap;
}
.lead-form__submit-arrow {
    transition: transform 0.2s ease;
}
.lead-form__submit:hover .lead-form__submit-arrow {
    transform: translateX(4px);
}
.lead-alert { padding-top: 14px; }
.lead-alert__inner {
    padding: 12px 16px;
    border-radius: 14px;
    color: #fff;
    background: rgba(47, 217, 143, 0.12);
    border: 1px solid rgba(47, 217, 143, 0.28);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(14px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1100px) {
    .hero__card { right: 28px; bottom: 90px; width: 240px; }
    .hero__numeral { font-size: 18rem; left: -20px; bottom: -30px; }
}

@media (max-width: 980px) {
    .site-nav { display: none; }
    .header-actions .button { padding: 0 16px; font-size: 0.85rem; }
    .hero { padding: 112px 0 80px; }
    .hero__marker { top: 96px; left: 24px; }
    .hero__card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 48px auto 0;
        transform: rotate(2deg);
    }
    .hero__numeral { font-size: 14rem; }
    .hero__scroll { display: none; }
    .section { padding: 80px 0; }
    .solutions-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .models-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .video-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .compliance-layout { grid-template-columns: 1fr; gap: 40px; }
    .compliance-shield { margin-top: 20px; }
    .compliance-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-track { grid-template-columns: 1fr; gap: 28px; }
    .process-step { padding: 0; }
    .process-step__connector { display: none; }
    .revenue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .revenue-card--wide  { grid-column: span 1; }
    .revenue-card--wider { grid-column: span 2; }
    .payments-gateways { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .payments-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stack-layer { grid-template-columns: 1fr; gap: 16px; padding: 20px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-contact { flex-direction: column; align-items: flex-start; text-align: left; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .lead-modal__dialog { grid-template-columns: 1fr; }
    .lead-modal__aside {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 32px 32px 28px;
    }
    .lead-modal__aside::after { display: none; }
    .lead-modal__body { padding: 32px; }
}

@media (max-width: 680px) {
    .site-header__inner { padding: 12px 0; }
    .brand__copy small { display: none; }
    .hero { padding: 96px 0 64px; min-height: auto; }
    .hero__marker { display: none; }
    .hero__frame { padding-top: 16px; }
    .hero__badge {
        font-size: 0.66rem;
        padding: 7px 14px;
        letter-spacing: 0.16em;
        margin-bottom: 28px;
    }
    .hero__title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        margin-bottom: 22px;
    }
    .hero__title-stamp { transform: rotate(-1deg); padding: 0.04em 0.36em 0.1em; }
    .hero__lead { font-size: 1rem; margin-bottom: 32px; }
    .hero__cta { flex-direction: column; width: 100%; margin-bottom: 36px; }
    .hero__btn { width: 100%; justify-content: center; padding: 16px 24px; }
    .hero__signals { flex-direction: column; gap: 12px; }
    .hero__card { width: min(100%, 320px); margin-top: 36px; }
    .hero__numeral { font-size: 10rem; bottom: -20px; left: -12px; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
    .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
    .lead-form__row--2col,
    .lead-form__row--4060,
    .lead-form__row--5050,
    .lead-form__row--captcha { grid-template-columns: 1fr; }
    .lead-form__actions .lead-form__submit { width: 100%; min-width: 0; }
    .lead-form__submit { width: 100%; justify-content: center; }
    .lead-modal__dialog {
        grid-template-columns: 1fr;
    }
    .lead-modal__aside {
        padding: 22px 22px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .lead-modal__aside::after { display: none; }
    /* On phones we keep only the eyebrow + title in the aside. The
       description paragraph and the 3 bullet points are hidden to give
       the form more vertical room and reduce scrolling. */
    .lead-modal__aside p,
    .lead-modal__points { display: none; }
    .lead-modal__body { padding: 20px 22px 26px; }
    .footer-cta__actions .button { width: 100%; }
    .section { padding: 64px 0; }
    .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .section__stamp { transform: rotate(-1deg); padding: 0.04em 0.28em 0.1em; }
    .opportunity-grid { grid-template-columns: 1fr; }
    .opportunity-callout { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
    .opportunity-callout__bar { width: 40px; height: 3px; }
    .feature-grid { grid-template-columns: 1fr; }
    .models-grid  { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .video-card { max-width: none; }
    .video-card__meta { padding: 16px 18px 18px; }
    .video-card__title { font-size: 1.35rem; }
    .video-callout { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
    .video-callout__bar { width: 40px; height: 3px; }
    .compliance-item { padding: 16px; gap: 12px; }
    .compliance-item__icon { width: 40px; height: 40px; }
    .compliance-list { grid-template-columns: 1fr; }
    .revenue-grid { grid-template-columns: 1fr; }
    .revenue-card--wide,
    .revenue-card--wider { grid-column: span 1; }
    .monetization-numeral { font-size: 10rem; right: -20px; bottom: -30px; }
    .revenue-callout { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
    .revenue-callout__bar { width: 40px; height: 3px; }
    .payments-gateways { grid-template-columns: 1fr; }
    .payments-features { grid-template-columns: 1fr; }
    .gateway-pill { padding: 14px 16px; }
    .gateway-pill__status { display: none; }
    .payments-callout { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
    .payments-callout__bar { width: 40px; height: 3px; }
    .stack-layer { padding: 18px 20px; }
    .stack-layer__name { font-size: 1.05rem; }
    .pricing-card { padding: 28px 24px 26px; }
    .pricing-card__title { font-size: 1.4rem; }
    .pricing-card__price-value { font-size: 1.55rem; }
    .pricing-contact { padding: 20px 22px; gap: 14px; }
    .pricing-contact__cta { width: 100%; justify-content: center; }
}
