@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

:root {
    --blue: #2410b8;
    --blue-light: #4030df;
    --green: #00bd68;
    --green-light: #18d982;
    --red: #ff3038;
    --red-light: #ff5158;
    --black: #090b10;
    --black-soft: #10151f;
    --navy: #142238;
    --navy-light: #1b3048;
    --cream: #d9d7cf;
    --muted: #999da8;
    --line: rgba(235,232,223,0.13);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, 90%);
    margin: 0 auto;
}

/* Navigation */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand img {
    width: 390px;
    max-width: 46vw;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(36,16,184,0.38), transparent 28%),
        linear-gradient(135deg, #1c3049, #142235 55%, #101722);
}

.hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -190px;
    bottom: -190px;
    background: var(--green);
    opacity: 0.14;
    border-radius: 45% 55% 60% 40%;
    transform: rotate(25deg);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 270px;
    height: 7px;
    background: linear-gradient(90deg, var(--blue) 0 35%, var(--green) 35% 68%, var(--red) 68%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 185px;
    padding-bottom: 100px;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 1050px;
    font-size: clamp(3.8rem, 7.5vw, 8.5rem);
    font-weight: 600;
    line-height: 0.86;
    letter-spacing: -0.065em;
    margin-bottom: 38px;
}

.hero h1 span {
    display: block;
}

.hero h1 span:first-child {
    color: var(--green);
}

.hero h1 span:last-child {
    color: var(--cream);
}

.hero-text {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.button {
    min-height: 56px;
    padding: 0 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.button.primary {
    color: #061009;
    background: var(--green);
    border-radius: 48% 52% 46% 54% / 55% 43% 57% 45%;
    box-shadow: 6px 7px 0 var(--blue);
}

.button.primary:hover {
    transform: rotate(-2deg) translateY(-4px);
    background: var(--red);
    box-shadow: 8px 10px 0 var(--blue);
}

.button.info-button {
    background: var(--blue);
    color: #090b10;
    border-radius: 54% 46% 51% 49% / 44% 56% 46% 54%;
    box-shadow: 6px 7px 0 var(--red);
    transform: rotate(1deg);
}

.button.info-button:hover {
    background: var(--red);
    box-shadow: 8px 9px 0 var(--green);
    transform: rotate(-2deg) translateY(-4px);
}

/* Intro */

.intro {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: linear-gradient(135deg, #18334c, #224c6d 52%, #1d2930);
}

.intro::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -120px;
    top: -150px;
    border-radius: 54% 46% 38% 62% / 45% 58% 42% 55%;
    background: var(--blue);
    opacity: 0.85;
}

.intro::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -70px;
    bottom: -70px;
    background: var(--green);
    transform: rotate(18deg);
}

.intro-content {
    position: relative;
    z-index: 3;
    max-width: 1050px;
    margin: 0 auto;
}

.intro h2 {
    max-width: 900px;
    font-size: clamp(3.3rem, 7vw, 7rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.055em;
    margin-bottom: 55px;
}

.intro h2 span {
    color: var(--red);
}

.intro p:last-child {
    max-width: 600px;
    margin-left: auto;
    margin-right: 8%;
    color: rgba(235,231,220,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Photo */

.photo-strip {
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: var(--black);
}

.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats */

.stats {
    padding: 90px 0;
    background: var(--black);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat {
    padding: 15px 35px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 10px;
}

.stat:nth-child(1) strong {
    color: var(--blue-light);
}

.stat:nth-child(2) strong {
    color: var(--green);
}

.stat:nth-child(3) strong {
    color: var(--red);
}

.stat span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Pricing */

.pricing {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,189,104,0.07), transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(36,16,184,0.09), transparent 30%),
        #101620;
}

.pricing-heading h2 {
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.section-intro {
    margin-top: 25px;
    color: var(--muted);
    font-size: 1rem;
}

/* Pricing list */

.pricing-list {
    max-width: 820px;
    margin: 50px auto 0;
    border-top: 1px solid var(--line);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 8px;
    border-bottom: 1px solid var(--line);
}

.price-row h3,
.price-row h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.price-row p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.price-row > strong {
    color: var(--green);
    font-size: 1.05rem;
    text-align: right;
    white-space: nowrap;
}

.price-row > strong span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.pricing-additions {
    max-width: 820px;
    margin: 65px auto 0;
}

.pricing-additions > h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.addons-list {
    margin-top: 0;
}

.addons-list .price-row {
    padding: 18px 8px;
}

/* Included in packages */

.included {
    margin-top: 100px;
    padding-top: 70px;
    border-top: 1px solid var(--line);
}

.included-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.included-item {
    padding: 25px;
    background: #182133;
    border-left: 4px solid var(--green);
}

.included-item:nth-child(2) {
    border-left-color: var(--blue-light);
}

.included-item:nth-child(3) {
    border-left-color: var(--red);
}

.included-item:nth-child(4) {
    border-left-color: var(--green);
}

.included-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.included-item span {
    color: var(--muted);
    font-size: 0.82rem;
}

/* Off-grid feature */

.offgrid-feature {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background: linear-gradient(135deg, #18334c, #142235 60%, #101722);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.offgrid-feature::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -90px;
    top: -100px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.12;
}

.offgrid-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.offgrid-content h2 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.055em;
    margin-bottom: 28px;
}

.offgrid-content h2 span {
    color: var(--green);
}

.offgrid-content p:last-child {
    max-width: 680px;
    color: rgba(235,231,220,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* How it works */

.how {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: linear-gradient(135deg, #151d32, #10141e 60%, #181326);
}

.how::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.2;
}

.how::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    left: -30px;
    bottom: 80px;
    background: var(--green);
    opacity: 0.6;
    transform: rotate(25deg);
}

.how .container {
    position: relative;
    z-index: 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step {
    min-height: 220px;
    padding: 25px 25px 25px 0;
    border-top: 2px solid rgba(235,232,223,0.2);
}

.step h3 {
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -0.035em;
    margin: 15px 0;
}

.step p {
    max-width: 230px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Contact */

.cta {
    position: relative;
    overflow: hidden;
    padding: 155px 0;
    background: linear-gradient(135deg, #17244a, #101522 60%, #241317);
}

.cta::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -160px;
    top: -120px;
    border-radius: 44% 56% 50% 50%;
    background: var(--red);
    opacity: 0.75;
}

.cta::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: 210px;
    bottom: -70px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.7;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta h2 {
    max-width: 800px;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.06em;
    margin-bottom: 30px;
}

.cta p {
    max-width: 540px;
    color: rgba(235,231,220,0.72);
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--green);
    max-width: 550px;
}

.contact-info p {
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--green);
    font-size: 1.1rem;
}

/* Footer */

footer {
    padding: 45px 0;
    background: #07090d;
    border-top: 1px solid var(--line);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

footer strong {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

footer p {
    color: #73777a;
    font-size: 0.78rem;
    margin-top: 5px;
}

/* Responsive layout */

@media (max-width: 950px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card {
        grid-column: auto;
    }

    .included-items {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    .navbar {
        padding: 20px 0;
    }

    .nav-content {
        justify-content: center;
    }

    .brand img {
        width: 240px;
        max-width: 75vw;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 155px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .intro {
        padding: 100px 0;
    }

    .intro h2 {
        font-size: 3.5rem;
    }

    .intro p:last-child {
        margin-left: 0;
        margin-right: 0;
    }

    .photo-strip {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 30px;
    }

    .stat:last-child {
        border-bottom: none;
    }

    .pricing {
        padding: 100px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 300px;
    }

    .price-card:nth-child(4) {
        grid-column: auto;
    }

    .included-items {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;
        padding-bottom: 35px;
    }

    .cta {
        padding: 110px 0;
    }

    .cta h2 {
        font-size: 3.7rem;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-list {
        margin-top: 30px;
    }

    .price-row {
        gap: 12px;
        padding: 18px 4px;
    }

    .price-row h3,
    .price-row h4 {
        font-size: 1rem;
    }

    .price-row > strong {
        font-size: 0.9rem;
        white-space: normal;
    }

    .pricing-additions {
        margin-top: 45px;
    }

    .offgrid-feature {
        padding: 90px 0;
    }

    .offgrid-content h2 {
        font-size: 3.2rem;
    }
}

section {
    scroll-margin-top: 20px;
}