:root {
    --primary: #FF7139;
    --primary-hover: #e65c27;
    --dark: #1A1A1A;
    --light: #FAFAFA;
    --white: #FFFFFF;
    --gray: #666666;
    --gray-light: #EEEEEE;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FF9B70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light { background-color: var(--white); }

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 14px 0 rgba(255, 113, 57, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 113, 57, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--gray-light);
}

.btn-secondary:hover {
    background-color: var(--gray-light);
    transform: translateY(-2px);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #FF763B 0%, #FF5216 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 14px;
    box-shadow: 0 8px 22px -2px rgba(255, 82, 22, 0.38), 0 2px 6px -1px rgba(255, 82, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FF844E 0%, #FF5D24 100%);
    box-shadow: 0 14px 28px -4px rgba(255, 82, 22, 0.5), 0 4px 10px -2px rgba(255, 82, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: #FFFFFF !important;
}

.btn-premium:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(255, 82, 22, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-disabled-plan {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    transform: none !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 113, 57, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.animate-entry {
    animation: cinematicReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
}

@keyframes cinematicReveal {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-micro {
    font-size: 0.875rem;
    color: var(--gray);
}

.hero-image-wrapper {
    margin-top: 64px;
    max-width: 760px;
    width: 100%;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.video-header {
    text-align: center;
    padding: 16px 0;
}

.video-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0;
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Supported Platforms */
.platforms-section {
    padding: 32px 0 0 0;
    text-align: center;
}

.platforms-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 12px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 24px 0; /* Prevents icons and shadows from being clipped on hover/click */
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    flex-shrink: 0;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 80px; /* Consistent pixel gap everywhere */
    padding-right: 80px; /* Exact matching gap between groups */
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.platform-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    filter: grayscale(100%) brightness(0) opacity(40%); /* Super premium flat grey monochrome */
    cursor: pointer;
}

.platform-icon:hover {
    transform: scale(1.18) translateY(-6px);
    filter: grayscale(0%) brightness(1) opacity(100%) drop-shadow(0 12px 20px rgba(0,0,0,0.15));
}

.platform-icon:active {
    transform: scale(1.08) translateY(-2px);
}


.fake-browser {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    text-align: left;
}

.browser-dots {
    padding: 12px 16px;
    background: var(--gray-light);
    display: flex;
    gap: 8px;
}

.browser-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-content {
    padding: 32px;
    font-size: 1.125rem;
}

.arrow-down {
    text-align: center;
    color: var(--gray);
    margin: 16px 0;
    font-size: 1.5rem;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 64px;
}

/* Tones */
.tones-original {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.tones-original-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.tones-original p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.tones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tone-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tone-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.08);
}

.tone-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tone-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 10px;
    flex-shrink: 0;
    color: #1a1a2e;
}

.tone-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.tone-result {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 600px) {
    .tones-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    border-radius: 12px;
    cursor: pointer;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    list-style: none; /* Hide default arrow */
    position: relative;
    padding-right: 24px;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    margin-top: 16px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.premium-card {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(255, 113, 57, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.ultra-card {
    border: 2px solid #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.ultra-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 24px 0 16px;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--white);
    padding: 64px 0 32px;
    border-top: 1px solid var(--gray-light);
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 24px;
    max-width: 250px;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}

/* Profile Dropdown (Premium) */
.profile-dropdown-container {
    position: relative;
    display: inline-block;
}

.profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-avatar:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 113, 57, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-family: inherit;
}

.dropdown-item:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary);
}

.dropdown-item.disabled {
    color: #999;
    opacity: 0.6;
    cursor: not-allowed;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 8px 0;
}

/* Dashboard Blocked Websites Section */
.dashboard-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 580px;
    margin-top: 48px;
    padding: 28px 32px;
    text-align: left;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 14px 36px -4px rgba(0, 0, 0, 0.07);
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.dashboard-card-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 113, 57, 0.1);
    color: var(--primary);
    flex-shrink: 0;
}

.dashboard-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blocked-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.dashboard-card-subtitle {
    font-size: 0.88rem;
    color: var(--gray);
    margin-top: 3px;
    margin-bottom: 0;
}

.dashboard-blocked-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.dashboard-blocked-list::-webkit-scrollbar {
    width: 5px;
}
.dashboard-blocked-list::-webkit-scrollbar-track {
    background: transparent;
}
.dashboard-blocked-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.dashboard-blocked-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fbfbfb;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dashboard-blocked-row:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.blocked-domain-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.blocked-domain-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.blocked-domain-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    word-break: break-all;
}

.btn-unblock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #fee2e2;
    color: #ef4444;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    font-family: inherit;
}

.btn-unblock:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
    transform: translateY(-1px);
}

.btn-unblock:active {
    transform: translateY(0);
}

.empty-blocklist-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    text-align: center;
    color: #94a3b8;
}

.empty-blocklist-icon {
    margin-bottom: 12px;
    opacity: 0.7;
}

.empty-blocklist-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.empty-blocklist-hint {
    font-size: 0.82rem;
    color: #94a3b8;
    max-width: 320px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-nav { gap: 40px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .features-grid, .pricing-grid, .dashboard-stats { grid-template-columns: 1fr; }
    .pricing-grid { max-width: 420px; }
    .footer-top { flex-direction: column; gap: 48px; text-align: left; }
    .footer-nav { flex-direction: column; gap: 40px; width: 100%; }
}

h2, h3, [id] {
    scroll-margin-top: 140px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
