@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

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

:root {
    --ink: #0a1f38;
    --ink-soft: #4a627e;
    --blue: #1a73e8;
    --blue-deep: #0b57d0;
    --sky: #2e8bff;
    --cyan: #38bdf8;
    --amber: #f5893f;
    --font-body: 'Manrope', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body.landing {
    font-family: var(--font-body);
    color: var(--ink);
    background: #eaf2fd;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Background ---------- */
.lp-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(56, 189, 248, 0.28), transparent 60%),
        radial-gradient(900px 500px at 0% 20%, rgba(26, 115, 232, 0.22), transparent 55%),
        linear-gradient(180deg, #eef5fe 0%, #e2ecfb 45%, #dbe8f8 100%);
}
.lp-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.lp-orb-1 { width: 420px; height: 420px; background: #4f9dff; top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.lp-orb-2 { width: 360px; height: 360px; background: #7ad0ff; bottom: -120px; left: -80px; animation: float2 18s ease-in-out infinite; }
.lp-orb-3 { width: 300px; height: 300px; background: #ffb98a; top: 40%; left: 55%; opacity: 0.3; animation: float1 20s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -20px); } }
.lp-grid { position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(26, 115, 232, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 115, 232, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
}

/* ---------- Layout ---------- */
.lp-header, .lp-main, .lp-footer { position: relative; z-index: 1; }
.lp-main { width: min(1160px, 100%); margin: 0 auto; padding: 0 24px; }

.lp-header {
    width: min(1160px, 100%); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px calc(env(safe-area-inset-top));
    padding-top: max(22px, env(safe-area-inset-top));
}
.lp-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--ink); }
.lp-brand-badge {
    width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px; color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 14px 30px rgba(26, 115, 232, 0.35);
}
.i-plane { width: 58%; height: 58%; display: block; }
.lp-logo { height: 40px; width: auto; display: block; }
img.lp-pass-badge { width: 22px; height: 22px; background: none; border-radius: 0; object-fit: contain; vertical-align: middle; box-shadow: none; }
.lp-trust-peso strong { display: inline-flex; align-items: center; gap: 7px; }
.lp-peso-coin {
    width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); color: #fff;
    font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(26, 115, 232, 0.35);
}
.lp-nav-login {
    text-decoration: none; font-weight: 800; font-size: 0.95rem; color: var(--blue-deep);
    padding: 11px 22px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(26, 115, 232, 0.2);
    backdrop-filter: blur(10px); transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.lp-nav-login:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 12px 24px rgba(26, 115, 232, 0.18); }

/* ---------- Hero ---------- */
.lp-hero {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
    padding: clamp(30px, 6vh, 70px) 0 clamp(40px, 6vh, 80px);
}
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.75); border: 1px solid rgba(26, 115, 232, 0.16);
    color: var(--blue-deep); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(26, 78, 140, 0.08);
}
.lp-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.lp-title {
    margin-top: 22px; font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 0.98; letter-spacing: -0.045em; color: var(--ink);
}
.lp-title-grad { background: linear-gradient(115deg, var(--blue) 10%, var(--sky) 55%, var(--cyan) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-sub { margin-top: 22px; max-width: 520px; font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.62; color: var(--ink-soft); }
.lp-sub strong { color: var(--ink); font-weight: 800; }

.lp-cta {
    display: inline-flex; align-items: center; gap: 12px; margin-top: 32px;
    padding: 17px 30px; border-radius: 16px; text-decoration: none;
    font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-cta svg { transition: transform 0.2s ease; }
.lp-cta:hover { transform: translateY(-3px); box-shadow: 0 26px 50px rgba(26, 115, 232, 0.48); }
.lp-cta:hover svg { transform: translateX(4px); }

.lp-trust { display: flex; align-items: center; gap: 20px; margin-top: 38px; flex-wrap: wrap; }
.lp-trust-item { display: flex; flex-direction: column; }
.lp-trust-item strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.lp-trust-item span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.lp-trust-sep { width: 1px; height: 34px; background: rgba(26, 115, 232, 0.16); }

/* ---------- Hero visual: boarding pass ---------- */
.lp-hero-visual { position: relative; display: flex; justify-content: center; padding: 26px 16px 34px; }
.lp-pass {
    position: relative; width: min(366px, 100%);
    background: linear-gradient(160deg, #ffffff, #f3f8ff);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px; padding: 26px;
    box-shadow: 0 40px 80px rgba(20, 66, 124, 0.28), 0 0 0 1px rgba(26, 115, 232, 0.06);
    transform: rotate(-3deg);
    animation: passIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes passIn { from { opacity: 0; transform: rotate(-3deg) translateY(30px); } to { opacity: 1; transform: rotate(-3deg) translateY(0); } }
.lp-pass-top { display: flex; align-items: center; justify-content: space-between; }
.lp-pass-air { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.lp-pass-badge { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--sky)); color: #fff; font-size: 15px; }
.lp-pass-tag { padding: 5px 12px; border-radius: 999px; background: rgba(23, 166, 115, 0.14); color: #12805a; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

.lp-pass-route { display: flex; align-items: center; justify-content: space-between; margin: 26px 0 22px; }
.lp-pass-code { font-family: var(--font-display); font-size: 2.3rem; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.lp-pass-place { margin-top: 4px; font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.lp-pass-city:last-child { text-align: right; }
.lp-pass-path { flex: 1; position: relative; height: 40px; margin: 0 14px; }
.lp-pass-path::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 0;
    border-top: 2px dashed rgba(26, 115, 232, 0.4);
}
.lp-pass-plane {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(90deg);
    font-size: 22px; color: var(--blue);
    background: #fff; padding: 0 6px;
    animation: fly 3s ease-in-out infinite;
}
@keyframes fly { 0%,100% { left: 30%; } 50% { left: 70%; } }

.lp-pass-meta { display: flex; justify-content: space-between; gap: 10px; padding: 18px 0; border-top: 1px dashed rgba(26, 115, 232, 0.2); border-bottom: 1px dashed rgba(26, 115, 232, 0.2); }
.lp-pass-meta div { display: flex; flex-direction: column; gap: 3px; }
.lp-pass-meta span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 700; }
.lp-pass-meta strong { font-size: 0.92rem; color: var(--ink); font-weight: 800; }

.lp-pass-fare { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.lp-pass-fare-label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 700; }
.lp-pass-fare-amt { font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--blue), var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lp-chip {
    position: absolute; z-index: 2; padding: 11px 16px; border-radius: 14px;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
    border: 1px solid rgba(26, 115, 232, 0.14);
    box-shadow: 0 16px 34px rgba(20, 66, 124, 0.18);
    font-size: 0.82rem; font-weight: 800; color: var(--ink);
}
.lp-chip-a { top: -2%; left: -2%; color: #12805a; animation: bob 4s ease-in-out infinite; }
.lp-chip-b { bottom: -3%; right: 2%; color: var(--blue-deep); animation: bob 4.6s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Features ---------- */
.lp-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    padding: 10px 0 70px;
}
.lp-feature {
    padding: 26px 22px; border-radius: 22px;
    background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 44px rgba(20, 66, 124, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-feature:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(20, 66, 124, 0.16); }
.lp-feature-ic {
    width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 22px; margin-bottom: 16px; color: var(--blue-deep);
    background: rgba(26, 115, 232, 0.1);
}
.lp-feature h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.lp-feature p { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.lp-footer {
    width: min(1160px, 100%); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(26, 115, 232, 0.1);
    color: var(--ink-soft); font-size: 0.86rem; font-weight: 600;
}
.lp-footer a { color: var(--blue-deep); font-weight: 800; text-decoration: none; }
.lp-footer a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .lp-hero { grid-template-columns: 1fr; gap: 44px; text-align: center; padding-top: 20px; }
    .lp-eyebrow { margin: 0 auto; }
    .lp-sub { margin-left: auto; margin-right: auto; }
    .lp-trust { justify-content: center; }
    .lp-hero-visual { order: -1; }
    .lp-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .lp-header { padding-left: 18px; padding-right: 18px; }
    .lp-main { padding: 0 18px; }
    .lp-title { font-size: clamp(2.4rem, 12vw, 3.2rem); }
    .lp-cta { width: 100%; justify-content: center; }
    .lp-trust { gap: 14px; }
    .lp-trust-sep { display: none; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-pass { transform: rotate(-2deg); }
    .lp-chip-a { left: 0; }
    .lp-chip-b { right: 0; }
}
