/* Design System & Variables (Aleo-inspired) */
:root {
    /* greys — exactly three background levels */
    --bg-page: #0a0a0d;
    --bg-surface: #141418;
    --bg-card: #18181d;
    /* borders */
    --border-color: #2a2a31;
    --border-subtle: #222228;
    /* text — exactly two levels plus one bright heading value */
    --text-body: #d8d8de;
    --text-muted: #9b9ba6;
    --text-strong: #f2f2f5;  /* headings, strong, logo-white */
    /* red — exactly two shades, with strict roles */
    --red-deep: #9d0a1b;     /* ONLY borders, badges, background tints */
    --red-active: #c8102e;   /* ONLY active/interactive states and red text */
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', Courier, monospace;
    --transition-speed: 0.3s;
}

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

html, body {
    background-color: var(--bg-page);
}

body {
    background-color: var(--bg-page);
    color: var(--text-body);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
    height: 100dvh;
}

/* -------------------------------------------------------------
   Intro Loader Animation
   ------------------------------------------------------------- */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #08080c;
    background-image: radial-gradient(#2d0f12 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

#intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.intro-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 2.5rem;
    color: #9d0a1b;
    text-transform: uppercase;
    letter-spacing: 0.8em;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.95);
    animation: tracking-in 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.3s forwards;
    padding-left: 0.8em; /* Offset for letter-spacing centering */
}

.saddle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none;
    z-index: 1;
}

/* SVG Line Drawing Keyframes & Styles */
.manifold-line {
    fill: none;
    stroke-width: 1;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-line 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.manifold-line.stable-1,
.manifold-line.stable-2 {
    stroke: #443336; /* Muted deep burgundy grey */
    opacity: 0.5;
}

.manifold-line.unstable-1,
.manifold-line.unstable-2 {
    stroke: #9d0a1b; /* Active unstable manifolds */
    opacity: 0.7;
}

.hyperbola-path {
    fill: none;
    stroke: #9d0a1b;
    stroke-width: 1.2;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    opacity: 0.8;
}

.left-branch,
.right-branch {
    animation: draw-line 2.5s ease-out 1.2s forwards;
}

.top-branch,
.bottom-branch {
    stroke: #c8102e;
    animation: draw-line 2.5s ease-out 1.6s forwards;
}

/* Elliptic Curve Large */
.ecc-path-large {
    fill: none;
    stroke: #c8102e;
    stroke-width: 1.5;
    filter: drop-shadow(0px 0px 4px rgba(200, 16, 46, 0.4));
    opacity: 0.35;
}

.ecc-path-large.loop {
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: draw-line 3.5s cubic-bezier(0.22, 0.61, 0.36, 1) 1.5s forwards;
}

.ecc-path-large.branch {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw-line 3.5s cubic-bezier(0.22, 0.61, 0.36, 1) 1.9s forwards;
}

/* Finite Field Point Grid */
.fq-point {
    fill: #a0a0b0;
    opacity: 0;
    animation: fade-in-point 1.5s ease 0.6s forwards;
}

/* Orbiting Cryptographic Formulas */
.formula-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    fill: var(--red-active);
    text-shadow: 0 0 6px rgba(200, 16, 46, 0.4);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.formula-1 {
    offset-path: path('M 600,400 m -520,0 a 520,340 0 1,0 1040,0 a 520,340 0 1,0 -1040,0');
    offset-rotate: 0deg;
    animation: formula-fade-in 1.5s ease 2.2s forwards, formula-orbit 24s linear 2.2s infinite;
    font-size: 0.95rem;
    font-weight: 500;
}

.formula-2 {
    offset-path: path('M 600,400 C 200,150 100,650 600,400 C 1100,150 1000,650 600,400');
    offset-rotate: 0deg;
    animation: formula-fade-in 1.5s ease 2.5s forwards, formula-orbit 32s linear 2.5s infinite;
    font-weight: 700;
    font-size: 0.9rem;
}

.formula-3 {
    offset-path: path('M 600,400 m -480,0 a 480,280 0 1,0 960,0 a 480,280 0 1,0 -960,0');
    offset-rotate: 0deg;
    animation: formula-fade-in 1.5s ease 2.8s forwards, formula-orbit 28s linear 2.8s infinite;
}

.formula-4 {
    offset-path: path('M 600,400 m -350,0 a 350,220 0 1,0 700,0 a 350,220 0 1,0 -700,0');
    offset-rotate: 0deg;
    animation: formula-fade-in 1.5s ease 1.8s forwards, formula-orbit 20s linear 1.8s infinite;
    font-size: 1.05rem;
    font-weight: 700;
}

.formula-5 {
    offset-path: path('M 600,400 C 200,150 100,650 600,400 C 1100,150 1000,650 600,400');
    offset-rotate: 0deg;
    animation: formula-fade-in 1.5s ease 3.2s forwards, formula-orbit 38s linear 3.2s infinite;
}

@keyframes formula-fade-in {
    to {
        opacity: 0.75;
    }
}

@keyframes formula-orbit {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

.saddle-point {
    fill: #c8102e;
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    animation: pop-point 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 3.5s forwards;
}

.intro-tagline {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.25rem;
    color: #f2f2f5;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding-left: 0.18em; /* Offset for letter-spacing centering */
    margin-top: 2.5rem;
    opacity: 0;
    transform-origin: center top;
    animation: fade-in 1s ease 0.5s forwards, tagline-grow 4.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.intro-zcash-address {
    position: absolute;
    top: 150px;
    right: 60px;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--red-active);
    text-shadow: 0 0 8px rgba(200, 16, 46, 0.7), 0 0 15px rgba(200, 16, 46, 0.4);
    letter-spacing: 0.05em;
    z-index: 10000;
    opacity: 0;
    animation: fade-in 1s ease 0.5s forwards, zcash-glow-pulse 4s infinite 1.5s;
}

.intro-zcash-caret {
    display: inline-block;
    color: var(--red-active);
    font-family: sans-serif;
    margin-left: 2px;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(200, 16, 46, 0.7);
    animation: soft-blink 1s infinite alternate;
}

@keyframes zcash-glow-pulse {
    0%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 8px rgba(200, 16, 46, 0.7), 0 0 15px rgba(200, 16, 46, 0.4);
    }
    48% {
        opacity: 0.85;
        text-shadow: 0 0 6px rgba(200, 16, 46, 0.5), 0 0 10px rgba(200, 16, 46, 0.3);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 14px rgba(200, 16, 46, 0.9), 0 0 25px rgba(200, 16, 46, 0.5);
    }
    52% {
        opacity: 0.9;
        text-shadow: 0 0 8px rgba(200, 16, 46, 0.7), 0 0 15px rgba(200, 16, 46, 0.4);
    }
    75% {
        opacity: 0.95;
        text-shadow: 0 0 9px rgba(200, 16, 46, 0.75), 0 0 18px rgba(200, 16, 46, 0.45);
    }
}

@keyframes tagline-grow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(2);
    }
}

/* -------------------------------------------------------------
   Main App Container Layout
   ------------------------------------------------------------- */
#app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    opacity: 1;
    transition: opacity 0.6s ease-in-out 0.2s;
}

#app-container.hidden {
    opacity: 0;
}

#app-container.no-transition {
    transition: none !important;
}

/* Header */
.site-header {
    height: 70px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: var(--bg-page);
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3em;
}

.logo-red {
    color: var(--red-active);
}

.logo-white {
    color: var(--text-strong);
}

.header-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    flex-grow: 1;
    overflow: hidden;
}

/* Sidebar */
.sidebar-nav {
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background-color: var(--bg-page);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-align: left;
    transition: all var(--transition-speed) ease;
    border-radius: 0;
}

.nav-item:hover {
    color: var(--text-body);
    border-color: #3a3a42;
    background: none;
}

.nav-item.active {
    color: var(--text-strong);
    border-color: var(--red-active);
    background-color: rgba(200, 16, 46, 0.07);
}

.nav-num {
    color: var(--red-active);
    font-weight: 700;
}

.sidebar-footer {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Content Viewport */
.content-viewport {
    padding: 48px 64px;
    overflow-y: auto;
    background-color: var(--bg-surface);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    max-width: 1040px;
    margin: 0 auto;
}

/* Running text blocks */
.text-block,
.lead-text,
.contact-info p {
    max-width: 720px;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* HOME tab styles inherited from .tab-content */

/* Typography & Content styling */
.section-title {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-strong);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-strong);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-strong);
    margin-bottom: 3rem;
    line-height: 1.65;
}

.text-block p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
}

.text-block strong {
    color: var(--text-strong);
    font-weight: 500;
}

strong {
    color: var(--text-strong);
    font-weight: 500;
}

blockquote {
    border-left: 2px solid var(--red-deep);
    padding: 16px 24px;
    margin: 2rem 0;
    font-style: normal;
    color: var(--text-body);
    background-color: rgba(200, 16, 46, 0.05);
}



/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: all var(--transition-speed) ease;
}

.info-card:hover {
    border-color: var(--red-active);
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.25);
    transform: translateY(-2px);
}

.info-card h3 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #f2f2f5;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Solutions List */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-item {
    border: 1px solid var(--border-color);
    padding: 24px 30px;
    background-color: var(--bg-card);
    transition: all var(--transition-speed) ease;
}

.solution-item:hover {
    border-color: var(--red-active);
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.25);
    transform: translateY(-2px);
}

.solution-item h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-strong);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.solution-item p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Publications */
.pub-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 24px;
    background-color: var(--bg-card);
    transition: all var(--transition-speed) ease;
}

.pub-card:hover {
    border-color: var(--red-active);
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.25);
    transform: translateY(-2px);
}

.pub-tag, .status-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    background-color: rgba(255, 255, 255, 0.06);
    color: #f2f2f5;
    padding: 4px 10px;
    letter-spacing: 0.15em;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
    margin-bottom: 15px;
}

.pub-card h4 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-strong);
    margin-bottom: 5px;
}

.pub-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pub-desc {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* Contact Grid */
.contact-grid {
    max-width: 720px;
}

.contact-info p {
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-line {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.detail-label {
    width: 140px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.detail-value {
    color: var(--text-body);
    font-weight: 400;
    font-size: 0.95rem;
}



/* -------------------------------------------------------------
   Animations Keyframes
   ------------------------------------------------------------- */
@keyframes tracking-in {
    0% {
        letter-spacing: 0.4em;
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        letter-spacing: 0.8em;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}



@keyframes fade-in-point {
    to {
        opacity: 0.6;
    }
}

@keyframes float-formula {
    0% {
        opacity: 0;
        transform: translateY(10px) rotate(-3deg);
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes pop-point {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* -------------------------------------------------------------
   Responsive Media Queries
   ------------------------------------------------------------- */
@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        overflow-y: auto;
    }
    
    body {
        height: auto;
    }
    
    #app-container {
        height: auto;
    }

    .sidebar-nav {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px 40px;
    }

    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .nav-item {
        padding: 12px 16px;
        flex: 1 1 calc(33% - 10px);
        min-width: 150px;
        justify-content: center;
    }

    .content-viewport {
        padding: 40px;
    }
    

}

@media (max-width: 600px) {
    .site-header {
        padding: 0 20px;
        height: 60px;
    }

    .sidebar-nav {
        padding: 20px;
    }

    .nav-item {
        flex: 1 1 100%;
    }

    .content-viewport {
        padding: 30px 20px;
    }

    .intro-title {
        font-size: 1.8rem;
        letter-spacing: 0.4em;
    }

    .intro-tagline {
        font-size: 0.95rem;
    }

    .intro-zcash-address {
        top: 110px;
        right: 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Version Badge */
.version-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    margin-left: 10px;
    letter-spacing: 0.1em;
    opacity: 0.8;
    vertical-align: middle;
}

/* Intro Skip Hint */
.intro-skip-hint {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #a0a0b0;
    opacity: 0;
    letter-spacing: 0.2em;
    z-index: 10000;
    animation: fade-in 1s ease 1s forwards;
    cursor: pointer;
    pointer-events: auto;
}

.intro-skip-hint:hover {
    color: #f5f5f7;
}

/* Pub Soon */
.pub-soon {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    letter-spacing: 0.05em;
}

/* Library styling */
.library-sections {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 2.5rem;
}

.library-group {
    margin-bottom: 10px;
}

.library-group-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--red-deep);
    padding-left: 15px;
    text-transform: uppercase;
}

/* Prefers Reduced Motion Query */
@media (prefers-reduced-motion: reduce) {
    #intro-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: none !important;
    }
    #app-container {
        opacity: 1 !important;
        transition: none !important;
    }
    .ecc-path-large,
    .manifold-line,
    .hyperbola-path,
    .fq-point,
    .saddle-point,
    .intro-title,
    .intro-tagline {
        animation: none !important;
        opacity: 1 !important;
        stroke-dashoffset: 0 !important;
        transform: none !important;
        scale: 1 !important;
    }
    .formula-text {
        animation: none !important;
        opacity: 0.75 !important;
        offset-path: none !important;
        position: absolute !important;
    }
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #3a3a42;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555562;
}

/* Links */
a {
    color: var(--text-body);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 3px;
}
a:hover {
    color: #f2f2f5;
    text-decoration-color: #f2f2f5;
}

/* Thesis Line */
#thesis-line {
    font-family: "Playwrite US Trad", cursive;
    font-weight: 200; /* Thin calligraphic weight */
    font-size: clamp(0.85rem, 1.2vw, 1.15rem); /* Increased size to fit exactly 2 lines on desktop */
    line-height: 1.7; /* Line height for readability */
    color: #f2f2f5;
    text-shadow: none; /* No shadow / thin strokes */
    width: 56%; /* Epigraph width */
    max-width: 560px; /* Cap width to prevent line length growing too long */
    margin: 24px 0 0 auto; /* Pushed to the right */
    text-align: left; /* Characters stay left-aligned */
    min-height: clamp(3.0rem, 4.2vw, 4.0rem); /* Bounded height for 2 lines */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #thesis-line {
        width: 88%; /* Slightly wider on mobile */
        margin-left: auto; /* Still pushed to the right */
        min-height: 4.8rem; /* Space for 3 lines on mobile */
    }
}

.thesis-author {
    font-family: "Playwrite US Trad", cursive;
    font-weight: 200;
    font-size: clamp(0.7rem, 0.9vw, 0.9rem); /* Scaled up in proportion to the quote */
    color: rgba(242, 242, 245, 0.65); /* Subtle color for author signature */
    width: 56%;
    max-width: 560px;
    margin: 12px 0 0 auto; /* Align with quote block, space below it */
    text-align: right; /* Right-aligned under the left-aligned quote */
    opacity: 0;
    transition: opacity 1.5s ease;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .thesis-author {
        width: 88%;
        margin-left: auto;
    }
}

/* Typewriter character fade-in for smooth unrolling */
#thesis-line .char {
    display: inline;
    animation: char-fade-in 0.08s ease forwards;
}

@keyframes char-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.thesis-caret {
    display: inline-block;
    color: #9b9ba6;
    font-family: sans-serif;
    margin-left: 2px;
    animation: soft-blink 1s infinite alternate;
}

@keyframes soft-blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

