:root {
    --bg: #07090b;
    --bg-2: #0c1014;
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef3f1;
    --muted: #8b9691;
    --accent: #3ef0c8;
    --accent-dim: rgba(62, 240, 200, 0.12);
    --warn: #f5c14a;
    --bad: #ff6b7a;
    --ok: #3ef0c8;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(62, 240, 200, 0.08), transparent 50%),
        linear-gradient(180deg, #0b0f12 0%, var(--bg) 28%);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 55%);
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Ticker */
.ticker {
    position: relative;
    z-index: 40;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #050708;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    height: 34px;
}
.ticker-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    width: max-content;
    animation: ticker 32s linear infinite;
    padding: 0.6rem 0;
}
.ticker em { color: var(--accent); font-style: normal; }
.ticker b { color: var(--text); font-weight: 600; }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 11, 0.78);
    backdrop-filter: blur(18px);
}
.nav-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.logo-mark {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 8px;
}
.logo-word {
    font-weight: 700;
    letter-spacing: -0.05em;
    font-size: 1.05rem;
}
.nav-links {
    display: none;
    gap: 1.5rem;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.desktop-cta { display: none; }
.menu-btn { width: 40px; height: 40px; color: var(--muted); }
.mobile-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 0.5rem;
}
.nav-shell.open .mobile-nav { display: flex; }
.mobile-nav a { padding: 0.55rem 0; color: var(--muted); }

@media (min-width: 900px) {
    .nav-links { display: flex; }
    .desktop-cta { display: inline-flex; }
    .menu-btn { display: none; }
    .nav-shell.open .mobile-nav { display: none; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 42px;
    padding: 0 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: 0.2s ease;
    overflow: hidden;
    position: relative;
}
.btn-accent {
    background: var(--accent);
    color: #04110d;
}
.btn-accent:hover { filter: brightness(1.08); }
.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}
.btn-ghost:hover { border-color: rgba(62, 240, 200, 0.4); }

/* Hero */
.hero {
    padding: 4.5rem 0 3rem;
}
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(62, 240, 200, 0.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    70% { box-shadow: 0 0 0 8px transparent; }
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 650;
    margin-bottom: 1.1rem;
}
.lead {
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.6rem 0 1.2rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-family: var(--mono);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta .fi { color: var(--accent); }

@media (min-width: 980px) {
    .hero-grid { grid-template-columns: 1fr 1.05fr; }
}

/* Terminal */
.terminal {
    background: #0a0e11;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(62, 240, 200, 0.08);
}
.term-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.term-dots { display: flex; gap: 5px; }
.term-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a3230;
}
.term-dots i:first-child { background: #ff6b7a; }
.term-dots i:nth-child(2) { background: #f5c14a; }
.term-dots i:nth-child(3) { background: #3ef0c8; }
.live {
    color: var(--accent);
    font-weight: 600;
    font-size: 10px;
}
.term-body {
    display: grid;
    grid-template-columns: 120px 1fr;
}
.term-side {
    border-right: 1px solid var(--line);
    padding: 0.9rem 0.7rem;
}
.term-side p {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.7rem;
}
.term-side button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.45rem 0.5rem;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.term-side button.on {
    background: var(--accent-dim);
    color: var(--accent);
}
.term-main { padding: 0.95rem; }
.token-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}
.token-head small,
.score small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.token-head strong {
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}
.token-head span { color: var(--muted); font-weight: 500; }
.score { text-align: right; }
.score b {
    font-size: 1.6rem;
    color: var(--accent);
    letter-spacing: -0.04em;
}
.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}
.check {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.75rem;
}
.check em { font-style: normal; font-family: var(--mono); font-size: 10px; }
.check.ok em { color: var(--ok); }
.check.warn em { color: var(--warn); }
.tape {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}
.tape th {
    text-align: left;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
}
.tape td { padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.up { color: var(--ok); }
.down { color: var(--bad); }
.ok { color: var(--ok); }
.warn { color: var(--warn); }
.bad { color: var(--bad); }

@media (max-width: 640px) {
    .term-body { grid-template-columns: 1fr; }
    .term-side { display: none; }
}

/* Stats */
.stats {
    border-block: 1px solid var(--line);
    background: rgba(12, 16, 20, 0.65);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.6rem 0;
}
.stats-grid b {
    display: block;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}
.stats-grid span {
    color: var(--muted);
    font-size: 0.82rem;
}
@media (min-width: 800px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Sections */
.section { padding: 5.5rem 0; }
.section.dim { background: rgba(255, 255, 255, 0.015); border-block: 1px solid var(--line); }
.section-head {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}
.section-head.left { margin: 0; }
.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
    margin-bottom: 0.7rem;
}
.section-head p:last-child { color: var(--muted); }

.module {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0 2.4rem;
    border-top: 1px solid var(--line);
}
.module-copy h3 {
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    margin: 0.45rem 0 0.7rem;
}
.module-copy p { color: var(--muted); margin-bottom: 1rem; }
.module-copy li {
    position: relative;
    padding-left: 1rem;
    color: var(--text);
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}
.module-copy li::before {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.7em;
}
.tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.ui-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
}
.ui-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.ui-card header .fi { margin-right: auto; color: var(--accent); }
.scan-row, .feed-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}
.feed-row { align-items: baseline; }
.feed-row p { color: var(--muted); flex: 1; font-size: 0.82rem; }
.pnl strong { display: block; font-size: 1.8rem; letter-spacing: -0.04em; }
.pnl span { color: var(--muted); font-size: 0.8rem; }
.bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
    margin-top: 1rem;
}
.bars i {
    flex: 1;
    background: linear-gradient(180deg, var(--accent), rgba(62, 240, 200, 0.15));
    border-radius: 3px 3px 0 0;
}
@media (min-width: 900px) {
    .module { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .module.reverse .module-copy { order: 2; }
}

.reason-grid {
    display: grid;
    gap: 0.8rem;
}
.reason-grid article {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(12, 16, 20, 0.7);
}
.reason-grid h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.reason-grid p { color: var(--muted); font-size: 0.9rem; }
@media (min-width: 800px) {
    .reason-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Install / Deploy */
.deploy {
    position: relative;
}
.deploy::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(700px 280px at 70% 20%, rgba(62, 240, 200, 0.07), transparent 70%);
}
.deploy-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.deploy-head .section-head {
    margin-bottom: 0;
    max-width: 36rem;
}
.deploy-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(10, 14, 17, 0.92));
    padding: 1.15rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.tabs {
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #080c0f;
    width: fit-content;
}
.tab {
    padding: 0.6rem 1.05rem;
    border-radius: 9px;
    font-size: 0.86rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.tab:hover { color: var(--text); }
.tab.active {
    background: var(--accent);
    color: #04110d;
    font-weight: 600;
}
.steps {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}
.steps.active { display: grid; }
.step-card {
    position: relative;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0a0e11;
    min-height: 100%;
}
.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.step-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
}
.step-card .icon-tile {
    margin-bottom: 0;
}
.step-card h4 {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}
.step-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.step-card kbd {
    display: inline-block;
    padding: 0.1rem 0.35rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-bottom-width: 2px;
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text);
}
.dock {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.35rem 1.3rem;
    border: 1px solid rgba(62, 240, 200, 0.28);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(62, 240, 200, 0.1), transparent 45%),
        #08110e;
}
.dock-copy { max-width: 34rem; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(62, 240, 200, 0.1);
    border: 1px solid rgba(62, 240, 200, 0.2);
}
.dock h3 {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.dock p { color: var(--muted); line-height: 1.6; }
.dock-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.dock-action small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.btn-lg {
    height: 48px;
    padding: 0 1.35rem;
    font-size: 0.95rem;
}
.compat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
}
.chip .fi { color: var(--accent); font-size: 0.8rem; }
@media (min-width: 800px) {
    .deploy-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .steps.active {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.9rem;
    }
    .steps.active::before {
        content: "";
        position: absolute;
        top: 2.15rem;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(62, 240, 200, 0.35), transparent);
        pointer-events: none;
        z-index: 0;
    }
    .step-card { z-index: 1; }
    .dock {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.6rem;
    }
    .dock-action { align-items: flex-end; }
}

/* Quotes */
.quotes {
    display: grid;
    gap: 0.8rem;
}
.quotes article {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0a0e11;
}
.quotes p { margin-bottom: 0.8rem; }
.quotes span {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
}
@media (min-width: 800px) {
    .quotes { grid-template-columns: repeat(3, 1fr); }
}

/* Pricing */
.price-grid {
    display: grid;
    gap: 0.8rem;
}
.price-card {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0a0e11;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border-color: rgba(62, 240, 200, 0.45);
    background: linear-gradient(180deg, rgba(62, 240, 200, 0.08), #0a0e11 40%);
}
.plan-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.price-card h3 { font-size: 1.2rem; }
.price-card .desc { color: var(--muted); font-size: 0.88rem; margin: 0.3rem 0 1rem; }
.amount {
    font-size: 2.4rem;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}
.amount span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}
.price-card ul { margin-bottom: 1.2rem; flex: 1; }
.price-card li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #d5ddd9;
}
.price-card li .fi { color: var(--accent); }
@media (min-width: 900px) {
    .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* FAQ */
.faq-wrap {
    display: grid;
    gap: 2rem;
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.1rem 0;
    font-size: 1rem;
    font-weight: 600;
}
.faq-item .fi { color: var(--muted); flex-shrink: 0; transition: transform 0.25s ease, color 0.25s ease; }
.faq-item.open .fi { transform: rotate(180deg); color: var(--accent); }
.faq-item .answer {
    display: none;
    padding: 0 2rem 1.1rem 0;
    color: var(--muted);
    font-size: 0.95rem;
}
.faq-item.open .answer { display: block; }
@media (min-width: 900px) {
    .faq-wrap { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
}

/* CTA */
.cta {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--line);
    background: radial-gradient(600px 200px at 50% 0%, rgba(62, 240, 200, 0.12), transparent 70%);
}
.cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.045em;
    margin-bottom: 0.6rem;
}
.cta p { color: var(--muted); margin-bottom: 1.3rem; }

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }
.site-footer p {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
@media (min-width: 800px) {
    .site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Flaticon UIcons + motion */
.fi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.icon-tile {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid rgba(62, 240, 200, 0.22);
    color: var(--accent);
    margin-bottom: 0.85rem;
}
.icon-tile .fi { font-size: 1.15rem; color: var(--accent); }
.icon-tile.sm {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 0.55rem;
}
.icon-tile.sm .fi { font-size: 0.95rem; }

.hero-icons {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.6rem;
}
.hero-icons .icon-tile { margin-bottom: 0; }

.stats-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.reason-grid article,
.price-card,
.step-card,
.quotes article,
.ui-card,
.dock {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.reason-grid article:hover,
.price-card:hover,
.step-card:hover,
.quotes article:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 240, 200, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.quotes article span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.logo-mark { transition: transform 0.4s ease; }
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.06); }

.btn-accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: shine 3.4s ease-in-out infinite;
}
.btn:hover .fi { transform: translateX(2px); }
.btn .fi { transition: transform 0.2s ease; }

.anim-float { animation: iconFloat 3.2s ease-in-out infinite; }
.anim-pulse { animation: iconPulse 2.2s ease-in-out infinite; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 1s; }

.terminal.anim-terminal {
    animation: terminalFloat 6s ease-in-out infinite;
}
.tape tbody tr { transition: background 0.4s ease; }
.tape tbody tr.flash { background: rgba(62, 240, 200, 0.08); }
.bars i { transform-origin: bottom; animation: barGrow 1.6s ease both; }
.bars i:nth-child(2) { animation-delay: 0.08s; }
.bars i:nth-child(3) { animation-delay: 0.16s; }
.bars i:nth-child(4) { animation-delay: 0.24s; }
.bars i:nth-child(5) { animation-delay: 0.32s; }
.bars i:nth-child(6) { animation-delay: 0.4s; }
.bars i:nth-child(7) { animation-delay: 0.48s; }

.stagger > * { opacity: 0; transform: translateY(12px); }
.fade-in.visible .stagger > * {
    animation: riseIn 0.6s ease forwards;
}
.fade-in.visible .stagger > *:nth-child(2) { animation-delay: 0.08s; }
.fade-in.visible .stagger > *:nth-child(3) { animation-delay: 0.16s; }
.fade-in.visible .stagger > *:nth-child(4) { animation-delay: 0.24s; }
.fade-in.visible .stagger > *:nth-child(5) { animation-delay: 0.32s; }
.fade-in.visible .stagger > *:nth-child(6) { animation-delay: 0.4s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(62, 240, 200, 0.45)); }
}
@keyframes terminalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes shine {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}
@keyframes barGrow {
    from { transform: scaleY(0.2); opacity: 0.4; }
    to { transform: scaleY(1); opacity: 1; }
}
@keyframes riseIn {
    to { opacity: 1; transform: none; }
}

.site-footer p a { color: var(--accent); text-transform: none; letter-spacing: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .stagger > * { opacity: 1; transform: none; }
}

