:root {
    --bg: #070a0f;
    --bg-soft: #0d111a;
    --panel: #111827;
    --panel-2: #151e2e;
    --line: #243044;
    --text: #f8fafc;
    --muted: #9aa7b8;
    --blue: #2f81f7;
    --blue-2: #58a6ff;
    --green: #22c55e;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(47, 129, 247, 0.2), transparent 32rem),
        linear-gradient(180deg, #080c13 0%, var(--bg) 50%, #05070b 100%);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

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

.landing-header {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(7, 10, 15, 0.78);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr auto;
    left: 0;
    padding: 18px clamp(20px, 5vw, 72px);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 0.04em;
}

.brand-mark {
    align-items: center;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.brand-mark img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-left: 50px;
}

.brand-mark-login {
    align-items: center;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.brand-mark-login img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-left: 130px;
}

.brand-mark-cadastro {
    align-items: center;
    display: inline-flex;
    height: 34px;
    justify-content: center;
}

.brand-mark-cadastro img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.nav-links,
.nav-actions,
.hero-actions,
.landing-footer nav {
    align-items: center;
    display: flex;
    gap: 14px;
}

.nav-links {
    color: var(--muted);
    justify-content: center;
}

.nav-links a,
.landing-footer a {
    transition: color 0.2s ease;
}

.nav-links a:hover,
.landing-footer a:hover {
    color: var(--white);
}

.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    box-shadow: 0 14px 40px rgba(47, 129, 247, 0.32);
    color: var(--white);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-outline {
    border: 1px solid rgba(88, 166, 255, 0.42);
    color: var(--blue-2);
}

.btn-large {
    min-height: 50px;
    padding: 13px 20px;
}

.section-shell {
    margin: 0 auto;
    max-width: 1180px;
    padding: 92px 24px;
}

.hero {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    min-height: calc(100vh - 72px);
    padding-top: 76px;
}

.eyebrow {
    align-items: center;
    color: var(--blue-2);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.status-dot {
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.13);
    display: inline-block;
    height: 9px;
    width: 9px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.7rem);
    line-height: 0.98;
    margin-bottom: 24px;
    max-width: 780px;
}

.hero p,
.section-heading p {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 680px;
}

.hero-actions {
    flex-wrap: wrap;
    margin: 34px 0 28px;
}

.hero-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
}

.hero-metrics div,
.feature-card,
.price-card,
.faq-grid article,
.step,
.benefit-list div {
    background: linear-gradient(180deg, rgba(21, 30, 46, 0.86), rgba(17, 24, 39, 0.82));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
}

.hero-metrics div {
    padding: 16px;
}

.hero-metrics strong {
    display: block;
    font-size: 1.18rem;
}

.hero-metrics span,
.panel-card span,
.preview-table span,
.landing-footer,
.price-card p,
.faq-grid p,
.feature-card p {
    color: var(--muted);
}

.hero-visual {
    min-width: 0;
}

.panel-preview {
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(8, 13, 23, 0.96)),
        linear-gradient(135deg, rgba(47, 129, 247, 0.1), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(88, 166, 255, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-height: 460px;
    overflow: hidden;
    padding: 22px;
}

.panel-top {
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 8px;
    margin: -22px -22px 22px;
    padding: 18px 22px;
}

.panel-top span {
    background: #334155;
    border-radius: 999px;
    height: 10px;
    width: 10px;
}

.panel-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-card {
    min-height: 132px;
    padding: 18px;
}

.panel-card strong {
    display: block;
    font-size: 1.35rem;
    margin-top: 10px;
}

.panel-card.online strong {
    color: var(--green);
}

.panel-card.wide {
    grid-column: 1 / -1;
}

.preview-table {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 18px;
    overflow: hidden;
}

.preview-table div {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.preview-table div:last-child {
    border-bottom: 0;
}

.section-heading {
    margin-bottom: 32px;
    max-width: 760px;
}

.section-heading h2,
.split-section h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

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

.feature-card,
.price-card,
.faq-grid article {
    padding: 22px;
}

.icon {
    align-items: center;
    background: rgba(47, 129, 247, 0.14);
    border: 1px solid rgba(88, 166, 255, 0.24);
    border-radius: 8px;
    color: var(--blue-2);
    display: inline-flex;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    margin-bottom: 16px;
    width: 38px;
}

.how {
    padding-top: 54px;
}

.steps {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.step {
    min-height: 132px;
    padding: 18px;
    position: relative;
}

.step span {
    align-items: center;
    background: var(--blue);
    border-radius: 999px;
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-bottom: 18px;
    width: 34px;
}

.step.done span {
    background: var(--green);
}

.step.done span::before {
    content: "";
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    height: 12px;
    transform: rotate(45deg);
    width: 7px;
}

.split-section {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
}

.benefit-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-list div {
    padding: 16px 18px;
}

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

.price-card {
    min-height: 260px;
}

.price-card.featured {
    border-color: rgba(88, 166, 255, 0.55);
    box-shadow: 0 20px 70px rgba(47, 129, 247, 0.18);
}

.price-card strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.faq-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-footer {
    align-items: center;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto auto;
    padding: 28px clamp(20px, 5vw, 72px);
}

.landing-footer nav {
    justify-content: center;
}

.auth-page {
    min-height: 100vh;
}

.auth-shell {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 18px;
}

.auth-card {
    background:
        linear-gradient(180deg, rgba(21, 30, 46, 0.94), rgba(10, 15, 25, 0.96)),
        linear-gradient(135deg, rgba(47, 129, 247, 0.1), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 460px;
    padding: clamp(26px, 5vw, 38px);
    width: 100%;
}

.auth-card-wide {
    max-width: 920px;
}

.auth-brand {
    margin-bottom: 34px;
}

.auth-heading h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.05;
    margin-bottom: 12px;
}

.auth-heading p {
    color: var(--muted);
    margin-bottom: 24px;
}

.auth-message {
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 13px 14px;
}

.auth-message.info {
    background: rgba(47, 129, 247, 0.12);
    border: 1px solid rgba(88, 166, 255, 0.28);
    color: #cfe5ff;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
}

.auth-message.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

.auth-form input {
    background: rgba(7, 10, 15, 0.78);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    min-height: 48px;
    outline: none;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-check {
    align-items: flex-start;
    color: var(--muted);
    display: flex;
    gap: 10px;
    line-height: 1.35;
    margin-top: 6px;
}

.auth-check input {
    accent-color: var(--blue);
    height: 18px;
    margin-top: 1px;
    min-height: 0;
    width: 18px;
}

.auth-check span {
    color: var(--muted);
    font-weight: 700;
}

.auth-form input:focus {
    border-color: rgba(88, 166, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(47, 129, 247, 0.16);
}

.auth-submit {
    border: 0;
    margin-top: 14px;
    width: 100%;
}

.auth-links {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
}

.auth-links a {
    color: var(--blue-2);
    font-weight: 700;
}

.auth-links a:hover {
    color: var(--white);
}

.profile-box {
    background: rgba(7, 10, 15, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 18px;
    margin-bottom: 10px;
}

.profile-box span,
.profile-box small {
    color: var(--muted);
}

.profile-box strong {
    font-size: 1.35rem;
}

.muted-text {
    color: var(--muted);
    margin: 0;
}

.server-list {
    display: grid;
    gap: 10px;
    margin: 8px 0;
}

.server-list a {
    background: rgba(21, 30, 46, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 13px 14px;
}

.server-list a:hover {
    border-color: rgba(88, 166, 255, 0.42);
}

.wizard-shell {
    margin: 0 auto;
    max-width: 1080px;
    padding: 64px 20px 80px;
}

.wizard-card {
    background:
        linear-gradient(180deg, rgba(21, 30, 46, 0.94), rgba(10, 15, 25, 0.96)),
        linear-gradient(135deg, rgba(47, 129, 247, 0.1), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 38px);
}

.wizard-progress {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.wizard-progress li {
    align-items: center;
    background: rgba(7, 10, 15, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    color: var(--muted);
    display: flex;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 9px;
    min-height: 48px;
    padding: 10px;
}

.wizard-progress span {
    align-items: center;
    background: rgba(47, 129, 247, 0.18);
    border: 1px solid rgba(88, 166, 255, 0.26);
    border-radius: 999px;
    color: var(--blue-2);
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.wizard-form,
.wizard-step {
    display: grid;
    gap: 18px;
}

.wizard-step {
    background: rgba(7, 10, 15, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 8px;
    padding: clamp(18px, 3vw, 26px);
}

.wizard-step h2 {
    margin-bottom: 8px;
}

.wizard-step p {
    color: var(--muted);
    margin-bottom: 0;
}

.step-kicker {
    color: var(--blue-2);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.wizard-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-form label {
    color: var(--text);
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.wizard-form input,
.wizard-form select {
    background: rgba(7, 10, 15, 0.78);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    min-height: 48px;
    outline: none;
    padding: 12px 14px;
}

.wizard-form input:focus,
.wizard-form select:focus {
    border-color: rgba(88, 166, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(47, 129, 247, 0.16);
}

.generated-slug-field {
    display: grid;
    gap: 8px;
}

.generated-slug-field span {
    color: var(--text);
    font-weight: 800;
}

.generated-slug-field input[readonly] {
    color: var(--muted);
    cursor: default;
}

.review-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-grid div {
    background: rgba(21, 30, 46, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    display: grid;
    gap: 5px;
    padding: 14px;
}

.review-grid span {
    color: var(--muted);
}

.wizard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 1060px) {
    .landing-header {
        grid-template-columns: 1fr;
    }

    .nav-links,
    .nav-actions {
        justify-content: flex-start;
    }

    .hero,
    .split-section {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .landing-header {
        position: static;
    }

    .nav-links,
    .nav-actions,
    .hero-actions,
    .landing-footer,
    .landing-footer nav {
        align-items: stretch;
        flex-direction: column;
    }

    .nav-links,
    .nav-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-shell {
        padding: 64px 18px;
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .hero-metrics,
    .feature-grid,
    .steps,
    .benefit-list,
    .pricing-grid,
    .faq-grid,
    .wizard-progress,
    .wizard-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .panel-preview {
        min-height: 360px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .landing-footer {
        grid-template-columns: 1fr;
    }
}
