.sds-section {
    padding: 5rem 0 6rem;
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: transparent;
}

.sds-container {
    max-width: 84.375rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ── Ambient glows ────────────────────────────────────────────── */

.sds-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(5rem);
}

.sds-glow--teal {
    width: 36rem;
    height: 36rem;
    top: 10%;
    left: -8rem;
    background: radial-gradient(ellipse, rgba(158, 107, 255, 0.08) 0%, transparent 70%);
}

.sds-glow--violet {
    width: 32rem;
    height: 32rem;
    bottom: 5%;
    right: -6rem;
    background: radial-gradient(ellipse, rgba(127, 72, 255, 0.08) 0%, transparent 70%);
}

/* ── Top text block ───────────────────────────────────────────── */

.sds-top {
    margin-bottom: 2.5rem;
    max-width: 36rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(1.25rem);
    filter: blur(0.3rem);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
}

.sds-top.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.sds-headline {
    margin: 0;
    line-height: 1.12;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.sds-headline__line1 {
    display: block;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.sds-headline__line2 {
    display: block;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--soxy-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 26px rgba(var(--soxy-global-accent-rgb), 0.18);
}

.sds-subtitle {
    margin: 1rem 0 0;
    max-width: 30rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Mulish', sans-serif;
}

/* ── Two-column card row ──────────────────────────────────────── */

.sds-cards-row {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

/* ── Shared card base ─────────────────────────────────────────── */

.sds-card {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── LEFT: Feature card ───────────────────────────────────────── */

.sds-card--feature {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(11, 16, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 30rem;
    opacity: 0;
    transition: opacity 0.7s ease-out 0.15s,
                border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1.5rem 4rem rgba(2, 0, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.sds-card--feature.in-view {
    opacity: 1;
}

.sds-card--feature.in-view:hover {
    border-color: rgba(76, 215, 196, 0.3);
    box-shadow:
        0 2rem 5rem rgba(2, 0, 14, 0.28),
        0 0 2rem rgba(158, 107, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sds-card--feature.in-view:hover .sds-card__bg-img {
    filter: sepia(1) hue-rotate(148deg) saturate(8) brightness(0.95);
    opacity: 1;
}

/* background image: tinted teal/purple + edge-faded */
.sds-card__bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 64%;
    height: 156%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    filter: sepia(1) hue-rotate(148deg) saturate(2.2) brightness(0.88);
    opacity: 1;
    transition: filter 0.45s ease, opacity 0.45s ease;
    -webkit-mask-image:
        linear-gradient(to left,  rgba(0,0,0,0.95) 0%, transparent 78%),
        linear-gradient(to top,   rgba(0,0,0,1)    0%, transparent 62%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to left,  rgba(0,0,0,0.95) 0%, transparent 78%),
        linear-gradient(to top,   rgba(0,0,0,1)    0%, transparent 62%);
    mask-composite: intersect;
}

/* purple-teal gradient colour wash on top of the image */
.sds-card__img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62%;
    height: 90%;
    background: linear-gradient(
        135deg,
        rgba(77, 217, 192, 0.12) 0%,
        rgba(127, 72, 255, 0.18) 60%,
        rgba(204, 68, 255, 0.1) 100%
    );
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image:
        linear-gradient(to left,  rgba(0,0,0,0.8) 0%, transparent 70%),
        linear-gradient(to top,   rgba(0,0,0,0.9) 0%, transparent 50%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to left,  rgba(0,0,0,0.8) 0%, transparent 70%),
        linear-gradient(to top,   rgba(0,0,0,0.9) 0%, transparent 50%);
    mask-composite: intersect;
}

/* live indicator */
.sds-live {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(6, 8, 20, 0.75);
    border: 1px solid rgba(0, 229, 192, 0.22);
    backdrop-filter: blur(10px);
}

.sds-live__dot {
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #00ff88;
    flex-shrink: 0;
    animation: sds-pulse 1.6s ease-in-out infinite;
}

.sds-live__label {
    font-size: 0.625rem;
    font-weight: 600;
    color: #4dd9c0;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

@keyframes sds-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.4; }
}

.sds-card__body {
    position: relative;
    z-index: 2;
    padding: 2.25rem;
}

.sds-badge {
    display: inline-block;
    margin-bottom: 1.125rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(77, 217, 192, 0.08);
    border: 1px solid rgba(77, 217, 192, 0.22);
    font-size: 0.6875rem;
    color: #4dd9c0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.sds-card__title {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 22rem;
}

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

.sds-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.55;
}

.sds-list__item svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sds-card__discover {
    margin-top: 2rem;
}

.sds-card__discover .cs-btn.cs-style1 {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    color: #4dd9c0 !important;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease, gap 0.2s ease;
}

.sds-card__discover .cs-btn.cs-style1::after {
    content: '→';
    font-size: 1em;
}

.sds-card__discover .cs-btn.cs-style1:hover {
    opacity: 0.75;
    gap: 0.55rem;
}

/* ── RIGHT: Pricing card ──────────────────────────────────────── */

.sds-card--pricing {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(16, 10, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px) saturate(130%);
    opacity: 0;
    transition: opacity 0.7s ease-out 0.28s,
                border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1.5rem 4rem rgba(2, 0, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.sds-card--pricing.in-view {
    opacity: 1;
}

.sds-card--pricing.in-view:hover {
    border-color: rgba(127, 72, 255, 0.3);
    box-shadow:
        0 2rem 5rem rgba(2, 0, 14, 0.28),
        0 0 2rem rgba(127, 72, 255, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sds-card--pricing:hover {
    border-color: rgba(127, 72, 255, 0.3);
    box-shadow:
        0 2rem 5rem rgba(2, 0, 14, 0.28),
        0 0 2rem rgba(127, 72, 255, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sds-card__body--pricing {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 0.1875rem);
    padding: 2.25rem;
}

.sds-pricing__from {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.sds-pricing__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.sds-pricing__price {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    line-height: 1;
}

.sds-pricing__amount {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #9e6bff 0%, #cc44ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sds-pricing__unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.45rem;
}

.sds-pricing__icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(77, 217, 192, 0.08);
    border: 1px solid rgba(77, 217, 192, 0.22);
    border-radius: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 1rem rgba(77, 217, 192, 0.15);
}

.sds-pricing__tagline {
    margin: 1.375rem 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* performance bar */
.sds-perf__labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sds-perf__label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.sds-perf__value {
    font-size: 0.6875rem;
    color: #4dd9c0;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 600;
}

.sds-perf__track {
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.125rem;
    margin-top: 0.4rem;
    overflow: hidden;
}

.sds-perf__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4dd9c0, #38bdf8);
    border-radius: 0.125rem;
    transition: width 1.2s ease-out;
}

/* pool info */
.sds-pool {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
}

.sds-pool svg { flex-shrink: 0; }

.sds-pool__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sds-pool__label {
    font-size: 0.6625rem;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.sds-pool__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

/* CTA button */
.sds-card__cta { margin-top: 1.75rem; }

.sds-card__cta .cs-btn.cs-style1 {
    display: block;
    width: 100%;
    padding: 1rem !important;
    border-radius: 0.75rem !important;
    background: linear-gradient(135deg, rgba(158, 107, 255, 0.96) 0%, rgba(139, 92, 246, 0.82) 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: box-shadow 0.22s ease, transform 0.22s ease !important;
    position: relative;
    overflow: hidden;
}

/* shine sweep on CTA */
.sds-card__cta .cs-btn.cs-style1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.2) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.sds-card__cta .cs-btn.cs-style1:hover::after {
    transform: translateX(100%);
}

.sds-card__cta .cs-btn.cs-style1:hover {
    box-shadow: 0 0.5rem 1.875rem rgba(139, 92, 246, 0.45) !important;
    color: #ffffff !important;
}

/* ── Stats row ────────────────────────────────────────────────── */

.sds-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

/* subtle vertical separators between stats */
.sds-stat + .sds-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sds-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sds-stat.in-view {
    opacity: 1;
    transform: translateY(0);
}

.sds-stat__number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* unique gradient per stat — clip applied per modifier so no paint artifacts */
.sds-stat--1 .sds-stat__number {
    background: linear-gradient(135deg, #9e6bff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sds-stat--2 .sds-stat__number {
    background: linear-gradient(135deg, #8b5cf6 0%, #cc44ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sds-stat--3 .sds-stat__number {
    background: linear-gradient(135deg, #a78bfa 0%, #9e6bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sds-stat--4 .sds-stat__number {
    background: linear-gradient(135deg, #cc44ff 0%, #e879f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sds-stat__label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

/* ── Discover button ──────────────────────────────────────────── */

.sds-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(77, 217, 192, 0.4);
    color: #4dd9c0;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    font-family: 'DM Sans', 'Inter', sans-serif;
    transition: gap 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sds-discover-btn .fa-arrow-right {
    font-size: 0.8125rem;
}

.sds-discover-btn:hover {
    gap: 0.85rem;
    background: rgba(77, 217, 192, 0.1);
    border-color: rgba(77, 217, 192, 0.65);
    box-shadow: 0 0 0.75rem rgba(77, 217, 192, 0.2);
    color: #4dd9c0;
}

/* ── Proxy type tags ──────────────────────────────────────────── */

.sds-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.sds-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    font-family: 'DM Sans', 'Inter', sans-serif;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.sds-tag:hover {
    border-color: rgba(77, 217, 192, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 62rem) {
    .sds-cards-row {
        grid-template-columns: 1fr;
    }

    .sds-card--feature {
        min-height: 24rem;
    }
}

@media (max-width: 40rem) {
    .sds-section {
        padding: 3.5rem 0 4.5rem;
    }

    .sds-top {
        margin-bottom: 2rem;
    }

    .sds-headline {
        font-size: 1.875rem;
    }

    .sds-card__body,
    .sds-card__body--pricing {
        padding: 1.5rem;
    }

    .sds-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0;
    }

    .sds-stat + .sds-stat:nth-child(odd) {
        border-left: none;
    }
}
