:root {
    --bg: #07111f;
    --bg-elevated: rgba(11, 22, 39, 0.9);
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fbff;
    --muted: #a4b4c9;
    --soft: #d8e2f1;
    --blue: #5ab0ff;
    --violet: #8f7dff;
    --pink: #ff83bb;
    --green: #61e0c7;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(90, 176, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 131, 187, 0.14), transparent 25%),
        linear-gradient(180deg, #0b1527 0%, #07111f 55%, #040a14 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
}

body::before {
    top: -7rem;
    left: -10rem;
    background: rgba(90, 176, 255, 0.3);
}

body::after {
    right: -10rem;
    bottom: -8rem;
    background: rgba(143, 125, 255, 0.24);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
    padding: 1.2rem 0;
}

.site-nav.scrolled,
.site-nav.menu-open {
    background: rgba(6, 13, 24, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.nav-inner,
.footer-inner,
.section-inner,
.hero-inner {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.logo-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(90, 176, 255, 0.95), rgba(143, 125, 255, 0.95), rgba(255, 131, 187, 0.92));
    box-shadow: 0 12px 30px rgba(90, 176, 255, 0.32);
    position: relative;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
}

.logo-mark::before {
    width: 1rem;
    height: 0.18rem;
    left: 0.7rem;
    top: 1.1rem;
}

.logo-mark::after {
    width: 0.18rem;
    height: 1rem;
    left: 1.1rem;
    top: 0.7rem;
}

.logo-text {
    background: linear-gradient(90deg, #f8fbff 0%, #8ecaff 55%, #c0b0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(90, 176, 255, 0.18), rgba(143, 125, 255, 0.16));
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 0.12rem;
    margin: 0.22rem auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.menu-open .menu-toggle span {
    opacity: 0;
}

.site-nav.menu-open .menu-toggle::before {
    transform: translateY(0.34rem) rotate(45deg);
}

.site-nav.menu-open .menu-toggle::after {
    transform: translateY(-0.34rem) rotate(-45deg);
}

main {
    padding-top: 6.3rem;
}

.hero {
    position: relative;
    padding: 3rem 0 2rem;
}

.hero-inner {
    display: grid;
    gap: 1.75rem;
}

.hero-panel,
.glass-card,
.split-panel,
.cta-band,
.redirect-card,
.form-shell,
.comparison-grid,
.faq-grid article,
.spotlight-card,
.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: clamp(2rem, 4vw, 3.4rem);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 131, 187, 0.16), transparent 26%),
        radial-gradient(circle at bottom left, rgba(90, 176, 255, 0.18), transparent 30%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(90, 176, 255, 0.18), rgba(143, 125, 255, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--soft);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.page-title {
    margin: 1rem 0 1rem;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #7bc1ff 35%, #b8a2ff 72%, #ffb3d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lede,
.page-subtitle {
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    max-width: 42rem;
}

.button-row,
.meta-row,
.stack,
.tag-row,
.inline-list,
.stat-grid,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.35rem;
    padding: 0.85rem 1.35rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #07111f;
    background: linear-gradient(135deg, #72c6ff 0%, #7ca6ff 45%, #b695ff 100%);
    box-shadow: 0 18px 40px rgba(90, 176, 255, 0.28);
}

.button--secondary {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.button--ghost {
    color: var(--soft);
    border-color: rgba(90, 176, 255, 0.22);
    background: rgba(90, 176, 255, 0.07);
}

.hero-aside,
.spotlight-card,
.contact-card {
    padding: 1.4rem;
}

.hero-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.stat-grid {
    margin-top: 2rem;
}

.stat {
    min-width: 10rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 1.2rem 0 3rem;
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 44rem;
}

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

.card-grid > * {
    grid-column: span 4;
}

.card-grid--two > * {
    grid-column: span 6;
}

.glass-card {
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: auto 1.2rem 1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(90, 176, 255, 0.3), transparent);
}

.glass-card h3,
.split-panel h3,
.spotlight-card h3,
.contact-card h3,
.faq-grid h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
}

.glass-card p,
.split-panel p,
.spotlight-card p,
.contact-card p,
.faq-grid p,
.list-checks li,
.timeline-copy p,
.comparison-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.icon-badge {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(90, 176, 255, 0.18), rgba(143, 125, 255, 0.24));
    color: var(--blue);
}

.icon-badge svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.stack span,
.tag-row span,
.inline-list span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--soft);
    font-size: 0.9rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: 1rem;
}

.split-panel {
    padding: 1.6rem;
}

.spotlight-list {
    display: grid;
    gap: 1rem;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(90, 176, 255, 0.08));
    pointer-events: none;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(90, 176, 255, 0.45), rgba(143, 125, 255, 0.1));
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 1.4rem;
    left: 0.34rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 0 0 6px rgba(90, 176, 255, 0.12);
}

.timeline-copy {
    padding: 1.35rem 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-copy strong {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--soft);
}

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

.plan {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
    position: relative;
}

.plan--featured {
    border-color: rgba(114, 198, 255, 0.36);
    transform: translateY(-0.2rem);
}

.plan-label {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(97, 224, 199, 0.12);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 1rem 0;
}

.price strong {
    font-size: 2.4rem;
    line-height: 1;
}

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

.list-checks {
    list-style: none;
    margin: 1rem 0 1.3rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.list-checks li {
    position: relative;
    padding-left: 1.6rem;
}

.list-checks li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--pink));
}

.comparison-grid,
.faq-grid,
.contact-layout {
    display: grid;
    gap: 1rem;
}

.comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 1.4rem;
}

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

.faq-grid article {
    padding: 1.35rem;
}

.cta-band {
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
    align-items: center;
}

.cta-band h2,
.cta-band p {
    margin: 0;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-card,
.form-shell {
    padding: 1.45rem;
}

.contact-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-point {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-point strong,
.detail-list strong {
    display: block;
    margin-bottom: 0.35rem;
}

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

.field {
    display: grid;
    gap: 0.45rem;
}

.field--full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.92rem;
    color: var(--soft);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0.95rem 1rem;
    font: inherit;
    resize: vertical;
    min-height: 3.25rem;
}

textarea {
    min-height: 10rem;
}

input::placeholder,
textarea::placeholder {
    color: #89a0bd;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(90, 176, 255, 0.35);
    border-color: rgba(90, 176, 255, 0.35);
}

select option {
    color: #111827;
    background: #ffffff;
}

.form-note,
.meta-copy,
.detail-list p {
    color: var(--muted);
    line-height: 1.7;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.1rem;
}

.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    max-width: 24rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(6, 13, 24, 0.92);
    border: 1px solid rgba(90, 176, 255, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast[data-tone="success"] {
    border-color: rgba(97, 224, 199, 0.32);
}

.toast[data-tone="error"] {
    border-color: rgba(255, 131, 187, 0.34);
}

.redirect-main {
    min-height: calc(100vh - 18rem);
    display: grid;
    place-items: center;
    padding-bottom: 3rem;
}

.redirect-card {
    width: min(calc(100% - 2rem), 40rem);
    padding: 2rem;
}

.site-footer {
    padding: 1rem 0 3rem;
}

.footer-inner {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-grid h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    text-decoration: none;
    line-height: 1.8;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-layout,
    .comparison-grid,
    .faq-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .card-grid > *,
    .card-grid--two > * {
        grid-column: span 6;
    }

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

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        padding: 0.75rem;
        background: rgba(6, 13, 24, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.5rem);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-links a {
        justify-content: flex-start;
        width: 100%;
    }

    .site-nav.menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .card-grid > *,
    .card-grid--two > * {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    main {
        padding-top: 5.6rem;
    }

    .hero-panel,
    .glass-card,
    .split-panel,
    .cta-band,
    .contact-card,
    .form-shell,
    .plan,
    .spotlight-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .button,
    .button-row .button {
        width: 100%;
    }

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

    .stat {
        width: 100%;
    }
}
