@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600;700&family=Inter:wght@400;500;700;800&display=swap');

:root {
    --bg: #030304;
    --panel: #101012;
    --panel-2: #17111d;
    --text: #ffffff;
    --muted: #b8b4bf;
    --line: rgba(255, 255, 255, .14);
    --violet: #3b13b0;
    --violet-2: #7c32ff;
    --orange: #ff4800;
    --orange-2: #ff7e00;
    --lime: #73fbaf;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 18px clamp(18px, 4vw, 58px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
}

.brand,
.header-cta {
    position: relative;
    z-index: 2;
}

.brand img {
    display: block;
    width: 138px;
    height: auto;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .45));
}

.audience-switch {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.audience-switch a,
.header-cta {
    opacity: .92;
}

.audience-switch a {
    position: relative;
    padding: 7px 0;
    color: rgba(255, 255, 255, .7);
}

.audience-switch a.active {
    color: #fff;
    opacity: 1;
}

.audience-switch a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.audience-divider {
    color: rgba(255, 255, 255, .5);
    font-weight: 800;
}

.header-cta {
    border: 1px solid rgba(255, 255, 255, .76);
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding: 120px clamp(22px, 7vw, 100px) 70px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(124, 50, 255, .22), transparent 31%),
        linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .62) 38%, rgba(0, 0, 0, .22) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .05));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Barlow Semi Condensed', Inter, sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 620px;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .9;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 540px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 26px 0 0;
}

.price-line span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-line strong {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button,
.availability-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.button.primary,
.availability-button {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.button.ghost {
    color: #fff;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .46);
    backdrop-filter: blur(12px);
}

.availability {
    display: grid;
    grid-template-columns: minmax(0, 340px) auto auto;
    gap: 10px;
    align-items: center;
    max-width: 760px;
    margin-top: 20px;
}

.availability-field {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 4px;
    padding: 0 16px;
    color: #fff;
    background: rgba(0, 0, 0, .44);
    outline: none;
}

.location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 4px;
    padding: 0 18px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.location-button:disabled {
    cursor: wait;
    opacity: .6;
}

.location-status {
    grid-column: 1 / -1;
    min-height: 18px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.45;
}

.plans-section {
    position: relative;
    padding: 82px clamp(18px, 5vw, 70px) 110px;
    background:
        radial-gradient(circle at 50% 8%, rgba(124, 50, 255, .26), transparent 30%),
        linear-gradient(180deg, #020202, #060309 70%);
}

.plans-section::before,
.features-section::before {
    content: '';
    position: absolute;
    inset: 50px 0 auto;
    width: min(560px, 80vw);
    height: 560px;
    margin: auto;
    opacity: .18;
    background:
        repeating-radial-gradient(ellipse at center, transparent 0 20px, rgba(255, 255, 255, .9) 21px 22px);
    mask-image: radial-gradient(circle, #000, transparent 70%);
    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading h2,
.split-copy h2,
.app-section h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: .98;
    text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.app-section p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.plan-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.plans-visual {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    max-width: 1040px;
    min-height: 300px;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .18)),
        var(--plans-image) center / cover;
}

.plans-visual div {
    max-width: 470px;
    padding: clamp(22px, 4vw, 38px);
}

.plans-visual h3 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: .95;
    text-transform: uppercase;
}

.plans-visual p:not(.eyebrow) {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
}

.plan-card {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    box-shadow: 0 25px 90px rgba(0, 0, 0, .25);
}

.plan-card.featured {
    border-color: rgba(255, 72, 0, .72);
    background: linear-gradient(180deg, rgba(255, 72, 0, .18), rgba(255, 255, 255, .05));
}

.plan-badge {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 4px;
    color: #0c0c0c;
    background: var(--lime);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 28px;
    line-height: 1;
}

.speed {
    margin: 8px 0 0;
    color: var(--orange-2);
    font-weight: 900;
    text-transform: uppercase;
}

.plan-description {
    min-height: 72px;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.plan-price {
    margin-top: 22px;
}

.plan-price span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-price strong {
    font-size: 43px;
    line-height: 1;
}

.plan-price small {
    color: var(--muted);
    font-weight: 800;
}

.plan-card ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.plan-card li::before {
    content: '';
    position: absolute;
    top: .55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
}

.plan-button {
    width: 100%;
    margin-top: auto;
    color: #0b0b0b;
    background: #fff;
}

.plans-note {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    text-align: center;
}

.seo-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: clamp(28px, 6vw, 72px);
    max-width: var(--max);
    margin: 0 auto;
    padding: 100px clamp(18px, 5vw, 40px);
}

.seo-section h2 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: .98;
    text-transform: uppercase;
}

.seo-section p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.seo-section ul {
    display: grid;
    gap: 12px;
    align-self: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-section li {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .05);
}

.split-section,
.app-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: 120px clamp(18px, 5vw, 40px);
}

.split-copy .button {
    margin-top: 30px;
}

.cep-form {
    display: grid;
    grid-template-columns: minmax(0, 220px) auto auto;
    gap: 10px;
    margin-top: 28px;
}

.cep-form input {
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    outline: none;
}

.cep-result {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(115, 251, 175, .28);
    border-radius: 8px;
    background: rgba(115, 251, 175, .08);
}

.cep-result strong {
    color: #fff;
}

.cep-result span {
    color: var(--muted);
}

.cep-result a {
    color: var(--lime);
    font-weight: 900;
}

.cep-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cep-count {
    color: rgba(255, 255, 255, .5) !important;
    font-size: 13px !important;
}

.neighborhoods-section {
    padding: 100px clamp(18px, 5vw, 70px);
    background:
        linear-gradient(180deg, #020202, #07040d);
}

.neighborhood-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1080px;
    margin: 0 auto;
}

.neighborhood-list span {
    padding: 10px 13px;
    border: 1px solid rgba(115, 251, 175, .22);
    border-radius: 4px;
    color: rgba(255, 255, 255, .88);
    background: rgba(115, 251, 175, .06);
    font-size: 13px;
    font-weight: 800;
}

.coverage-photo {
    position: relative;
    aspect-ratio: 1.05 / 1;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)),
        var(--coverage-image) center / cover;
}

.coverage-photo strong {
    padding: 26px;
    font-family: 'Barlow Semi Condensed', Inter, sans-serif;
    font-size: clamp(48px, 8vw, 88px);
    line-height: .9;
    text-transform: uppercase;
    color: #fff;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .72));
}

.features-section {
    position: relative;
    padding: 100px clamp(18px, 5vw, 70px);
    background: #000;
    overflow: hidden;
}

.faq-section {
    padding: 100px clamp(18px, 5vw, 70px);
    background: linear-gradient(180deg, #000, #08050d);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
    line-height: 1.55;
}

.business-hero .hero-copy {
    max-width: 650px;
}

.business-phone {
    margin: 18px 0 0;
    color: var(--lime);
    font-weight: 900;
}

.business-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 22px clamp(18px, 5vw, 70px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #050505;
}

.business-strip span {
    padding: 9px 12px;
    border: 1px solid rgba(115, 251, 175, .24);
    border-radius: 4px;
    color: #fff;
    background: rgba(115, 251, 175, .07);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.business-section {
    padding: 100px clamp(18px, 5vw, 70px);
    background:
        radial-gradient(circle at 50% 0, rgba(124, 50, 255, .24), transparent 34%),
        #000;
}

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

.section-heading.compact {
    margin-bottom: 34px;
}

.feature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

.feature-card {
    min-height: 230px;
    padding: 24px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, .1);
}

.feature-card h3 {
    font-size: 25px;
}

.feature-card p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.app-section {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 110px;
    padding-bottom: 110px;
}

.app-actions {
    display: grid;
    gap: 12px;
    min-width: 260px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 30px clamp(18px, 5vw, 60px);
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
}

@media (max-width: 920px) {
    .brand img {
        width: 112px;
    }

    .audience-switch {
        font-size: 12px;
        gap: 11px;
    }

    .hero {
        min-height: 820px;
        background-position: 58% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .32)),
            linear-gradient(0deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .06));
    }

    .plan-grid,
    .feature-grid,
    .business-grid,
    .seo-section,
    .split-section,
    .app-section {
        grid-template-columns: 1fr;
    }

    .app-actions {
        min-width: 0;
    }

    .site-footer {
        display: grid;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 16px;
        min-height: 56px;
    }

    .brand img {
        width: 68px;
    }

    .audience-switch {
        font-size: 11px;
        gap: 8px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 760px;
        padding: 96px 18px 56px;
    }

    h1 {
        font-size: 48px;
    }

    .price-line {
        display: grid;
        gap: 4px;
    }

    .hero-actions,
    .availability,
    .cep-form {
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .availability-button,
    .location-button {
        width: 100%;
    }

    .plan-card {
        min-height: auto;
    }
}
