/*
Theme Name: Cadence WP Theme
Author: Katherine Wyers
Description: A Wordpress Theme for a Freelance Consultant
Version: 1.0
*/



:root{
    --bg:#F6F8F6;
    --panel:#EEF2EF;
    --panel-2:#FFFFFF;
    --ink:#14261F;
    --muted:#58685F;
    --accent:#0E7A5A;
    --accent-dark:#0B5F47;
    --accent-dim: rgba(14,122,90,0.28);
    --warm:#B8862A;
    --warm-dim: rgba(184,134,42,0.28);
    --line: rgba(20,38,32,0.12);
    --maxw: 1140px;
}
*{ box-sizing:border-box; }
body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    font-size:16px;
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
    font-family:'Space Grotesk', sans-serif;
    margin:0;
    color:var(--ink);
    font-weight:600;
}
a{ color:inherit; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
img{ max-width:100%; display:block; }
::selection{ background:var(--accent); color:#FFFFFF; }
.mono{ font-family:'IBM Plex Mono', monospace; }

/* NAV */
header.site-nav{
    position:sticky; top:0; z-index:100;
    background:rgba(246,248,246,0.9);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
}
.nav-inner{
    max-width:var(--maxw); margin:0 auto; padding:18px 28px;
    display:flex; align-items:center; justify-content:space-between;
}
.logo{
    font-family:'Space Grotesk', sans-serif;
    font-weight:700;
    font-size:1.05rem;
    text-decoration:none;
    color:var(--ink);
    display:flex; align-items:center; gap:10px;
}
.logo .status-dot{
    width:8px; height:8px; border-radius:50%; background:var(--accent);
    box-shadow:0 0 0 0 var(--accent-dim);
}
nav.links{ display:flex; gap:30px; align-items:center; }
nav.links a{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px; text-transform:uppercase; letter-spacing:.04em;
    text-decoration:none; color:var(--muted);
    transition:color .2s ease;
}
nav.links a:hover{ color:var(--accent); }
.nav-cta{
    border:1px solid var(--accent) !important;
    color:var(--accent) !important;
    padding:8px 16px;
    border-radius:3px;
}
.nav-cta:hover{ background:var(--accent); color:#FFFFFF !important; }
.nav-toggle{
    display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:22px; height:2px; background:var(--accent); border-radius:2px; }
.mobile-menu{
    display:none; flex-direction:column;
    border-top:1px solid var(--line);
    background:var(--panel);
}
.mobile-menu a{
    padding:14px 28px; text-decoration:none; color:var(--ink); font-size:14px;
    font-family:'IBM Plex Mono', monospace; text-transform:uppercase; letter-spacing:.04em;
    border-bottom:1px solid var(--line);
}
.mobile-menu.open{ display:flex; }
@media (max-width: 880px){
    nav.links{ display:none; }
    .nav-toggle{ display:flex; }
}

/* HERO */
.hero{
    position:relative;
    overflow:hidden;
    padding:110px 0 90px;
    text-align:center;
    border-bottom:1px solid var(--line);
}
.hero-net{
    position:absolute; inset:0; z-index:0;
    opacity:0.55;
    /* transparent (hidden) where the text column sits, visible toward the edges */
    mask-image: radial-gradient(ellipse 46% 46% at 50% 42%, transparent 0%, transparent 55%, black 100%);
}
.hero-net svg{ width:100%; height:100%; }
@media (max-width:880px){
    .hero{ padding:80px 0 60px; min-height:640px; }
    .hero-net{ opacity:0.55; mask-image: radial-gradient(ellipse 60% 40% at 50% 45%, transparent 0%, transparent 60%, black 100%); }
}
.hero-inner{ position:relative; z-index:2; }
.eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--accent); margin-bottom:22px;
}
.hero h1{
    font-size:clamp(2.1rem, 5.6vw, 3.5rem);
    font-weight:700;
    line-height:1.12;
    max-width:840px;
    margin:0 auto;
    letter-spacing:-0.01em;
}
.hero-tagline{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:600;
    font-size:clamp(1.15rem, 2.5vw, 1.4rem);
    color:var(--warm);
    max-width:640px;
    margin:24px auto 0;
    line-height:1.45;
}
.hero-sub{
    max-width:640px; margin:22px auto 0;
    color:var(--muted); font-size:16.5px;
}
.btn-glow{
    display:inline-block;
    margin-top:38px;
    background:var(--accent);
    color:#FFFFFF;
    font-weight:600;
    text-decoration:none;
    padding:20px 10px;
    border-radius:3px;
    font-size:15.5px;
    font-family:'IBM Plex Mono', monospace;
    letter-spacing:.03em;
    text-transform:uppercase;
    box-shadow:0 0 0 1px var(--accent), 0 0 28px var(--accent-dim);
    transition:transform .2s ease, box-shadow .2s ease;
}
.btn-glow:hover{ transform:translateY(-2px); box-shadow:0 0 0 1px var(--accent), 0 0 42px var(--accent-dim); }

/* Button 1: Solid Forest Green (Primary) */
.btn-glow {
    background: #0E7A5A; /*[cite: 1] */
    color: #FFFFFF; /*[cite: 1] */
    box-shadow: 0 0 28px rgba(14, 122, 90, 0.28); /*[cite: 1] */
}

/* Button 2: Crisp Light Gold Outline/Fill */
.btn-gold {
    background: #FFFBEB; /* Soft light gold fill */
    color: #92400E;     /* Rich warm text */
    border: 1.5px solid #D97706;
    box-shadow: 0 2px 12px rgba(217, 119, 6, 0.15);
}
.btn-gold:hover {
    background: #FEF3C7;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.25);
}

/* Button 3: Crisp Soft Mint Outline/Fill */
.btn-mint {
    background: #ECFDF5; /* Soft light mint fill */
    color: #065F46;     /* Rich deep green text */
    border: 1.5px solid #10B981;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.15);
}
.btn-mint:hover {
    background: #D1FAE5;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.availability-badge{
    display:inline-flex; align-items:center; gap:10px;
    margin-top:30px;
    font-family:'IBM Plex Mono', monospace; font-size:12.5px;
    color:var(--ink); background:var(--panel-2);
    border:1px solid var(--line); border-radius:999px;
    padding:8px 18px 8px 14px;
}
.availability-badge .pulse-dot{
    width:8px; height:8px; border-radius:50%; background:var(--accent); flex:0 0 auto;
    box-shadow:0 0 0 0 rgba(184,134,42,0.5);
}

.hero-ctas{
    display:flex; flex-wrap:wrap; justify-content:center; gap:14px;
    margin-top:30px;
}
.btn-ghost{
    display:inline-block;
    background:transparent;
    color:var(--ink);
    text-decoration:none;
    padding:14px 26px;
    border-radius:3px;
    border:1px solid var(--line);
    font-size:14px;
    font-family:'IBM Plex Mono', monospace;
    letter-spacing:.02em;
    transition:border-color .2s ease, color .2s ease;
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

/* CREDENTIALS STRIP: status row */
.cred-strip{ background:var(--panel); padding:44px 0; border-bottom:1px solid var(--line); }
.cred-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }
.cred-item{
    display:flex; align-items:center; gap:16px;
    border:1px solid var(--line); border-radius:4px; padding:16px 18px;
    background:var(--panel-2);
}
.cred-item .chip{
    flex:0 0 auto; width:52px; height:52px; border-radius:4px;
    background:var(--bg); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; padding:6px;
}
.cred-item .chip img{ max-width:100%; max-height:100%; object-fit:contain; }
.cred-item .chip-text{
    background:var(--bg); color:var(--accent); font-size:11.5px; font-weight:600;
    letter-spacing:.04em; border:1px solid var(--accent);
}
.cred-item .txt p{
    margin:0; font-size:13.5px; color:var(--ink); font-weight:500; line-height:1.4;
}
.cred-item .txt .tag{
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; color:var(--accent);
    text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; display:flex; align-items:center; gap:6px;
}
.cred-item .txt .tag .dot{ width:6px; height:6px; border-radius:50%; background:var(--accent); }
@media (max-width:960px){ .cred-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .cred-grid{ grid-template-columns:1fr; } }

/* GENERIC SECTIONS */
section.block{ padding:100px 0; }
section.block.alt{ background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.block-head{ text-align:center; max-width:720px; margin:0 auto 60px; }
.block-head .idx{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--accent);
    letter-spacing:.14em; text-transform:uppercase; margin-bottom:16px;
}
.block-head h2{ font-size:clamp(1.9rem, 4vw, 2.5rem); }
.block-head p{ margin-top:20px; color:var(--muted); font-size:16px; }
.block-head .kicker{
    font-family:'IBM Plex Mono', monospace; font-weight:500; letter-spacing:.04em;
    color:var(--accent); text-transform:uppercase; font-size:12.5px; margin-top:16px;
}

/* PANELS (feature grid) */
.feature-grid{ display:grid; gap:24px; }
.feature-grid.cols-3{ grid-template-columns:repeat(3, 1fr); }
.feature-grid.cols-4{ grid-template-columns:repeat(4, 1fr); }
.feature-grid.cols-2{ grid-template-columns:repeat(2, 1fr); max-width:900px; margin:0 auto; }
@media (max-width:880px){
    .feature-grid.cols-3, .feature-grid.cols-4, .feature-grid.cols-2{ grid-template-columns:1fr; }
}
.panel{
    position:relative;
    background:var(--panel-2);
    border:1px solid var(--line);
    border-radius:4px;
    padding:32px 26px;
    text-align:left;
    transition:border-color .25s ease, transform .25s ease;
}
.panel::before, .panel::after{
    content:""; position:absolute; width:14px; height:14px;
    border-color:var(--accent); opacity:0; transition:opacity .25s ease;
}
.panel::before{ top:-1px; left:-1px; border-top:2px solid var(--accent); border-left:2px solid var(--accent); }
.panel::after{ bottom:-1px; right:-1px; border-bottom:2px solid var(--accent); border-right:2px solid var(--accent); }
.panel:hover{ border-color:var(--line); transform:translateY(-3px); }
.panel:hover::before, .panel:hover::after{ opacity:1; }
.panel .icon{ width:44px; height:44px; margin-bottom:20px; }
.panel .icon img{ width:100%; height:100%; object-fit:contain; opacity:0.85; }
.panel .tag-idx{
    font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--accent);
    letter-spacing:.08em; margin-bottom:10px; display:block;
}
.panel.panel-warm .tag-idx{ color:var(--warm); }
.panel.panel-warm::before{ border-color:var(--warm); }
.panel.panel-warm::after{ border-color:var(--warm); }
.panel h3{
    font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:1.08rem; margin-bottom:12px;
}
.panel p{ color:var(--muted); font-size:14.5px; margin:0; }

/* TEMPORALITY PULL-QUOTE */
.pulse-band{ padding:90px 0; background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pulse-inner{ max-width:760px; margin:0 auto; text-align:center; }
.pulse-inner .idx{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--accent);
    letter-spacing:.14em; text-transform:uppercase; margin-bottom:20px;
}
.pulse-quote{
    font-family:'Space Grotesk', sans-serif; font-weight:500;
    font-size:clamp(1.25rem, 2.6vw, 1.65rem); line-height:1.55; color:var(--ink);
    margin:0;
}
.pulse-quote .hl{ color:var(--accent); font-weight:600; }
.pulse-quote .hl-warm{ color:var(--warm); font-weight:600; }
.temporality-viz{ margin-top:56px; display:flex; flex-direction:column; gap:28px; text-align:left; }
.temp-row{ display:flex; align-items:center; gap:18px; }
.temp-label{
    font-size:11.5px; letter-spacing:.06em; color:var(--muted);
    width:180px; flex:0 0 auto; text-transform:uppercase;
}
.temp-track{ flex:1; height:2px; background:var(--line); position:relative; border-radius:2px; }
.temp-dot{
    position:absolute; top:50%; left:0; width:10px; height:10px; border-radius:50%;
    background:var(--accent); transform:translate(-50%,-50%);
    box-shadow:0 0 12px var(--accent-dim);
}
.temp-dot.temp-dot-warm{
    background:var(--warm);
    box-shadow:0 0 12px var(--warm-dim);
}
@media (max-width:600px){
    .temp-row{ flex-direction:column; align-items:flex-start; gap:8px; }
    .temp-track{ width:100%; }
}

/* GLOBE / REACH SECTION: real world map */
.reach{ padding:90px 0; text-align:center; background:var(--bg); }
.reach-head{ margin-bottom:44px; }
.reach-head .idx{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--accent);
    letter-spacing:.14em; text-transform:uppercase; margin-bottom:16px;
}
.reach-head h2{ font-size:clamp(1.7rem,3.6vw,2.2rem); }
.reach-head p{ margin-top:16px; color:var(--muted); font-size:14.5px; }
.worldmap-wrap{ max-width:900px; margin:0 auto; }
.worldmap-wrap svg{ width:100%; height:auto; display:block; }
#worldMap path{ fill:#E2E8E3; stroke:#F6F8F6; stroke-width:0.6; }
/* countries with real, documented work: lightly highlighted */
#worldMap g#gb path, #worldMap g#no path, #worldMap g#us path,
#worldMap path#th, #worldMap path#mm, #worldMap path#za, #worldMap path#in, #worldMap path#ie{
    fill:rgba(14,122,90,0.18);
    stroke:rgba(14,122,90,0.6);
}
.map-marker-ring{ fill:#F6F8F6; stroke:var(--accent); stroke-width:2; cursor:pointer; }
.map-marker-dot{ fill:var(--accent); }
.map-marker-home .map-marker-ring{ stroke:var(--warm); }
.map-marker-home .map-marker-dot{ fill:var(--warm); }
.map-marker-label{
    font-family:'IBM Plex Mono', monospace; font-size:11px; fill:#3E4A45;
    pointer-events:none;
}
.map-marker-group{ cursor:pointer; }
.map-marker-group:hover .map-marker-ring{ stroke-width:3; }
.map-marker-group:hover .map-marker-label{ fill:var(--accent); }
.map-marker-group.is-active .map-marker-ring{ stroke-width:3.5; }
.map-marker-group.is-active .map-marker-label{ fill:var(--accent); font-weight:600; }
.map-marker-group.is-active.map-marker-home .map-marker-label{ fill:var(--warm); }
.map-attribution{
    margin-top:18px; font-size:11px; color:#8A9690; font-family:'IBM Plex Mono', monospace;
}
.map-attribution a{ color:var(--accent); text-decoration:underline; }

.map-detail-panel{ max-width:900px; margin:22px auto 0; text-align:left; }
.map-detail-inner{
    background:var(--panel-2); border:1px solid var(--line); border-left:3px solid var(--accent);
    border-radius:6px; padding:26px 28px; transition:border-left-color .2s ease;
}
.map-detail-inner.is-warm{ border-left-color:var(--warm); }
.map-detail-empty{
    margin:0; text-align:center; color:var(--muted); font-size:13.5px;
    font-family:'IBM Plex Mono', monospace;
}
.map-detail-tag{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:.08em;
    text-transform:uppercase; color:var(--accent); margin-bottom:10px;
}
.is-warm .map-detail-tag{ color:var(--warm); }
.map-detail-content h4{
    font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:1.1rem;
    margin:0 0 10px; color:var(--ink);
}
.map-detail-content p{ color:var(--muted); font-size:14.5px; line-height:1.6; margin:0 0 18px; }
.map-detail-readmore{
    background:none; border:none; padding:0; cursor:pointer;
    font-family:'IBM Plex Mono', monospace; font-size:13px; font-weight:600;
    color:var(--accent); display:inline-flex; align-items:center; gap:6px;
}
.is-warm .map-detail-readmore{ color:var(--warm); }
.map-detail-readmore .arrow{ transition:transform .2s ease; display:inline-block; }
.map-detail-readmore:hover .arrow{ transform:translateX(4px); }

/* CASE STUDIES */
.cs-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; }
@media (max-width:880px){ .cs-grid{ grid-template-columns:1fr; } }
.cs-card{
    position:relative;
    border:1px solid var(--line); border-radius:4px; background:var(--panel-2);
    padding:30px 26px;
}
.cs-card::before, .cs-card::after{
    content:""; position:absolute; width:14px; height:14px; opacity:0; transition:opacity .25s ease;
}
.cs-card::before{ top:-1px; left:-1px; border-top:2px solid var(--accent); border-left:2px solid var(--accent); }
.cs-card::after{ bottom:-1px; right:-1px; border-bottom:2px solid var(--accent); border-right:2px solid var(--accent); }
.cs-card:hover::before, .cs-card:hover::after{ opacity:1; }
.cs-card .top-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.cs-card .logo-holder{ height:44px; display:flex; align-items:center; }
.cs-card .logo-holder .chip{
    background:var(--bg); border:1px solid var(--line); border-radius:4px; padding:6px 10px; height:44px; display:flex; align-items:center;
}
.cs-card .logo-holder img{ max-height:32px; max-width:150px; object-fit:contain; }
.cs-card .case-idx{ font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--muted); letter-spacing:.06em; }
.cs-card h3{ font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:1.08rem; margin-bottom:8px; }
.cs-card p{ color:var(--muted); font-size:14.5px; margin:0; }
.cs-card .cs-outcome{
    margin-top:14px; padding-top:14px; border-top:1px dashed var(--line);
    font-family:'IBM Plex Mono', monospace; font-size:12px; font-style:italic;
    color:#8D8272;
}
.testimonial-placeholder{
    max-width:720px; margin:0 auto; text-align:center;
    border:1px dashed var(--line); border-radius:4px; padding:36px 30px;
}
.testimonial-placeholder p{
    color:#8D8272; font-size:14px; font-style:italic; line-height:1.7; margin:0;
}

/* ABOUT */
.about-inner{ max-width:640px; margin:0 auto; text-align:center; }
.about-portrait{
    width:140px; height:180px; object-fit:cover; margin:0 auto 30px; border-radius:4px;
    border:1px solid var(--line);
}
.about-inner p{ color:var(--muted); font-size:16px; margin:0 0 20px; text-align:left; }

/* PUBLICATIONS AND SPEAKING */
.pub-cols{ display:grid; grid-template-columns:1fr 1fr; gap:50px; max-width:960px; margin:0 auto; }
@media (max-width:880px){ .pub-cols{ grid-template-columns:1fr; } }
.pub-cols h3{
    font-family:'IBM Plex Mono', monospace; font-weight:600; font-size:13px; letter-spacing:.08em;
    text-transform:uppercase; color:var(--accent); margin-bottom:24px;
}
.pub-cols ul{ margin:0; padding-left:0; list-style:none; color:var(--muted); font-size:14.5px; }
.pub-cols li{
    margin-bottom:18px; padding-left:18px; position:relative; border-left:1px solid var(--line);
}
.pub-cols li::before{
    content:""; position:absolute; left:-1px; top:6px; width:5px; height:5px; background:var(--accent); border-radius:50%;
    transform:translateX(-2px);
}
.more-list{ overflow:hidden; height:0; }
.read-more-btn{
    display:inline-flex; align-items:center; gap:6px; margin-top:4px;
    font-size:13px; font-weight:600; color:var(--accent);
    background:none; border:none; cursor:pointer; padding:0;
    font-family:'IBM Plex Mono', monospace; text-transform:uppercase; letter-spacing:.05em;
}
.read-more-btn .chev{ transition:transform .3s ease; display:inline-block; }
.read-more-btn.open .chev{ transform:rotate(180deg); }

/* CONTACT */
.contact-form{ max-width:640px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form .full{ grid-column:1 / -1; }
.contact-form input, .contact-form textarea{
    width:100%; border:1px solid var(--line); background:var(--panel-2);
    padding:14px 16px; font-family:'Inter', sans-serif; font-size:15px; color:var(--ink);
    border-radius:3px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{ color:var(--muted); }
.contact-form textarea{ min-height:130px; resize:vertical; }
.contact-form input:focus, .contact-form textarea:focus{ outline:none; border-color:var(--accent); }
.captcha-row{
    display:flex; align-items:center; gap:14px;
    font-family:'IBM Plex Mono', monospace; font-weight:600; color:var(--accent);
    font-size:1.15rem; grid-column:1/2;
}
.captcha-row input{ width:70px; text-align:center; }
.btn-outline{
    grid-column:2/3; justify-self:end;
    background:transparent; color:var(--accent); border:1px solid var(--accent);
    padding:14px 30px; font-weight:600; border-radius:3px; cursor:pointer;
    font-family:'IBM Plex Mono', monospace; font-size:13.5px; text-transform:uppercase; letter-spacing:.04em;
}
.btn-outline:hover{ background:var(--accent); color:#FFFFFF; }
.contact-alt{ text-align:center; margin-bottom:36px; }
.contact-alt .btn-ghost{ border-color:var(--accent); color:var(--accent); }
.response-note{
    grid-column:1/-1; text-align:center; margin:4px 0 0;
    font-family:'IBM Plex Mono', monospace; font-size:12.5px; color:var(--muted);
}
.cv-row{ text-align:center; margin-top:34px; }
.cv-row a{ font-size:13px; color:var(--accent); text-decoration:none; }
.cv-row a:hover{ text-decoration:underline; }
@media (max-width:600px){
    .contact-form{ grid-template-columns:1fr; }
    .captcha-row, .btn-outline{ grid-column:1/-1; justify-self:stretch; text-align:center; }
}

/* FOOTER */
footer{ background:var(--ink); color:#8FA69D; padding:64px 0 34px; border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:50px; margin-bottom:40px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }
footer h4{
    font-family:'IBM Plex Mono', monospace; font-weight:600; color:#EDF2EF; font-size:12.5px; margin-bottom:16px;
    text-transform:uppercase; letter-spacing:.08em;
}
footer ul{ list-style:none; margin:0; padding:0; }
footer li{ margin-bottom:10px; font-size:14.5px; }
footer a{ text-decoration:none; color:#A9C2B8; }
footer a:hover{ color:var(--warm); }
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12); padding-top:24px; font-size:12.5px; color:#6E8880;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-family:'IBM Plex Mono', monospace;
}

.reveal{ opacity:0; transform:translateY(24px); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1 !important; transform:none !important; } }