:root {
    --bg: #08111f;
    --panel: rgba(10, 22, 39, 0.86);
    --panel-solid: #0f1d33;
    --panel-light: #132544;
    --text: #ecf3ff;
    --muted: #98abc8;
    --line: rgba(138, 170, 219, 0.18);
    --brand: #65b8ff;
    --brand-strong: #318cff;
    --accent: #66e0b3;
    --danger: #ff8f8f;
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(53, 132, 255, 0.25), transparent 35%),
        radial-gradient(circle at top right, rgba(102, 224, 179, 0.14), transparent 28%),
        linear-gradient(180deg, #07101d 0%, #0a1425 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.4;
}

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

.page-shell {
    position: relative;
    z-index: 1;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(8, 17, 31, 0.72);
    border-bottom: 1px solid var(--line);
}

.nav-row,
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.brand,
.footer-brand {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
}

.brand-text {
    display: inline-block;
    font-size: 1.25rem;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
}

.hero-section,
.section {
    padding: 5rem 0;
}

.hero-centered {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-centered h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.02;
    margin: 0;
    letter-spacing: -0.04em;
}

.hero-centered .hero-text {
    max-width: 600px;
    margin: 0;
}

.hero-steps-card {
    width: 100%;
    padding: 1.6rem 2rem;
    text-align: left;
}

.steps-label {
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.steps-list {
    margin: 0;
    padding: 0 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--text);
    line-height: 1.6;
}

.steps-list li::marker {
    color: var(--accent);
    font-weight: 700;
}

.hero-text,
.section-heading p,
.card p,
.footer-copy,
.helper-text,
.result-meta,
.panel-note,
.empty-note {
    color: var(--muted);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    margin: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand);
    background: rgba(101, 184, 255, 0.12);
    border: 1px solid rgba(101, 184, 255, 0.2);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(49, 140, 255, 0.28);
}

.button-secondary {
    background: transparent;
    border: 1px solid var(--line);
    box-shadow: none;
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.card {
    background: linear-gradient(180deg, rgba(19, 37, 68, 0.88) 0%, rgba(11, 23, 41, 0.88) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel,
.feature-card,
.pricing-card,
.form-card,
.result-card,
.empty-state,
.next-steps-card,
.summary-card {
    padding: 1.6rem;
}

.mini-badge,
.pill {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(102, 224, 179, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    border: 1px solid rgba(102, 224, 179, 0.18);
}

.check-list,
.result-meta {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.check-list li,
.result-meta li {
    margin-bottom: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.stats-grid,
.feature-grid,
.pricing-grid,
.summary-grid,
.results-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.stat-card {
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(11, 23, 41, 0.58);
}

.stat-card strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2,
.hero-panel h2,
.next-steps-card h2 {
    margin: 0.8rem 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.section-alt {
    background: rgba(6, 13, 24, 0.55);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.feature-index,
.plan-name,
.summary-card span {
    color: var(--brand);
    font-weight: 700;
}

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

.pricing-card-featured {
    border-color: rgba(101, 184, 255, 0.4);
    transform: translateY(-6px);
}

.plan-quantity,
.plan-description {
    margin: 0.4rem 0 0;
}

.form-card {
    padding: 2rem;
}

.submission-form {
    display: grid;
    gap: 1.75rem;
}

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

.field-wrap {
    display: grid;
    gap: 0.5rem;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.or-divider span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

label {
    font-weight: 600;
}

.form-control,
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(138, 170, 219, 0.22);
    background: rgba(5, 13, 24, 0.6);
    color: var(--text);
    font: inherit;
}

.form-control::placeholder,
textarea::placeholder {
    color: var(--muted);
    opacity: 1;
}

input[type="file"] {
    padding: 0.8rem 1rem;
}

textarea {
    resize: vertical;
}

.form-errors,
.field-error {
    color: var(--danger);
    margin: 0;
}

/* Terms of service checkbox */
.terms-wrap {
    margin-top: .5rem;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1;
}

.terms-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--brand-strong);
    cursor: pointer;
}

.terms-link {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.optional {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.85em;
}

.choice-card {
    position: relative;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.choice-content {
    display: grid;
    gap: 0.35rem;
    height: 100%;
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(7, 16, 29, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover .choice-content {
    border-color: rgba(101, 184, 255, 0.42);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(49, 140, 255, 0.12);
}

.choice-card input:checked + .choice-content {
    border-color: var(--brand-strong);
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(49, 140, 255, 0.3), 0 14px 34px rgba(49, 140, 255, 0.28);
    background: linear-gradient(180deg, rgba(18, 40, 73, 0.9), rgba(9, 19, 35, 0.88));
}

.choice-card input:checked + .choice-content::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #041222;
    background: var(--accent);
    box-shadow: 0 6px 16px rgba(102, 224, 179, 0.4);
}

.choice-content strong {
    font-size: 1.05rem;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.card-price-money {
    font-size: 0.95rem;
}

.plans-subtitle {
    color: var(--muted);
    font-size: 0.75rem;
    margin: -0.1rem 0 0.8rem;
    text-align: left;
}

.choice-content small {
    color: var(--muted);
    line-height: 1.5;
}

.choice-card input:checked + .choice-content strong,
.choice-card input:checked + .choice-content .card-price {
    color: #ffffff;
}

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

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

.result-link,
.full-width {
    display: inline-flex;
    margin-top: 1rem;
}

.full-width {
    width: 100%;
}

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

@media (max-width: 1080px) {
    .feature-grid,
    .pricing-grid,
    .plan-card-grid,
    .summary-grid,
    .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .nav-row,
    .footer-row,
    .nav-links,
    .hero-actions,
    .form-actions,
    .result-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-grid,
    .pricing-grid,
    .form-grid,
    .plan-card-grid,
    .summary-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .section {
        padding: 4rem 0;
    }
}
