@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    /* Trust Blue */
    --accent-glow: rgba(59, 130, 246, 0.1);
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --border: #e2e8f0;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
.brand {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Glass Header */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.brand-icon {
    color: var(--accent);
}

/* Hero - Purity & Trust */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5%;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #eff6ff 0%, #ffffff 70%);
}

.hero-content {
    max-width: 900px;
    z-index: 5;
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Ethics Grid */
.ethics-section {
    padding: 120px 10%;
    background: var(--bg-secondary);
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.ethic-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ethic-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.08);
}

.ethic-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.ethic-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Privacy Details */
.transparency {
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.reveal-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.transparency-list {
    list-style: none;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.transparency-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.transparency-item i {
    color: #10b981;
}

/* Info Sections */
.info-section {
    padding: 100px 10%;
    border-top: 1px solid var(--border);
}

.info-section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-content h2 i {
    color: var(--accent);
}

.info-text p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
}

.info-list {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.info-list-item {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.info-list-item:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}


/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .transparency-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}