/* ==========================================================================
   kidbomba.space — Dark Neon Purple Theme
   ========================================================================== */

:root {
    --bg: #0a0812;
    --bg-alt: #0e0b1a;
    --surface: #141021;
    --surface-2: #1a1529;
    --border: rgba(168, 130, 255, 0.14);
    --border-strong: rgba(168, 130, 255, 0.32);

    --text: #f2eefc;
    --text-muted: #a79fc2;
    --text-faint: #6f678e;

    --primary: #a855f7;
    --primary-bright: #c084fc;
    --primary-deep: #7c3aed;
    --glow: rgba(168, 85, 247, 0.45);
    --glow-soft: rgba(168, 85, 247, 0.18);

    --success: #34d399;
    --danger: #f87171;

    --radius: 16px;
    --radius-sm: 10px;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', var(--font-body);
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --container: 1160px;
    --nav-height: 72px;
}

/* ---------- Reset ---------- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg {
    display: inline-block;
    vertical-align: middle;
}

a {
    color: var(--primary-bright);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #e2c9ff;
}

.container {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
}

.container-narrow {
    width: min(800px, 100% - 3rem);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: #fff;
    box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.35), 0 8px 28px -8px var(--glow);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.55), 0 12px 36px -6px var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--glow-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 0.65rem 1rem;
}

.btn-ghost:hover {
    color: var(--text);
    background: var(--glow-soft);
}

.btn-lg {
    padding: 0.9rem 1.9rem;
    font-size: 1.02rem;
}

.btn-block {
    width: 100%;
}

/* ---------- Navigation ---------- */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(10, 8, 18, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: #fff;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    box-shadow: 0 0 18px var(--glow);
}

.nav-links {
    display: flex;
    gap: 0.35rem;
}

.nav-links a {
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.93rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--glow-soft);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    padding: calc(var(--nav-height) + 4.5rem) 0 5.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: orb-float 14s ease-in-out infinite alternate;
}

.orb-1 {
    top: -140px;
    left: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--primary-deep), transparent 70%);
}

.orb-2 {
    top: 10%;
    right: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #4c1d95, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    bottom: -200px;
    left: 35%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #6d28d9, transparent 70%);
    animation-delay: -9s;
    opacity: 0.35;
}

@keyframes orb-float {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(40px, 30px, 0) scale(1.12); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary-bright);
    font-size: 0.82rem;
    font-weight: 500;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.hero h1 {
    margin: 1.4rem 0 1.2rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.2vw, 3.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(92deg, #c084fc 0%, #a855f7 45%, #7dd3fc 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.hero-sub strong {
    color: var(--primary-bright);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2.1rem 0 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 1.8rem;
    justify-content: start;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ---------- Hero terminal ---------- */

.hero-visual {
    position: relative;
}

.terminal {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: rgba(13, 10, 24, 0.9);
    box-shadow: 0 24px 70px -18px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    animation: terminal-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes terminal-in {
    from { opacity: 0; transform: translateY(28px) rotate(1.2deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0); }
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 21, 41, 0.85);
    border-bottom: 1px solid var(--border);
}

.term-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green { background: #28c840; }

.term-title {
    margin-left: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-faint);
}

.terminal-body {
    padding: 1.25rem 1.35rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    line-height: 1.9;
}

.term-line {
    white-space: nowrap;
    overflow: hidden;
}

.term-prompt {
    color: var(--primary-bright);
    font-weight: 500;
    margin-right: 0.5rem;
}

.term-out {
    color: var(--text-muted);
}

.term-ok {
    color: var(--success);
}

.term-cursor {
    display: inline-block;
    width: 9px;
    height: 1.05em;
    margin-left: 2px;
    background: var(--primary-bright);
    vertical-align: text-bottom;
    animation: blink 1.1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.1rem;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: rgba(20, 16, 33, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.6);
}

.float-card strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.float-card small {
    font-size: 0.75rem;
    color: var(--text-faint);
}

.float-icon {
    font-size: 1.3rem;
}

.card-latency {
    top: -26px;
    right: -14px;
    animation: bob 5s ease-in-out infinite;
}

.card-uptime {
    bottom: -26px;
    left: -14px;
    animation: bob 5s ease-in-out infinite 1.6s;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
    border-block: 1px solid var(--border);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 3.2rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: var(--glow-soft);
    color: var(--primary-bright);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.section-head p {
    margin-top: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Features ---------- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.feature-card {
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--surface), rgba(20, 16, 33, 0.4));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 44px -18px var(--glow);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    border-radius: 12px;
    color: var(--primary-bright);
    background: var(--glow-soft);
    border: 1px solid var(--border-strong);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ---------- Pricing ---------- */

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    width: fit-content;
    margin: 0 auto 3rem;
    padding: 0.35rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.billing-option {
    padding: 0.5rem 1.4rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.billing-option.active {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: #fff;
    box-shadow: 0 4px 18px -4px var(--glow);
}

.billing-save {
    margin-left: 0.35rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
    font-size: 0.72rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--surface), rgba(20, 16, 33, 0.35));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
}

.price-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, #1d1330, #140f24);
    box-shadow: 0 0 0 1px var(--primary), 0 26px 64px -20px var(--glow);
}

.price-card.popular:hover {
    transform: translateY(-5px);
}

.price-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.28rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 20px -6px var(--glow);
}

.price-head h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.price-head p {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-faint);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-top: 1.4rem;
}

.currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-bright);
}

.amount {
    font-family: var(--font-display);
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.period {
    color: var(--text-faint);
    font-size: 0.95rem;
}

.price-note {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-faint);
}

.price-specs {
    list-style: none;
    margin: 1.6rem 0;
    padding: 1.4rem 0;
    border-block: 1px solid var(--border);
    display: grid;
    gap: 0.65rem;
    flex: 1;
}

.price-specs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-specs svg {
    color: var(--primary-bright);
    flex-shrink: 0;
}

.pricing-footnote {
    margin-top: 2.4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-footnote strong {
    color: var(--success);
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--surface), rgba(20, 16, 33, 0.35));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.stars {
    display: flex;
    gap: 0.15rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    flex: 1;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.avatar {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-card figcaption strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-card figcaption small {
    color: var(--text-faint);
    font-size: 0.78rem;
}

/* ---------- FAQ ---------- */

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    font-weight: 600;
    font-size: 0.97rem;
    cursor: pointer;
    list-style: none;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--primary-bright);
}

.faq-chevron {
    color: var(--primary-bright);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.35rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Contact ---------- */

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.contact-copy > p {
    color: var(--text-muted);
}

.contact-channels {
    list-style: none;
    display: grid;
    gap: 1.1rem;
    margin-top: 2.2rem;
}

.contact-channels li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glow-soft);
    border: 1px solid var(--border-strong);
    font-size: 1.2rem;
}

.contact-channels strong {
    display: block;
    font-size: 0.88rem;
}

.contact-channels a,
.contact-channels span:not(.channel-icon) {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--surface), rgba(20, 16, 33, 0.4));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.form-field label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(10, 8, 18, 0.6);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-faint);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-soft);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a79fc2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    cursor: pointer;
}

.form-field select option {
    background: var(--surface);
    color: var(--text);
}

.form-field input.invalid,
.form-field textarea.invalid {
    border-color: var(--danger);
}

.form-status {
    margin-top: 0.9rem;
    font-size: 0.87rem;
    text-align: center;
    min-height: 1.3em;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--danger);
}

/* ---------- Footer ---------- */

.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 3.6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1.1rem;
    max-width: 300px;
    font-size: 0.87rem;
    color: var(--text-faint);
}

.footer-col {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-faint);
}

.footer-col a:hover {
    color: var(--primary-bright);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-faint);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }

    .hero-visual {
        max-width: 560px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 760px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0.8rem 1.4rem 1.2rem;
        background: rgba(10, 8, 18, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 2.4rem;
    }

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

    .float-card {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
