:root {
    --bg-color: #070a12;
    --text-color: #f3f4f6;
    --muted: #9ca3af;
    --accent-color: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.45);
    --card-bg: #0f141f;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 72px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-family: "DM Sans", system-ui, -apple-system, sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

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

main {
    display: block;
}

@keyframes emoji-float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-6px) rotate(2deg);
    }
}

@keyframes emoji-spin-soft {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(8deg) scale(1.05);
    }
}

@keyframes floater-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    33% {
        transform: translate(8px, -12px) scale(1.05);
        opacity: 0.55;
    }
    66% {
        transform: translate(-10px, 6px) scale(0.95);
        opacity: 0.4;
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

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

/* ——— Reveal on scroll ——— */
.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    filter: blur(4px);
    transition:
        opacity 0.75s var(--ease-out),
        transform 0.75s var(--ease-out),
        filter 0.75s var(--ease-out);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}
.reveal-delay-2 {
    transition-delay: 0.16s;
}
.reveal-delay-3 {
    transition-delay: 0.24s;
}
.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
    .hero-orb,
    .hero-title .word,
    .section-emoji,
    .emoji-wobble,
    .floater,
    .float-gentle,
    .pain-card__glow,
    .why-card--shine::before {
        animation: none !important;
    }

    .tilt-hover:hover {
        transform: none;
    }

    .hero-eyebrow-track--marquee {
        animation: none !important;
        transform: none;
    }

    .hero-eyebrow-group:last-child {
        display: none;
    }

    .hero-eyebrow-window--h {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ——— Header ——— */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 18, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition:
        background 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out),
        border-color 0.35s var(--ease-out);
}

header.is-scrolled {
    background: rgba(7, 10, 18, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(59, 130, 246, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 5%;
    max-width: min(1320px, 100%);
    margin: 0 auto;
    min-height: var(--header-h);
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.02em;
    z-index: 1002;
    transition: color 0.25s var(--ease-out);
}

.logo:hover {
    color: var(--accent-hover);
}

.logo span {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 901px) {
    .nav-links {
        flex: 1;
        justify-content: center;
    }
}

.nav-links a {
    position: relative;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--muted);
    transition: color 0.25s var(--ease-out);
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
    border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-switch {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
    transition:
        border-color 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}

.lang-switch:hover {
    border-color: rgba(59, 130, 246, 0.35);
}

.lang-switch:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.lang-switch option {
    background: var(--bg-color);
    color: var(--text-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    z-index: 1002;
    transition: background 0.25s var(--ease-out);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text-color);
    border-radius: 1px;
    transition:
        transform 0.35s var(--ease-out),
        opacity 0.25s var(--ease-out);
}

body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    color: #fff;
    padding: 0.65rem 1.35rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition:
        transform 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out),
        filter 0.25s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
    filter: brightness(1.05);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 2px solid var(--accent-hover);
    outline-offset: 3px;
}

.btn-nav {
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
    filter: none;
}

/* ——— Hero ——— */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 4.5rem) 5% 5.5rem;
    text-align: center;
    max-width: min(1100px, 100%);
    margin: 0 auto;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: none;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.hero-orb-1 {
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 65%);
    top: -8%;
    left: 50%;
    animation: orb-float-center 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
    bottom: 5%;
    right: -5%;
    animation: orb-float-corner 22s ease-in-out infinite;
    animation-delay: -11s;
}

@keyframes orb-float-center {
    0%,
    100% {
        transform: translate(-50%, 0) scale(1);
    }
    50% {
        transform: translate(-48%, 5%) scale(1.06);
    }
}

@keyframes orb-float-corner {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5%, -6%) scale(1.05);
    }
}

.hero-inner {
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.35rem 0;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.08);
    max-width: min(100%, 34rem);
    width: 100%;
}

.hero-eyebrow-window--h {
    overflow: hidden;
    width: 100%;
    min-height: 2.65rem;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.hero-eyebrow-track--marquee {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    animation: hero-eyebrow-marquee 24s linear infinite;
}

.hero-eyebrow-group {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

.hero-eyebrow-line {
    flex: 0 0 auto;
    width: min(32rem, 88vw);
    max-width: 32rem;
    min-height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0.75rem;
    box-sizing: border-box;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-hover);
    line-height: 1.25;
}

@media (min-width: 480px) {
    .hero-eyebrow-line {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }
}

@keyframes hero-eyebrow-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(120deg, #93c5fd, var(--accent-color), #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.65rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    font-size: 1.05rem;
    padding: 0.95rem 2rem;
}

.hero-btn-secondary {
    font-size: 1.05rem;
    padding: 0.95rem 2rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-floaters {
    position: absolute;
    inset: -2rem -10% 0;
    pointer-events: none;
    z-index: 0;
}

.floater {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.35));
    animation: floater-drift 14s ease-in-out infinite;
}

.floater-1 {
    top: 8%;
    left: 4%;
    animation-duration: 16s;
}

.floater-2 {
    top: 22%;
    right: 2%;
    animation-duration: 18s;
    animation-delay: -4s;
}

.floater-3 {
    bottom: 38%;
    left: 0;
    animation-duration: 15s;
    animation-delay: -7s;
}

.floater-4 {
    bottom: 28%;
    right: 5%;
    animation-duration: 17s;
    animation-delay: -2s;
}

.hero-inner > *:not(.hero-floaters) {
    position: relative;
    z-index: 1;
}

.hero-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    margin: -0.35rem auto 1.5rem;
    max-width: 100%;
    width: 100%;
    padding: 0 0.15rem;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-chips::-webkit-scrollbar {
    display: none;
}

.hero-chip {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(59, 130, 246, 0.08);
    color: var(--muted);
    transition:
        border-color 0.25s var(--ease-out),
        background 0.25s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.hero-chip--reel {
    padding: 0;
    flex: 0 0 auto;
    min-width: 6rem;
    height: 1.9rem;
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    vertical-align: middle;
    opacity: 0.92;
}

.hero-chip__mask {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    display: block;
}

.hero-chip__rail {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    will-change: transform;
}

.hero-chip__cell {
    flex: 0 0 1.9rem;
    height: 1.9rem;
    min-height: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.65rem;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
    color: inherit;
    white-space: nowrap;
}

.hero-chip--reel.hero-chip--spinning .hero-chip__rail {
    filter: blur(0.35px);
}

.hero-chip--reel.hero-chip--snapped .hero-chip__rail {
    filter: none;
}

@keyframes hero-chip-pop {
    0% {
        transform: scale(0.9);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-chip--reel.hero-chip--snapped {
    animation: hero-chip-pop 0.42s var(--ease-out) both;
    border-color: rgba(59, 130, 246, 0.32);
    background: rgba(59, 130, 246, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .hero-chip--reel.hero-chip--spinning .hero-chip__rail {
        filter: none;
    }

    .hero-chip--reel.hero-chip--snapped {
        animation: none;
    }
}

@media (max-width: 380px) {
    .hero-chips {
        gap: 0.28rem;
    }

    .hero-chip--reel {
        min-width: 4.85rem;
        height: 1.72rem;
    }

    .hero-chip__cell {
        flex-basis: 1.72rem;
        height: 1.72rem;
        min-height: 1.72rem;
        padding: 0 0.42rem;
        font-size: 0.68rem;
    }
}

.hero-chip:hover {
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.14);
    transform: translateY(-2px);
}

.hero-chip--reel:hover {
    transform: translateY(-2px);
}

.hero-panel__label {
    margin: 0 0 0.85rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(56, 189, 248, 0.75);
}

.hero-panel {
    margin-top: 2.35rem;
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(165deg, rgba(12, 18, 32, 0.85), rgba(8, 11, 20, 0.92));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 56px rgba(0, 0, 0, 0.35),
        0 0 48px rgba(59, 130, 246, 0.08);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-workflow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-workflow__node {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.88);
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-workflow__node--accent {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(34, 211, 238, 0.12));
    border-color: rgba(59, 130, 246, 0.45);
    color: #e0f2fe;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero-workflow__arrow {
    color: var(--muted);
    font-size: 0.85rem;
    opacity: 0.5;
}

.hero-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hero-metrics li {
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.92);
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-follow {
    padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

.hero-follow + #pains {
    padding-top: 5.25rem;
}

/* ——— Proof + integrations strips ——— */
.proof-strip {
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 11, 18, 0.65);
}

.proof-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    justify-content: center;
    align-items: center;
}

.proof-strip__item {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.92);
    white-space: nowrap;
}

.proof-strip__item::before {
    content: "✓";
    margin-right: 0.4rem;
    color: var(--accent-hover);
    font-size: 0.75rem;
}

.integrations-strip {
    padding: 0.75rem 0 1.25rem;
    background: rgba(7, 10, 18, 0.4);
}

.integrations-strip--subtle {
    padding: 0.55rem 0 0.95rem;
    background: rgba(7, 10, 18, 0.22);
}

.integrations-strip__inner {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}

.integrations-strip__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.integrations-strip--subtle .integrations-strip__label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: rgba(148, 163, 184, 0.65);
    margin-bottom: 0.55rem;
}

.integrations-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    justify-content: center;
    align-items: center;
}

.integrations-icons__hit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    color: rgba(148, 163, 184, 0.75);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        background 0.25s var(--ease-out);
}

.integrations-icons__hit:hover {
    color: rgba(186, 230, 253, 0.95);
    border-color: rgba(59, 130, 246, 0.22);
    background: rgba(59, 130, 246, 0.06);
}

.integrations-icons__svg {
    width: 1.2rem;
    height: 1.2rem;
}

.workflow-sample {
    padding: 1.35rem 0 0;
}

.workflow-sample--subtle {
    padding-top: 1rem;
    padding-bottom: 0;
}

.workflow-sample__title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin: 0 0 0.65rem;
}

.workflow-sample--subtle .workflow-sample__title {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    color: rgba(56, 189, 248, 0.55);
    margin-bottom: 0.75rem;
}

.workflow-sample__viz {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.45rem;
    max-width: 46rem;
    margin: 0 auto;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.workflow-sample--subtle .workflow-sample__viz {
    border-color: rgba(255, 255, 255, 0.045);
    background: rgba(255, 255, 255, 0.015);
    padding: 0.65rem 0.75rem;
}

.workflow-sample__pill {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(203, 213, 225, 0.82);
    padding: 0.38rem 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.workflow-sample__pill--channels {
    flex: 1 1 100%;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.78);
}

@media (min-width: 640px) {
    .workflow-sample__pill--channels {
        flex: 0 1 auto;
    }
}

.workflow-sample__arrow {
    color: rgba(148, 163, 184, 0.35);
    font-size: 0.75rem;
    user-select: none;
}

.workflow-sample--subtle .workflow-sample__pill {
    font-size: 0.68rem;
    padding: 0.32rem 0.5rem;
    color: rgba(148, 163, 184, 0.78);
}

.workflow-sample--subtle .workflow-sample__pill--channels {
    font-size: 0.76rem;
}

/* Hero lines animate in (first paint) */
.hero .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    animation: hero-line-in 0.85s var(--ease-out) backwards;
}

.hero .reveal-delay-1 {
    animation-delay: 0.1s;
}
.hero .reveal-delay-2 {
    animation-delay: 0.22s;
}
.hero .reveal-delay-3 {
    animation-delay: 0.34s;
}

.hero .reveal-delay-4 {
    animation-delay: 0.46s;
}

@keyframes hero-line-in {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero .reveal {
        animation: none;
    }
}

/* ——— Layout ——— */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 720px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-block {
    padding: 4.25rem 0;
}

.section-muted {
    background: rgba(15, 20, 31, 0.45);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-lead {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.section-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-head .section-title {
    margin-bottom: 0.35rem;
}

.section-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    line-height: 1;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: emoji-float 5s ease-in-out infinite;
}

.section-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-hover);
    letter-spacing: 0.04em;
    margin: 0;
}

.glass-panel {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.glass-panel--pad {
    padding: 1.5rem 1.75rem;
}

.glass-panel--glow {
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.12),
        0 24px 60px rgba(0, 0, 0, 0.28);
}

.emoji-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(99, 102, 241, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.35s var(--ease-out);
}

.emoji-bubble--sm {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.emoji-bubble--lg {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.emoji-wobble {
    animation: emoji-spin-soft 6s ease-in-out infinite;
}

.float-gentle {
    animation: emoji-float 4.5s ease-in-out infinite;
}

.tilt-hover {
    transition:
        transform 0.45s var(--ease-out),
        border-color 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

.tilt-hover:hover {
    transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

/* Section accents */
.section-theme-about {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.08), transparent 55%);
}

.section-theme-pains {
    background: radial-gradient(ellipse 70% 40% at 80% 20%, rgba(239, 68, 68, 0.06), transparent 50%);
}

.section-theme-services {
    background: radial-gradient(ellipse 60% 45% at 20% 30%, rgba(139, 92, 246, 0.07), transparent 50%);
}

.section-theme-packages {
    background: radial-gradient(ellipse 50% 40% at 50% 100%, rgba(59, 130, 246, 0.06), transparent 45%);
}

/* ——— About bento ——— */
.about-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .about-bento {
        grid-template-columns: 1fr;
    }
}

.about-card {
    padding: 1.5rem 1.65rem;
    border-radius: 18px;
    text-align: left;
}

.about-card p {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0;
    line-height: 1.65;
}

.about-card--main {
    border-color: rgba(59, 130, 246, 0.18);
}

.about-card--side {
    border-color: rgba(167, 139, 250, 0.15);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ——— Lists (i18n HTML) ——— */
.content-list {
    list-style: none;
    max-width: 40rem;
    margin: 0 auto;
}

.content-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--muted);
    font-size: 1rem;
}

.content-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #a78bfa);
}

.content-list-2col {
    max-width: none;
    columns: 2;
    column-gap: 2.5rem;
}

@media (max-width: 640px) {
    .content-list-2col {
        columns: 1;
    }
}

.cover-block .content-list,
.results-block .content-list,
.help-block .content-list {
    max-width: none;
}

.help-block .content-list {
    max-width: 36rem;
}

.list-shell {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ——— Pain cards ——— */
.pains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.pain-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(20, 25, 38, 0.95), rgba(12, 15, 24, 0.98));
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 1.75rem 1.65rem 1.85rem;
    min-height: 11.5rem;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.35s var(--ease-out),
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

.pain-card--accent::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #f87171, #a78bfa, #38bdf8);
    opacity: 0.85;
}

.pain-card__glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 12rem;
    height: 12rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    pointer-events: none;
    animation: floater-drift 20s ease-in-out infinite;
}

.pain-card .emoji-bubble {
    position: relative;
    z-index: 1;
}

.pain-card:hover {
    border-color: rgba(59, 130, 246, 0.28);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.pain-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.pain-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    flex: 1;
    margin: 0;
}

/* ——— Services ——— */
.services .section-lead {
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 760px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-block {
    margin-bottom: 0;
    height: 100%;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-card--compact {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--compact .service-includes {
    margin-top: auto;
}

.services-grid .service-block:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
    width: 100%;
}

.service-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card .service-head h3 {
    margin-bottom: 0;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.3;
}

.service-card:hover .emoji-bubble {
    transform: scale(1.06) rotate(-4deg);
}

.service-lead {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-hover);
    margin-bottom: 0.5rem;
}

.service-includes {
    margin-top: 0.25rem;
}

.service-includes .content-list {
    margin: 0;
    max-width: none;
}

/* ——— Process ——— */
.process-steps {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-steps--timeline::before {
    content: "";
    position: absolute;
    left: 2.15rem;
    top: 3rem;
    bottom: 3rem;
    width: 3px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.65), rgba(139, 92, 246, 0.35), rgba(59, 130, 246, 0.2));
    border-radius: 3px;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}

@media (max-width: 520px) {
    .process-steps--timeline::before {
        left: 1.85rem;
    }
}

.process-step {
    position: relative;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 0 1.25rem 0;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-badge {
    flex-shrink: 0;
    width: 4.65rem;
    height: 4.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 38, 55, 0.95), rgba(15, 20, 31, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

.process-step:hover .step-badge {
    transform: scale(1.05);
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.15);
}

.step-emoji {
    font-size: 1.25rem;
    line-height: 1;
    animation: emoji-float 4s ease-in-out infinite;
}

.process-step:nth-child(2) .step-emoji {
    animation-delay: -0.5s;
}
.process-step:nth-child(3) .step-emoji {
    animation-delay: -1s;
}
.process-step:nth-child(4) .step-emoji {
    animation-delay: -1.5s;
}
.process-step:nth-child(5) .step-emoji {
    animation-delay: -2s;
}

.step-badge .step-num {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--accent-hover);
}

.process-step__body {
    flex: 1;
    background: rgba(7, 10, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    transition:
        border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out);
}

.process-step:hover .process-step__body {
    border-color: rgba(59, 130, 246, 0.18);
    background: rgba(7, 10, 18, 0.65);
}

.process-step__body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--text-color);
}

.process-step__body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.process-footer {
    max-width: 720px;
    margin: 2.25rem auto 0;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: linear-gradient(145deg, rgba(15, 22, 38, 0.9), rgba(8, 11, 18, 0.95));
    text-align: center;
}

.process-pilot {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.process-pilot strong {
    color: var(--accent-hover);
    font-weight: 800;
}

.process-summary {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ——— Packages ——— */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.package-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem;
    transition:
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.package-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.package-featured {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 20px 50px rgba(0, 0, 0, 0.25);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bg-color);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.package-emoji {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.25));
}

.package-card--tier {
    padding-top: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 31, 0.96) 2.5rem);
    display: flex;
    flex-direction: column;
}

.package-card__cta {
    display: inline-block;
    margin-top: 1.15rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-hover);
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.35);
    padding-bottom: 0.1rem;
    align-self: flex-start;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.package-card__cta:hover {
    color: #93c5fd;
    border-bottom-color: rgba(147, 197, 253, 0.6);
}

.package-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--accent-hover);
    padding-right: 0.5rem;
}

.package-featured h3 {
    padding-right: 5rem;
}

.package-for {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.package-list {
    flex: 1;
}

.package-list .content-list {
    margin: 0;
}

.package-list .content-list li {
    font-size: 0.92rem;
}

/* ——— Why us ——— */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.why-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(15, 20, 31, 0.95), rgba(11, 15, 25, 0.98));
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    transition:
        border-color 0.35s var(--ease-out),
        transform 0.35s var(--ease-out);
}

.why-card--shine::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(59, 130, 246, 0.08) 25%,
        transparent 50%,
        rgba(167, 139, 250, 0.06) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-line 8s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

.why-card__emoji {
    display: inline-flex;
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
    line-height: 1;
    transition: transform 0.35s var(--ease-out);
}

.why-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-4px);
}

.why-card:hover .why-card__emoji {
    transform: scale(1.12) rotate(-6deg);
}

.why-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.why-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ——— FAQ ——— */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: rgba(7, 10, 18, 0.35);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s var(--ease-out);
}

.faq-emoji {
    flex-shrink: 0;
    font-size: 1.35rem;
    line-height: 1;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    transition: transform 0.3s var(--ease-out);
}

.faq-trigger:hover .faq-emoji {
    transform: scale(1.08);
}

.faq-q-text {
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
}

.faq-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    margin-left: auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--muted);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-panel {
    padding: 0 1.25rem 1.15rem;
    border-top: 1px solid var(--border-subtle);
}

.faq-panel[hidden] {
    display: none;
}

.faq-panel p {
    color: var(--muted);
    font-size: 0.95rem;
    padding-top: 1rem;
    margin: 0;
}

.faq-final-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: linear-gradient(165deg, rgba(18, 26, 44, 0.95), rgba(8, 11, 18, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 48px rgba(59, 130, 246, 0.08);
}

.faq-final-cta__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.2rem, 2.8vw, 1.45rem);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.faq-final-cta__lead {
    margin: 0 auto 1.35rem;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted);
}

.faq-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    position: relative;
    background: var(--card-bg);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition:
        transform 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent 50%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-hover);
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ——— Results banner ——— */
.results-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.results-banner__emoji {
    font-size: 2.75rem;
    line-height: 1;
    filter: drop-shadow(0 10px 28px rgba(234, 179, 8, 0.2));
    animation: emoji-float 5s ease-in-out infinite;
}

.results-banner .content-list {
    width: 100%;
    max-width: none;
}

/* ——— Contact ——— */
.contact {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 5%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 55%),
        linear-gradient(180deg, var(--card-bg) 0%, #0a0e18 100%);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.contact--themed .contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-deco__orb {
    position: absolute;
    font-size: clamp(2.5rem, 8vw, 4rem);
    opacity: 0.12;
    animation: floater-drift 22s ease-in-out infinite;
}

.contact-deco__orb--1 {
    top: 12%;
    left: 8%;
}

.contact-deco__orb--2 {
    bottom: 18%;
    right: 10%;
    animation-delay: -8s;
}

.contact-head {
    margin-bottom: 0.5rem;
}

.contact-head .section-title {
    margin-bottom: 0;
}

.contact-head__emoji {
    display: block;
    font-size: 2.75rem;
    margin: 0 auto 0.5rem;
    line-height: 1;
    filter: drop-shadow(0 12px 30px rgba(59, 130, 246, 0.35));
}

.contact-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.contact--themed #leadForm {
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-subtitle {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1.02rem;
}

#leadForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

input,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: #fff;
    font: inherit;
    font-size: 1rem;
    transition:
        border-color 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.btn-submit {
    margin-top: 0.25rem;
    width: 100%;
}

/* ——— Before / After ——— */
.ba-section {
    background:
        radial-gradient(ellipse 90% 55% at 18% 35%, rgba(248, 113, 113, 0.07), transparent 52%),
        radial-gradient(ellipse 90% 50% at 85% 60%, rgba(59, 130, 246, 0.1), transparent 55%),
        radial-gradient(ellipse 70% 45% at 50% 100%, rgba(59, 130, 246, 0.04), transparent 50%);
    padding: 4rem 0;
}

.ba-eyebrow {
    text-align: center;
    margin: 0 auto 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(56, 189, 248, 0.85);
}

.ba-section .section-head {
    margin-bottom: 1.25rem;
}

.ba-section .ba-container {
    max-width: min(94vw, 1360px);
}

.ba-lead {
    text-align: center;
    max-width: 34em;
    margin: 0 auto 2.35rem;
    padding: 0.95rem 1.35rem;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: rgba(241, 245, 249, 0.92);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.22);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 520px) {
    .ba-lead {
        border-radius: 18px;
        padding: 0.8rem 1.05rem;
        max-width: 100%;
        width: auto;
        font-size: 1.02rem;
    }
}

.ba-matrix-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 2px;
    border-radius: 26px;
    background: linear-gradient(
        125deg,
        rgba(248, 113, 113, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 38%,
        rgba(34, 211, 238, 0.35) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 100px rgba(59, 130, 246, 0.12),
        0 0 70px rgba(248, 113, 113, 0.06);
}

.ba-matrix {
    width: 100%;
    margin: 0;
    padding: 1.75rem clamp(1.1rem, 2.5vw, 2rem) 1.6rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(168deg, rgba(18, 22, 34, 0.97) 0%, rgba(10, 14, 22, 0.98) 45%, rgba(8, 11, 18, 0.99) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@media (min-width: 1100px) {
    .ba-matrix-head,
    .ba-matrix-row {
        grid-template-columns: minmax(0, 1fr) minmax(12rem, 36%) minmax(0, 1fr);
        gap: 1rem 1.25rem;
    }
}

.ba-matrix-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 30%) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 1rem;
    padding-bottom: 1.1rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-matrix-head__label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ba-matrix-head__label--before {
    justify-self: end;
    text-align: right;
    color: #f87171;
}

.ba-matrix-head__label--after {
    justify-self: start;
    text-align: left;
    color: var(--accent-hover);
}

.ba-matrix-head__mid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    justify-self: center;
}

.ba-matrix-head__arrow {
    font-size: 1.1rem;
    color: var(--muted);
    opacity: 0.55;
}

.ba-matrix-head__ai {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--accent-hover);
    padding: 0.28rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(34, 211, 238, 0.08));
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}

.ba-axis-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 30%) minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem 1rem;
    padding: 0 0 0.85rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ba-axis {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
}

.ba-axis--before {
    justify-self: end;
    text-align: right;
    color: rgba(248, 113, 113, 0.75);
}

.ba-axis--after {
    justify-self: start;
    text-align: left;
    color: rgba(56, 189, 248, 0.8);
}

.ba-axis-spacer {
    min-height: 1px;
}

@media (min-width: 1100px) {
    .ba-axis-row {
        grid-template-columns: minmax(0, 1fr) minmax(12rem, 36%) minmax(0, 1fr);
        gap: 1rem 1.25rem;
    }
}

.ba-matrix-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ba-matrix-row {
    --bar-before: 25;
    --bar-after: 90;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 30%) minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1.15rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 12px;
}

.ba-matrix-row::before {
    content: "";
    position: absolute;
    inset: 0;
    right: 50%;
    margin-right: -0.5rem;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(90deg, rgba(248, 113, 113, 0.09), transparent 92%);
    pointer-events: none;
    z-index: 0;
}

.ba-matrix-row::after {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    margin-left: -0.5rem;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(270deg, rgba(56, 189, 248, 0.08), transparent 92%);
    pointer-events: none;
    z-index: 0;
}

.ba-matrix-row > * {
    position: relative;
    z-index: 1;
}

.ba-matrix-rows .ba-matrix-row:last-child {
    border-bottom: none;
    padding-bottom: 0.15rem;
}

@media (hover: hover) and (min-width: 721px) {
    .ba-matrix-row {
        border-radius: 14px;
        transition: background 0.25s ease;
    }

    .ba-matrix-row:hover {
        background: rgba(255, 255, 255, 0.035);
    }
}

.ba-matrix-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(241, 245, 249, 0.92);
}

.ba-matrix-text--before {
    justify-self: end;
    text-align: right;
    padding: 0.35rem 0.85rem 0.35rem 0.5rem;
    border-right: 2px solid rgba(248, 113, 113, 0.45);
}

.ba-matrix-text--after {
    justify-self: start;
    text-align: left;
    padding: 0.35rem 0.5rem 0.35rem 0.85rem;
    border-left: 2px solid rgba(56, 189, 248, 0.5);
}

.ba-matrix-row__viz {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    min-width: 0;
}

.ba-matrix-track {
    flex: 1;
    min-width: 0;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ba-matrix-row__chev {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.45;
    width: 1.1rem;
    text-align: center;
}

.ba-bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 1s var(--ease-out);
}

.ba-matrix-wrap.reveal-visible .ba-bar--before {
    width: calc(var(--bar-before) * 1%);
}

.ba-matrix-wrap.reveal-visible .ba-bar--after {
    width: calc(var(--bar-after) * 1%);
}

.ba-bar--before {
    background: linear-gradient(90deg, rgba(248, 113, 113, 0.45), rgba(251, 146, 60, 0.9));
    box-shadow: 0 0 14px rgba(248, 113, 113, 0.2);
}

.ba-bar--after {
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.28);
}

.ba-matrix-row:nth-child(1) .ba-bar {
    transition-delay: 0.04s;
}
.ba-matrix-row:nth-child(2) .ba-bar {
    transition-delay: 0.1s;
}
.ba-matrix-row:nth-child(3) .ba-bar {
    transition-delay: 0.16s;
}
.ba-matrix-row:nth-child(4) .ba-bar {
    transition-delay: 0.22s;
}
.ba-matrix-row:nth-child(5) .ba-bar {
    transition-delay: 0.28s;
}

@media (max-width: 720px) {
    .ba-matrix {
        padding: 1.35rem 1.1rem 1.25rem;
    }

    .ba-matrix-head {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 0.85rem;
        text-align: center;
    }

    .ba-matrix-head__mid {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-self: center;
    }

    .ba-matrix-head__label--before {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
        text-align: center;
    }

    .ba-matrix-head__label--after {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
        text-align: center;
    }

    .ba-matrix-row::before,
    .ba-matrix-row::after {
        display: none;
    }

    .ba-axis-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        text-align: left;
    }

    .ba-axis-spacer {
        display: none;
    }

    .ba-axis--before,
    .ba-axis--after {
        justify-self: start;
        text-align: left;
    }

    .ba-matrix-row {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 1rem 0.65rem;
        margin-bottom: 0.35rem;
        border-radius: 16px;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ba-matrix-rows .ba-matrix-row:last-child {
        margin-bottom: 0;
    }

    .ba-matrix-text--before,
    .ba-matrix-text--after {
        justify-self: stretch;
        text-align: left;
        border-right: none;
        border-left: none;
        padding: 0 0 0 0.65rem;
        border-left: 3px solid transparent;
    }

    .ba-matrix-text--before {
        border-left-color: rgba(248, 113, 113, 0.55);
    }

    .ba-matrix-text--after {
        border-left-color: rgba(56, 189, 248, 0.55);
    }

}

@media (prefers-reduced-motion: reduce) {
    .ba-matrix-wrap .ba-bar {
        transition: none;
    }

    .ba-matrix-wrap.reveal-visible .ba-bar--before {
        width: calc(var(--bar-before) * 1%);
    }

    .ba-matrix-wrap.reveal-visible .ba-bar--after {
        width: calc(var(--bar-after) * 1%);
    }
}

/* ——— Best fit ——— */
.bestfit-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    max-width: 52rem;
    margin: 0 auto;
}

.bestfit-chip {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(59, 130, 246, 0.06);
    color: var(--text-color);
    transition:
        border-color 0.25s var(--ease-out),
        background 0.25s var(--ease-out);
}

.bestfit-chip:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.bestfit-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .bestfit-cards {
        grid-template-columns: 1fr;
    }
}

.bestfit-card {
    padding: 1.35rem 1.4rem 1.45rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(22, 28, 42, 0.9), rgba(12, 15, 24, 0.95));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transition:
        border-color 0.3s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.bestfit-card:hover {
    border-color: rgba(59, 130, 246, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.bestfit-card__title {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.bestfit-card__line {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

/* ——— Use cases ——— */
.usecases-block--featured {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.08), transparent 55%),
        transparent;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    max-width: 1080px;
    margin: 0 auto;
}

.usecase-card {
    padding: 1.65rem 1.5rem 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: linear-gradient(165deg, rgba(20, 26, 38, 0.9), rgba(10, 12, 20, 0.95));
    transition:
        border-color 0.3s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.usecase-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 36px rgba(59, 130, 246, 0.1);
}

.usecase-card--featured {
    border-color: rgba(59, 130, 246, 0.35);
    background: linear-gradient(165deg, rgba(25, 35, 55, 0.95), rgba(12, 16, 28, 0.98));
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 18px 44px rgba(0, 0, 0, 0.3);
}

.usecase-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
}

.usecase-icon {
    font-size: 1.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.usecase-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.usecase-card p {
    color: var(--muted);
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.5;
}

/* ——— Services compact ——— */
.service-card--compact .service-lead {
    margin-bottom: 0.65rem;
}

.service-card--compact .content-list li {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

/* ——— Outcomes ——— */
.outcomes-block .section-lead {
    margin-bottom: 2rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.outcome-panel {
    padding: 1.45rem 1.3rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    background: linear-gradient(160deg, rgba(18, 24, 36, 0.92), rgba(12, 15, 24, 0.96));
    transition:
        border-color 0.3s var(--ease-out),
        transform 0.3s var(--ease-out);
}

.outcome-panel:hover {
    border-color: rgba(59, 130, 246, 0.28);
    transform: translateY(-2px);
}

.outcome-panel--wide {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.outcome-panel__icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.25));
}

.outcome-panel__kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 0.45rem;
}

.outcome-panel__text {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* ——— Proof + mini case ——— */
.proof-suite {
    padding: 4rem 0;
}

.proof-suite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .proof-suite-grid {
        grid-template-columns: 1fr;
    }
}

.proof-suite-title {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
}

.proof-suite-lead {
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.proof-facts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.proof-facts-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.proof-facts-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #a78bfa);
}

.proof-facts-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.mini-case {
    padding: 1.5rem 1.65rem;
    border-radius: 18px;
}

.mini-case__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 0.5rem;
}

.mini-case__title {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    color: var(--text-color);
}

.mini-case__body {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ——— Packages CTA ——— */
.package-hook {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.packages-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.packages-recommend {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-hover);
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.35);
    padding-bottom: 0.15rem;
    margin-bottom: 0.15rem;
}

.packages-recommend:hover {
    color: #93c5fd;
}

.packages-cta-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

.pains-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .pains-grid--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pain-card--accent-strong {
    border-color: rgba(59, 130, 246, 0.2);
    background: linear-gradient(168deg, rgba(24, 32, 48, 0.98), rgba(14, 18, 30, 0.99));
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.08),
        0 18px 48px rgba(0, 0, 0, 0.32);
}

.pain-card--accent-strong::after {
    opacity: 1;
    width: 4px;
    background: linear-gradient(180deg, #38bdf8, #818cf8, #a78bfa);
}

.why-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.why-grid--6 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1020px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .why-grid--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .why-grid--6 {
        grid-template-columns: 1fr;
    }
}

/* ——— Footer ——— */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    color: #6b7280;
    font-size: 0.875rem;
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
    .logo {
        margin-right: auto;
    }

    .navbar {
        padding-left: calc(5% + env(safe-area-inset-left, 0px));
        padding-right: calc(5% + env(safe-area-inset-right, 0px));
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.25rem;
        background: rgba(7, 10, 18, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5.5rem 2rem 2rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.35s var(--ease-out),
            visibility 0.35s;
    }

    .nav-links a {
        font-size: 1.35rem;
        color: var(--text-color);
    }

    body.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .btn-nav {
        display: none;
    }
}

@media (max-width: 520px) {
    .container {
        padding-left: calc(4% + env(safe-area-inset-left, 0px));
        padding-right: calc(4% + env(safe-area-inset-right, 0px));
    }

    .section-block {
        padding: 3.35rem 0;
    }

    .section-title {
        font-size: clamp(1.55rem, 6.2vw, 2rem);
    }

    .proof-strip__inner {
        gap: 0.5rem 0.75rem;
    }

    .proof-strip__item {
        white-space: normal;
        text-align: center;
        line-height: 1.38;
        font-size: 0.76rem;
    }

    .hero-follow + #pains {
        padding-top: 3.25rem;
    }

    .hero-title {
        font-size: clamp(1.72rem, 8vw, 2.35rem);
    }

    .integrations-icons {
        gap: 0.3rem 0.4rem;
    }

    .integrations-icons__hit {
        width: 2.45rem;
        height: 2.45rem;
    }

    .pains-grid--6 {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .hero {
        padding: calc(var(--header-h) + 3rem) 4% 4.25rem;
    }
}

@media (max-width: 480px) {
    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .nav-links a {
        font-size: 0.75rem;
    }
}
