/* ============================================
   NETPING MONITOR - VISUAL REFRESH (FEB 2026)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --bg-primary: #f5f8f9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #ebf1f4;
    --bg-muted: #f8fbfc;

    --text-primary: #0f1728;
    --text-secondary: #334155;
    --text-tertiary: #64748b;

    --accent-primary: #0ea5e9;
    --accent-secondary: #14b8a6;
    --accent-tertiary: #f97316;

    --border-soft: rgba(15, 23, 40, 0.1);
    --border-strong: rgba(15, 23, 40, 0.16);

    --glass-bg: rgba(255, 255, 255, 0.74);
    --glass-border: rgba(255, 255, 255, 0.65);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 34px;

    --shadow-sm: 0 4px 12px rgba(15, 23, 40, 0.06);
    --shadow-md: 0 12px 34px rgba(15, 23, 40, 0.09);
    --shadow-lg: 0 28px 70px rgba(15, 23, 40, 0.13);
    --shadow-xl: 0 40px 90px rgba(15, 23, 40, 0.2);

    --max-width: 1180px;
}

[data-theme="dark"] {
    --bg-primary: #07101d;
    --bg-secondary: #0e1a2f;
    --bg-tertiary: #10213a;
    --bg-muted: #12243f;

    --text-primary: #ecf4ff;
    --text-secondary: #bad0eb;
    --text-tertiary: #88a7c7;

    --border-soft: rgba(168, 193, 224, 0.18);
    --border-strong: rgba(168, 193, 224, 0.3);

    --glass-bg: rgba(10, 21, 38, 0.78);
    --glass-border: rgba(181, 203, 229, 0.26);

    --shadow-sm: 0 4px 12px rgba(1, 6, 13, 0.36);
    --shadow-md: 0 12px 34px rgba(1, 6, 13, 0.46);
    --shadow-lg: 0 28px 70px rgba(1, 6, 13, 0.56);
    --shadow-xl: 0 40px 90px rgba(1, 6, 13, 0.72);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.68;
    overflow-x: hidden;
    transition: background-color 0.35s ease, color 0.35s ease;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.aurora-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    z-index: -2;
}

.aurora-blob {
    animation: blob-float 22s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    position: absolute;
}

.aurora-blob:nth-child(1) {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.7) 0%, rgba(14, 165, 233, 0.02) 72%);
    height: 620px;
    right: -150px;
    top: -220px;
    width: 620px;
}

.aurora-blob:nth-child(2) {
    animation-delay: -7s;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.58) 0%, rgba(20, 184, 166, 0.03) 70%);
    height: 520px;
    left: -160px;
    top: 42%;
    width: 520px;
}

.aurora-blob:nth-child(3) {
    animation-delay: -14s;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.44) 0%, rgba(249, 115, 22, 0.03) 72%);
    bottom: -170px;
    height: 500px;
    right: 16%;
    width: 500px;
}

[data-theme="dark"] .aurora-blob {
    opacity: 0.52;
}

@keyframes blob-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(22px, -30px, 0) scale(1.03);
    }
    66% {
        transform: translate3d(-18px, 26px, 0) scale(0.97);
    }
}

/* ============================================
   HEADER + NAVIGATION
   ============================================ */
.header {
    left: 0;
    padding: 18px 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: padding 0.25s ease;
    z-index: 1000;
}

.header.scrolled {
    padding: 10px 0;
}

.nav-container {
    align-items: center;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max-width);
    min-height: 68px;
    padding: 10px 14px 10px 18px;
}

.logo {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    gap: 11px;
    text-decoration: none;
}

.logo-icon-img {
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.26);
    height: 40px;
    width: 40px;
}

.logo span {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    border-radius: 999px;
    color: var(--text-secondary);
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 10px 15px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(14, 165, 233, 0.12);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.nav-menu a.active {
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.2), rgba(20, 184, 166, 0.2));
    color: var(--text-primary);
}

.theme-toggle {
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.1rem;
    height: 42px;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    width: 42px;
}

.theme-toggle:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 7px;
}

.mobile-menu-btn span {
    background: var(--text-primary);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    width: 22px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================
   GLOBAL TYPE
   ============================================ */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

section {
    position: relative;
}

.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    margin: 0 auto;
    max-width: 650px;
}

.section-subtitle {
    color: var(--text-tertiary);
    font-size: 1.02rem;
    margin-top: -34px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0.01em;
    min-height: 54px;
    padding: 0 26px;
    text-decoration: none;
    transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease, background-color 0.23s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.3);
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: 0 18px 44px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: rgba(14, 165, 233, 0.44);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 142px 0 88px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    color: var(--text-secondary);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.015em;
    margin-bottom: 22px;
    padding: 8px 14px;
    text-transform: uppercase;
}

[data-theme="dark"] .hero-badge {
    background: rgba(12, 22, 40, 0.76);
    border-color: rgba(162, 190, 219, 0.25);
}

.hero-badge-dot {
    animation: pulse-dot 1.8s ease-in-out infinite;
    background: #10b981;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.25);
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 6.2vw, 5.4rem);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 18px;
}

.hero h1 span {
    background: linear-gradient(125deg, var(--accent-primary) 6%, var(--accent-secondary) 56%, var(--accent-tertiary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.03rem, 1.5vw, 1.22rem);
    margin-bottom: 28px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.producthunt-badge-wrap {
    align-items: center;
    display: flex;
    margin-bottom: 28px;
    min-height: 54px;
}

.producthunt-badge {
    display: inline-flex;
}

.producthunt-badge img {
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.producthunt-badge-dark {
    display: none;
}

[data-theme="dark"] .producthunt-badge-light {
    display: none;
}

[data-theme="dark"] .producthunt-badge-dark {
    display: inline-flex;
}

@media (prefers-color-scheme: dark) {
    html:not([data-theme]) .producthunt-badge-light {
        display: none;
    }

    html:not([data-theme]) .producthunt-badge-dark {
        display: inline-flex;
    }
}

.hero-kpis {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
}

.hero-kpi {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 90px;
    justify-content: center;
    padding: 14px 16px;
}

.hero-kpi-value {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.36rem;
    font-weight: 700;
}

.hero-kpi-label {
    color: var(--text-tertiary);
    font-size: 0.86rem;
    font-weight: 600;
}

.hero-visual {
    width: 100%;
}

.hero-visual-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 14px;
}

[data-theme="dark"] .hero-visual-card {
    background: linear-gradient(165deg, rgba(12, 24, 45, 0.85), rgba(12, 24, 45, 0.65));
    border-color: rgba(176, 202, 226, 0.2);
}

.hero-visual-head {
    align-items: center;
    color: var(--text-secondary);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.live-dot {
    animation: pulse-dot 1.6s ease-in-out infinite;
    background: #ef4444;
    border-radius: 999px;
    height: 7px;
    width: 7px;
}

.hero-preview-image {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(15, 23, 40, 0.2);
    width: 100%;
}

.hero-visual-metrics {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
}

.metric-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 68px;
    justify-content: center;
    padding: 9px 10px;
}

.metric-value {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.metric-label {
    color: var(--text-tertiary);
    font-size: 0.74rem;
    font-weight: 600;
}

/* ============================================
   FEATURES BENTO
   ============================================ */
.features {
    padding: 108px 0;
}

.bento-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bento-card {
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 220px;
    padding: 24px;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

[data-theme="dark"] .bento-card {
    background: linear-gradient(180deg, rgba(13, 26, 47, 0.86), rgba(12, 25, 45, 0.67));
    border-color: rgba(167, 194, 222, 0.22);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.17), transparent 58%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

.bento-card:hover {
    border-color: rgba(14, 165, 233, 0.38);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 320px;
    padding: 30px;
}

.bento-card.tall {
    grid-row: span 2;
    min-height: 320px;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-icon {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    font-size: 1.25rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 6px;
    width: 48px;
}

.bento-icon.blue {
    background: rgba(14, 165, 233, 0.16);
}

.bento-icon.green {
    background: rgba(20, 184, 166, 0.18);
}

.bento-icon.purple {
    background: rgba(249, 115, 22, 0.2);
}

.bento-icon.pink {
    background: rgba(16, 185, 129, 0.18);
}

.bento-icon.orange {
    background: rgba(249, 115, 22, 0.22);
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.bento-card.large h3 {
    font-size: 1.4rem;
}

.bento-card.large p {
    font-size: 1.01rem;
}

.bento-preview {
    border-radius: var(--radius-md);
    margin-top: auto;
    overflow: hidden;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 108px 0;
}

.steps-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    position: relative;
    text-align: center;
}

.step-card::after {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.45), transparent);
    content: '';
    height: 2px;
    left: calc(50% + 38px);
    position: absolute;
    right: -20px;
    top: 62px;
}

.step-card:last-child::after {
    display: none;
}

.step-number {
    align-items: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(14, 165, 233, 0.3);
    color: #ffffff;
    display: flex;
    font-family: var(--font-heading);
    font-size: 1.42rem;
    font-weight: 700;
    height: 64px;
    justify-content: center;
    margin: 0 auto 18px;
    width: 64px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 7px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots {
    padding: 108px 0;
}

.screenshots-wrapper {
    margin-top: 56px;
}

.screenshots-carousel {
    background:
        radial-gradient(circle at 16% 20%, rgba(14, 165, 233, 0.35), transparent 44%),
        radial-gradient(circle at 84% 80%, rgba(20, 184, 166, 0.26), transparent 44%),
        linear-gradient(170deg, #0f1b34, #152744 65%, #1a314f);
    border: 1px solid rgba(188, 214, 238, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 36px;
    position: relative;
}

.screenshots-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 40%, rgba(255, 255, 255, 0.07));
    pointer-events: none;
}

.screenshot-slide {
    align-items: center;
    display: none;
    justify-content: center;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

.screenshot-slide.active {
    animation: screenshot-in 0.42s ease;
    display: flex;
}

@keyframes screenshot-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.screenshot-macbook {
    border: 1px solid rgba(208, 226, 245, 0.42);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(3, 10, 22, 0.45);
    max-height: 520px;
    object-fit: contain;
    width: 100%;
}

.screenshots-nav {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.screenshot-nav-btn {
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.3rem;
    height: 46px;
    justify-content: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    width: 46px;
}

.screenshot-nav-btn:hover {
    border-color: rgba(14, 165, 233, 0.45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.screenshot-dots {
    display: inline-flex;
    gap: 10px;
}

.screenshot-dot {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    cursor: pointer;
    height: 9px;
    transition: width 0.22s ease, background-color 0.22s ease;
    width: 9px;
}

.screenshot-dot.active {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    width: 24px;
}

/* ============================================
   USE CASES
   ============================================ */
.use-cases {
    padding: 108px 0;
}

.use-cases-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    min-height: 250px;
    padding: 28px 24px;
    position: relative;
    text-align: center;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.use-case-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(155deg, rgba(14, 165, 233, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity 0.26s ease;
}

.use-case-card > * {
    position: relative;
    z-index: 1;
}

.use-case-card:hover {
    border-color: rgba(14, 165, 233, 0.44);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.use-case-card:hover::after {
    opacity: 1;
}

.use-case-icon {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 1.16rem;
    margin-bottom: 8px;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy-section {
    padding: 108px 0;
}

.privacy-card {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.34);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    max-width: 920px;
    overflow: hidden;
    padding: 50px 40px;
    position: relative;
    text-align: center;
}

.privacy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.2), transparent 42%),
        radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.16), transparent 46%);
    pointer-events: none;
}

.privacy-card > * {
    position: relative;
}

.privacy-card h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    margin-bottom: 10px;
}

.privacy-card > p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 26px;
}

.privacy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.privacy-badge {
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 8px;
    padding: 10px 16px;
}

.privacy-badge-icon {
    font-size: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 108px 0;
}

.faq-list {
    margin: 56px auto 0;
    max-width: 860px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.34);
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: var(--shadow-md);
}

.faq-question {
    align-items: center;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1.5;
    padding: 20px 22px;
}

.faq-icon {
    align-items: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--accent-primary);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
    width: 30px;
}

.faq-item.active .faq-icon {
    background: var(--accent-primary);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    display: none;
    font-size: 0.95rem;
    padding: 0 22px 20px;
}

.faq-item.active .faq-answer {
    animation: faq-open 0.24s ease;
    display: block;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 108px 0;
    text-align: center;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-top: 12px;
}

.pricing-card {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 50%),
        radial-gradient(circle at 85% 86%, rgba(20, 184, 166, 0.22), transparent 52%),
        linear-gradient(150deg, #0284c7, #0ea5e9 48%, #14b8a6);
    border-radius: var(--radius-xl);
    box-shadow: 0 34px 74px rgba(2, 132, 199, 0.34);
    color: #f8fcff;
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
    padding: 46px 38px;
    position: relative;
}

.pricing-card > * {
    position: relative;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: clamp(2.9rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-bottom: 8px;
}

.pricing-period {
    color: rgba(243, 250, 255, 0.92);
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    font-size: 0.96rem;
    font-weight: 600;
    gap: 10px;
    padding: 11px 0;
}

.pricing-features li:last-child {
    border-bottom: 0;
}

.pricing-features li::before {
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    content: '✓';
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.pricing-card .btn-primary {
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(3, 15, 29, 0.25);
    color: #0284c7;
    min-width: 100%;
}

.pricing-card .btn-primary:hover {
    background: #f0f9ff;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support-section {
    padding: 108px 0;
    text-align: center;
}

.support-section h2 {
    font-size: clamp(2rem, 3.8vw, 2.7rem);
}

.support-email {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.support-email a {
    color: var(--accent-primary);
    font-weight: 800;
    text-decoration: none;
}

.support-section > .container > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================
   LEGAL LINKS
   ============================================ */
.legal-links {
    padding: 70px 0 96px;
}

.legal-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 760px;
}

.legal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    min-height: 168px;
    padding: 24px;
    text-decoration: none;
    transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.legal-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.legal-card h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
}

.legal-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border-soft);
    padding: 42px 0;
}

.footer-content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-links a.active {
    background: rgba(14, 165, 233, 0.12);
    color: var(--text-primary);
}

.footer-info {
    color: var(--text-tertiary);
    font-size: 0.84rem;
    text-align: right;
}

.footer-info a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(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;
}

/* ============================================
   PRIVACY + SUPPORT CONTENT PAGES
   ============================================ */
.privacy-page,
.support-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 130px 0 90px;
}

.privacy-page h1,
.support-page h1 {
    font-size: clamp(2rem, 4.8vw, 3rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    max-width: 620px;
}

.privacy-updated {
    color: var(--text-tertiary);
    font-size: 0.92rem;
    margin-bottom: 32px;
}

.privacy-page h2,
.support-page h2 {
    font-size: 1.44rem;
    margin: 36px 0 12px;
}

.privacy-page h3,
.support-page h3 {
    font-size: 1.14rem;
    margin: 24px 0 9px;
}

.privacy-page p,
.support-page p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.privacy-page ul,
.support-page ul {
    margin-bottom: 18px;
    padding-left: 22px;
}

.privacy-page li,
.support-page li {
    color: var(--text-secondary);
    margin-bottom: 7px;
}

.highlight-box,
.no-data-box,
.contact-box,
.setup-steps,
.system-requirements {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.highlight-box,
.no-data-box {
    margin: 18px 0 20px;
    padding: 18px 20px;
}

.no-data-box {
    background: rgba(20, 184, 166, 0.11);
}

.highlight-box {
    background: rgba(14, 165, 233, 0.11);
}

.contact-box {
    background: var(--bg-secondary);
    margin-top: 20px;
    padding: 18px 20px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.small-note {
    color: var(--text-tertiary);
    font-size: 0.88rem;
    margin-top: 8px;
}

.page-tail,
.policy-note {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: 24px;
}

.setup-steps,
.system-requirements {
    background: var(--bg-secondary);
    margin: 20px 0;
    padding: 22px;
}

.setup-step {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.setup-step:last-child {
    margin-bottom: 0;
}

.setup-step-number {
    align-items: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.setup-step-content h3 {
    margin-top: 0;
}

.setup-step-content p {
    margin-bottom: 0;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
}

.system-requirements li {
    align-items: center;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    padding: 10px 0;
}

.system-requirements li:last-child {
    border-bottom: 0;
}

.system-requirements li::before {
    color: var(--accent-primary);
    content: '•';
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hero-grid {
        gap: 38px;
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        max-width: 760px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bento-card.large,
    .bento-card.tall,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .steps-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .step-card::after {
        display: none;
    }
}

@media (max-width: 960px) {
    .nav-container {
        border-radius: 22px;
        min-height: 64px;
    }

    .logo span {
        font-size: 0.92rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        left: 16px;
        opacity: 0;
        padding: 14px;
        pointer-events: none;
        position: fixed;
        right: 16px;
        top: 86px;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        visibility: hidden;
        z-index: 1200;
    }

    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }

    .nav-menu a {
        justify-content: center;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .theme-toggle {
        margin-left: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 9vw, 4.2rem);
    }

    .hero-kpis,
    .hero-visual-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .screenshots-carousel {
        padding: 26px;
    }

    .screenshot-slide {
        min-height: 320px;
    }

    .privacy-card {
        padding: 40px 26px;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 12px 0;
    }

    .nav-container {
        min-height: 60px;
        padding-inline: 12px;
    }

    .logo span {
        display: none;
    }

    .hero {
        padding-bottom: 64px;
    }

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

    .producthunt-badge-wrap {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-kpis,
    .hero-visual-metrics,
    .steps-grid,
    .use-cases-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .features,
    .how-it-works,
    .screenshots,
    .use-cases,
    .privacy-section,
    .faq,
    .pricing,
    .support-section {
        padding: 84px 0;
    }

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

    .screenshot-nav-btn {
        height: 42px;
        width: 42px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .pricing-card {
        padding: 38px 24px;
    }

    .privacy-page,
    .support-page {
        padding: 114px 0 76px;
    }

    .setup-steps,
    .system-requirements,
    .contact-box,
    .highlight-box,
    .no-data-box {
        padding: 16px;
    }

    .footer-content,
    .footer-info {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .hero-badge {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-kpi {
        min-height: 74px;
    }

    .hero-kpi-value {
        font-size: 1.2rem;
    }

    .pricing-price {
        font-size: 3rem;
    }
}

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
