/* ─── Design tokens ─── */
:root {
    --bg: #06080c;
    --bg-elevated: #0c1018;
    --bg-card: rgba(14, 18, 28, 0.72);
    --text: #f0f2f8;
    --text-muted: #8b95a8;
    --text-dim: #5c6578;
    --teal: #5eead4;
    --teal-dim: rgba(94, 234, 212, 0.12);
    --indigo: #818cf8;
    --indigo-dim: rgba(129, 140, 248, 0.12);
    --amber: #fbbf24;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --glass: rgba(255, 255, 255, 0.03);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: "Outfit", system-ui, sans-serif;
    --font-display: "Instrument Serif", Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 64px;
    --section-y: 56px;
    --section-head-gap: 32px;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* ─── Ambient background ─── */
.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orb-drift 20s var(--ease) infinite alternate;
}

.orb-1 {
    width: 55vw;
    height: 55vw;
    max-width: 600px;
    max-height: 600px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.35) 0%, transparent 70%);
}

.orb-2 {
    width: 45vw;
    height: 45vw;
    max-width: 500px;
    max-height: 500px;
    top: 20%;
    right: -15%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.3) 0%, transparent 70%);
    animation-delay: -7s;
}

.orb-3 {
    width: 35vw;
    height: 35vw;
    bottom: -10%;
    left: 30%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    animation-delay: -14s;
}

@keyframes orb-drift {
    to { transform: translate(3%, 5%) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    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: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Nav ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-nav.scrolled {
    background: rgba(6, 8, 12, 0.82);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.brand-text {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-text em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-inline: auto;
}

.nav-center a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.nav-center a:hover {
    color: var(--text);
    background: var(--glass);
}

.nav-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: auto;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin-inline: auto;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    color: #06080c;
    background: linear-gradient(135deg, var(--teal) 0%, #99f6e4 50%, var(--indigo) 100%);
    background-size: 200% 200%;
    box-shadow:
        0 0 0 1px rgba(94, 234, 212, 0.2),
        0 8px 32px rgba(94, 234, 212, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-position: 100% 100%;
    box-shadow:
        0 0 0 1px rgba(94, 234, 212, 0.35),
        0 12px 40px rgba(94, 234, 212, 0.28);
}

.btn-glass {
    color: var(--text);
    background: var(--glass);
    border-color: var(--border);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-h) + 28px) 0 40px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 32px 40px;
    align-items: center;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 5px 12px 5px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 12px var(--teal);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero h1 .line {
    display: block;
}

.hero h1 .accent {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal) 0%, var(--indigo) 60%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    margin: 0 0 22px;
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Mockup */
.hero-visual {
    position: relative;
}

.mockup-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(94, 234, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.mockup {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 40px 80px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: mockup-float 6s var(--ease) infinite alternate;
}

@keyframes mockup-float {
    to { transform: translateY(-8px); }
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--border);
}

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

.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.mockup-title {
    margin-left: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.mockup-body {
    display: grid;
    grid-template-columns: 168px 1fr;
    min-height: 220px;
}

.mockup-sidebar {
    padding: 12px;
    border-right: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
}

.sidebar-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 12px;
    padding-left: 4px;
}

.peer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
    margin-bottom: 6px;
    transition: background 0.2s;
}

.peer-active {
    background: var(--teal-dim);
    border: 1px solid rgba(94, 234, 212, 0.2);
}

.peer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--indigo));
    color: #06080c;
    flex-shrink: 0;
}

.peer-avatar-2 { background: linear-gradient(135deg, #a5b4fc, #6366f1); }
.peer-avatar-3 { background: linear-gradient(135deg, #fcd34d, #f59e0b); }

.peer strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

.peer small {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.peer-status {
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 8px var(--teal);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.mockup-main {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drop-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 88px;
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius);
    color: var(--text-dim);
    font-size: 0.8rem;
}

.transfer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.transfer-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--indigo-dim);
    color: var(--indigo);
}

.transfer-meta {
    flex: 1;
    min-width: 0;
}

.transfer-meta strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-meta span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.transfer-ring {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.transfer-ring svg {
    width: 100%;
    height: 100%;
}

/* Float cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    animation: float-card 5s var(--ease) infinite alternate;
}

.float-card-1 {
    top: 8%;
    right: -8%;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 12%;
    left: -6%;
    animation-delay: -2.5s;
}

@keyframes float-card {
    to { transform: translateY(-6px); }
}

/* Metrics */
.hero-metrics {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 24px;
    margin-top: 8px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── Language switch ─── */
.lang-switch {
    display: flex;
    padding: 3px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.lang-btn {
    padding: 6px 12px;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

/* ─── Pricing ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.pricing-card-featured {
    border-color: rgba(94, 234, 212, 0.35);
    background:
        linear-gradient(180deg, rgba(94, 234, 212, 0.06) 0%, transparent 40%),
        var(--bg-card);
    box-shadow: 0 16px 48px -12px rgba(94, 234, 212, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--indigo);
    background: var(--indigo-dim);
    border-radius: 999px;
}

.pricing-badge-best {
    color: var(--teal);
    background: var(--teal-dim);
}

.pricing-name {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.pricing-amount {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dim);
}

.pricing-equiv {
    margin: 0 0 12px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.pricing-save {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.pricing-off {
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-dim);
    border-radius: 6px;
}

.pricing-save-amt {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.45;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.7;
}

.pricing-cta {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    margin: 20px 0 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 520px;
    margin-inline: auto;
}

.section-head-center h2 .accent-text {
    display: inline;
}

/* ─── Sections ─── */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-y) 0;
}

.section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 24, 0.6) 50%, transparent 100%);
}

.section-head {
    margin-bottom: var(--section-head-gap);
    max-width: 560px;
}

.section-head-center {
    margin-inline: auto;
    text-align: center;
    max-width: 480px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.section-head h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.accent-text {
    font-style: italic;
    color: var(--teal);
}

.section-head p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Bento grid */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.4);
}

.bento-large {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.bento-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background: var(--teal-dim);
    color: var(--teal);
}

.bento-wide .bento-icon { margin-bottom: 0; }

.bento-icon-teal { background: var(--teal-dim); color: var(--teal); }
.bento-icon-indigo { background: var(--indigo-dim); color: var(--indigo); }
.bento-icon-amber { background: rgba(251, 191, 36, 0.12); color: var(--amber); }

.bento-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bento-card p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.platform-tags span {
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.speed-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 48px;
}

.speed-bars span {
    width: 8px;
    height: var(--h);
    border-radius: 4px;
    background: linear-gradient(180deg, var(--teal), var(--indigo));
    opacity: 0.7;
    animation: bar-pulse 2s var(--ease) infinite alternate;
}

.speed-bars span:nth-child(2) { animation-delay: 0.15s; }
.speed-bars span:nth-child(3) { animation-delay: 0.3s; }
.speed-bars span:nth-child(4) { animation-delay: 0.45s; }
.speed-bars span:nth-child(5) { animation-delay: 0.6s; }

@keyframes bar-pulse {
    to { opacity: 1; transform: scaleY(1.08); transform-origin: bottom; }
}

/* Timeline */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), var(--teal), var(--border-hover), transparent);
}

.timeline-step {
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.timeline-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--teal);
    background: var(--teal-dim);
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 14px;
}

.timeline-step h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-step p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
}

.section-cta {
    text-align: center;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: rgba(94, 234, 212, 0.2);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-dim);
    transition: transform 0.3s var(--ease);
}

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

.faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* CTA final */
.cta-final {
    position: relative;
    z-index: 1;
    padding: 0 0 var(--section-y);
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 44px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cta-card-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(94, 234, 212, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 20%, rgba(129, 140, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h2 {
    position: relative;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
}

.cta-card p {
    position: relative;
    margin: 0 0 22px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
}

.cta-card .btn { position: relative; }

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 28px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.brand-footer .brand-mark {
    width: 36px;
    height: 36px;
}

.brand-footer .brand-mark img {
    width: 24px;
    height: 24px;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    :root {
        --section-y: 48px;
        --section-head-gap: 28px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        max-width: none;
        text-align: center;
        margin-inline: auto;
    }

    .hero-eyebrow { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 520px; margin-inline: auto; }

    .float-card-1 { right: 0; }
    .float-card-2 { left: 0; }

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

    .bento-large { grid-row: span 1; }
    .bento-wide { grid-column: span 2; }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-y: 40px;
        --section-head-gap: 24px;
    }

    .hero {
        padding-top: calc(var(--nav-h) + 20px);
        padding-bottom: 32px;
    }
    .nav-center {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 16px;
        background: rgba(6, 8, 12, 0.95);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(20px);
    }

    .nav-center.open { display: flex; }
    .nav-center a { width: 100%; text-align: center; }

    .menu-toggle { display: flex; }

    .nav-actions .lang-switch { order: 2; }
    .nav-actions .btn span { display: none; }

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

    .mockup-body {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .bento-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .bento-wide .speed-bars { display: none; }

    .timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline-line { display: none; }

    .hero-metrics {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

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

    .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .float-card { display: none; }
    .cta-card { padding: 32px 20px; }
}
