/* ════════════════════════════════════════
   Rocco Digital — Blog stylesheet
   Extends styles.css. Shared by /blog.html and /blog/*.html
   ════════════════════════════════════════ */

/* Containers */
.container-narrow {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 clamp(28px, 5vw, 80px);
}

/* ════════════════════════════════════════
   Eyebrow + divider
   ════════════════════════════════════════ */
.eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--quiet);
    margin-bottom: 28px;
    display: inline-block;
}

.divider {
    width: 56px;
    height: 1px;
    background: var(--accent);
    margin: 40px 0;
    border: none;
}

/* ════════════════════════════════════════
   BLOG INDEX — hero (compact, list is the star)
   ════════════════════════════════════════ */
.blog-hero {
    padding: clamp(120px, 17vh, 160px) 0 clamp(32px, 5vh, 48px);
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 18%;
    width: 760px;
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse at center,
        rgba(192, 132, 252, 0.22) 0%,
        rgba(192, 132, 252, 0.08) 30%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}
.blog-hero::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 5%;
    width: 380px;
    height: 280px;
    background: radial-gradient(
        ellipse at center,
        rgba(251, 146, 60, 0.10) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(4px);
}
.blog-hero .container-narrow {
    position: relative;
    z-index: 1;
}
.blog-hero .eyebrow {
    margin-bottom: 18px;
}
.blog-hero h1 {
    font-family: var(--font);
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 0;
}
.blog-hero h1 .heavy {
    font-weight: 700;
    letter-spacing: -0.04em;
}
.blog-hero .lede {
    margin-top: 20px;
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.005em;
    color: var(--quiet);
    max-width: 52ch;
}

/* ════════════════════════════════════════
   BLOG INDEX — tag filter
   ════════════════════════════════════════ */
.tag-filter {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-bottom: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.tag-filter button {
    background: transparent;
    border: none;
    color: var(--quiet);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    transition:
        color 220ms ease,
        background 220ms ease;
}
.tag-filter button[data-filter="all"]:hover,
.tag-filter button[data-filter="all"].active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
}
.tag-filter button[data-filter="post"]:hover,
.tag-filter button[data-filter="post"].active {
    color: #ddb6ff;
    background: rgba(192, 132, 252, 0.12);
}
.tag-filter button[data-filter="release"]:hover,
.tag-filter button[data-filter="release"].active {
    color: #fbb072;
    background: rgba(251, 146, 60, 0.12);
}
.tag-filter button[data-filter="build"]:hover,
.tag-filter button[data-filter="build"].active {
    color: #67e8f9;
    background: rgba(103, 232, 249, 0.10);
}
.tag-filter .count {
    margin-left: 6px;
    opacity: 0.6;
    font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════
   BLOG INDEX — post list
   ════════════════════════════════════════ */

/* Per-category accent color (drives hover states) */
.post-row[data-tag="post"]         { --tag-color: #c084fc; --tag-glow: rgba(192, 132, 252, 0.45); }
.post-row[data-tag="release"]      { --tag-color: #fbb072; --tag-glow: rgba(251, 146, 60, 0.45); }
.post-row[data-tag="build"]        { --tag-color: #67e8f9; --tag-glow: rgba(103, 232, 249, 0.40); }
.post-row[data-tag="signal"]  { --tag-color: #fbbf24; --tag-glow: rgba(251, 191, 36, 0.40); }

.post-list {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(80px, 14vh, 160px);
    counter-reset: post;
}
.post-row {
    border-bottom: 1px solid var(--line);
    counter-increment: post;
}
.post-row.hidden {
    display: none;
}
.post-row a {
    display: grid;
    grid-template-columns: clamp(72px, 9vw, 112px) 1fr auto;
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
    padding: clamp(28px, 4.5vh, 44px) 0 clamp(28px, 4.5vh, 44px) clamp(20px, 2.4vw, 32px);
    text-decoration: none;
    position: relative;
}
.post-row a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tag-color, var(--accent));
    box-shadow: 0 0 14px var(--tag-glow, rgba(192, 132, 252, 0.4));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.post-row a:hover::before {
    transform: scaleY(1);
}
.post-row a:hover .post-title {
    color: var(--tag-color, var(--accent));
}
.post-row a:hover .post-title .arrow {
    transform: translateX(8px);
    opacity: 1;
    color: var(--tag-color, var(--accent));
}
.post-row a:hover .post-date-col .day {
    color: var(--tag-color, var(--accent));
}
.post-row a:hover .post-date-col .month {
    color: var(--ink);
}

/* Featured (first/latest) post — bigger, more breathing room */
.post-row.featured a {
    padding: clamp(36px, 6vh, 56px) 0 clamp(36px, 6vh, 56px) clamp(20px, 2.4vw, 32px);
}
.post-row.featured .post-date-col .day {
    font-size: clamp(40px, 5vw, 64px);
}
.post-row.featured .post-title {
    font-size: clamp(30px, 4.2vw, 54px);
    margin-bottom: 18px;
}
.post-row.featured .post-excerpt {
    font-size: clamp(16px, 1.2vw, 19px);
}

/* Date stamp (left column) */
.post-date-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 6px;
}
.post-date-col .day {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 0.9;
    transition: color 220ms ease;
}
.post-date-col .month {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--quiet);
    margin-top: 8px;
    transition: color 220ms ease;
}
.post-date-col .year {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

/* Read-time column (right) */
.post-readtime {
    padding-top: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--quiet);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.post-body {
    min-width: 0;
    padding-top: 6px;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    padding: 5px 11px 5px 10px;
    border-radius: 999px;
    border: 1px solid;
}
.tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tag-post {
    background: rgba(192, 132, 252, 0.12);
    border-color: rgba(192, 132, 252, 0.36);
    color: #ddb6ff;
}
.tag-post::before {
    background: #c084fc;
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.85);
}
.tag-release {
    background: rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.38);
    color: #fbb072;
}
.tag-release::before {
    background: #fbb072;
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.85);
    animation: tagPulse 2.2s ease-in-out infinite;
}
.tag-build {
    background: rgba(103, 232, 249, 0.10);
    border-color: rgba(103, 232, 249, 0.34);
    color: #67e8f9;
}
.tag-build::before {
    background: #67e8f9;
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.7);
}
.tag-signal {
    background: rgba(251, 191, 36, 0.10);
    border-color: rgba(251, 191, 36, 0.34);
    color: #fcd34d;
}
.tag-signal::before {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.7);
}
@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(251, 146, 60, 0.55); }
    50%      { box-shadow: 0 0 14px rgba(251, 146, 60, 1); }
}

.post-title {
    font-family: var(--font);
    font-size: clamp(26px, 3.6vw, 44px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 0 0 14px;
    text-wrap: balance;
    transition: color 220ms ease;
}
.post-title .arrow {
    display: inline-block;
    font-weight: 200;
    margin-left: 6px;
    opacity: 0.4;
    transition:
        transform 280ms ease,
        opacity 220ms ease,
        color 220ms ease;
}

.post-excerpt {
    color: var(--quiet);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 54ch;
    font-weight: 300;
}
.post-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    color: var(--quiet);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
.post-meta .dot {
    opacity: 0.4;
}

@media (max-width: 720px) {
    .post-row a {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0 28px 16px;
    }
    .post-date-col {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        padding-top: 0;
    }
    .post-date-col .day {
        font-size: 22px;
    }
    .post-date-col .month {
        margin-top: 0;
    }
    .post-readtime {
        padding-top: 0;
        order: 99;
        font-size: 11px;
    }
    .post-meta-top {
        margin-bottom: 12px;
    }
    .post-title {
        font-size: 26px;
    }
    .post-row a::before {
        display: none;
    }
}

/* ════════════════════════════════════════
   NEWSLETTER — bottom of index
   ════════════════════════════════════════ */
.newsletter-block {
    margin: clamp(56px, 10vh, 120px) 0 clamp(80px, 14vh, 160px);
    padding: clamp(56px, 9vh, 96px) clamp(28px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(192, 132, 252, 0.18) 0%, transparent 55%),
        radial-gradient(80% 120% at 100% 100%, rgba(251, 146, 60, 0.10) 0%, transparent 55%),
        rgba(255, 255, 255, 0.015);
    position: relative;
    overflow: hidden;
}
.newsletter-block h2 {
    font-family: var(--font);
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
    position: relative;
}
.newsletter-block h2 .heavy {
    font-weight: 700;
    letter-spacing: -0.045em;
}
.newsletter-block .sub {
    margin: 22px 0 22px;
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--quiet);
    max-width: 48ch;
    line-height: 1.55;
    font-weight: 300;
    position: relative;
}

/* ════════════════════════════════════════
   NEWSLETTER — inline (mid/end of post)
   ════════════════════════════════════════ */
.newsletter-inline {
    margin: clamp(56px, 8vh, 96px) 0;
    padding: clamp(40px, 6vh, 64px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: transparent !important;
}
/* Force Beehiiv iframe/wrapper to be invisible */
.newsletter-inline iframe,
.newsletter-block iframe {
    background: transparent !important;
    border: none !important;
    outline: none !important;
}
.newsletter-inline div,
.newsletter-block div {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Beehiiv injected wrapper — push down from subtext */
.newsletter-inline > div,
.newsletter-block > div {
    margin-top: 36px !important;
}
.newsletter-inline h3 {
    font-family: var(--font);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--ink);
    margin: 0 0 14px;
}
.newsletter-inline h3 .heavy {
    font-weight: 700;
}
.newsletter-inline p {
    font-size: 16px;
    color: var(--quiet);
    margin: 0 0 28px;
    line-height: 1.55;
    max-width: 48ch;
    font-weight: 300;
}

/* ════════════════════════════════════════
   NEWSLETTER FORM (filled purple button)
   ════════════════════════════════════════ */
.news-form {
    width: 100%;
    max-width: 540px;
    margin-top: 32px;
    position: relative;
}
.news-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    border: none;
}
.news-row input[type="email"] {
    flex: 1;
    padding: 14px 22px;
    font-size: 15px;
    font-family: var(--font);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--ink);
    outline: none;
    min-width: 0;
    transition: border-color 220ms ease, background 220ms ease;
}
.news-row input[type="email"]::placeholder {
    color: var(--quiet);
}
.news-row input[type="email"]:focus {
    border-color: rgba(192, 132, 252, 0.6);
    background: rgba(255, 255, 255, 0.06);
}
.news-btn {
    padding: 12px 24px;
    background: var(--accent);
    color: #1a0a2a;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: opacity 220ms ease, transform 120ms ease, box-shadow 220ms ease;
    box-shadow: 0 0 0 0 rgba(192, 132, 252, 0);
}
.news-btn:hover {
    opacity: 0.94;
    box-shadow: 0 0 24px rgba(192, 132, 252, 0.45);
}
.news-btn:active {
    transform: scale(0.98);
}
.news-btn .arrow {
    font-weight: 700;
    transition: transform 220ms ease;
}
.news-btn:hover .arrow {
    transform: translateX(3px);
}
.news-success {
    display: none;
    margin-top: 18px;
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 400;
    color: #ddb6ff;
    letter-spacing: -0.005em;
}
.news-disclaimer {
    margin-top: 14px;
    font-size: 11px;
    color: var(--quiet);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
@media (max-width: 520px) {
    .news-row {
        flex-direction: column;
        gap: 10px;
    }
    .news-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ════════════════════════════════════════
   ARTICLE PAGE
   ════════════════════════════════════════ */
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(140px, 22vh, 220px) clamp(28px, 5vw, 80px) clamp(80px, 12vh, 140px);
}
.article-back {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13px;
    color: var(--quiet);
    text-decoration: none;
    margin-bottom: clamp(48px, 8vh, 96px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 220ms ease, gap 220ms ease;
}
.article-back .arrow {
    display: inline-block;
    font-weight: 200;
    transition: transform 220ms ease;
}
.article-back:hover {
    color: var(--ink);
    gap: 14px;
}
.article-back:hover .arrow {
    transform: translateX(-4px);
}

.article-tagrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}
.article-tagrow .date {
    font-size: 11px;
    font-weight: 400;
    color: var(--quiet);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

.article h1 {
    font-family: var(--font);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin: 0 0 clamp(40px, 6vh, 64px);
    text-wrap: balance;
}
.article h1 .heavy {
    font-weight: 700;
    letter-spacing: -0.05em;
}
.article h1 .pop {
    color: var(--accent);
}

.byline {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--quiet);
    padding-bottom: clamp(32px, 5vh, 48px);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(40px, 6vh, 56px);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}
.byline .avatar {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: var(--accent);
    color: #1a0a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0;
    flex-shrink: 0;
    overflow: hidden;
}
.byline .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.byline .name {
    color: var(--ink);
    font-weight: 500;
}
.byline .dot {
    opacity: 0.4;
}

/* prose */
.prose {
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}
.prose p {
    margin: 0 0 28px;
    text-wrap: pretty;
}
.prose p.lead {
    font-size: clamp(19px, 1.5vw, 24px);
    color: var(--ink);
    line-height: 1.55;
    font-weight: 300;
    letter-spacing: -0.012em;
    margin-bottom: 36px;
}
.prose h2 {
    font-family: var(--font);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: clamp(48px, 7vh, 72px) 0 18px;
}
.prose h3 {
    font-family: var(--font);
    font-size: clamp(19px, 1.6vw, 22px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.018em;
    margin: 36px 0 12px;
}
.prose ul,
.prose ol {
    margin: 0 0 28px;
    padding-left: 22px;
}
.prose li {
    margin-bottom: 10px;
    line-height: 1.65;
}
.prose li::marker {
    color: var(--quiet);
}
.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(192, 132, 252, 0.35);
    text-underline-offset: 4px;
    transition: text-decoration-color 220ms ease;
}
.prose a:hover {
    text-decoration-color: var(--accent);
}
.prose strong {
    color: var(--ink);
    font-weight: 500;
}
.prose em {
    font-style: italic;
}
.prose code {
    font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
    font-size: 0.88em;
    background: rgba(192, 132, 252, 0.1);
    color: var(--accent);
    padding: 2px 7px;
    border-radius: 3px;
}

/* Pull quote / callout */
.callout {
    margin: clamp(48px, 7vh, 72px) 0;
    padding: 0 0 0 clamp(24px, 4vw, 40px);
    border-left: 2px solid var(--accent);
}
.callout p {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.022em;
    color: var(--ink);
    font-weight: 300;
    text-wrap: balance;
}

/* Release changelog (for future release posts) */
.changelog {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}
.changelog li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    line-height: 1.55;
}
.changelog li:last-child {
    border-bottom: none;
}
.changelog .kind {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-top: 4px;
    color: var(--quiet);
}
.changelog .kind-new {
    color: var(--accent);
}
.changelog .body {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
}

/* Signoff */
.signoff {
    margin-top: clamp(48px, 7vh, 72px);
    padding-top: clamp(32px, 5vh, 48px);
    border-top: 1px solid var(--line);
    font-size: 16px;
    color: var(--quiet);
    font-weight: 300;
    letter-spacing: -0.005em;
}

/* "More notes" */
.more-posts {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 clamp(28px, 5vw, 80px) clamp(96px, 16vh, 160px);
}
.more-posts h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--quiet);
    margin: 0 0 32px;
    padding-top: clamp(64px, 10vh, 96px);
    border-top: 1px solid var(--line);
}
.more-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.more-list li {
    border-bottom: 1px solid var(--line);
}
.more-list a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 24px 0;
    text-decoration: none;
    transition: opacity 220ms ease;
}
.more-list a:hover {
    opacity: 0.6;
}
.more-list a:hover .title {
    color: var(--accent);
}
.more-list .title {
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.2;
    transition: color 220ms ease;
}
.more-list .meta {
    font-size: 11px;
    color: var(--quiet);
    flex-shrink: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════
   FADE IN
   ════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.fade-in:nth-child(2) {
    animation-delay: 0.08s;
}
.fade-in:nth-child(3) {
    animation-delay: 0.16s;
}
.fade-in:nth-child(4) {
    animation-delay: 0.24s;
}
.fade-in:nth-child(5) {
    animation-delay: 0.32s;
}

/* ════════════════════════════════════════
   ABOUT PAGE — profile cards
   ════════════════════════════════════════ */
.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 48px 0 24px;
}
.profile-avatar {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.profile-info h2 {
    margin: 0;
}
.profile-role {
    font-size: 13px;
    color: var(--quiet);
    letter-spacing: 0.06em;
    margin: 0;
}
