@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #0A0D14;
    --bg-card: #121723;
    --bg-card-hover: #192030;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --accent-orange: #FF5A00;
    --accent-yellow: #FFA800;
    --accent-gradient: linear-gradient(135deg, #FF5A00 0%, #FFA800 100%);
    --accent-glow: rgba(255, 90, 0, 0.15);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 168, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation */
header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(10, 13, 20, 0.7);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.3));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: var(--accent-gradient);
    color: #FFF !important;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.25);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 0, 0.4), 0 0 0 3px rgba(255, 90, 0, 0.2);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    background: rgba(255, 90, 0, 0.1);
    color: var(--accent-orange);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 90, 0, 0.2);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
}

/* Feature Grid */
.features-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 90, 0, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 90, 0, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(255, 90, 0, 0.2));
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Screenshot Showcase */
.showcase-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.showcase-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.showcase-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.showcase-content li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: 800;
}

.showcase-image-wrapper {
    flex: 1.3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #111;
    transition: var(--transition-smooth);
}

.showcase-image-wrapper:hover {
    border-color: rgba(255, 90, 0, 0.4);
    transform: scale(1.02);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive Demo / Comparison Matrix Sample */
.demo-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.demo-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.demo-matrix {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow-x: auto;
    background: rgba(10, 13, 20, 0.6);
    backdrop-filter: blur(10px);
}

.demo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.demo-table th, .demo-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.demo-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-primary);
}

.demo-table tr:last-child td {
    border-bottom: none;
}

.demo-field-name {
    font-weight: 600;
    color: var(--text-secondary);
    width: 25%;
    border-right: 1px solid var(--border-color);
}

.demo-val {
    width: 37.5%;
}

.demo-val.highlight {
    color: var(--accent-yellow);
}

.demo-badge {
    background: rgba(255, 90, 0, 0.15);
    color: var(--accent-orange);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Privacy Policy Layout */
.privacy-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.privacy-header h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.privacy-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.privacy-intro {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
    border-left: 3px solid var(--accent-orange);
    padding-left: 1.25rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
    background: var(--accent-gradient);
    border-radius: 99px;
}

.privacy-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-section ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.privacy-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.privacy-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.privacy-callout {
    background: rgba(255, 90, 0, 0.05);
    border: 1px solid rgba(255, 90, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.privacy-callout h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-callout p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: rgba(10, 13, 20, 0.9);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 90, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
    }
}

/* Responsive Styling */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    .showcase-item {
        flex-direction: column !important;
        gap: 2rem;
    }
    .showcase-content {
        text-align: center;
    }
    .showcase-content ul {
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 1rem;
    }
    nav ul {
        gap: 1rem;
    }
    nav ul li:not(.cta-li) {
        display: none; /* Hide standard links on mobile popup */
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-large {
        width: 100%;
        text-align: center;
    }
    .privacy-card {
        padding: 1.75rem;
    }
}
