:root {
    --red:     #E11D29;
    --red-dim: #a01520;
    --black:   #0a0a0a;
    --gray-9:  #111111;
    --gray-8:  #1c1c1c;
    --gray-7:  #2a2a2a;
    --gray-6:  #3d3d3d;
    --gray-5:  #5a5a5a;
    --gray-4:  #888888;
    --gray-3:  #b0b0b0;
    --white:   #ffffff;
    --green:   #22c55e;
    --amber:   #f59e0b;
    --cloud:   #7bb3fc;
    --font-display: 'Bebas Neue', sans-serif;
    --font-mono:    'DM Mono', monospace;
    --font-body:    'DM Sans', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed; inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.28;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-8);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.85rem; color: var(--white); letter-spacing: 0.04em; }
.nav-logo-text em { color: var(--red); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-family: var(--font-mono); font-size: 0.73rem; color: var(--gray-3);
    text-decoration: none; letter-spacing: 0.09em; text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
    font-family: var(--font-mono); font-size: 0.73rem; letter-spacing: 0.09em;
    text-transform: uppercase; background: var(--red); color: var(--white);
    padding: 0.48rem 1.2rem; border-radius: 3px; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--red-dim); transform: translateY(-1px); }

/* HERO */
.hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 7rem 5% 4rem; gap: 2rem;
    position: relative; overflow: hidden;
}
.hbg-grid {
    position: absolute; inset: 0;
    background-image:
    linear-gradient(var(--gray-8) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-8) 1px, transparent 1px);
    background-size: 60px 60px; opacity: 0.22; pointer-events: none;
}
.hbg-glow {
    position: absolute; top: -180px; left: -180px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(225,29,41,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--red);
    letter-spacing: 0.13em; text-transform: uppercase;
    border: 1px solid rgba(225,29,41,0.4); background: rgba(225,29,41,0.06);
    padding: 0.3rem 0.85rem; border-radius: 2px; margin-bottom: 1.8rem;
    animation: fadeUp 0.6s ease both;
}
.tag-dot {
    width: 6px; height: 6px; background: var(--red); border-radius: 50%;
    animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.65)} }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 6.2vw, 7rem);
    line-height: 0.9; letter-spacing: 0.01em; color: var(--white);
    animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent  { color: var(--red); }
.hero-title .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.55); color: transparent; }
.hero-sub {
    margin-top: 1.8rem; font-size: 1.05rem; color: var(--gray-3);
    max-width: 500px; line-height: 1.72;
    animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

/* Install pill */
.install-pill {
    display: inline-flex; align-items: stretch;
    background: var(--gray-9); border: 1px solid var(--gray-7);
    border-radius: 5px; overflow: hidden;
    margin-top: 2.2rem; max-width: 100%;
    animation: fadeUp 0.6s 0.25s ease both;
}
.install-label {
    font-family: var(--font-mono); font-size: 0.67rem; color: var(--gray-5);
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0 1rem; border-right: 1px solid var(--gray-7);
    display: flex; align-items: center; white-space: nowrap;
}
.install-cmd {
    font-family: var(--font-mono); font-size: 0.83rem; color: var(--white);
    padding: 0.75rem 1.2rem; flex: 1; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.install-cmd .cp { color: var(--red); }
.install-copy {
    background: var(--gray-7); border: none; cursor: pointer;
    color: var(--gray-3); font-family: var(--font-mono); font-size: 0.67rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0 1rem; display: flex; align-items: center; gap: 0.4rem;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.install-copy:hover { background: var(--gray-6); color: var(--white); }
.install-copy.copied { background: var(--green); color: #000; }

.hero-cta {
    display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--red); color: var(--white);
    font-family: var(--font-mono); font-size: 0.82rem;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,29,41,0.25); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--white);
    font-family: var(--font-mono); font-size: 0.82rem;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.85rem 2rem; border-radius: 3px;
    border: 1px solid var(--gray-6); text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--gray-3); transform: translateY(-2px); }

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--gray-8);
    animation: fadeUp 0.6s 0.4s ease both;
}
.sn { font-family: var(--font-display); font-size: 2.1rem; color: var(--white); line-height: 1; }
.sn span { color: var(--red); }
.sl { font-family: var(--font-mono); font-size: 0.64rem; color: var(--gray-5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* Hero right */
.hero-right {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    animation: fadeUp 0.6s 0.2s ease both;
}
.logo-ring {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 310px; height: 310px;
}
.ring {
    position: absolute; border-radius: 50%; border: 1px solid;
}
.r1 { width: 290px; height: 290px; border-color: var(--gray-8); animation: spin 24s linear infinite; }
.r2 { width: 210px; height: 210px; border-color: var(--gray-7); animation: spin 17s linear infinite reverse; }
.r3 { width: 130px; height: 130px; border-color: rgba(225,29,41,0.18); }
.r1::after {
    content: ''; position: absolute; top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 7px; height: 7px; background: var(--red); border-radius: 50%;
    box-shadow: 0 0 8px var(--red);
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.logo-ring img { width: 150px; height: 150px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 0 28px rgba(225,29,41,0.2)); }

.hbadges { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.hbadge {
    display: flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.35rem 0.85rem; border-radius: 3px; border: 1px solid;
}
.hbadge-local  { background: rgba(34,197,94,0.06);  border-color: rgba(34,197,94,0.3);  color: var(--green); }
.hbadge-cloud  { background: rgba(123,179,252,0.06); border-color: rgba(123,179,252,0.25); color: var(--cloud); }
.hbadge-plus   { background: rgba(255,255,255,0.02); border-color: var(--gray-7); color: var(--gray-4); }
.hbadge-choice { background: rgba(225,29,41,0.08);  border-color: rgba(225,29,41,0.3);  color: var(--red); }
.bdot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Terminal */
.terminal {
    background: var(--gray-9); border: 1px solid var(--gray-7);
    border-radius: 6px; padding: 1.2rem 1.4rem; width: 100%; max-width: 420px;
}
.tbar { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.9rem; }
.td { width: 9px; height: 9px; border-radius: 50%; }
.td.r{background:var(--red)} .td.y{background:var(--amber)} .td.g{background:var(--green)}
.ttitle { font-family: var(--font-mono); font-size: 0.63rem; color: var(--gray-5); margin: 0 auto; letter-spacing: 0.08em; }
.tl { font-family: var(--font-mono); font-size: 0.79rem; line-height: 2; color: var(--gray-3); }
.tl .p{color:var(--red)} .tl .c{color:var(--gray-5)} .tl .ok{color:var(--green)} .tl .w{color:var(--white)}
.cursor { display: inline-block; width: 7px; height: 1em; background: var(--white); vertical-align: text-bottom; animation: blink 1.1s step-end infinite; }
@keyframes blink{50%{opacity:0}}
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* SHARED */
section { padding: 5.5rem 5%; }
.slabel { font-family: var(--font-mono); font-size: 0.68rem; color: var(--red); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem; }
.stitle { font-family: var(--font-display); font-size: clamp(2.3rem, 3.8vw, 3.6rem); line-height: 0.95; color: var(--white); letter-spacing: 0.02em; }
.ssub { font-size: 0.96rem; color: var(--gray-4); max-width: 540px; line-height: 1.72; margin-top: 0.7rem; }
.divider { height: 1px; background: var(--gray-8); margin: 0 5%; }

/* MARQUEE */
.marquee { border-top: 1px solid var(--gray-8); border-bottom: 1px solid var(--gray-8); background: var(--gray-9); overflow: hidden; padding: 0.85rem 0; }
.mtrack { display: flex; gap: 3rem; animation: mq 28s linear infinite; white-space: nowrap; }
.mitem { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray-4); letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
.mitem .dot { color: var(--red); }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* MODULES */
.modules { background: var(--gray-9); }
.mod-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.dtoggle { display: flex; border: 1px solid var(--gray-7); border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.dbtn { font-family: var(--font-mono); font-size: 0.67rem; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.45rem 1rem; border: none; cursor: pointer; background: transparent; color: var(--gray-4); transition: background 0.2s, color 0.2s; }
.dbtn.active { background: var(--red); color: var(--white); }
.dbtn:hover:not(.active) { background: var(--gray-7); color: var(--white); }

.mgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1px; background: var(--gray-7); border: 1px solid var(--gray-7); }
.mcard { background: var(--gray-9); padding: 2.2rem; position: relative; overflow: hidden; transition: background 0.2s; }
.mcard:hover { background: #161616; }
.mcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.mcard:hover::before { transform: scaleX(1); }
.mn { font-family: var(--font-display); font-size: 2.5rem; color: var(--gray-8); line-height: 1; margin-bottom: 0.4rem; transition: color 0.25s; }
.mcard:hover .mn { color: rgba(225,29,41,0.28); }
.mtop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.micon { font-size: 1.65rem; }
.mbadges { display: flex; gap: 0.3rem; }
.mb { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.14rem 0.42rem; border-radius: 2px; border: 1px solid; }
.mb-l { border-color: rgba(34,197,94,0.3); color: var(--green); background: rgba(34,197,94,0.06); }
.mb-c { border-color: rgba(123,179,252,0.25); color: var(--cloud); background: rgba(123,179,252,0.06); }
.mname { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.2rem; }
.mfull { font-family: var(--font-mono); font-size: 0.63rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.85rem; }
.mdesc { font-size: 0.87rem; color: var(--gray-4); line-height: 1.65; }
.mexamples { display: flex; flex-wrap: wrap; gap: 0.32rem; margin-top: 1rem; }
.mex { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-5); border: 1px solid var(--gray-7); padding: 0.13rem 0.45rem; border-radius: 2px; letter-spacing: 0.07em; text-transform: uppercase; }

/* HOW */
.how { background: var(--black); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--gray-8); }
.step:first-child { padding-top: 0; }
.step-n { font-family: var(--font-display); font-size: 3rem; color: var(--gray-8); line-height: 1; flex-shrink: 0; width: 54px; transition: color 0.3s; }
.step:hover .step-n { color: var(--red); }
.step-t { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.4rem; }
.step-d { font-size: 0.89rem; color: var(--gray-4); line-height: 1.65; }
.step-c { margin-top: 0.7rem; font-family: var(--font-mono); font-size: 0.76rem; background: var(--gray-9); border: 1px solid var(--gray-7); color: var(--gray-3); padding: 0.52rem 0.95rem; border-radius: 3px; display: inline-block; }
.step-c .kw { color: var(--red); }

.how-vis { position: sticky; top: 6rem; }
.abox { background: var(--gray-9); border: 1px solid var(--gray-7); border-radius: 6px; padding: 1.7rem; }
.alabel { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gray-5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.3rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-7); }
.arow { display: flex; gap: 0.5rem; margin-bottom: 0.48rem; }
.an { flex: 1; background: var(--gray-8); border: 1px solid var(--gray-7); border-radius: 3px; padding: 0.42rem 0.6rem; font-family: var(--font-mono); font-size: 0.64rem; color: var(--gray-3); text-align: center; }
.an.core { background: rgba(225,29,41,0.07); border-color: rgba(225,29,41,0.5); color: var(--red); }
.an.ln { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.2); color: #6ee7b7; }
.an.cn { background: rgba(123,179,252,0.05); border-color: rgba(123,179,252,0.2); color: #93c5fd; }
.ac { background: rgba(225,29,41,0.07); border: 1px solid rgba(225,29,41,0.45); border-radius: 4px; padding: 0.85rem; text-align: center; font-family: var(--font-display); font-size: 1.45rem; color: var(--red); letter-spacing: 0.06em; margin: 0.48rem 0; }
.aarr { text-align: center; color: var(--gray-7); font-size: 0.85rem; margin: 0.18rem 0; }

.rbox { background: var(--gray-9); border: 1px solid var(--gray-7); border-radius: 6px; padding: 1.4rem; margin-top: 1.3rem; }
.rrow { display: flex; justify-content: space-between; align-items: center; padding: 0.52rem 0; border-bottom: 1px solid var(--gray-8); }
.rrow:last-child { border-bottom: none; }
.rk { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray-4); }
.rv { font-family: var(--font-mono); font-size: 0.7rem; color: var(--white); }

/* CASES */
.cases { background: var(--gray-9); }
.cgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.ccard { background: var(--black); border: 1px solid var(--gray-8); padding: 2rem; border-radius: 4px; transition: border-color 0.25s, transform 0.2s; }
.ccard:hover { border-color: var(--red); transform: translateY(-4px); }
.cavatar { font-size: 1.9rem; margin-bottom: 0.9rem; }
.crole { font-family: var(--font-mono); font-size: 0.65rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.42rem; }
.ctitle { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); letter-spacing: 0.02em; margin-bottom: 0.65rem; }
.cdesc { font-size: 0.87rem; color: var(--gray-4); line-height: 1.65; }
.ctags { display: flex; flex-wrap: wrap; gap: 0.32rem; margin-top: 1rem; }
.ct { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-5); border: 1px solid var(--gray-7); padding: 0.13rem 0.45rem; border-radius: 2px; letter-spacing: 0.07em; text-transform: uppercase; }

/* PRINCIPLES */
.principles { background: var(--black); }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--gray-7); margin-top: 3rem; }
.pcard { padding: 2.2rem; border-right: 1px solid var(--gray-7); border-bottom: 1px solid var(--gray-7); transition: background 0.2s; }
.pcard:hover { background: var(--gray-9); }
.pcard:nth-child(3n)        { border-right: none; }
.pcard:nth-last-child(-n+3) { border-bottom: none; }
.picon { font-size: 1.35rem; margin-bottom: 0.85rem; }
.pname { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.42rem; }
.pdesc { font-size: 0.85rem; color: var(--gray-4); line-height: 1.62; }

/* COMMUNITY */
.community { background: var(--gray-9); position: relative; overflow: hidden; }
.community::after { content: ''; position: absolute; bottom: -200px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(225,29,41,0.07) 0%, transparent 70%); pointer-events: none; }
.comm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.clist { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.cli { display: flex; align-items: flex-start; gap: 0.72rem; font-size: 0.91rem; color: var(--gray-3); line-height: 1.55; }
.cli::before { content: ''; width: 6px; height: 6px; min-width: 6px; background: var(--red); border-radius: 50%; margin-top: 0.48rem; }
.clinks { display: flex; flex-direction: column; gap: 0.85rem; }
.clink { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--black); border: 1px solid var(--gray-7); border-radius: 4px; text-decoration: none; color: var(--white); transition: border-color 0.2s, background 0.2s; }
.clink:hover { border-color: var(--red); background: rgba(225,29,41,0.03); }
.cli-icon { font-size: 1.25rem; }
.cli-label { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.03em; }
.cli-sub { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gray-5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.08rem; }
.cli-arrow { margin-left: auto; color: var(--gray-6); transition: color 0.2s, transform 0.2s; }
.clink:hover .cli-arrow { color: var(--red); transform: translateX(4px); }

/* BIG CTA */
.bigcta { background: var(--black); text-align: center; padding: 8rem 5%; position: relative; overflow: hidden; }
.bigcta-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: clamp(6rem, 17vw, 15rem); color: var(--gray-9); letter-spacing: 0.1em; pointer-events: none; user-select: none; white-space: nowrap; }
.bigcta-content { position: relative; z-index: 1; }
.bigcta .stitle { margin-bottom: 1rem; }
.bigcta p { color: var(--gray-4); font-size: 0.98rem; max-width: 450px; margin: 0 auto 2.5rem; }
.btn-big { display: inline-flex; align-items: center; gap: 0.65rem; background: var(--red); color: var(--white); font-family: var(--font-mono); font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 3px; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-big:hover { background: var(--red-dim); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(225,29,41,0.3); }
.btn-big svg { width: 17px; height: 17px; }

/* FOOTER */
footer { background: var(--gray-9); border-top: 1px solid var(--gray-8); padding: 2.5rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.flogo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.flogo img { height: 30px; }
.flogo span { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); letter-spacing: 0.04em; }
.fcopy { font-family: var(--font-mono); font-size: 0.66rem; color: var(--gray-5); letter-spacing: 0.07em; }
.flinks { display: flex; gap: 1.5rem; }
.flinks a { font-family: var(--font-mono); font-size: 0.66rem; color: var(--gray-5); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.flinks a:hover { color: var(--white); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media(max-width:940px){
    .hero{grid-template-columns:1fr;padding-top:8rem}
    .hero-right{display:none}
    .how-grid{grid-template-columns:1fr}
    .how-vis{position:static}
    .comm-inner{grid-template-columns:1fr;gap:2.5rem}
    .pgrid{grid-template-columns:1fr 1fr}
    .pcard:nth-child(3n){border-right:1px solid var(--gray-7)}
    .pcard:nth-child(even){border-right:none}
    .nav-links{display:none}
}
@media(max-width:600px){
    .hero-cta{flex-direction:column}
    .hero-stats{gap:1.5rem}
    .pgrid{grid-template-columns:1fr}
    .pcard{border-right:none!important}
    footer{flex-direction:column;text-align:center}
    .install-cmd{font-size:0.7rem}
}