/**
 * DeniedPixels Homepage — Terminal Noir
 *
 * High-contrast dark aesthetic with phosphorescent green glow,
 * glassmorphic surfaces, and cinematic section transitions.
 *
 * @package DeniedPixels
 */

/* -------------------------------------------------------
   Home wrapper — account for fixed header
   ------------------------------------------------------- */
.sv-home {
    padding-top: 64px;
}

/* -------------------------------------------------------
   Shared section styles
   ------------------------------------------------------- */
.sv-section-title {
    font-family: var(--sv-font-display);
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.sv-section-subtitle {
    font-size: 17px;
    color: var(--sv-text-dim);
    text-align: center;
    margin-bottom: 56px;
    line-height: 1.5;
}

/* Gradient dividers between sections */
.sv-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sv-border-light) 20%, var(--sv-border-light) 80%, transparent 100%);
}

/* -------------------------------------------------------
   1. HERO
   ------------------------------------------------------- */
.sv-hero {
    position: relative;
    padding: 100px 24px 80px;
    text-align: center;
    overflow: hidden;
}

/* Radial glow background */
.sv-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(19, 254, 249, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern */
.sv-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sv-hero__inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    z-index: 1;
}

/* ── Hero entrance stagger animation ── */
@keyframes sv-hero-enter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-hero__stagger {
    opacity: 0;
    animation: sv-hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sv-hero__stagger:nth-child(1) { animation-delay: 0.1s; }
.sv-hero__stagger:nth-child(2) { animation-delay: 0.2s; }
.sv-hero__stagger:nth-child(3) { animation-delay: 0.3s; }
.sv-hero__stagger:nth-child(4) { animation-delay: 0.45s; }
.sv-hero__stagger:nth-child(5) { animation-delay: 0.6s; }
.sv-hero__stagger:nth-child(6) { animation-delay: 0.75s; }

/* Chip label above title */
.sv-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--sv-green-dim);
    border: 1px solid rgba(19, 254, 249, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sv-green);
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.sv-hero__chip-dot {
    width: 6px;
    height: 6px;
    background: var(--sv-green);
    border-radius: 50%;
    animation: sv-pulse 2s ease-in-out infinite;
}

@keyframes sv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.sv-hero__title {
    font-family: var(--sv-font-display);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 40%, var(--sv-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-hero__subtitle {
    font-size: 19px;
    color: var(--sv-text-dim);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 56px;
}

/* ── Showcase — browser frame ── */
.sv-hero__showcase {
    position: relative;
    width: 100%;
    max-width: 880px;
    aspect-ratio: 16 / 10;
    margin: 0 auto 28px;
    background: var(--sv-surface);
    border: 1px solid var(--sv-border-light);
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 100px -20px rgba(19, 254, 249, 0.06);
    transition: box-shadow 0.4s;
}

.sv-hero__showcase:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 24px 70px -12px rgba(0, 0, 0, 0.6),
        0 0 120px -20px rgba(19, 254, 249, 0.12);
}

/* Browser chrome bar */
.sv-showcase__chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 3;
}

.sv-showcase__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sv-showcase__dot--red    { background: #ff5f57; }
.sv-showcase__dot--yellow { background: #febc2e; }
.sv-showcase__dot--green  { background: #28c840; }

.sv-showcase__chrome-title {
    flex: 1;
    text-align: center;
    font-family: var(--sv-font-body);
    font-size: 11px;
    color: var(--sv-text-dimmer);
    letter-spacing: 0.02em;
    margin-right: 36px;
}

/* Animated border glow overlay */
@keyframes sv-border-glow-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sv-showcase__glow {
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.sv-hero__showcase:hover .sv-showcase__glow {
    opacity: 1;
}

.sv-showcase__glow::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        var(--sv-green) 10%,
        transparent 20%,
        transparent 100%
    );
    animation: sv-border-glow-rotate 4s linear infinite;
}

.sv-showcase__glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--sv-surface);
    border-radius: calc(var(--sv-radius-lg) - 2px);
}

/* Floating badge */
.sv-showcase__badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(19, 254, 249, 0.2);
    border-radius: 100px;
    font-family: var(--sv-font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--sv-green);
    letter-spacing: 0.02em;
    z-index: 4;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sv-hero__showcase:hover .sv-showcase__badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(19, 254, 249, 0.15);
}

.sv-showcase__badge-dot {
    width: 5px;
    height: 5px;
    background: var(--sv-green);
    border-radius: 50%;
    animation: sv-pulse 2s ease-in-out infinite;
}

/* Media inside showcase — offset for chrome bar */
.sv-showcase__media {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 36px);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sv-showcase__media--active {
    opacity: 1;
}

.sv-showcase__media[data-filter="loadingbar"] {
    object-position: center bottom;
}

.sv-showcase__placeholder {
    background: var(--sv-surface);
}

/* ── Filter picker ── */
.sv-filter-picker {
    display: flex;
    justify-content: center;
    gap: 6px;
    max-width: 880px;
    margin: 0 auto 56px;
    padding: 0;
    flex-wrap: wrap;
}

.sv-filter-picker__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 0 6px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
    width: calc((100% - 11 * 6px) / 12);
    flex-shrink: 0;
    overflow: hidden;
}

.sv-filter-picker__item:hover {
    background: var(--sv-surface);
    border-color: var(--sv-border-light);
    transform: translateY(-2px);
}

.sv-filter-picker__item--active {
    background: var(--sv-surface);
    border-color: var(--sv-green);
    box-shadow: 0 0 16px rgba(19, 254, 249, 0.12);
    animation: sv-filter-glow 2.5s ease-in-out infinite;
}

@keyframes sv-filter-glow {
    0%, 100% { box-shadow: 0 0 12px rgba(19, 254, 249, 0.1); }
    50%      { box-shadow: 0 0 22px rgba(19, 254, 249, 0.22); }
}

.sv-filter-picker__icon {
    width: 100%;
    height: 60px;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
}

.sv-filter-picker__label {
    font-size: 10px;
    color: var(--sv-text-dimmer);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: color 0.2s;
}

.sv-filter-picker__item--active .sv-filter-picker__label {
    color: var(--sv-green);
}

.sv-filter-picker__separator {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.sv-filter-picker__separator::before,
.sv-filter-picker__separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sv-border-light) 50%, transparent 100%);
}

.sv-filter-picker__separator span {
    font-family: var(--sv-font-display);
    font-size: 10px;
    color: var(--sv-text-dimmer);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* ── Download buttons ── */
.sv-hero__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--sv-radius-sm);
    font-family: var(--sv-font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.25s, opacity 0.15s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.sv-btn:hover {
    opacity: 0.95;
    text-decoration: none;
    transform: translateY(-2px);
}

.sv-btn:active {
    transform: scale(0.98) translateY(0);
}

.sv-btn__icon {
    flex-shrink: 0;
}

/* Chrome button — shimmer sweep */
@keyframes sv-shimmer-sweep {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(250%) skewX(-15deg); }
}

.sv-btn--chrome {
    background: #ffffff;
    color: var(--sv-black);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08);
}

.sv-btn--chrome::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 254, 249, 0.12), transparent);
    transform: translateX(-100%) skewX(-15deg);
    animation: sv-shimmer-sweep 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
    pointer-events: none;
}

.sv-btn--chrome:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.14);
    color: var(--sv-black);
}

/* Firefox button */
.sv-btn--firefox {
    background: transparent;
    border: 1px solid var(--sv-border-light);
    color: var(--sv-text);
}

.sv-btn--firefox:hover {
    border-color: #444;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

/* Android button */
.sv-btn--android {
    background: transparent;
    border: 1px solid var(--sv-border-light);
    color: var(--sv-text);
}

.sv-btn--android:hover {
    border-color: #3ddc84;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(61, 220, 132, 0.1);
}

/* Apple button */
.sv-btn--apple {
    background: transparent;
    border: 1px solid var(--sv-border-light);
    color: var(--sv-text);
}

.sv-btn--apple:hover {
    border-color: #a2aaad;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

/* CTA section labels + rows */
.sv-hero__cta-label {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 4px;
}

.sv-hero__cta-label::before,
.sv-hero__cta-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sv-border-light);
}

.sv-hero__cta-label span {
    font-family: var(--sv-font-display);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sv-text-muted);
    white-space: nowrap;
}

.sv-hero__cta-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* -------------------------------------------------------
   2. HOW IT WORKS
   ------------------------------------------------------- */
.sv-steps {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

/* Radial glow behind section */
.sv-steps::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(19, 254, 249, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.sv-steps__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sv-steps__grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
}

/* ── Step card ── */
.sv-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 36px 28px 32px;
    position: relative;
    background: var(--sv-surface);
    border: 1px solid var(--sv-border-light);
    border-radius: var(--sv-radius-lg);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sv-step:hover {
    border-color: rgba(19, 254, 249, 0.2);
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(19, 254, 249, 0.06);
}

/* Step number — glowing circle badge */
.sv-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sv-green-dim);
    border: 1px solid rgba(19, 254, 249, 0.25);
    font-family: var(--sv-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--sv-green);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    position: relative;
}

/* Pulse ring behind number */
.sv-step__number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(19, 254, 249, 0.1);
    animation: sv-step-ring 3s ease-in-out infinite;
}

@keyframes sv-step-ring {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* Stagger the ring pulse per step */
.sv-step:nth-child(3) .sv-step__number::before { animation-delay: 0.5s; }
.sv-step:nth-child(5) .sv-step__number::before { animation-delay: 1s; }

/* Icon box — green-tinted glass */
.sv-step__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 254, 249, 0.05);
    border: 1px solid rgba(19, 254, 249, 0.1);
    border-radius: var(--sv-radius-lg);
    color: var(--sv-green);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.sv-step:hover .sv-step__icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(19, 254, 249, 0.12);
    border-color: rgba(19, 254, 249, 0.3);
    background: rgba(19, 254, 249, 0.08);
}

.sv-step__title {
    font-family: var(--sv-font-display);
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.sv-step__desc {
    font-size: 14px;
    color: var(--sv-text-dim);
    line-height: 1.6;
}

/* ── Connector between cards — dashed line + glowing dot ── */
.sv-step__connector {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Dashed line */
.sv-step__connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(19, 254, 249, 0.3) 0px,
        rgba(19, 254, 249, 0.3) 6px,
        transparent 6px,
        transparent 12px
    );
}

/* Glowing center dot */
.sv-step__connector span {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--sv-green);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(19, 254, 249, 0.4);
    position: relative;
    top: 1px;
    z-index: 1;
    animation: sv-connector-pulse 2.5s ease-in-out infinite;
}

.sv-step__connector:nth-child(4) span {
    animation-delay: 0.6s;
}

@keyframes sv-connector-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(19, 254, 249, 0.3); }
    50% { box-shadow: 0 0 20px rgba(19, 254, 249, 0.6); }
}

/* -------------------------------------------------------
   3. PRIVACY
   ------------------------------------------------------- */
.sv-privacy {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

/* Dramatic gradient background */
.sv-privacy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(19, 254, 249, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--sv-surface) 0%, var(--sv-black) 100%);
    pointer-events: none;
}

.sv-privacy__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.sv-privacy__icon {
    position: relative;
    color: var(--sv-green);
    margin-bottom: 28px;
}

/* Animated glow ring behind shield */
.sv-privacy__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 254, 249, 0.15) 0%, transparent 70%);
    animation: sv-shield-glow 3s ease-in-out infinite;
}

@keyframes sv-shield-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.sv-privacy__icon svg {
    position: relative;
    z-index: 1;
}

.sv-privacy__text {
    font-size: 17px;
    color: var(--sv-text-dim);
    line-height: 1.7;
    margin-bottom: 44px;
}

.sv-privacy__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sv-privacy__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--sv-border-light);
    border-radius: var(--sv-radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--sv-text);
    transition: border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}

.sv-privacy__badge:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.sv-privacy__badge-icon {
    font-size: 13px;
    color: var(--sv-red);
    flex-shrink: 0;
}

.sv-privacy__badge-icon--green {
    color: var(--sv-green);
}

/* -------------------------------------------------------
   3.5 VIDEO COMPARISON
   ------------------------------------------------------- */
.sv-compare {
    padding: 100px 24px;
    position: relative;
}

.sv-compare__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.sv-compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
}

.sv-compare__card {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border-light);
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sv-compare__card:hover {
    transform: translateY(-3px);
}

.sv-compare__card--competitor {
    border-color: rgba(239, 68, 68, 0.2);
}

.sv-compare__card--competitor:hover {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 12px 40px -8px rgba(239, 68, 68, 0.1);
}

.sv-compare__card--ours {
    border-color: rgba(19, 254, 249, 0.25);
    box-shadow: 0 0 40px rgba(19, 254, 249, 0.04);
}

.sv-compare__card--ours:hover {
    border-color: rgba(19, 254, 249, 0.4);
    box-shadow: 0 12px 40px -8px rgba(19, 254, 249, 0.12), 0 0 50px rgba(19, 254, 249, 0.06);
}

.sv-compare__video-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--sv-black);
    overflow: hidden;
}

.sv-compare__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sv-compare__meta {
    padding: 20px 24px 24px;
}

.sv-compare__label {
    display: inline-block;
    font-family: var(--sv-font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.sv-compare__label--competitor {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.sv-compare__label--ours {
    background: var(--sv-green-dim);
    color: var(--sv-green);
    border: 1px solid rgba(19, 254, 249, 0.2);
}

.sv-compare__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-compare__points li {
    font-size: 14px;
    color: var(--sv-text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.sv-compare__icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    font-size: 12px;
}

.sv-compare__icon--bad {
    color: var(--sv-red);
}

.sv-compare__icon--good {
    color: var(--sv-green);
}

.sv-compare__vs {
    align-self: center;
    font-family: var(--sv-font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--sv-text-dimmer);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 0;
}

/* -------------------------------------------------------
   4. PRICING
   ------------------------------------------------------- */
.sv-pricing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Toggle */
.sv-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}

.sv-billing-toggle__label {
    font-family: var(--sv-font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--sv-text-dimmer);
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.sv-billing-toggle__label--active {
    color: #ffffff;
}

.sv-billing-toggle__switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--sv-border-light);
    border: none;
    border-radius: 28px;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, box-shadow 0.25s;
}

.sv-billing-toggle__switch:hover {
    background: #333;
}

.sv-billing-toggle__switch--active {
    background: var(--sv-green);
    box-shadow: 0 0 16px rgba(19, 254, 249, 0.2);
}

.sv-billing-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sv-billing-toggle__switch--active .sv-billing-toggle__thumb {
    transform: translateX(24px);
}

.sv-billing-toggle__save {
    font-family: var(--sv-font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--sv-green);
    background: var(--sv-green-dim);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Grid */
.sv-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Card */
.sv-pricing-card {
    position: relative;
    background: var(--sv-surface);
    border: 1px solid var(--sv-border-light);
    border-radius: var(--sv-radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.sv-pricing-card:hover {
    border-color: #444;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.4);
}

.sv-pricing-card--highlight {
    border-color: var(--sv-green);
    background: linear-gradient(180deg, rgba(19, 254, 249, 0.04) 0%, var(--sv-surface) 40%);
    box-shadow: 0 0 40px rgba(19, 254, 249, 0.06);
}

.sv-pricing-card--highlight:hover {
    border-color: var(--sv-green);
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(19, 254, 249, 0.1), 0 20px 48px -8px rgba(0, 0, 0, 0.4);
}

/* Badge */
.sv-pricing-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--sv-green);
    color: var(--sv-black);
    font-family: var(--sv-font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(19, 254, 249, 0.25);
}

/* Card content */
.sv-pricing-card__name {
    font-family: var(--sv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.sv-pricing-card__desc {
    font-size: 14px;
    color: var(--sv-text-dim);
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Price */
.sv-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
}

.sv-pricing-card__currency {
    font-family: var(--sv-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--sv-text);
    align-self: flex-start;
    margin-top: 6px;
}

.sv-pricing-card__amount {
    font-family: var(--sv-font-display);
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.sv-pricing-card__period {
    font-size: 14px;
    color: var(--sv-text-dim);
    margin-left: 4px;
}

/* Features */
.sv-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-pricing-card__features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.sv-feature--included { color: var(--sv-text); }
.sv-feature--excluded { color: var(--sv-text-dimmer); }

.sv-feature__icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    font-size: 12px;
}

.sv-feature--included .sv-feature__icon { color: var(--sv-green); }
.sv-feature--excluded .sv-feature__icon { color: var(--sv-text-dimmer); }

.sv-feature__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    color: var(--sv-text-dim);
    cursor: help;
    opacity: 0.7;
    vertical-align: middle;
}

.sv-feature__badge svg {
    display: block;
}

.sv-feature__badge::after {
    content: 'Desktop only';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: var(--sv-surface-2, #1e1e1e);
    border: 1px solid var(--sv-border, #2a2a2a);
    color: var(--sv-text, #e0e0e0);
    font-size: 11px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10;
}

.sv-feature__badge:hover::after {
    opacity: 1;
}

/* CTA */
.sv-pricing-card__cta {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: var(--sv-radius-sm);
    font-family: var(--sv-font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.25s, opacity 0.15s;
}

.sv-pricing-card__cta:hover { opacity: 0.95; text-decoration: none; transform: translateY(-1px); }
.sv-pricing-card__cta:active { transform: scale(0.98); }

.sv-btn-subscribe {
    background: #ffffff;
    color: var(--sv-black);
    border: 1px solid #ffffff;
}

.sv-btn-subscribe:hover {
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.sv-pricing-card--highlight .sv-btn-subscribe {
    background: var(--sv-green);
    color: var(--sv-black);
    border-color: var(--sv-green);
}

.sv-pricing-card--highlight .sv-btn-subscribe:hover {
    box-shadow: 0 4px 20px rgba(19, 254, 249, 0.3);
}

.sv-pricing-card__apple-note {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    color: #f59e42;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.sv-pricing-card__cta--free {
    background: transparent;
    border: 1px solid var(--sv-border-light);
    color: var(--sv-text);
}

.sv-pricing-card__cta--free:hover {
    border-color: #444;
    color: #ffffff;
}

.sv-btn-subscribe.sv-btn--loading { opacity: 0.6; pointer-events: none; }

/* -------------------------------------------------------
   5. FAQ
   ------------------------------------------------------- */
.sv-faq {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 24px;
}

.sv-faq__list {
    margin-top: 48px;
}

.sv-faq-item {
    border-bottom: 1px solid var(--sv-border);
    overflow: hidden;
}

.sv-faq-item:first-of-type {
    border-top: 1px solid var(--sv-border);
}

.sv-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--sv-font-display);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}

.sv-faq-item__q:hover { color: var(--sv-green); }
.sv-faq-item__q::-webkit-details-marker { display: none; }

.sv-faq-item__q::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-left: 16px;
    border-right: 2px solid var(--sv-text-dim);
    border-bottom: 2px solid var(--sv-text-dim);
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}

.sv-faq-item[open] .sv-faq-item__q::after {
    transform: rotate(-135deg);
}

.sv-faq-item[open] .sv-faq-item__q {
    color: var(--sv-green);
}

.sv-faq-item[open] .sv-faq-item__q::after {
    border-color: var(--sv-green);
}

.sv-faq-item__a {
    font-size: 15px;
    color: var(--sv-text-dim);
    line-height: 1.7;
    padding: 0 0 22px;
}

/* -------------------------------------------------------
   Responsive
   ------------------------------------------------------- */
@media (max-width: 768px) {
    .sv-home {
        padding-top: 56px;
    }

    .sv-hero {
        padding: 72px 16px 56px;
    }

    .sv-hero__title {
        font-size: 38px;
    }

    .sv-hero__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .sv-filter-picker {
        gap: 4px;
        padding: 0 8px;
    }

    .sv-filter-picker__item {
        width: calc((100% - 5 * 4px) / 6);
        padding: 0 0 3px;
    }

    .sv-filter-picker__icon {
        width: 100%;
        height: 48px;
    }

    .sv-filter-picker__label {
        font-size: 9px;
    }

    .sv-showcase__chrome {
        height: 28px;
        padding: 0 10px;
        gap: 5px;
    }

    .sv-showcase__dot {
        width: 8px;
        height: 8px;
    }

    .sv-showcase__chrome-title {
        font-size: 10px;
        margin-right: 28px;
    }

    .sv-showcase__media {
        top: 28px;
        height: calc(100% - 28px);
    }

    .sv-showcase__badge {
        bottom: 8px;
        right: 8px;
        font-size: 10px;
        padding: 4px 10px;
    }

    .sv-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .sv-btn--apple {
        order: -1;
        background: #ffffff;
        border: none;
        color: #000000;
    }

    .sv-btn--apple:hover {
        border-color: transparent;
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.14);
    }

    .sv-btn--chrome {
        background: transparent;
        border: 1px solid var(--sv-border-light);
        color: var(--sv-text);
        box-shadow: none;
    }

    .sv-btn--chrome::after {
        display: none;
    }

    .sv-btn--chrome:hover {
        border-color: #444;
        color: #ffffff;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    }

    .sv-steps {
        padding: 72px 16px;
    }

    .sv-steps__grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .sv-step {
        max-width: 100%;
        width: 100%;
    }

    .sv-step__connector {
        width: auto;
        height: 36px;
    }

    .sv-step__connector::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 1px;
        height: 100%;
        background: repeating-linear-gradient(
            180deg,
            rgba(19, 254, 249, 0.3) 0px,
            rgba(19, 254, 249, 0.3) 6px,
            transparent 6px,
            transparent 12px
        );
    }

    .sv-privacy {
        padding: 72px 16px;
    }

    .sv-compare {
        padding: 72px 16px;
    }

    .sv-compare__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .sv-compare__vs {
        padding: 4px 0;
        font-size: 12px;
    }

    .sv-compare__meta {
        padding: 16px 20px 20px;
    }

    .sv-pricing {
        padding: 72px 16px;
    }

    .sv-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .sv-privacy__badges {
        flex-direction: column;
        align-items: center;
    }

    .sv-section-title {
        font-size: 28px;
    }

    .sv-section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .sv-billing-toggle {
        flex-wrap: wrap;
    }

    .sv-faq {
        padding: 72px 16px;
    }
}
