/* ============================================
   STRIKE CLIENT - DARK MODERN / WHITE ACCENT
   Modernistic + 3D raised buttons
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #050507;
    --bg-secondary: #0a0a0e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.055);
    --bg-nav: rgba(8, 8, 12, 0.7);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(28px) saturate(160%);

    --text-primary: #f0f0f2;
    --text-secondary: #7a7a88;
    --text-muted: #48485a;

    /* WHITE ACCENT */
    --accent: #ffffff;
    --accent-hover: #e4e4e4;
    --accent-glow: rgba(255, 255, 255, 0.12);
    --accent-soft: rgba(255, 255, 255, 0.05);
    --accent-border: rgba(255, 255, 255, 0.1);
    --accent-text: #08080c;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;

    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font);
}

/* ============================================
   ANIMATED GRADIENT BACKGROUND
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 600px 400px at 20% 20%, rgba(100, 100, 180, 0.04), transparent),
        radial-gradient(ellipse 500px 350px at 80% 30%, rgba(140, 100, 200, 0.03), transparent),
        radial-gradient(ellipse 400px 400px at 50% 80%, rgba(80, 120, 200, 0.03), transparent);
    pointer-events: none;
    z-index: 0;
    animation: ambientDrift 30s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -20px) rotate(2deg);
    }
}

/* ============================================
   FLOATING PILLS
   ============================================ */

.bg-pills {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pill {
    position: absolute;
    border-radius: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2px);
}

.pill-1 {
    width: 420px;
    height: 120px;
    top: 7%;
    right: 10%;
    transform: rotate(-32deg);
    animation: floatPill 24s ease-in-out infinite;
    --r: -32deg;
}

.pill-2 {
    width: 350px;
    height: 100px;
    top: 16%;
    left: 4%;
    transform: rotate(22deg);
    animation: floatPill 20s ease-in-out infinite reverse;
    --r: 22deg;
}

.pill-3 {
    width: 300px;
    height: 90px;
    bottom: 22%;
    left: 7%;
    transform: rotate(-18deg);
    animation: floatPill 28s ease-in-out infinite;
    --r: -18deg;
}

.pill-4 {
    width: 400px;
    height: 110px;
    bottom: 12%;
    right: 5%;
    transform: rotate(28deg);
    animation: floatPill 22s ease-in-out infinite reverse;
    --r: 28deg;
}

.pill-5 {
    width: 280px;
    height: 85px;
    top: 42%;
    left: -2%;
    transform: rotate(-42deg);
    animation: floatPill 30s ease-in-out infinite;
    --r: -42deg;
}

.pill-6 {
    width: 340px;
    height: 95px;
    top: 36%;
    right: -1%;
    transform: rotate(38deg);
    animation: floatPill 26s ease-in-out infinite reverse;
    --r: 38deg;
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-18px) rotate(calc(var(--r, 0deg) + 3deg));
    }
}

/* ============================================
   NAVBAR - GLASS
   ============================================ */

.navbar {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1180px;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 0 6px;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(8, 8, 12, 0.92);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
}

.nav-brand {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    white-space: nowrap;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    /* Subtle raised effect */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--text-primary);
    font-weight: 600;
}

.nav-link svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.nav-link:hover svg,
.nav-link.active svg {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.lang-switcher {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.lang-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-text);
    background: linear-gradient(180deg, #ffffff, #d8d8d8);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
}

.lang-switcher:hover .lang-badge {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.lang-switcher:active .lang-badge {
    transform: translateY(1px);
}

.flag {
    font-size: 13px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    background: radial-gradient(ellipse 60% 35% at 50% 0%, rgba(255, 255, 255, 0.02), transparent);
}

.hero-content {
    max-width: 720px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 22px;
    animation: fadeInUp 0.8s ease forwards;
}

.wavy-text {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.15em;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
    display: inline-block;
    padding: 0 6px 8px 2px;
    overflow: visible;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 42px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* ============================================
   3D RAISED BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: -0.01em;
    position: relative;
}

/* PRIMARY - VERY CONVEX 3D button */
.btn-primary {
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 30%, #c8c8c8 70%, #b0b0b0 100%);
    color: var(--accent-text);
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(160, 160, 160, 0.6);
    border-bottom: 4px solid rgba(80, 80, 80, 0.7);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 6px 12px rgba(255, 255, 255, 0.3),
        inset 0 -4px 8px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 30%, #d8d8d8 70%, #c0c0c0 100%);
    transform: translateY(-4px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 6px 12px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.55),
        0 6px 12px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(255, 255, 255, 0.12);
}

.btn-primary:active {
    transform: translateY(2px);
    background: linear-gradient(180deg, #b0b0b0 0%, #c0c0c0 40%, #d0d0d0 100%);
    border-top: 2px solid rgba(140, 140, 140, 0.6);
    border-bottom: 1px solid rgba(180, 180, 180, 0.4);
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

/* SECONDARY - CONVEX glass raised button */
.btn-secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.02) 70%, rgba(0, 0, 0, 0.05) 100%);
    color: var(--text-primary);
    border-top: 2px solid rgba(255, 255, 255, 0.18);
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    border-right: 2px solid rgba(255, 255, 255, 0.04);
    border-bottom: 4px solid rgba(0, 0, 0, 0.4);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.12),
        inset 0 -4px 8px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.45),
        0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.03) 70%, rgba(0, 0, 0, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -4px 8px rgba(0, 0, 0, 0.14),
        0 12px 32px rgba(0, 0, 0, 0.55),
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:active {
    transform: translateY(2px);
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.35),
        inset 0 2px 3px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 1.12;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 56px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    position: relative;
    z-index: 1;
    padding: 60px 0 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Subtle raised glass */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-5px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    transition: transform var(--transition-bounce), box-shadow var(--transition-normal);
    /* Raised icon */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.feature-title {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.feature-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Modules Animation */
.modules-animation {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: visible;
}

.square {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--accent-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.sq-1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
    width: 32px;
    height: 32px;
}

.sq-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.06));
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.sq-3 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.feature-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02), transparent 70%);
}

/* Support card */
.feature-card-wide .support-content {
    display: flex;
    flex-direction: column;
}

.support-stats {
    display: flex;
    gap: 36px;
    margin-top: 24px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ============================================
   FPS DEMO SECTION
   ============================================ */

.fps-demo {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 40px 36px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.demo-track {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-md);
    overflow: hidden;
}

.demo-track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    transform: translateY(-50%);
    border-radius: 1px;
}

.circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-left: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(150, 150, 150, 0.5);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.06);
}

.demo-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fps-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fps-value {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.fps-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Custom Range Slider */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.15));
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #c0c0c0);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 3px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #c0c0c0);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 3px 10px rgba(0, 0, 0, 0.4);
}

.fps-range-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-pill);
    margin: 0 auto 22px;
    width: fit-content;
    /* Subtle raised */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.pricing-tabs {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 52px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.02);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
    color: var(--accent-text);
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06),
        0 3px 10px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.02);
}

.pricing-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    margin-bottom: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.pricing-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.pricing-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
}

.btn-purchase {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.footer-brand p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.65;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-links a {
    display: block;
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.video-wrapper {
    opacity: 0;
    transform: translateY(28px);
}

.feature-card.visible,
.pricing-card.visible,
.video-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        width: calc(100% - 20px);
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero {
        padding: 120px 16px 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-wide {
        grid-column: span 1;
    }

    .support-stats {
        gap: 20px;
    }

    .section-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TOAST
   ============================================ */

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ffffff, #e0e0e0);
    color: var(--accent-text);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    z-index: 9999;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 40px rgba(0, 0, 0, 0.4);
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.toast.show {
    bottom: 30px;
}

.toast svg {
    flex-shrink: 0;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a2a2a;
}

/* ===========================
   PURCHASE MODAL - MODERN
   =========================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 38px 32px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: modalPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal strong {
    color: var(--accent);
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 10px;
}

.modal-buttons .btn {
    width: 150px;
    justify-content: center;
    text-align: center;
}

.modal-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}