:root {
    --orange: #f26b21;
    --orange-dark: #cf4f10;
    --ink: #151515;
    --muted: #5f646d;
    --panel: #fff;
    --soft: #f5f7fb;
    --line: #e5e9f0;
    --blue: #007acc;
    --shadow: 0 18px 50px rgba(16, 24, 40, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55
}

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

a {
    color: inherit
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 233, 240, .85)
}

.brand img {
    height: 48px
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    font-size: .95rem
}

.nav a {
    text-decoration: none
}

.nav-cta {
    padding: 10px 16px;
    background: var(--ink);
    color: white;
    border-radius: 999px
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 2rem
}

.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(24px, 5vw, 70px);
    padding: clamp(40px, 7vw, 96px) clamp(18px, 4vw, 56px);
    background: linear-gradient(
        135deg,
        #0d1a22,
        #10202a 40%,
        #1f3b49 100%
    )
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 7vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.075em;
    color: #ffffff
}

.hero-subtitle {
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    color: rgba(255,255,255,.85);
    max-width: 680px;
    margin-bottom: 28px
}

.eyebrow {
    margin: 0 0 12px;
    color: #ff9b4a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer
}

.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(242, 107, 33, .25)
}

.primary:hover {
    background: var(--orange-dark)
}

.secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line)
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-points span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: .9rem
}

.hero-media img {
    border-radius: 28px;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover
}

.section {
    padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 56px)
}

.section-heading {
    max-width: 820px;
    text-align: center;
    margin: 0 auto 42px
}

.section-heading h2,
.split h2,
.video-copy h2,
.signup h2 {
    font-size: clamp(2.1rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin: 0 0 16px
}

.section-heading p,
.split p,
.video-copy p,
.signup p {
    color: var(--muted);
    font-size: 1.08rem
}

.intro {
    background: #fff
}

.proof-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 20px
}

.proof-large {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow)
}

.proof-card {
    border-radius: 28px;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line)
}

.proof-card strong {
    font-size: 1.45rem;
    display: block;
    margin-bottom: 10px
}

.proof-card.dark {
    background: var(--ink);
    color: #fff
}

.proof-card.dark p {
    color: #d7dbe2
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
    background: var(--soft)
}

.split>div {
    max-width: 620px;
    justify-self: end
}

.split img {
    border-radius: 28px;
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.check-list {
    padding: 0;
    margin: 26px 0 0;
    list-style: none
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin: 13px 0;
    font-weight: 800
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--orange);
    font-size: 1.2rem
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
}

.feature-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 32px rgba(16, 24, 40, .08)
}

.feature-card img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.feature-card div {
    padding: 24px
}

.feature-card h3 {
    font-size: 1.45rem;
    margin: 0 0 8px
}

.feature-card p {
    color: var(--muted);
    margin: 0
}

.video-band {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 32px;
    align-items: center;
    background: #151515;
    color: #fff;
    padding: clamp(48px, 7vw, 90px) clamp(18px, 4vw, 56px)
}

.video-copy {
    max-width: 560px
}

.video-copy p {
    color: #d7dbe2
}

.video-band video {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.perks-section {
    background: #fff
}

.perks-image {
    max-width: 1180px;
    margin: 0 auto 32px;
    border-radius: 28px;
    box-shadow: var(--shadow)
}

.perks-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px
}

.perk {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .07)
}

.perk.featured {
    border: 2px solid var(--orange);
    transform: translateY(-4px)
}

.badge {
    position: absolute;
    right: 18px;
    top: 18px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 900;
    font-size: .72rem
}

.perk h3 {
    font-size: 1.35rem;
    margin: 0 0 6px;
    color: var(--blue)
}

.price {
    font-weight: 900;
    color: var(--orange);
    font-size: 1.45rem;
    margin: 0 0 14px
}

.perk ul {
    padding-left: 20px;
    margin: 0
}

.perk li {
    margin: 8px 0
}

.signup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: clamp(56px, 7vw, 90px) clamp(18px, 4vw, 56px);
    background: linear-gradient(135deg, #fff6ed, #eef5fb)
}

.inline-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px
}

.inline-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    background: #fff
}

.form-message {
    grid-column: 1/-1;
    min-height: 24px;
    font-weight: 800;
    color: var(--orange);
    margin: 6px 0 0
}

.contact-form {
    max-width: 860px;
    margin: auto
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-form label {
    display: block;
    font-weight: 800;
    margin-bottom: 16px
}

.contact-form input,
.contact-form textarea {
    margin-top: 8px
}

.footer {
    padding: 36px clamp(18px, 4vw, 56px);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    background: #fff
}

.footer img {
    height: 44px
}

.footer a {
    text-decoration: none;
    font-weight: 900
}

.sticky-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(242, 107, 33, .3)
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    .nav {
        position: absolute;
        top: 77px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--line)
    }

    .nav.open {
        display: flex
    }

    .hero,
    .split,
    .video-band,
    .signup {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: auto
    }

    .proof-grid,
    .feature-cards {
        grid-template-columns: 1fr
    }

    .proof-large {
        grid-row: auto
    }

    .split>div {
        justify-self: start
    }

    .inline-form,
    .form-row {
        grid-template-columns: 1fr
    }

    .footer {
        flex-direction: column;
        text-align: center
    }

    .sticky-cta {
        left: 18px;
        text-align: center
    }

    .brand img {
        height: 42px
    }
}

.lifestyle-strip {
    max-width: 1180px;
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}

.lifestyle-strip img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(16, 24, 40, .08)
}

.render-gallery {
    background: var(--soft)
}

.gallery-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 10px 32px rgba(16, 24, 40, .07)
}

@media(max-width:900px) {

    .lifestyle-strip,
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .lifestyle-strip img {
        height: auto
    }
}

/* Mobile hero ordering fix:
   Keep headline and buttons above the hero image,
   but move the four white benefit pills below the image on phones/tablets. */
@media(max-width:900px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy {
        display: contents;
    }

    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-copy .hero-subtitle,
    .hero-copy .hero-actions {
        order: 1;
    }

    .hero-media {
        order: 2;
        width: 100%;
    }

    .hero-points {
        order: 3;
        margin-top: 18px;
    }
}

