:root {
    --bg-main: #05050a;
    --bg-alt: #050816;
    --bg-elevated: rgba(15, 23, 42, 0.75);
    --bg-glass: rgba(15, 23, 42, 0.5);
    --border-glass: rgba(148, 163, 184, 0.4);

    --primary: #38bdf8;
    --primary-soft: rgba(56, 189, 248, 0.12);
    --accent-purple: #a855f7;
    --accent-blue: #0ea5e9;
    --accent-cyan: #22d3ee;

    --text-main: #e5e7eb;
    --text-soft: #9ca3af;
    --text-muted: #6b7280;
    --danger: #f97373;
    --success: #22c55e;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.85);
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.4);

    --transition-fast: 180ms ease-out;
    --transition-med: 260ms ease;
}

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

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0b1120 0, #020617 35%, #000000 100%);
    color: var(--text-main);
    line-height: 1.6;
}

/* Global layout */

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    padding: 96px 0 72px;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Futuristic background layers */

.bg-orbit {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.24), transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(168, 85, 247, 0.22), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(8, 47, 73, 0.9), #000000 65%);
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
    background-image:
        linear-gradient(to right, rgba(31, 41, 55, 0.7) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(31, 41, 55, 0.7) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.9), transparent 70%);
}

/* Glassmorphism card */

.card-glass {
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

/* Typography */

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(129, 140, 248, 0.16));
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.section-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle, #22d3ee 0, #0ea5e9 40%, transparent 80%);
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.7);
}

.h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 18px 0 14px;
}

.h1-gradient {
    background-image: linear-gradient(120deg, #e5e7eb 0, #a5b4fc 45%, #38bdf8 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.h3 {
    font-size: 1.1rem;
    margin: 0 0 6px;
}

.text-soft {
    color: var(--text-soft);
    font-size: 0.96rem;
}

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

/* Buttons */

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.94rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
    background-image: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.4), transparent 40%),
                      linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 0 60px rgba(56, 189, 248, 0.7);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(248, 250, 252, 0.8);
}

.btn-pill-soft {
    padding-inline: 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Badge */

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Top navigation */

.nav-shell {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
}

.nav-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.6);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.95);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    background: radial-gradient(circle at 20% 0, #e5e7eb 0, #38bdf8 40%, transparent 75%),
                radial-gradient(circle at 80% 100%, #a855f7 0, #1e293b 55%, #020617 100%);
    position: relative;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-orbit {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.85);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-subtitle {
    font-size: 0.7rem;
    color: var(--text-soft);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    position: relative;
    font-size: 0.86rem;
    color: var(--text-soft);
    text-decoration: none;
    padding: 6px 2px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.38), transparent 75%);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

.nav-link-active {
    color: #e5e7eb;
}

.nav-link-active::after {
    opacity: 1;
    transform: scale(1);
}

.nav-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.75);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, #22c55e 0, #047857 35%, transparent 80%);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 1);
    display: none;
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.dropdown-menu a span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: rgba(15, 23, 42, 0.98);
    color: var(--text-main);
    transform: translateY(-1px);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile nav */

.nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    position: relative;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle-bar::before {
    top: -6px;
}

.nav-toggle-bar::after {
    top: 6px;
}

.nav-open .nav-toggle-bar {
    background: transparent;
}

.nav-open .nav-toggle-bar::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-bar::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-panel {
    display: none;
}

.nav-mobile-panel.nav-mobile-visible {
    position: absolute;
    inset: 52px 0 auto;
    padding: 10px 18px 16px;
    border-radius: 26px;
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 1);
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    gap: 44px;
    align-items: center;
    margin-top: 40px;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-soft);
    max-width: 32rem;
}

.hero-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-metric strong {
    font-size: 1.1rem;
}

.hero-metric span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-orbit-shell {
    position: relative;
    min-height: 300px;
}

.hero-orbit {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px;
    border-radius: 34px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.38), transparent 45%),
                radial-gradient(circle at 85% 100%, rgba(129, 140, 248, 0.4), transparent 55%),
                rgba(15, 23, 42, 0.95);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 1);
    overflow: hidden;
}

.hero-orbit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-orbit-tag {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-soft);
}

.hero-orbit-pill {
    font-size: 0.74rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-orbit-core {
    position: relative;
    border-radius: 999px;
    padding: 18px;
    margin: 16px auto 10px;
    width: 210px;
    height: 210px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 10%, #e5e7eb 0, #38bdf8 30%, #0f172a 65%, #020617 100%);
    box-shadow:
        0 0 34px rgba(56, 189, 248, 0.8),
        inset 0 0 40px rgba(15, 23, 42, 0.9);
}

.hero-orbit-core-inner {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #e5e7eb 0, #f97316 40%, transparent 75%),
                radial-gradient(circle at 80% 80%, #a855f7 0, transparent 70%);
    box-shadow:
        0 0 32px rgba(248, 250, 252, 0.7),
        0 0 60px rgba(249, 115, 22, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-orbit-core-inner span:first-child {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.9);
}

.hero-orbit-core-inner span:last-child {
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.92);
}

.hero-orbit-ring {
    position: absolute;
    inset: 12px;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    opacity: 0.8;
}

.hero-orbit-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.hero-orbit-pillars-item {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.76rem;
}

.hero-orbit-pillars-item strong {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.hero-orbit-pillars-item span {
    color: var(--text-muted);
}

.hero-orbit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* Sections */

.section {
    margin-top: 80px;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-header-main {
    max-width: 520px;
}

.section-header-side {
    max-width: 340px;
}

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

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

/* Feature cards */

.feature-card {
    position: relative;
    padding: 16px 16px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.1), transparent 55%),
                rgba(15, 23, 42, 0.96);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 1);
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: rgba(248, 250, 252, 0.9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.1));
    box-shadow: 0 0 22px rgba(59, 130, 246, 0.9);
    font-size: 0.9rem;
}

.feature-badge {
    font-size: 0.74rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-soft);
}

/* Stats strip */

.stats-strip {
    margin-top: 34px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.13), transparent 50%),
                radial-gradient(circle at 100% 0, rgba(129, 140, 248, 0.12), transparent 55%),
                rgba(15, 23, 42, 0.96);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.stats-strip-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.stats-strip-item strong {
    font-size: 1rem;
}

.stats-strip-item span {
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* Pricing */

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

.pricing-card {
    position: relative;
    padding: 18px 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.75);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
    box-shadow: 0 24px 75px rgba(15, 23, 42, 0.98);
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 65%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 250, 252, 0.92);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 4px 0;
}

.pricing-period {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.pricing-meta {
    font-size: 0.86rem;
    color: var(--text-soft);
    margin: 4px 0 10px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 14px;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.pricing-list li::before {
    content: "●";
    font-size: 0.6rem;
    margin-top: 4px;
    color: var(--accent-cyan);
}

/* Blog */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.blog-card {
    padding: 14px 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.12), transparent 55%),
                rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 1);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 250, 252, 0.92);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 1);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-tag {
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.94);
}

/* Forms */

.form-card {
    padding: 20px 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 65%),
                rgba(15, 23, 42, 0.98);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 1);
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.84rem;
}

.form-field label {
    color: var(--text-soft);
}

.form-input,
.form-textarea,
.form-select {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.96);
    color: var(--text-main);
    padding: 10px 11px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.98);
    transform: translateY(-1px);
}

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

.form-helper {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form-status {
    margin-top: 12px;
    font-size: 0.86rem;
}

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

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

/* Legal content */

.legal-card {
    padding: 22px 22px 26px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.15), transparent 55%),
                rgba(15, 23, 42, 0.98);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 1);
}

.legal-section {
    margin-top: 18px;
}

.legal-section h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.legal-section p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Footer */

.footer {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    background: linear-gradient(to top, #020617, rgba(2, 6, 23, 0.98));
    padding: 20px 0 24px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Scroll animations */

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 320ms ease-out, transform 320ms ease-out;
}

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

/* Page headers */

.page-header {
    margin-top: 40px;
    margin-bottom: 26px;
}

.page-header-meta {
    margin-top: 8px;
    color: var(--text-soft);
    max-width: 540px;
    font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 960px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-orbit-shell {
        order: -1;
    }

    .section-grid-3,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-center,
    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-mobile-panel {
        display: block;
    }
}

@media (max-width: 700px) {
    .section-grid-3,
    .pricing-grid,
    .blog-grid,
    .section-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .page-main {
        padding-top: 88px;
    }

    .section {
        margin-top: 64px;
    }

    .hero {
        gap: 28px;
        margin-top: 32px;
    }

    .stats-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}
