:root {
    --ink: #0f172a;
    --ink-light: #1e293b;
    --ink-muted: #475569;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --surface: #ffffff;
    --surface-warm: #f8fafc;
    --surface-cool: #f0f9ff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-500: #06b6d4;
    --amber: #f59e0b;
    --red: #ef4444;
    --green: #22c55e;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --radius-xl: 20px;
    --max-width: 1140px;
    --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
    --gradient-soft: linear-gradient(135deg, var(--cyan-50) 0%, #f0fdf4 100%);
    --glow: 0 4px 20px rgba(8, 145, 178, 0.18);
    --glow-lg: 0 8px 32px rgba(8, 145, 178, 0.24);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--surface-warm); color: var(--ink); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--surface); padding: 0.75rem 1.5rem; border-radius: 0 0 var(--radius) var(--radius); font-weight: 600; font-size: 0.875rem; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: var(--radius-sm); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: var(--radius); font-weight: 700; font-size: 0.9375rem; font-family: var(--font); cursor: pointer; border: none; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; }
.btn--primary { background: var(--gradient); color: white; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--glow-lg); }
.btn--secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn--secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ===== TOP BAR ===== */
.topbar { background: var(--ink); color: rgba(255,255,255,0.7); font-size: 0.8125rem; padding: 0.5rem 1.5rem; }
.topbar__inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--cyan-100); font-weight: 500; }
.topbar a:hover { color: white; }

/* ===== NAVIGATION ===== */
.nav { background: white; border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; }
.nav--scrolled { box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); }
.nav__inner { max-width: var(--max-width); margin: 0 auto; padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.nav__logo img { height: 36px; width: auto; border-radius: 8px; }
.nav__logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Desktop menu */
.nav__menu { display: flex; align-items: center; gap: 0.5rem; }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 0.375rem; padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--ink-muted); border-radius: var(--radius-sm); transition: all 0.2s; }
.nav__link:hover { color: var(--cyan); background: var(--surface-warm); }
.nav__link.active { color: var(--cyan); background: var(--cyan-50); }
.nav__link svg { width: 16px; height: 16px; opacity: 0.6; }

/* Dropdown */
.nav__dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s ease; z-index: 50; }
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a { display: flex; align-items: center; gap: 0.625rem; padding: 0.625rem 0.875rem; font-size: 0.875rem; color: var(--ink-muted); border-radius: var(--radius-sm); transition: all 0.15s; }
.nav__dropdown a:hover { background: var(--surface-warm); color: var(--cyan); }
.nav__dropdown a .icon { font-size: 1rem; width: 20px; text-align: center; }
.nav__dropdown-sep { height: 1px; background: var(--border-light); margin: 0.375rem 0; }

/* CTA group */
.nav__cta-group { display: flex; align-items: center; gap: 0.75rem; }

/* Mobile */
.nav__ham { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); padding: 0.25rem; }

@media (max-width: 900px) {
    .nav__menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: white; flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; z-index: 200; }
    .nav__menu--open { display: flex; }
    .nav__ham { display: block; }
    .nav__item { width: 100%; max-width: 300px; }
    .nav__link { font-size: 1.125rem; padding: 1rem; justify-content: center; }
    .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1.5rem; display: none; }
    .nav__item--open .nav__dropdown { display: block; }
    .nav__cta-group { display: none; }
}

/* ===== HERO ===== */
.hero { background: var(--gradient-soft); padding: 80px 1.5rem 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(8,145,178,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(13,148,136,0.04) 0%, transparent 50%); pointer-events: none; }
.hero__inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: white; border: 1px solid var(--cyan-100); color: var(--cyan-dark); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.hero__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; color: var(--ink); }
.hero__title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero__desc { font-size: 1.125rem; color: var(--slate); max-width: 600px; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== CARDS GRID ===== */
.cards { max-width: var(--max-width); margin: 0 auto; padding: 60px 1.5rem; }
.cards__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); opacity: 0; transition: opacity 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan-100); }
.card:hover::before { opacity: 1; }
.card__icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.card__title { font-size: 1.125rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.card__text { font-size: 0.9375rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.25rem; }
.card__meta { display: flex; align-items: center; justify-content: space-between; }
.card__badge { display: inline-flex; align-items: center; padding: 0.375rem 0.875rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; background: var(--cyan-50); color: var(--cyan-dark); }
.card__arrow { color: var(--slate-light); font-size: 1.25rem; transition: all 0.2s; }
.card:hover .card__arrow { color: var(--cyan); transform: translateX(4px); }

/* ===== SECTIONS ===== */
.section { max-width: var(--max-width); margin: 0 auto; padding: 48px 1.5rem; }
.section__title { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.625rem; }
.section__text { color: var(--slate); line-height: 1.8; margin-bottom: 1rem; }
.section__list { list-style: none; }
.section__list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.625rem; color: var(--ink-muted); }
.section__list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: bold; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th, td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--border-light); }
th { background: var(--surface-warm); color: var(--ink-muted); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em; }
td { color: var(--slate); }
tr:hover td { background: rgba(8,145,178,0.03); }

/* ===== ALERT ===== */
.alert { background: linear-gradient(135deg, rgba(251,191,36,0.1), rgba(168,85,247,0.05)); border: 1px solid rgba(251,191,36,0.3); border-radius: var(--radius); padding: 1.25rem; margin: 1rem 0; }
.alert__title { font-weight: 700; color: var(--ink-muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }

/* ===== TIMELINE ===== */
.timeline { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin: 1rem 0; }
.timeline__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-weight: 700; color: var(--ink-muted); }
.timeline__item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.timeline__item:last-child { border-bottom: none; padding-bottom: 0; }
.timeline__time { min-width: 100px; font-weight: 700; color: var(--slate-light); font-size: 0.875rem; }
.timeline__content { flex: 1; color: var(--slate); font-size: 0.9375rem; }
.timeline__content strong { color: var(--ink-muted); }

/* ===== GRID CARDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero { padding: 60px 1rem 40px; }
    .cards { padding: 40px 1rem; }
    .section { padding: 32px 1rem; }
}

/* ===== MEASURE CARDS ===== */
.measure-card { background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: all 0.3s; }
.measure-card:hover { border-color: var(--cyan-100); box-shadow: var(--shadow); }
.measure-card__title { font-size: 0.9375rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.measure-card__text { font-size: 0.875rem; color: var(--slate); line-height: 1.6; margin: 0; }

/* ===== AUTH CARDS ===== */
.auth-card { background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.auth-card__title { font-size: 1rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.auth-card__text { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.6; }

/* ===== INFO BOX ===== */
.infobox { max-width: var(--max-width); margin: 0 auto 60px; padding: 0 1.5rem; }
.infobox__inner { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.infobox__icon { width: 56px; height: 56px; border-radius: var(--radius); background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0; }
.infobox__content { flex: 1; min-width: 200px; }
.infobox__title { font-size: 1.125rem; font-weight: 700; color: var(--ink); margin-bottom: 0.375rem; }
.infobox__text { font-size: 0.9375rem; color: var(--slate); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 48px 1.5rem 32px; }
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; font-size: 1.125rem; color: white; margin-bottom: 0.75rem; }
.footer__brand img { height: 32px; width: auto; border-radius: 6px; }
.footer__tagline { font-size: 0.875rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 1rem; }
.footer__title { font-size: 0.8125rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.875rem; color: var(--slate-light); transition: color 0.2s; }
.footer__links a:hover { color: var(--cyan-100); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.8125rem; color: var(--slate); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8125rem; color: var(--slate); transition: color 0.2s; }
.footer__legal a:hover { color: var(--cyan-100); }

@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* ===== ENTITY CARDS ===== */
.entity-card { background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.entity-card__title { font-size: 1rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.entity-card__subtitle { font-size: 0.75rem; color: var(--slate-light); margin-bottom: 0.75rem; }
.entity-card__list { list-style: none; }
.entity-card__list li { font-size: 0.8125rem; color: var(--slate); padding-left: 1rem; position: relative; margin-bottom: 0.375rem; }
.entity-card__list li::before { content: '•'; position: absolute; left: 0; color: var(--slate-light); }

/* ===== SECTOR CARDS ===== */
.sector-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.3s; }
.sector-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--cyan-100); }
.sector-card__title { font-size: 1rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.sector-card__list { list-style: none; }
.sector-card__list li { font-size: 0.8125rem; color: var(--slate); padding-left: 1rem; position: relative; margin-bottom: 0.375rem; }
.sector-card__list li::before { content: '•'; position: absolute; left: 0; color: var(--slate-light); font-size: 0.625rem; top: 2px; }
.sector-sub { margin-top: 0.75rem; padding-left: 1rem; border-left: 2px solid var(--border-light); }
.sector-sub__title { font-size: 0.75rem; color: var(--slate-light); margin-bottom: 0.5rem; }

/* ===== CATEGORY HEADER ===== */
.category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.category-header__icon { font-size: 1.5rem; }
.category-header__title { font-size: 1.25rem; font-weight: 700; color: var(--cyan-dark); }
.category-header__badge { background: var(--cyan-50); border: 1px solid var(--cyan-100); color: var(--cyan-dark); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-left: auto; }
.category-header__badge--important { background: #fef3c7; border-color: #fcd34d; color: #d97706; }

/* ===== CRITERIA CARDS ===== */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1rem 0; }
.criteria-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; }
.criteria-card__title { font-size: 0.8125rem; font-weight: 700; color: var(--ink-muted); margin-bottom: 0.75rem; }
.criteria-card__value { font-size: 1.25rem; font-weight: 800; color: var(--slate); margin-bottom: 0.25rem; }
.criteria-card__label { font-size: 0.75rem; color: var(--slate-light); }
.criteria-card--included { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.05); }
.criteria-card--included .criteria-card__value { color: var(--green); }
.criteria-card--excluded { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.05); }
.criteria-card--excluded .criteria-card__value { color: var(--red); }

/* ===== PENALTY CARDS ===== */
.penalty-card { background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.penalty-card__title { font-size: 1rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 0.75rem; }
.penalty-card__amount { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 0.5rem 0; }
.penalty-card__text { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }
.penalty-card__note { font-size: 0.75rem; color: var(--slate-light); margin-top: 0.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .criteria-grid { grid-template-columns: 1fr; }
    .infobox__inner { flex-direction: column; text-align: center; }
}
/* ===== ADDITIONAL CLASSES FOR ITALIAN PAGES ===== */

/* Sections */
.section { padding: 3rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__title { font-size: 1.75rem; font-weight: 800; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.section__subtitle { color: var(--ink-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* Cards (alternative naming) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.card__desc { color: var(--slate); font-size: 0.9375rem; line-height: 1.6; flex: 1; }

/* Chapter styling */
.chapter { padding-top: 2rem; }
.chapter__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.chapter__num { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem; flex-shrink: 0; }
.chapter__title { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.stat { text-align: center; padding: 1.5rem 1rem; background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.stat__value { font-size: 2.25rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.25rem; }
.stat__label { font-size: 0.875rem; color: var(--ink-muted); font-weight: 600; }

/* Info boxes */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.info-box { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 1.75rem; }
.info-box--accent { border-left: 4px solid var(--cyan); }
.info-box--amber { border-left: 4px solid var(--amber); }
.info-box h3 { font-size: 1.125rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
.info-box p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; }

/* Alerts */
.alert { padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); margin-bottom: 1.5rem; font-size: 0.9375rem; line-height: 1.6; }
.alert--red { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert--amber { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }

/* Checklists */
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 0.5rem 0; padding-left: 1.75rem; position: relative; color: var(--ink-light); font-size: 0.9375rem; }
.checklist li::before { content: "☐"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: var(--radius); border: 1px solid var(--border-light); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th { background: var(--surface-cool); padding: 0.875rem 1rem; text-align: left; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--border); white-space: nowrap; }
td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--border-light); color: var(--ink-light); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--surface-warm); }

/* Reference links */
.ref-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--cyan-dark); font-weight: 600; font-size: 0.875rem; margin-top: 1rem; transition: color 0.2s; }
.ref-link:hover { color: var(--teal-dark); text-decoration: underline; }

/* Timeline */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gradient); border-radius: 2px; }
.timeline__item { position: relative; padding-bottom: 1.5rem; }
.timeline__item::before { content: ""; position: absolute; left: -1.625rem; top: 0.4rem; width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); border: 2px solid var(--surface); }
.timeline__date { font-weight: 700; color: var(--cyan-dark); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.timeline__text { color: var(--ink-muted); font-size: 0.9375rem; line-height: 1.5; }

/* Content text */
.section__text { color: var(--ink-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.section__list { margin-left: 1.5rem; padding-left: 1rem; }
.section__list li { margin-bottom: 0.75rem; color: var(--ink-light); font-size: 0.9375rem; line-height: 1.6; }
.section__list li::marker { color: var(--cyan); }
