:root {
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --accent-color: #000000;
    --border-color: #000000;
    --border-width: 2px;
}

/* Soft Premium Background */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Liquid Animated Blobs */
.liquid-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.3;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
    border-radius: 50%;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -7s;
    background: #fdfdfd;
}

.blob-3 {
    top: 40%;
    left: 30%;
    animation-delay: -14s;
    width: 400px;
    height: 400px;
    background: #f5f5f5;
}

@keyframes move {
    from {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    to {
        transform: translate(100px, 150px) rotate(90deg) scale(1.1);
    }
}

/* Consistently Round Premium Aesthetic */
.step-card,
.testimonial-card,
.faq-item,
.comparison-table,
.info-block {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 32px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
    padding: 32px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.step-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
}

/* Global Reveal Animation */
.reveal,
.step-card,
.info-block,
.comparison-table,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active,
.step-card.active,
.info-block.active,
.comparison-table.active,
.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.nav-btn {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.nav-btn:hover {
    background: black;
    color: white;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 60px;
    text-align: center;
}

.loved-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #E5E5E5;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.sub-headline {
    color: #555;
    font-size: 20px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 50px;
}

/* Store Buttons */
.cta-container {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    justify-content: center;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.store-button span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Protocol Log Styles */
.log-section,
.roadmap-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    margin-bottom: 12px;
    text-align: center;
}

.log-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 60px;
}

.log-item {
    background: white;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.log-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.log-date {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #999;
    font-weight: 700;
}

.log-item h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 12px 0 8px;
    letter-spacing: -0.5px;
}

.log-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Roadmap Grid */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.roadmap-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.roadmap-status {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 24px;
}

.roadmap-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.roadmap-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

/* Marquee */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.phone-frame {
    width: 260px;
    border-radius: 40px;
    border: 8px solid #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: #111;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-260px * 5 - 200px));
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 80px auto;
}

/* Comparison */
.comparison-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 24px;
    background: black;
    color: white;
    font-weight: 900;
    border-radius: 32px 32px 0 0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 24px;
    border-bottom: 1px solid #F0F0F0;
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 80px auto;
}

.faq-item summary {
    font-weight: 800;
    font-size: 18px;
    list-style: none;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    padding: 80px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.socials a {
    color: black;
    opacity: 0.6;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: white;
    padding: 60px;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-badge {
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 24px;
}

.modal-card h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.modal-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.modal-card input {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fdfdfd;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    box-sizing: border-box;
    transition: all 0.2s;
}

.modal-card input:focus {
    outline: none;
    border-color: black;
    background: white;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 18px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: black;
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: black;
    border: 1px solid #eee;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.shake {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 42px;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
    }

    .store-button {
        min-width: 0;
    }
}


/* Countdown Timer Styling */
.countdown-section {
    margin: 60px 0 80px;
    width: 100%;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0 24px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    font-family: 'Space Mono', monospace;
}

.countdown-item p {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 12px;
}

.countdown-divider {
    font-size: 48px;
    font-weight: 300;
    opacity: 0.2;
    padding-bottom: 24px;
}

.release-date {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    background: #f5f5f5;
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-block;
}

@media (max-width: 600px) {
    .countdown-container {
        gap: 10px;
    }

    .countdown-item {
        min-width: 50px;
    }

    .countdown-divider {
        font-size: 24px;
        padding-bottom: 16px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #1C1C1E;
    z-index: 2000;
    padding: 32px 24px 48px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 32px 32px 0 0;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-header {
    color: #888;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cookie-content p {
    color: white;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    border: none;
    text-transform: uppercase;
}

.cookie-btn.settings {
    background: transparent;
    color: #888;
}

.cookie-btn.accept {
    background: white;
    color: black;
}