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

:root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface2: #16161f;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f5;
    --muted: #8888aa;
    --faint: rgba(240, 240, 245, 0.35);
    --grad: linear-gradient(135deg, #6c63ff 0%, #ff6b9d 50%, #ffa94d 100%);
    --grad-h: linear-gradient(135deg, #7c73ff 0%, #ff7bad 50%, #ffb45d 100%);
    --purple: #6c63ff;
    --pink: #ff6b9d;
    --orange: #ffa94d;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ── GRADIENT BLOBS ── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -200px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--pink);
    top: 40%;
    right: -150px;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    bottom: 5%;
    left: 20%;
}

/* ── ACCENT BAR ── */
.accent-bar {
    height: 3px;
    background: var(--grad);
    width: 100%;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-brand span {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 9px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── LAYOUT ── */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── HERO ── */
.hero {
    padding: 80px 24px 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface2);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 100px;
    padding: 7px 18px;
    margin: 0 0 32px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #a0a8ff;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--purple);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

h1.hero-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 24px;
}

h1.hero-title .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.65;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.25);
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.35);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

/* ── HERO VISUAL ── */
.hero-visual {
    margin-top: 72px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 200px;
    background: var(--grad);
    filter: blur(80px);
    opacity: 0.12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.device-frame {
    position: relative;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 20px;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.device-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.device-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.device-dot:nth-child(1) {
    background: #ff5f56;
}

.device-dot:nth-child(2) {
    background: #ffbd2e;
}

.device-dot:nth-child(3) {
    background: #27c93f;
}

.device-screen {
    background: #08080d;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.device-screen-inner {
    text-align: center;
    padding: 32px;
}

.device-screen-inner .cam-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--grad);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-screen-inner .cam-icon svg {
    color: #fff;
}

.device-screen-inner p {
    font-size: 13px;
    color: var(--faint);
    font-family: 'DM Sans', sans-serif;
}

.device-screen-inner strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.live-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(59, 255, 59, 0.15);
    border: 1px solid rgba(59, 255, 59, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #8aff6b;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
}

.quality-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: #a0a8ff;
    letter-spacing: 1px;
}

/* ── STATS STRIP ── */
.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 32px 24px;
    position: relative;
    z-index: 1;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.3px;
}

/* ── SECTION HEADER ── */
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

h2.section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
}

/* ── WHAT IS SUPERCAM ── */
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-visual {
    position: relative;
    padding-right: 48px;
}

.phone-mockup {
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 14px;
    max-width: 260px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: #06060b;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
}

.phone-screen-content {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--faint);
    margin-bottom: 4px;
}

.phone-cam-preview {
    flex: 1;
    background: linear-gradient(135deg, #0d0d18 0%, #1a1025 100%);
    border-radius: 14px;
    border: 1px solid rgba(108, 99, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-cam-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(108, 99, 255, 0.08), transparent 60%);
}

.cam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 12px;
    width: 100%;
}

.cam-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cam-cell.active {
    background: rgba(108, 99, 255, 0.12);
    border-color: rgba(108, 99, 255, 0.25);
}

.phone-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.phone-ctrl {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-ctrl-main {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}

.floating-badge {
    position: absolute;
    right: -28px;
    top: 30%;
    background: var(--surface2);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.floating-badge .badge-icon {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

/* ── FEATURES GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-3px);
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.06), rgba(255, 107, 157, 0.04));
    border-color: rgba(108, 99, 255, 0.2);
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.feature-icon.purple {
    background: none;
}

.feature-icon.pink {
    background: none;
}

.feature-icon.orange {
    background: none;
}

.feature-icon.green {
    background: none;
}

.feature-icon.blue {
    background: none;
}

.feature-icon.teal {
    background: none;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    line-height: 1;
}

.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.feature-pro-badge {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 10px;
}

.feature-free-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 10px;
}

/* ── HOW IT WORKS ── */
/* ── HOW IT WORKS TIMELINE ── */
.steps-timeline {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(108, 99, 255, 0.05));
    border: 1px solid rgba(108, 99, 255, 0.4);
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #a0a8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(108, 99, 255, 0.3), transparent);
    margin: 8px 0;
    min-height: 32px;
}

.timeline-content {
    padding-bottom: 40px;
    padding-top: 10px;
}

.timeline-step.last .timeline-content {
    padding-bottom: 0;
}

.timeline-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 460px;
}

/* ── COMPARISON ── */
body .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-color: var(--border) !important;
}

body .compare-table th,
body .compare-table td {
    border-color: var(--border) !important;
}

.compare-table th {
    padding: 20px 24px;
    background: var(--surface2);
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.compare-table th.highlight-col {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(255, 107, 157, 0.06));
    color: #fff;
}

.compare-table td {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
}

.compare-table td.highlight-col {
    background: rgba(108, 99, 255, 0.04);
    color: var(--text);
    font-weight: 500;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table tr:hover td.highlight-col {
    background: rgba(108, 99, 255, 0.08);
}

.check {
    color: #4ade80;
    font-size: 16px;
}

.cross {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.partial {
    color: var(--orange);
    font-size: 13px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-q {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.faq-q:hover {
    color: #c0b8ff;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--muted);
    transition: transform 0.3s ease, color 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq-item.open .faq-q {
    color: #c0b8ff;
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-body {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
    padding-bottom: 24px;
}

/* ── CTA SECTION ── */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    text-align: center;
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 32px;
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.06) 0%, rgba(255, 107, 157, 0.04) 50%, rgba(255, 169, 77, 0.03) 100%);
    pointer-events: none;
}

.cta-card .top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}

.cta-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.65;
    font-weight: 300;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--faint);
}

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-brand {
    font-size: 12px;
    color: var(--faint);
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 12px;
    color: var(--faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .what-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps::before {
        display: none;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .floating-badge {
        right: -16px;
        font-size: 11px;
        padding: 8px 10px;
    }
}

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

    .cta-card {
        padding: 48px 28px;
    }

    nav .nav-cta span {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
    }

    .compare-table {
        font-size: 13px;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .device-frame {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .device-bar {
        margin-bottom: 12px;
    }

    .device-screen {
        aspect-ratio: 4/3;
    }

    .device-screen-inner .cam-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .device-screen-inner strong {
        font-size: 18px;
    }

    .device-screen-inner {
        padding: 24px 16px;
    }

    .live-pill {
        top: 12px;
        right: 12px;
    }

    .quality-badge {
        bottom: 12px;
        left: 12px;
    }
}

/* ── FADE IN ANIMATION ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.35s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.5s;
    opacity: 0;
}