:root {
    --bg: #ffffff;
    --text: #000000;
    --muted: #666666;
    --border: rgba(0, 0, 0, 0.07);
    --card-bg: #ffffff;
    --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    --radius: 24px;
    --font: 'Outfit', sans-serif;
    --mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animated background blobs */
.liquid-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: blobMove 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #e8e8e8, #f5f5f5);
    top: -15%;
    left: -10%;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f0f0f0, #fafafa);
    bottom: -15%;
    right: -10%;
    animation-delay: -8s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ebebeb, #f8f8f8);
    top: 40%;
    left: 35%;
    animation-delay: -14s;
}

@keyframes blobMove {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(80px, 60px) scale(1.1);
    }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-btn {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 100px;
    border: 1.5px solid #000;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    background: #000;
    color: #fff;
}

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

.loved-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    font-family: var(--mono);
    color: #555;
}

h1 {
    font-size: clamp(52px, 9vw, 100px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.88;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.sub-headline {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
    max-width: 560px;
    margin: 0 0 44px;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.25s;
    min-width: 210px;
    justify-content: center;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.store-button.disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.store-button span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.phone-frame {
    width: 240px;
    border-radius: 36px;
    border: 7px solid #111;
    background: #111;
    overflow: hidden;
    pointer-events: none;
    flex-shrink: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

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

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

    100% {
        transform: translateX(calc(-240px * 5 - 32px * 5));
    }
}

/* Bento Grid (Features) */
.bento-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
}

.bento-large {
    grid-row: 1 / 3;
}

.bento-small {
    grid-column: 2;
}

.bento-dark {
    background: #000;
    color: #fff;
    border-color: #000;
}

.bento-dark p {
    color: rgba(255, 255, 255, 0.6);
}

.bento-tag {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bento-dark .bento-tag {
    color: rgba(255, 255, 255, 0.4);
}

.bento-card h3 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
    line-height: 1.1;
}

.bento-large h3 {
    font-size: 34px;
}

.bento-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* Timeline (How it Works) */
.timeline-section {
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.timeline {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 8px 0 10px;
    letter-spacing: -0.3px;
}

.timeline-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Quote-style Testimonials */
.quotes-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.quotes-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.quote-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}

.quote-item:first-child {
    padding-top: 0;
}

.quote-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #111;
    margin: 0;
    max-width: 600px;
}

.quote-meta {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.quote-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.quote-meta span {
    font-size: 13px;
    color: var(--muted);
}

/* Minimal FAQ */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 48px;
}

.faq-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.faq-row:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.4;
}

.faq-a {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}


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

.comparison-table {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    padding: 20px 28px;
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    background: #fff;
    transition: background 0.2s;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: #fafafa;
}

/* Protocol Logs */
.log-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
    display: block;
}

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

.log-item {
    background: #fff;
    padding: 28px 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: border-color 0.2s, transform 0.2s;
}

.log-item:hover {
    border-color: #000;
    transform: translateX(4px);
}

.log-date {
    font-family: var(--mono);
    font-size: 11px;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 8px;
}

.log-item h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.log-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #ccc;
}

.faq-item[open] {
    border-color: #000;
}

.faq-item summary {
    font-weight: 800;
    font-size: 17px;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 16px 0 0;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 13px;
    margin: 4px 0;
}

.footer-disclaimer {
    font-size: 11px !important;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    color: #000;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.socials a:hover {
    opacity: 1;
}

/* Stats Bar */
.stats-bar {
    padding: 48px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fafafa;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 48px;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* Feature number labels */
.feature-num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.t-quote {
    font-size: 16px;
    line-height: 1.65;
    color: #222;
    margin: 0;
    font-style: italic;
}

.t-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-author strong {
    font-size: 14px;
    font-weight: 800;
}

.t-author span {
    font-size: 13px;
    color: var(--muted);
}

/* Comparison highlight column */
.table-row .highlight {
    font-weight: 700;
    color: #000;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    z-index: 200;
}

.sticky-cta-btn {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2px;
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    .hero {
        padding: 60px 20px 0;
    }

    h1 {
        letter-spacing: -0.03em;
    }

    .sub-headline {
        font-size: 16px;
    }

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

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

    .features-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 12px;
        padding: 14px 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 16px 24px;
    }

    .sticky-cta {
        display: block;
    }

    main {
        padding-bottom: 80px;
    }
}