/* Aegiss */

:root {
    --bg: #050604;
    --bg-2: #0a0c07;
    --line: rgba(198, 255, 82, 0.07);
    --line-2: rgba(198, 255, 82, 0.14);
    --text: #eef4e6;
    --text-dim: #8a9384;
    --text-mute: #4a5045;
    --accent: #c6ff52;
    --accent-2: #eaffc7;
    --accent-glow: rgba(198, 255, 82, 0.3);
    --font: 'Space Grotesk', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(198, 255, 82, 0.02) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv01";
}

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

/* noise */
.noise {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none; opacity: 0.03;
    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");
    background-size: 200px 200px;
}

/* buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 7px;
    font-weight: 500; font-size: 13px;
    letter-spacing: -0.005em;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap; font-family: var(--mono);
}

.btn--primary { background: var(--accent); color: #0b1004; font-weight: 600; }
.btn--primary:hover { background: var(--accent-2); box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 15px rgba(198, 255, 82, 0.1); }

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

.mono {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-mute); margin-bottom: 14px;
    letter-spacing: 0.04em; text-transform: uppercase;
}

/* nav */
.nav {
    position: sticky; top: 0; z-index: 100;
    padding: 0 40px; height: 60px;
    background: rgba(5, 6, 4, 0.82);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center;
    transition: background 0.3s ease;
}

.nav__inner {
    max-width: 1280px; margin: 0 auto; width: 100%;
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
}

.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.nav__logo { width: 30px; height: 30px; border-radius: 6px; object-fit: contain; display: block; }
.nav__mono { font-family: var(--mono); color: var(--accent); font-size: 15px; font-weight: 500; }

.nav__links { display: flex; gap: 28px; font-size: 13px; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.01em; }
.nav__links a { transition: color 0.15s ease; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 8px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: var(--text-dim); transition: all 0.2s ease; }
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
    display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
    background: rgba(5, 6, 4, 0.95); backdrop-filter: blur(20px);
    padding: 20px 40px; border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--mono); font-size: 14px; color: var(--text-dim); padding: 10px 0; border-bottom: 1px solid var(--line); transition: color 0.15s ease; }
.mobile-nav a:hover { color: var(--accent); }

@media (max-width: 760px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav { padding: 0 20px; }
}

/* hero */
.hero {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 85vh; max-width: 1400px;
    margin: 0 auto; padding: 0 40px;
    align-items: center; gap: 40px;
}

.hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(198, 255, 82, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 255, 82, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.hero__content { padding: 80px 0; position: relative; z-index: 1; }

.hero__tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border: 1px solid var(--line-2);
    border-radius: 100px; font-size: 11px; color: var(--text-dim);
    margin-bottom: 32px; background: rgba(198, 255, 82, 0.04);
    font-family: var(--mono); letter-spacing: 0.02em;
}

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

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 500; line-height: 1;
    letter-spacing: -0.04em; margin-bottom: 28px;
    background: linear-gradient(180deg, var(--text) 0%, rgba(238, 244, 230, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub { font-size: 17px; color: var(--text-dim); max-width: 420px; margin-bottom: 40px; line-height: 1.6; }
.hero__cta { display: flex; gap: 16px; align-items: center; }
.hero__link { 
    font-family: var(--mono); font-size: 13px; 
    color: var(--accent); 
    padding: 12px 24px;
    border: 1px solid var(--accent);
    border-radius: 7px;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 500;
}
.hero__link:hover { 
    background: rgba(198, 255, 82, 0.1); 
    box-shadow: 0 0 20px rgba(198, 255, 82, 0.15);
    transform: translateY(-1px);
}

.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hero__logo-wrap { position: relative; }

.hero__logo {
    width: 100%; max-width: 420px; height: auto; object-fit: contain;
    filter: drop-shadow(0 0 80px rgba(198, 255, 82, 0.15));
    animation: float 6s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.hero__logo:hover {
    filter: drop-shadow(0 0 100px rgba(198, 255, 82, 0.25));
}

.hero__logo-wrap::before {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(198, 255, 82, 0.06) 0%, transparent 60%);
    border-radius: 50%; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: -1;
}

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

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; text-align: center; }
    .hero__content { padding: 40px 0; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__cta { justify-content: center; }
    .hero__logo { max-width: 260px; }
    .hero__logo-wrap::before { width: 300px; height: 300px; }
}

/* split section — two columns, flexible content */
.split-section {
    position: relative; z-index: 1;
    padding: 80px 40px;
}

.split-section--dark {
    background: rgba(198, 255, 82, 0.012);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-section__inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}

.split-section__left {
    min-width: 0;
    position: relative;
}

.split-section__left::after {
    content: ''; position: absolute;
    right: -30px; top: 0; bottom: 0;
    width: 1px; background: var(--line);
}

.split-section__right {
    min-width: 0;
    padding-left: 20px;
}

.split-section__right h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500; letter-spacing: -0.03em;
    line-height: 1.12; margin-bottom: 16px;
}

.split-section__text {
    font-size: 16px; color: var(--text-dim);
    line-height: 1.65; margin-bottom: 32px;
}

.split-section__points {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--line);
}

.split-section__point {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--line);
    font-size: 14px; color: var(--text-dim);
    transition: all 0.2s ease;
}

.split-section__point:hover { color: var(--text); padding-left: 8px; }

.split-section__point-num {
    font-family: var(--mono); font-size: 11px;
    color: var(--accent); opacity: 0.5;
    flex-shrink: 0; width: 20px;
    transition: opacity 0.15s ease;
}

.split-section__point:hover .split-section__point-num { opacity: 1; }

.split-section__right--center {
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
    .split-section__inner { grid-template-columns: 1fr; gap: 40px; }
    .split-section { padding: 60px 24px; }
    .split-section__left::after { display: none; }
    .split-section__right { padding-left: 0; }
}

/* preview */
.preview {
    background: #0c0e08; border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden; font-family: var(--mono);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(198, 255, 82, 0.03);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.preview:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 120px rgba(198, 255, 82, 0.06);
    border-color: rgba(198, 255, 82, 0.12);
    transform: translateY(-2px);
}

.preview__bar {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 16px; border-bottom: 1px solid var(--line);
    background: rgba(198, 255, 82, 0.015);
}

.preview__dot { width: 10px; height: 10px; border-radius: 50%; }
.preview__dot--r { background: #ff5f57; }
.preview__dot--y { background: #febc2e; }
.preview__dot--g { background: #28c840; }
.preview__url { margin-left: auto; margin-right: auto; font-size: 10px; color: var(--text-mute); }

.preview__body { padding: 20px; }

.preview__top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}

.preview__header { display: flex; align-items: center; gap: 10px; }
.preview__icon { width: 28px; height: 28px; border-radius: 5px; object-fit: contain; }
.preview__name { display: block; font-size: 14px; font-weight: 600; color: var(--text); font-family: var(--font); }
.preview__ver { font-size: 10px; color: var(--text-mute); }
.preview__status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--accent); }

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

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

.preview__module {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 6px;
    font-size: 12px; color: var(--text-mute);
    transition: background 0.15s ease;
}

.preview__module:hover { background: rgba(198, 255, 82, 0.03); }
.preview__module--on { color: var(--text-dim); }

.preview__toggle {
    width: 28px; height: 14px; border-radius: 7px;
    background: rgba(255,255,255,0.08);
    position: relative; flex-shrink: 0; transition: background 0.2s ease;
}

.preview__toggle::after {
    content: ''; position: absolute;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--text-mute); top: 2px; left: 2px;
    transition: all 0.2s ease;
}

.preview__module--on .preview__toggle { background: rgba(198, 255, 82, 0.25); }
.preview__module--on .preview__toggle::after { background: var(--accent); left: 16px; box-shadow: 0 0 6px var(--accent); }
.preview__module-name { font-family: var(--font); }

/* features */
.features-section {
    position: relative; z-index: 1;
    padding: 100px 40px;
    background: rgba(198, 255, 82, 0.012);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.features-section::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(198, 255, 82, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(198, 255, 82, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.features-section__inner { max-width: 1280px; margin: 0 auto; }
.features-section__head { margin-bottom: 48px; }

.features-section__head h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500; letter-spacing: -0.03em; line-height: 1.1;
}

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--line);
    border: 1px solid var(--line);
    border-radius: 10px; overflow: hidden;
}

.feature-card {
    padding: 28px; background: var(--bg);
    transition: all 0.3s ease; position: relative;
    border: 1px solid transparent;
}

.feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(198, 255, 82, 0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover { background: rgba(198, 255, 82, 0.025); border-color: rgba(198, 255, 82, 0.08); }
.feature-card--accent { background: rgba(198, 255, 82, 0.018); }
.feature-card--accent:hover { background: rgba(198, 255, 82, 0.035); }
.feature-card--wide { grid-column: 1 / -1; }

.feature-card__icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(198, 255, 82, 0.06);
    border: 1px solid rgba(198, 255, 82, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; color: var(--accent);
}

.feature-card h3 { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; max-width: 360px; }
.feature-card--wide p { max-width: 640px; }

.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }

.tags span {
    font-family: var(--mono); font-size: 10px;
    padding: 3px 8px; border: 1px solid var(--line-2);
    border-radius: 4px; color: var(--text-dim);
    background: rgba(198, 255, 82, 0.02); transition: all 0.15s ease;
}

.tags span:hover {
    color: var(--accent); border-color: var(--accent);
    background: rgba(198, 255, 82, 0.06);
    box-shadow: 0 0 10px rgba(198, 255, 82, 0.1);
}

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

/* changelog */
.changelog { border-top: 1px solid var(--line); }

.changelog__entry { padding: 20px 0; border-bottom: 1px solid var(--line); }
.changelog__entry-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.changelog__ver { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.changelog__date { font-family: var(--mono); font-size: 11px; color: var(--text-mute); }
.changelog__list { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.changelog__list li {
    font-size: 13px; color: var(--text-dim);
    line-height: 1.5; padding-left: 16px; position: relative;
}

.changelog__list li::before {
    content: ''; position: absolute;
    left: 0; top: 7px;
    width: 4px; height: 4px; border-radius: 50%; background: var(--line-2);
}

/* download card */
.download-card {
    text-align: center;
    padding: 48px 40px;
    background: #0c0e08;
    border: 1px solid var(--line);
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: ''; position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 120%, rgba(198, 255, 82, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.download-card:hover {
    border-color: rgba(198, 255, 82, 0.12);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 80px rgba(198, 255, 82, 0.04);
    transform: translateY(-2px);
}

.download-card__logo {
    width: 64px; height: 64px;
    object-fit: contain; margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(198, 255, 82, 0.15));
}

.download-card .mono { text-align: center; margin-bottom: 10px; }

.download-card h3 {
    font-size: 24px; font-weight: 500;
    letter-spacing: -0.02em; margin-bottom: 8px;
}

.download-card__sub { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }

.download-card__btn { width: 100%; justify-content: center; }

.download-card__meta {
    margin-top: 16px; font-family: var(--mono);
    font-size: 11px; color: var(--text-mute);
    display: flex; justify-content: center; gap: 8px;
}

/* trust */
.trust {
    position: relative; z-index: 1;
    padding: 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(198, 255, 82, 0.012);
}

.trust__inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: center; gap: 0;
}

.trust__item {
    display: flex; flex-direction: column;
    align-items: center; padding: 0 40px;
    text-align: center;
}

.trust__num {
    font-family: var(--mono); font-size: 28px;
    font-weight: 700; color: var(--accent);
    letter-spacing: -0.03em; margin-bottom: 4px;
}

.trust__label {
    font-size: 12px; color: var(--text-mute);
    font-family: var(--mono); text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust__divider {
    width: 1px; height: 40px;
    background: var(--line);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust__inner { flex-wrap: wrap; gap: 20px; }
    .trust__divider { display: none; }
    .trust__item { padding: 0 20px; }
}

/* faq */
.faq-section { position: relative; z-index: 1; padding: 100px 40px; }
.faq-section__inner { max-width: 800px; margin: 0 auto; }
.faq-section__head { margin-bottom: 40px; }

.faq-section__head h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500; letter-spacing: -0.03em; line-height: 1.12;
}

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); padding: 20px 0; transition: background 0.2s ease; }
.faq__item:hover { background: rgba(198, 255, 82, 0.015); }

.faq__item summary {
    font-size: 15px; font-weight: 500; cursor: pointer;
    list-style: none; display: flex;
    justify-content: space-between; align-items: center;
    transition: color 0.15s ease; letter-spacing: -0.01em;
}

.faq__item summary:hover { color: var(--accent); }
.faq__item[open] summary { color: var(--accent); }

.faq__item summary::after {
    content: '+'; font-family: var(--mono);
    font-size: 18px; color: var(--text-mute);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 300; flex-shrink: 0; margin-left: 16px;
}

.faq__item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item p { margin-top: 12px; color: var(--text-dim); font-size: 14px; line-height: 1.65; max-width: 90%; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* footer */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 28px 40px; }

.footer__inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; gap: 20px; flex-wrap: wrap;
}

.footer__left { display: flex; align-items: center; gap: 10px; }
.footer__logo { width: 22px; height: 22px; border-radius: 4px; object-fit: contain; }
.footer__brand { font-weight: 500; font-size: 14px; color: var(--text); }
.footer__right { display: flex; align-items: center; gap: 24px; }

.footer__links { display: flex; gap: 20px; font-size: 12px; color: var(--text-mute); font-family: var(--mono); }
.footer__links a { transition: color 0.15s ease; }
.footer__links a:hover { color: var(--text-dim); }
.footer__note { font-family: var(--mono); font-size: 11px; color: var(--text-mute); }

@media (max-width: 600px) {
    .footer__inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer__right { flex-direction: column; gap: 10px; }
}

/* misc */
::selection { background: var(--accent); color: #0b1004; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(198, 255, 82, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(198, 255, 82, 0.2); }

/* reveal */
.hero__content { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__visual { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }

.reveal-target {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-target.revealed { opacity: 1; transform: translateY(0); }
.feature-card.reveal-target { opacity: 0; transform: translateY(16px); }
.feature-card.reveal-target.revealed { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
