/* Aspen Snowmass Ski — Navi.Ski landing (simple, standalone design) */
:root {
    --blue: #2E2D2D;
    --blue-dark: #1B1A1A;
    --blue-soft: #f2f0f0;
    --yellow: #EF1018;
    --ink: #0f1720;
    --muted: #5b6673;
    --line: #e5e9f0;
    --bg: #ffffff;
    --radius: 16px;
    --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 30;
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: .2px;
}
.brand img { width: 40px; height: 40px; }
.nav-langs { display: flex; gap: 6px; align-items: center; }
.nav-langs a {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .9rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.nav-langs a:hover { background: rgba(255,255,255,.15); color: #fff; }
.nav-langs a.active { color: var(--yellow); }
.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: #16181f;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("../assets/images/hero.jpg");
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18,20,28,.52) 0%, rgba(18,20,28,.50) 40%, rgba(14,15,22,.90) 100%);
    z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; text-align: center; padding-top: 90px; padding-bottom: 60px; }
.app-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 22px;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08) inset;
    display: block;
}
.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.05;
    margin: 0 0 8px;
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 span { color: var(--yellow); }
.hero .kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.hero p.lead {
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 1.15rem;
    color: rgba(255,255,255,.92);
}
.badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.badge-store img { height: 52px; width: auto; transition: transform .25s; }
.badge-store:hover img { transform: translateY(-3px); }

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 54px;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat b {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.hero-stats .stat small {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.75);
}

/* ---------- Sections ---------- */
section.block { padding: 96px 0; }
section.alt { background: var(--blue-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: 0 0 14px;
    font-weight: 800;
    color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.benefit {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(239,16,24,.12); }
.benefit .ic {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 1.6rem;
}
.benefit h3 { margin: 0 0 6px; font-size: 1.2rem; }
.benefit p { margin: 0; color: var(--muted); }

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
}
.feature .ic {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 1.7rem;
}
.feature h3 { margin: 0 0 8px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Highlights (resort) */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight {
    border-left: 4px solid var(--yellow);
    padding: 6px 0 6px 22px;
}
.highlight h3 { margin: 0 0 6px; font-size: 1.15rem; color: var(--blue); }
.highlight p { margin: 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
    background: #191b23;
    color: #cdd6e2;
    padding: 64px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.site-footer a { color: #cdd6e2; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.footer-legal {
    display: flex; gap: 18px; flex-wrap: wrap;
    margin-top: 8px;
}
.social { display: flex; gap: 14px; font-size: 1.5rem; margin-top: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 44px; padding-top: 22px;
    font-size: .85rem; color: #8a97a8;
    text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .benefits { grid-template-columns: 1fr; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .highlights { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    section.block { padding: 68px 0; }
    .hero-stats { gap: 26px; }
}
@media (max-width: 560px) {
    .features { grid-template-columns: 1fr; }
    .nav-langs a { padding: 5px 7px; font-size: .82rem; }
    .brand span { display: none; }
    .hero-stats .stat b { font-size: 1.5rem; }
}
