/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #D9C6A5;
    /* Premium Beige/Gold */
    --accent-hover: #c4b08f;
    --secondary-text: #a0a0a0;
    --card-bg: #121212;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Index Page (Landing) --- */
.landing-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, var(--bg-color) 70%);
    overflow: hidden;
    /* Unscrollable as requested */
}

/* Background Effects */
.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.05;
        transform: translateX(-50%) scale(0.8);
    }

    100% {
        opacity: 0.15;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Content Wrapper */
.content-wrapper {
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Text Content */
.hero-text {
    flex: 1;
    text-align: left;
}

.brand-name {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* App Store Buttons */
.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-btn {
    display: flex;
    align-items: center;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    gap: 0.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.store-btn img {
    height: 24px;
    width: auto;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-btn .small-text {
    font-size: 0.7rem;
    font-weight: 400;
}

.store-btn .large-text {
    font-size: 1rem;
}

/* Visuals (Phone Mockup) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: auto;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.card-1 {
    bottom: 50px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 50px;
    right: -20px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Floating Card Content */
.card-image-container {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.75rem;
    color: #aaa;
}

/* Footer Links */
.footer-links {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--secondary-text);
    z-index: 20;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* --- PTOS Page --- */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-section {
    margin-bottom: 4rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #ccc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding-top: 1rem;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .headline {
        font-size: 2.5rem;
    }

    .store-buttons {
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
    }

    .landing-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
        overflow-y: auto;
        /* Allow scroll on small mobile if content overflows */
    }

    .footer-links {
        position: relative;
        bottom: auto;
        margin-top: 3rem;
    }

    /* Mobile adjustments for floating card */
    .floating-card {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .card-image-container {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-1 {
        left: -10px;
        bottom: 30px;
    }
}