/* =========================================================================
   Koimeret Enterprise — design system
   Geoinformation · Insight · Impact
   Professional GIS-consultancy look: brand green, inline SVG icons,
   animated topographic hero, reveal-on-scroll, responsive (F1), accessible.
   ========================================================================= */
:root {
    --brand: #0b6e4f;
    --brand-2: #128a63;
    --brand-dark: #073b2a;
    --accent: #f4a91b;
    --ink: #14201b;
    --muted: #5a6b63;
    --line: #e4eae7;
    --bg: #ffffff;
    --bg-alt: #f4f8f6;
    --bg-deep: #0c231b;
    --radius: 14px;
    --radius-sm: 9px;
    --maxw: 1180px;
    --shadow: 0 10px 30px -12px rgba(11, 60, 42, .28);
    --shadow-sm: 0 4px 14px -8px rgba(11, 60, 42, .35);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--ink); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 .6rem; }
p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.6rem 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 2.6rem 0; }

/* Icons ------------------------------------------------------------------- */
.icon { width: 1.35em; height: 1.35em; fill: none; stroke: currentColor;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; }
.icon-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(18,138,99,.14), rgba(11,110,79,.10));
    color: var(--brand); margin-bottom: 1rem; flex: none;
}
.icon-badge .icon { width: 26px; height: 26px; stroke-width: 1.8; }

/* Accessibility ----------------------------------------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: .6rem 1rem; z-index: 1000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Eyebrow / section heading ---------------------------------------------- */
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; text-transform: uppercase;
    letter-spacing: .12em; font-size: .74rem; font-weight: 700; color: var(--brand-2);
    margin-bottom: .6rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* Buttons ----------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.5rem;
    border-radius: 999px; background: var(--brand); color: #fff; font-weight: 600;
    border: 2px solid var(--brand); cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s; }
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); text-decoration: none;
    transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn .icon { width: 1.1em; height: 1.1em; }

/* Header / nav — dark bar (matches footer) --------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100;
    background: var(--bg-deep);
    background-image: radial-gradient(600px 160px at 12% 0%, rgba(18,138,99,.20), transparent 70%);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 6px 22px -12px rgba(0,0,0,.6); }
.header-inner { display: flex; align-items: center; gap: 1.75rem; padding: .95rem 0; }
.brand { display: flex; align-items: center; gap: .75rem; line-height: 1.05; }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; flex: none; filter: drop-shadow(0 6px 12px rgba(0,0,0,.4)); }
.brand-copy { display: flex; flex-direction: column; }
.brand-text { font-weight: 800; font-size: 1.5rem; color: #ffffff; line-height: 1; letter-spacing: -.01em; }
.brand-tag { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: #7fb8a1; margin-top: .28rem; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: .5rem; margin: 0; padding: 0; }
.main-nav a { color: #cdddd5; font-weight: 500; font-size: 1.05rem; padding: .5rem 1.05rem;
    border-radius: 999px; transition: background .2s ease, color .2s ease; }
.main-nav a:hover { text-decoration: none; color: #fff; background: rgba(232,96,125,.16); }
/* Current page — full solid pink pill (only the clicked/active item is shaded) */
.main-nav a.active, .main-nav .active > a { background: #e8607d; color: #fff; }
.main-nav a.active:hover, .main-nav .active > a:hover { background: #d64f6c; color: #fff; }

.btn--sm { padding: .58rem 1.2rem; font-size: .98rem; }
/* Get in touch — unshaded outline by default; fills solid pink only when active (clicked). */
.nav-cta { flex: none; background: transparent; color: #fff; border-color: rgba(232,96,125,.6); }
.nav-cta:hover { background: rgba(232,96,125,.16); border-color: #e8607d; color: #fff; }
.nav-cta.active { background: #e8607d; border-color: #e8607d; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: #fff; margin-left: auto; }

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .nav-cta { display: none; }
    .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-deep); margin: 0;
        border-bottom: 1px solid rgba(255,255,255,.08); display: none; box-shadow: var(--shadow-sm); }
    .header-inner.nav-open .main-nav { display: block; }
    .main-nav ul { flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem; gap: .7rem; }
}

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #eafaf3;
    background: radial-gradient(1200px 500px at 80% -10%, #128a63 0%, transparent 60%),
                linear-gradient(150deg, #0c231b 0%, #0b6e4f 130%); }
.hero .container { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5.5rem; }
.net-bg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
    pointer-events: none; opacity: .9; }
.hero-topo { position: absolute; inset: 0; z-index: 0; opacity: .4;
    animation: topo-drift 40s linear infinite; }
@keyframes topo-drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-60px,-30px,0); } }
.hero-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem;
    border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .8rem;
    letter-spacing: .06em; margin-bottom: 1.4rem; color: #d6f5e8; }
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 0 rgba(244,169,27,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(244,169,27,.55);} 70%{box-shadow:0 0 0 10px rgba(244,169,27,0);} 100%{box-shadow:0 0 0 0 rgba(244,169,27,0);} }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin: 0 0 1.1rem; color: #fff; max-width: 15ch; }
.hero p { font-size: 1.2rem; max-width: 60ch; color: #cdeede; }
.hero .actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn--ghost:hover { background: #fff; color: var(--brand-dark); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3rem;
    padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero-stats .stat strong { display: block; font-size: 1.05rem; color: #fff; }
.hero-stats .stat span { font-size: .85rem; color: #a9d6c4; }

/* Grids / cards ----------------------------------------------------------- */
.grid { display: grid; gap: 1.6rem; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .25s ease, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__body { padding: 1.5rem; }
.card h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.card p { color: var(--muted); margin-bottom: .9rem; }
.card__link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--brand); }
.card__link .icon { transition: transform .2s; }
.card:hover .card__link .icon { transform: translateX(3px); }

/* Feature / project media header (gradient placeholder when no image) ------ */
.card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.card__media { aspect-ratio: 16/9; position: relative; display: flex; align-items: flex-end;
    padding: 1rem; background: linear-gradient(135deg, #0e6a4d, #0c231b); color: #fff; overflow: hidden; }
.card__media .card-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; z-index: 0; }
.card__media .icon { position: relative; z-index: 1; width: 32px; height: 32px; opacity: .95;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
/* Per-category media tints */
.media--ai-disaster { background: linear-gradient(135deg, #0d7a5a, #08233a); }
.media--data-systems { background: linear-gradient(135deg, #0e6a4d, #071f18); }
.media--business-solutions { background: linear-gradient(135deg, #196a4a, #0c231b); }
.media--article { background: linear-gradient(135deg, #0e6a4d, #0c231b); }

.chip { display: inline-block; font-size: .72rem; font-weight: 600; background: var(--bg-alt);
    color: var(--brand-2); padding: .25rem .6rem; border-radius: 999px; margin: 0 .3rem .3rem 0; }
.chip--solid { background: rgba(255,255,255,.16); color: #fff; }

/* Featured post (Insights) ------------------------------------------------ */
.featured-post { display: grid; grid-template-columns: 1.05fr 1fr; background: var(--bg);
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    transition: transform .2s ease, box-shadow .25s ease; }
.featured-post:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.featured-post__media { position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0e6a4d, #0c231b); overflow: hidden; }
.featured-post__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-post__media .card-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.featured-post__media .fp-icon .icon { width: 62px; height: 62px; color: #fff; opacity: .95; position: relative; z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.featured-post__body { padding: 2.2rem; align-self: center; }
.featured-post__body h2 { margin: .6rem 0 .6rem; }
.featured-post__body p { color: var(--muted); }
@media (max-width: 760px) { .featured-post { grid-template-columns: 1fr; } .featured-post__media { min-height: 180px; } }

/* Value / info tiles with icons ------------------------------------------ */
.tile { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; height: 100%; }
.tile h3 { display: flex; align-items: center; gap: .6rem; margin: 0 0 .5rem; }
.tile .icon { color: var(--brand); }

/* Mission / Vision / Values ---------------------------------------------- */
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; margin: 1.6rem 0; }
.mv-card { position: relative; overflow: hidden; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.7rem; transition: transform .2s ease, box-shadow .25s ease; }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mv-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.mv-card--vision::before { background: linear-gradient(90deg, var(--accent), #f7c65a); }
.mv-card h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.25rem; margin: .3rem 0 .6rem; }
.mv-card p { color: var(--muted); margin: 0; }

.values-panel { background: linear-gradient(135deg, rgba(18,138,99,.07), rgba(244,169,27,.05));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; }
.values-panel > h3 { display: flex; align-items: center; gap: .55rem; margin: 0 0 1.1rem; }
.values-panel ul { list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: .9rem; }
.values-panel li { position: relative; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: .95rem 1rem .95rem 2.9rem; color: var(--muted); }
.values-panel li strong { color: var(--ink); }
.values-panel li::before { content: "✓"; position: absolute; left: .85rem; top: .95rem;
    width: 21px; height: 21px; display: flex; align-items: center; justify-content: center;
    font-size: .72rem; color: #fff; background: var(--brand); border-radius: 50%; }

/* About intro: text + illustration + stats --------------------------------- */
.about-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .about-intro { grid-template-columns: 1fr; gap: 1.5rem; } }
.geo-art { max-width: 440px; margin: 0 auto; }
.geo-art svg { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(11,60,42,.22)); }
.geo-pin { transform-origin: 230px 112px; animation: geo-float 3.6s ease-in-out infinite; }
@keyframes geo-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.about-stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.stat-pill { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem 1.1rem; }
.stat-pill strong { display: block; color: var(--brand); font-size: 1.15rem; }
.stat-pill span { font-size: .82rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .geo-pin { animation: none; } }

/* Why-Koimeret tiles ------------------------------------------------------ */
.why-tile h4 { margin: 0 0 .4rem; font-size: 1.1rem; }
.why-tile p { color: var(--muted); margin: 0; }

/* Team -------------------------------------------------------------------- */
.avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.avatar--initials { display: inline-flex; align-items: center; justify-content: center;
    width: 84px; height: 84px; border-radius: 20px; background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff; font-weight: 700; font-size: 1.8rem; box-shadow: var(--shadow-sm); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 1.4rem; }
.team-card { display: flex; gap: 1.3rem; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.6rem; transition: transform .2s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__aside .avatar { width: 84px; height: 84px; border-radius: 20px; }
.team-card__body h3 { margin: 0 0 .35rem; }
.team-card__body p { color: var(--muted); margin: .7rem 0; }

/* Filters ----------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.filters select { padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font: inherit; color: var(--ink); }

/* Forms ------------------------------------------------------------------- */
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .35rem; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: #fff; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(18,138,99,.15); }
.honeypot { position: absolute; left: -5000px; }

/* Multi-select checkboxes (e.g. the document-request list) — each option is a
   selectable row so the checkbox sits hand-in-hand with its document name. */
.form-field input[type="checkbox"], .form-field input[type="radio"] { width: auto; accent-color: var(--brand); }
#id_documents { display: grid; gap: .55rem; margin-top: .45rem; }
#id_documents label { display: flex; align-items: center; gap: .7rem; font-weight: 500; margin: 0;
    padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
    cursor: pointer; transition: border-color .15s, background .15s; }
#id_documents label:hover { border-color: var(--brand); background: var(--bg-alt); }
#id_documents input[type="checkbox"] { width: auto; accent-color: var(--brand); flex: none; }
.messages .success { background: #e7f6ef; border: 1px solid var(--brand); padding: 1rem 1.25rem; border-radius: var(--radius-sm); }
.errorlist { color: #b00020; list-style: none; padding: 0; margin: .3rem 0; font-size: .9rem; }

/* CTA band ---------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: var(--radius); padding: 2.5rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .btn { background: #fff; color: var(--brand-dark); border-color: #fff; }
.cta-band .btn:hover { background: var(--accent); border-color: var(--accent); color: #14201b; }

/* Page header (interior pages) ------------------------------------------- */
.page-header { position: relative; overflow: hidden; color: #eafaf3;
    background: radial-gradient(900px 380px at 85% -20%, #128a63 0%, transparent 60%), linear-gradient(150deg, #0c231b, #0b6e4f); }
.page-header .container { position: relative; z-index: 2; padding: 5rem 1.5rem; }
.page-header h1 { margin: 0; color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.page-header .breadcrumb { color: #a9d6c4; font-size: .9rem; margin-bottom: .4rem; }
.page-header .breadcrumb a { color: #cdeede; }
.page-header .hero-topo { opacity: .4; }

/* Prose ------------------------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: .4rem; }
.tools-list .chip { font-size: .8rem; }

/* Pagination -------------------------------------------------------------- */
.pagination { display: flex; align-items: center; gap: 1.2rem; justify-content: center; margin-top: 2.5rem; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--bg-deep); color: #a9bab2; flex-shrink: 0;
    border-top: 3px solid var(--brand); padding: 3rem 0 1.4rem; font-size: .9rem;
    background-image: radial-gradient(700px 200px at 15% 0%, rgba(18,138,99,.14), transparent 70%); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.5fr; gap: 2.4rem; }
.footer-mark { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-mark .brand-mark { filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.footer-name { color: #fff; font-size: 1.15rem; font-weight: 800; display: block; line-height: 1.1; }
.site-footer .brand-tag { color: #7fb8a1; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-blurb { color: #97a8a0; max-width: 34ch; margin: 0 0 .8rem; }
.site-footer h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin: 0 0 .9rem; position: relative; padding-bottom: .5rem; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--accent); }
.site-footer p { margin: .3rem 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: #a9bab2; transition: color .15s, padding-left .15s; }
.footer-links a:hover, .site-footer address a:hover { color: #fff; text-decoration: none; }
.footer-links a:hover { padding-left: 4px; color: #8fe0c2; }
.site-footer address { font-style: normal; display: grid; gap: .5rem; }
.site-footer address p { display: flex; align-items: flex-start; gap: .55rem; margin: 0; }
.site-footer address .icon { color: var(--accent); flex: none; margin-top: .15em; }
.site-footer .reg { color: #7f938a; margin-top: .5rem; font-size: .82rem; }
.footer-cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem;
    color: #8fe0c2; font-weight: 600; }
.social { list-style: none; padding: 0; margin: .3rem 0 0; display: flex; gap: .6rem; }
.social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.social a:hover { background: var(--brand); border-color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem;
    border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.2rem; padding-top: 1rem; font-size: .82rem; color: #82958c; }
.footer-bottom p { margin: 0; }
.footer-made { opacity: .7; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* Reveal-on-scroll animation --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-topo, .hero-chip .dot { animation: none; }
}
