:root {
    --bg0: #07080b;
    --bg1: #0b0c11;
    --border: rgba(255, 255, 255, 0.12);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.68);
    --muted2: rgba(255, 255, 255, 0.55);

    --accent: #6ee7b7;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
    --radius: 18px;

    --max: 1120px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial;
    color: var(--text);
    background:
        radial-gradient(
            900px 520px at 70% 12%,
            rgba(110, 231, 183, 0.13),
            transparent 60%
        ),
        radial-gradient(
            900px 520px at 20% 25%,
            rgba(34, 197, 94, 0.1),
            transparent 55%
        ),
        linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 84px 0;
}
@media (max-width: 900px) {
    .section {
        padding: 64px 0;
    }
}

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(12px);
    background: rgba(7, 8, 11, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
    /* font-weight: 800; */
    /* width: 150px;
    height: 150px; */

    .logo {
        width: 110px;
        height: auto;
    }
}
.nav .links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}
.nav .links a {
    color: var(--muted);
}
.nav .cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Subscription banner under menu */
.subbar {
    position: sticky;
    top: 90.09px; /* height of nav-ish */
    z-index: 55;
    background: rgba(200, 221, 21, 0.28);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.subbarInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.subbarLeft {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.subbarPill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}
.subbarText {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.35;
}
.subbarClose {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    position: absolute;
    right: 16px;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.08s ease;
}
.subbarClose:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}
.subbarClose:active {
    transform: translateY(1px);
}

/* Animación de cierre */
.subbar.is-hidden {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    transition:
        transform 0.08s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}
.btn:active {
    transform: translateY(1px);
}
.btn.primary {
    background: linear-gradient(
        135deg,
        rgba(110, 231, 183, 0.28),
        rgba(34, 197, 94, 0.22)
    );
    border-color: rgba(110, 231, 183, 0.28);
}
/* .btn.secondary {
    background: linear-gradient(
        55deg,
        rgba(4, 76, 94, 0.68),
        rgba(9, 30, 104, 0.68)
    );
    border-color: rgba(110, 231, 183, 0.28);
} */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(110, 231, 183, 0.9);
    box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.12);
}

/* Headings */
h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -0.02em;
}
.h1 {
    font-size: 56px;
    line-height: 1.02;
    margin-top: 16px;
}
@media (max-width: 520px) {
    .h1 {
        font-size: 44px;
    }
}
.h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
}
@media (max-width: 520px) {
    .h2 {
        font-size: 28px;
    }
}
.sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 12px;
    max-width: 60ch;
}

/* Cards */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.03)
    );
    box-shadow: var(--shadow);
}
.card.pad {
    padding: 18px;
}

/* Hero */
.hero {
    padding: 46px 0 74px;
}
.heroGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: start;
}
@media (max-width: 980px) {
    .heroGrid {
        grid-template-columns: 1fr;
    }
}

.benefits {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    max-width: 520px;
}
.benefits li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.35;
}
.check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(110, 231, 183, 0.18);
    border: 1px solid rgba(110, 231, 183, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 1px;
}
.check svg {
    width: 12px;
    height: 12px;
    fill: rgba(110, 231, 183, 0.95);
}

.formWrap {
    margin-top: 32px;
}
.trust {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.4;
}

/* Inline CTA blocks */
.inlineCta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.inlineCtaNote {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

/* Mockup */
.mock {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
@media (max-width: 980px) {
    .mock {
        min-height: 420px;
    }
}
.mock::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(
            600px 380px at 55% 30%,
            rgba(110, 231, 183, 0.22),
            transparent 60%
        ),
        radial-gradient(
            500px 340px at 40% 60%,
            rgba(34, 197, 94, 0.16),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02)
        );
    opacity: 0.95;
}
.mockInner {
    position: relative;
    height: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottle {
    width: min(360px, 88%);
    aspect-ratio: 3/4.1;
    border-radius: 26px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.06)
        ),
        radial-gradient(
            240px 260px at 50% 40%,
            rgba(110, 231, 183, 0.18),
            transparent 65%
        );
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    transform: translateY(-6px);
}
.bottle::after {
    content: "";
    position: absolute;
    inset: -40px -60px auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.22),
        transparent 60%
    );
    transform: rotate(20deg);
    opacity: 0.9;
}
.cap {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 18%;
    border-radius: 20px 20px 16px 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.08)
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}
.label {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 28%;
    bottom: 18%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 8, 11, 0.55);
    backdrop-filter: blur(6px);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.label .name {
    font-weight: 900;
    letter-spacing: 0.01em;
    font-size: 18px;
}
.label .stack {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.35;
}
.label .bar {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 8px 0;
}
.label .micro {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

/* Problem */
.problem p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
    max-width: 72ch;
    margin: 10px 0 0;
}
.problemList {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}
.problemItem {
    display: flex;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}
.problemIcon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.problemIcon svg {
    width: 18px;
    height: 18px;
    fill: rgba(110, 231, 183, 0.85);
}
.problemTitle {
    font-weight: 800;
}
.problemDesc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Solution split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.miniTitle {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.18);
    color: rgba(255, 255, 255, 0.82);
}
.miniMeta {
    color: var(--muted);
    font-size: 13px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 14px;
}

.together {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(110, 231, 183, 0.18);
    background: linear-gradient(
        135deg,
        rgba(110, 231, 183, 0.12),
        rgba(34, 197, 94, 0.08)
    );
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
    font-size: 14px;
}

/* Proof */
.proofTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
}
.stat b {
    font-size: 16px;
}
.statLabel {
    color: var(--muted);
    font-size: 12px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 980px) {
    .testimonials {
        grid-template-columns: 1fr;
    }
}

.quote {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.quote p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-size: 14px;
}
.quote .who {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.founderNote {
    margin-top: 16px;
}
.founderText {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

/* Product */
.productGrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: center;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .productGrid {
        grid-template-columns: 1fr;
    }
}

.featureList {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}
.feature .icon {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 1px;
}
.feature .icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(110, 231, 183, 0.95);
}
.feature b {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.feature span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Founder */
.founderGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
}
@media (max-width: 900px) {
    .founderGrid {
        grid-template-columns: 1fr;
    }
}
.story p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    max-width: 75ch;
}

/* Urgency */
.urgent {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(110, 231, 183, 0.2);
    background:
        radial-gradient(
            700px 260px at 10% 40%,
            rgba(110, 231, 183, 0.16),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03)
        );
    box-shadow: var(--shadow);
}
.urgentTop {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 10px;
}
.urgent p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 85ch;
}
.urgentH {
    margin: 0;
}
.urgentActions {
    margin-top: 14px;
}

/* FAQ */
.faqGrid {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}
details {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 14px 14px;
}
summary {
    cursor: pointer;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.86);
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
details p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

/* Final CTA */
.final {
    padding-bottom: 94px;
}
.finalTop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.finalSub {
    margin-top: 8px;
}
.finalNote {
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 26px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footLinks {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* MailerLite */
.ml-embedded {
    width: 100%;
}

/* Anim */
.fade {
    opacity: 0;
    transform: translateY(10px);
    animation: up 560ms ease forwards;
}
.d2 {
    animation-delay: 120ms;
}
@keyframes up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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