:root {
    --white-bg: #FBF9F7;
    --bg: #020f26;
    --card: #0d1b36;
    --gold: #d89b35;
    --gold-light: #f3ba58;
    --text: #ffffff;
    --text-dark: #020512;
    --muted: #9ca8bb;
    --border: rgba(255,255,255,.08);
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:white;
    line-height:1.6;
    width: 100%;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.navbar{
    padding:20px 0;
    border-bottom:1px solid var(--border);
    background: var(--white-bg);
    color: var(--text-dark);
    width: 100%;
}

.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1.6rem;
    font-weight:700;
}

.logo-icon img{
    width:42px;
    height:42px;
}

.store-buttons{
    display:flex;
    gap:12px;
}

.store-btn{
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    border:1px solid var(--gold);
    color:var(--gold);
}

.link{
    color:var(--gold);
}


.hero{
    padding:90px 0;
    overflow-x: hidden;
}

.hero-grid{
    display:flex;
    gap:60px;
    align-items:end;
}

.hero-content {
    width: 50%;
}

.hero h1{
    font-size:4rem;
    line-height:1.05;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    margin-top:25px;
    color:var(--muted);
    font-size:1.1rem;
}

.symbionts {
    background: var(--white-bg);
    color: var(--text-dark);
}

.features{
    margin-top:30px;
    list-style:none;
}

.features li{
    margin-bottom:12px;
}

.features li::before{
    content:"✓";
    color:var(--gold);
    margin-right:10px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:16px;
}

.btn{
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{
    background:var(--gold);
    color:#000;
}

.btn-outline{
    border:1px solid var(--gold);
    color:var(--gold);
}

.hero-phones{
    position: relative;
}

.hero-phones img{
    width:200px;
    height: fit-content;
    position: absolute;
}

section{
    padding:50px 0;
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    font-size:3rem;
}

.section-title span{
    color:var(--gold);
}

.section-title p{.
    color:var(--muted);
}

.symbiont-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.symbiont-card{
    padding:30px;
    text-align:center;
}

.emoji img{
    width: 100px;
    height: 100px;
}

.symbiont-card h3{
    margin:15px 0;
}

.game-section{
    background:linear-gradient(
        90deg,
        #03122f,
        #061834
    );
    padding-bottom: 0!important;
}

.game-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.game-grid h2{
    font-size:3rem;
}

.game-grid h2 span{
    color:var(--gold);
}

.game-features{
    margin-top:30px;
    list-style:none;
    margin-bottom: 30px;
}

.game-features li{
    margin-bottom:14px;
}

.game-features li::before{
    content:"✓";
    color:var(--gold);
    margin-right:10px;
}

.phone-mockup img{
    width:100%;
    max-width:400px;
    display:block;
    margin:auto;
}

.personality-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.personality-grid img{
    width:100%;
    border-radius:24px;
}

.cards{
    display:grid;
    gap:20px;
    margin-top:30px;
}

.info-card{
    background:var(--card);
    border-radius:18px;
    padding:24px;
}

.security{
    background: var(--white-bg);
    color: var(--text-dark);
}

.security-flow{
    display:flex;
    align-items:center;
    justify-content:center;
}

.step{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.step-image{
    width:fit-content;
    height:250px;
}

.arrow{
    width: 100px;
    height: fit-content;
    margin-bottom: 125px;
}

.security-note{
    margin-top:40px;
    background:rgba(216,155,53,.1);
    border:1px solid rgba(216,155,53,.25);
    padding:25px;
    border-radius:16px;
}

.cta{
    text-align:center;
}

.cta h2{
    font-size:3rem;
    margin-bottom:30px;
}

.center{
    justify-content:center;
}

footer{
    border-top:1px solid var(--border);
    text-align:center;
    padding:30px;
    color:var(--muted);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-grid {
        display: block;
    }

    .hero-content {
        width: 100%;
    }

    .hero-phones {
        display: none;
    }

    .phone-mockup {
        display: none;
    }

    .arrow {
        display: none;
    }

    .container {
        width: 92%;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-btn {
        text-align: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* screenshots */
    .hero-phones {
        height: 500px;
        position: relative;
    }

    .hero-phones img {
        width: 140px;
    }

    .hero-phones img:nth-child(1) {
        left: 5% !important;
        bottom: 0 !important;
    }

    .hero-phones img:nth-child(2) {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 40px !important;
        z-index: 3;
    }

    .hero-phones img:nth-child(3) {
        right: 5% !important;
        left: auto !important;
        bottom: 0 !important;
    }

    .section-title h2,
    .game-grid h2,
    .cta h2 {
        font-size: 2.2rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phone-mockup img {
        max-width: 300px;
    }

    .symbiont-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-image {
        height: 180px;
    }

    .security-flow {
        flex-direction: column;
        gap: 40px;
    }

    .step {
        max-width: 320px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title h2,
    .game-grid h2,
    .cta h2 {
        font-size: 1.8rem;
    }

    .symbiont-grid {
        grid-template-columns: 1fr;
    }

    .symbiont-card {
        padding: 20px;
    }

    .emoji img {
        width: 80px;
        height: 80px;
    }

    .hero-phones {
        height: 420px;
    }

    .hero-phones img {
        width: 115px;
    }

    .step-image {
        height: 140px;
    }

    section {
        padding: 40px 0;
    }
}