/* thefirst.quest - Styles */
/* Colors: #1a1a2e (deep base), #4a90d9 (primary blue), #f5f0e8 (warm off-white), #e8b84b (accent gold), #6c757d (muted gray) */
/* Fonts: IBM Plex Mono, Inter */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #1a1a2e;
    color: #f5f0e8;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Parallax Container */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-layer svg {
    width: 100%;
    height: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    transition: background-color 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.nav--scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 1px;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #e8b84b;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #e8b84b;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background-color: #f5f0e8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle--active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: rgba(26, 26, 46, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu--open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    color: #f5f0e8;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #e8b84b;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 60px;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero__asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #4a90d9;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero__heading {
    margin-bottom: 24px;
}

.hero__heading-line {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.05;
}

.hero__heading-line--1 {
    font-size: clamp(48px, 7vw, 96px);
    color: #f5f0e8;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

.hero__heading-line--2 {
    font-size: clamp(56px, 8vw, 112px);
    color: #e8b84b;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease 0.2s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.7s forwards;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #e8b84b;
}

.hero__stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #6c757d;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero__cta {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    background-color: #e8b84b;
    padding: 14px 32px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

.hero__cta:hover {
    background-color: #f0c95e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 184, 75, 0.3);
}

.hero__isometric-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 0.4s forwards;
}

.hero__isometric {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.hero__scroll-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #6c757d;
    letter-spacing: 3px;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #e8b84b, transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Marble Surface */
.marble-surface {
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.06) 0%, rgba(245, 240, 232, 0.02) 50%, rgba(245, 240, 232, 0.05) 100%);
    border: 1px solid rgba(245, 240, 232, 0.08);
    position: relative;
}

.marble-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(245, 240, 232, 0.02) 40px,
        rgba(245, 240, 232, 0.02) 42px
    );
    pointer-events: none;
}

.marble-surface-large {
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.05) 0%, rgba(245, 240, 232, 0.01) 40%, rgba(245, 240, 232, 0.04) 100%);
    border: 1px solid rgba(245, 240, 232, 0.1);
    position: relative;
}

.marble-surface-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        30deg,
        transparent,
        transparent 60px,
        rgba(245, 240, 232, 0.015) 60px,
        rgba(245, 240, 232, 0.015) 62px
    );
    pointer-events: none;
}

/* Chronicle Section */
.chronicle {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.9) 5%, rgba(26, 26, 46, 0.95) 100%);
}

.chronicle__header {
    text-align: center;
    margin-bottom: 80px;
}

.chronicle__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #4a90d9;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.chronicle__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.chronicle__subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #6c757d;
    letter-spacing: 1px;
}

.chronicle__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.chronicle__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #4a90d9 10%, #4a90d9 90%, transparent);
    transform: translateX(-50%);
}

.chronicle__entry {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.chronicle__entry.revealed {
    opacity: 1;
    transform: translateY(0);
}

.chronicle__entry--left {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.chronicle__entry--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.chronicle__marker {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.chronicle__card {
    padding: 28px;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chronicle__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.chronicle__date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #e8b84b;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.chronicle__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.chronicle__card-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.chronicle__tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #4a90d9;
    letter-spacing: 2px;
    padding: 4px 12px;
    border: 1px solid rgba(74, 144, 217, 0.3);
    display: inline-block;
}

/* Achievements Section */
.achievements {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    background-color: rgba(26, 26, 46, 0.95);
}

.achievements__header {
    text-align: center;
    margin-bottom: 80px;
}

.achievements__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #4a90d9;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.achievements__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.achievements__subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #6c757d;
    letter-spacing: 1px;
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.04), rgba(245, 240, 232, 0.01));
    border: 1px solid rgba(245, 240, 232, 0.06);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.achievement-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card--hover {
    transform: translateY(-8px) !important;
    border-color: rgba(232, 184, 75, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(232, 184, 75, 0.05);
}

.achievement-card__crystal {
    margin-bottom: 20px;
}

.achievement-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.achievement-card__desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.achievement-card__count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #e8b84b;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Archive Section */
.archive {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
}

.archive__header {
    text-align: center;
    margin-bottom: 80px;
}

.archive__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #4a90d9;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.archive__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.archive__subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #6c757d;
    letter-spacing: 1px;
}

.archive__featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 48px;
    border-radius: 2px;
}

.archive__featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.archive__featured-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #e8b84b;
    letter-spacing: 2px;
    padding: 4px 12px;
    border: 1px solid rgba(232, 184, 75, 0.3);
}

.archive__featured-id {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #6c757d;
}

.archive__featured-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 8px;
}

.archive__featured-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #e8b84b;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.archive__featured-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.9;
    margin-bottom: 32px;
}

.archive__featured-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.archive__data-row {
    display: flex;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
}

.archive__data-key {
    color: #4a90d9;
    min-width: 100px;
}

.archive__data-value {
    color: #6c757d;
}

.archive__data-value--active {
    color: #e8b84b;
}

.archive__featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive__crystal-display {
    width: 100%;
    max-width: 280px;
    height: auto;
    animation: crystalRotate 20s linear infinite;
}

@keyframes crystalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Archive Records */
.archive__records {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.archive__record {
    display: grid;
    grid-template-columns: 80px 1fr 140px 120px;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(245, 240, 232, 0.02);
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.archive__record.revealed {
    opacity: 1;
    transform: translateY(0);
}

.archive__record--hover {
    background: rgba(245, 240, 232, 0.05);
    border-color: rgba(74, 144, 217, 0.2);
    transform: translateX(4px) !important;
}

.archive__record-id {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #4a90d9;
    font-weight: 500;
}

.archive__record-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.archive__record-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #f5f0e8;
}

.archive__record-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #6c757d;
}

.archive__record-category {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #6c757d;
    letter-spacing: 1.5px;
}

.archive__record-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #e8b84b;
    letter-spacing: 1px;
}

.archive__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e8b84b;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* About Section */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    background-color: rgba(26, 26, 46, 0.98);
}

.about__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #4a90d9;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.about__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 24px;
}

.about__description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Terminal */
.about__terminal {
    margin-top: 32px;
    border: 1px solid rgba(74, 144, 217, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.about__terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(74, 144, 217, 0.08);
    border-bottom: 1px solid rgba(74, 144, 217, 0.15);
}

.about__terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.about__terminal-dot--red { background-color: #e74c3c; }
.about__terminal-dot--yellow { background-color: #e8b84b; }
.about__terminal-dot--green { background-color: #2ecc71; }

.about__terminal-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #6c757d;
    margin-left: 8px;
}

.about__terminal-body {
    padding: 16px;
    background: rgba(26, 26, 46, 0.8);
}

.about__terminal-line {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #f5f0e8;
    line-height: 1.8;
}

.about__terminal-line--output {
    color: #4a90d9;
    padding-left: 20px;
}

.about__terminal-prompt {
    color: #e8b84b;
    margin-right: 8px;
}

.about__terminal-cursor {
    color: #e8b84b;
    animation: none;
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__isometric-data {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px;
    background-color: #1a1a2e;
    border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer__content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__brand-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 1px;
}

.footer__tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #6c757d;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 240, 232, 0.08), transparent);
    margin-bottom: 32px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #6c757d;
}

.footer__version {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #4a90d9;
    letter-spacing: 1px;
}

/* Reveal animation delays */
[data-reveal] {
    transition-delay: 0s;
}

[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 900px) {
    .hero { padding: 100px 24px 60px; }
    .hero__asymmetric { grid-template-columns: 1fr; gap: 40px; }
    .hero__stats { gap: 20px; }
    .hero__isometric-scene { max-width: 300px; margin: 0 auto; }

    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .nav { padding: 16px 24px; }
    .nav--scrolled { padding: 10px 24px; }

    .chronicle { padding: 80px 24px; }
    .chronicle__entry--left { padding-right: 0; padding-left: 60px; }
    .chronicle__entry--right { padding-left: 60px; flex-direction: row; }
    .chronicle__line { left: 20px; }
    .chronicle__marker { left: 20px; }

    .achievements { padding: 80px 24px; }
    .achievements__grid { grid-template-columns: 1fr 1fr; }

    .archive { padding: 80px 24px; }
    .archive__featured { grid-template-columns: 1fr; gap: 40px; padding: 28px; }
    .archive__record { grid-template-columns: 60px 1fr; gap: 12px; }
    .archive__record-category { display: none; }
    .archive__record-status { display: none; }

    .about { padding: 80px 24px; }
    .about__container { grid-template-columns: 1fr; gap: 40px; }

    .footer { padding: 40px 24px; }
    .footer__top { flex-direction: column; gap: 12px; text-align: center; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__stat-value { font-size: 24px; }
    .achievements__grid { grid-template-columns: 1fr; }
    .archive__featured { padding: 20px; }
    .chronicle__entry--left,
    .chronicle__entry--right { padding-left: 50px; }
}
