:root {
    --bg: #06101d;
    --bg-soft: #0d1b2f;
    --surface: rgba(10, 20, 36, 0.72);
    --surface-strong: rgba(13, 26, 45, 0.9);
    --surface-light: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 219, 129, 0.28);
    --text: #edf3ff;
    --muted: rgba(237, 243, 255, 0.72);
    --gold: #d7b56d;
    --gold-soft: #f6df9f;
    --gold-deep: #8d6927;
    --silver: #bfc9db;
    --bronze: #9a693f;
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.45), 0 18px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --perspective: 1000px;
    --parallax-layers: 5;
    --lighting-intensity: 1;
    --shadow-depth: 0.32;
    --animation-duration: 340ms;
    --container: 1180px;
    --font-display: "Manrope", "Space Grotesk", "Segoe UI", sans-serif;
    --font-body: "Space Grotesk", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(113, 149, 214, 0.15), transparent 24%),
        radial-gradient(circle at top right, rgba(215, 181, 109, 0.15), transparent 20%),
        linear-gradient(180deg, #020712 0%, #071221 30%, #07111f 100%);
    min-width: 320px;
    overflow-x: hidden;
}

img,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.page-shell {
    position: relative;
    isolation: isolate;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015));
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft));
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.05em;
    font-weight: 800;
}

h1 {
    font-size: clamp(3.4rem, 6vw, 6.8rem);
    line-height: 0.92;
}

h2 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2.1rem);
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.glass-panel,
.metallic-panel,
.tactile-panel,
.precision-card,
.timeline-item,
.contact-card,
.stats-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 28px;
    transform-style: preserve-3d;
    transition:
        transform var(--animation-duration) ease,
        box-shadow var(--animation-duration) ease,
        border-color var(--animation-duration) ease,
        background var(--animation-duration) ease;
}

.glass-panel {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.02)),
        rgba(7, 17, 31, 0.62);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-deep);
}

.metallic-panel {
    background:
        linear-gradient(145deg, rgba(255, 233, 181, 0.24), rgba(91, 67, 27, 0.18) 30%, rgba(255, 255, 255, 0.06) 70%, rgba(255, 209, 122, 0.16)),
        linear-gradient(180deg, rgba(16, 30, 48, 0.96), rgba(7, 14, 26, 0.98));
    box-shadow: var(--shadow-deep);
}

.tactile-panel,
.precision-card,
.timeline-item,
.contact-card,
.stats-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 46%, rgba(3, 8, 15, 0.5)),
        linear-gradient(180deg, rgba(13, 24, 41, 0.96), rgba(8, 16, 28, 0.95));
    box-shadow: var(--shadow-soft);
}

[data-tilt]:hover,
.precision-card:hover,
.timeline-item:hover,
.contact-card:hover,
.stats-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 18px 44px rgba(215, 181, 109, 0.14);
}

#navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    width: min(calc(100% - 24px), 1240px);
    transform: translateX(-50%);
    background: rgba(5, 12, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 76px;
    padding: 0 22px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
}

.nav-logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #111;
    background: linear-gradient(145deg, #fff1be, #d6a74a 58%, #8b6520);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 18px rgba(0, 0, 0, 0.26);
}

.nav-logo-text {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a,
.lang-switch {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(237, 243, 255, 0.72);
}

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    transition: transform var(--animation-duration) ease;
}

.nav-links a:hover,
.nav-links a.active,
.lang-switch:hover {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.lang-switch {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--animation-duration) ease;
}

.lang-switch:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
    display: none;
    justify-self: end;
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    transition: transform var(--animation-duration) ease, opacity var(--animation-duration) ease;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 144px 0 96px;
    perspective: var(--perspective);
}

.hero-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 24%, rgba(255, 210, 122, 0.26), transparent 18%),
        radial-gradient(circle at 24% 30%, rgba(87, 137, 227, 0.2), transparent 26%),
        linear-gradient(180deg, rgba(4, 10, 19, 0.82), rgba(3, 9, 17, 0.96));
}

.hero-parallax,
#hero-canvas {
    position: absolute;
    inset: 0;
}

.hero-parallax {
    will-change: transform;
    --tx: 0px;
    --ty: 0px;
}

.layer-back {
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 44%),
        linear-gradient(180deg, rgba(8, 14, 27, 0.18), rgba(8, 14, 27, 0.6));
    transform: translate3d(var(--tx), var(--ty), 0);
}

.layer-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, transparent, black 25%, black 70%, transparent);
    opacity: 0.45;
    transform: translate3d(var(--tx), var(--ty), -160px) scale(1.2);
}

.layer-light {
    background:
        radial-gradient(circle at 68% 34%, rgba(255, 242, 210, 0.28), transparent 20%),
        radial-gradient(circle at 44% 58%, rgba(66, 110, 191, 0.22), transparent 28%),
        radial-gradient(circle at 80% 82%, rgba(255, 196, 87, 0.12), transparent 18%);
    filter: blur(10px);
    transform: translate3d(var(--tx), var(--ty), 0);
}

.layer-photo {
    background:
        linear-gradient(90deg, rgba(2, 6, 12, 0.12) 0%, rgba(2, 6, 12, 0.38) 38%, rgba(2, 6, 12, 0.62) 62%, rgba(2, 6, 12, 0.8) 100%),
        url("images/zorana-arunovic.jpg") 68% 18% / cover no-repeat;
    transform: translate3d(var(--tx), var(--ty), -40px) scale(1.06);
    mix-blend-mode: screen;
    opacity: 0.86;
}

.layer-reflection {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08) 48%, transparent 82%),
        linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.14) 42%, transparent 60%);
    filter: blur(4px) drop-shadow(0 0 24px rgba(255, 219, 129, 0.2));
    transform: translate3d(var(--tx), var(--ty), 0);
}

#hero-canvas {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block;
    padding-top: 260px;
}

.hero-copy {
    max-width: 1120px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-copy[data-tilt]:hover {
    border-color: transparent;
    box-shadow: none;
}

.hero-subtitle {
    margin-top: 18px;
    font-size: clamp(1.12rem, 1.8vw, 1.45rem);
    color: var(--gold-soft);
    max-width: none;
    white-space: nowrap;
}

.hero-text {
    margin-top: 22px;
    max-width: 660px;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease, background var(--animation-duration) ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #0f1320;
    background: linear-gradient(145deg, #fff0ba, #e0b764 58%, #8c6627);
    box-shadow: 0 16px 34px rgba(214, 167, 74, 0.26);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.hero-data-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 88px;
    width: min(1120px, calc(100vw - 88px));
    max-width: 1120px;
    padding: 18px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(5, 12, 22, 0.52);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-deep);
}

.hero-data-item {
    min-height: 132px;
    padding: 20px 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-data-item:last-child {
    border-right: 0;
}

.hero-data-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.hero-data-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    color: #fff1c6;
}

.hero-data-copy {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 20ch;
}

.spotlight-facts span,
.caption-chip,
.team-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .eyebrow::before {
    display: none;
}

.about-layout,
.spotlight-grid,
.team-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.portrait-card {
    padding: 26px;
}

.portrait-frame {
    position: relative;
    padding: 18px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255, 229, 170, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.28);
}

.portrait-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.story-card {
    padding: 28px 30px;
}

.story-card p + p {
    margin-top: 16px;
}

.precision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.precision-card {
    padding: 24px;
}

.precision-index {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold-soft);
    font-size: 0.84rem;
    letter-spacing: 0.2em;
}

.precision-card h3 {
    margin-bottom: 10px;
}

.spotlight-section {
    overflow: hidden;
}

.spotlight-section::after {
    content: "";
    position: absolute;
    inset: 12% -10% auto auto;
    width: 34vw;
    height: 34vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 167, 74, 0.18), transparent 64%);
    filter: blur(18px);
    pointer-events: none;
}

.spotlight-grid {
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
}

.spotlight-copy blockquote {
    margin: 24px 0;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 219, 129, 0.4);
    color: #fff2cf;
    font-size: 1.16rem;
    font-family: var(--font-display);
}

.spotlight-copy h2 {
    margin-bottom: 20px;
}

.spotlight-copy > p:not(.eyebrow) {
    margin-top: 0;
    margin-bottom: 18px;
}

.spotlight-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spotlight-visual {
    padding: 20px;
    overflow: hidden;
}

.spotlight-visual img {
    border-radius: 24px;
    min-height: 560px;
    width: 100%;
    object-fit: cover;
    object-position: center 52%;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.spotlight-orbit {
    position: absolute;
    inset: auto auto 18px 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.orbit-one {
    width: 220px;
    height: 220px;
}

.orbit-two {
    width: 320px;
    height: 320px;
    left: auto;
    right: -64px;
    top: -64px;
}

.spotlight-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.timeline-item {
    padding: 26px;
}

.timeline-year {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-soft);
}

.timeline-item.featured {
    background:
        linear-gradient(150deg, rgba(255, 214, 133, 0.18), rgba(255, 255, 255, 0.04) 46%, rgba(3, 8, 15, 0.5)),
        linear-gradient(180deg, rgba(17, 28, 45, 0.97), rgba(8, 16, 28, 0.98));
}

.results-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.01);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stats-grid.expanded-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-card {
    padding: 28px 24px;
    text-align: center;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-card-title {
    margin-bottom: 26px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff1c9;
}

.medal-counts {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.medal.gold {
    background: #d5b04b;
}

.medal.silver {
    background: #aeb1ba;
}

.medal.bronze {
    background: #b97a39;
}

.record-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 22px;
    padding: 28px 30px;
}

.record-panel h3 {
    margin: 6px 0 12px;
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff3d1;
}

.record-pulse {
    position: relative;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
}

.record-pulse span {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 234, 183, 0.94), rgba(214, 167, 74, 0.24));
    box-shadow: 0 0 28px rgba(255, 214, 133, 0.34);
    animation: pulse 3s infinite;
}

.record-pulse span:nth-child(2) {
    animation-delay: 1s;
}

.record-pulse span:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(0.4);
        opacity: 0.9;
    }
    70% {
        transform: scale(4.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.results-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.results-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: rgba(8, 15, 26, 0.92);
}

.results-table th,
.results-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.results-table th {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.03);
}

.results-table td {
    color: var(--muted);
}

.results-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.accent-row td {
    background: linear-gradient(90deg, rgba(215, 181, 109, 0.14), rgba(255, 255, 255, 0.02));
}

.medal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.medal-badge.gold {
    background: rgba(214, 167, 74, 0.16);
    color: #ffe9ae;
}

.medal-badge.silver {
    background: rgba(191, 201, 219, 0.14);
    color: #eff5ff;
}

.medal-badge.bronze {
    background: rgba(154, 105, 63, 0.16);
    color: #ffd3b2;
}

.team-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: center;
}

.team-visual {
    padding: 20px;
    overflow: hidden;
}

.team-visual img {
    border-radius: 24px;
    min-height: 480px;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    left: 34px;
    bottom: 34px;
}

.team-copy p + p {
    margin-top: 14px;
}

.team-club {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 20px 22px;
}

.club-logo {
    width: 82px;
    height: auto;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(6, 16, 29, 0.08);
}

.contact-section {
    padding-top: 96px;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-text {
    margin: 0 auto 28px;
    max-width: 720px;
    text-align: center;
}

.results-updated {
    margin-top: 18px;
    font-size: 0.84rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.contact-card {
    padding: 24px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff1c9;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff1c9;
}

.contact-copy {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer {
    padding: 28px 0 42px;
    text-align: center;
}

.site-footer p {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.footer-recommendations,
.seo-links {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.58);
}

.footer-recommendations {
    margin-top: 16px;
    font-size: 0.76rem;
    letter-spacing: normal;
    text-transform: none;
}

.seo-links {
    text-transform: none;
    letter-spacing: normal;
}

.footer-recommendations a,
.seo-links a {
    color: rgba(255, 241, 198, 0.88);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
    .spotlight-grid,
    .team-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .precision-grid,
    .contact-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-data-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 0;
    }

    .hero-data-item:nth-child(2n) {
        border-right: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .team-copy {
        max-width: 720px;
    }
}

@media (max-width: 820px) {
    #navbar {
        top: 10px;
        width: calc(100% - 16px);
    }

    .nav-container {
        grid-template-columns: auto auto auto;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 14px;
        border-radius: 28px;
        background: rgba(5, 12, 22, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-soft);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 132px;
    }

    .story-card,
    .record-panel {
        padding: 24px;
    }

    .spotlight-visual img,
    .team-visual img {
        min-height: auto;
    }

    .record-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 84px 0;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .nav-logo-text {
        display: none;
    }

    .hero-actions,
    .spotlight-facts {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-data-ribbon {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .hero-data-item {
        min-height: auto;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-data-item:last-child {
        border-bottom: 0;
    }

    .button {
        width: 100%;
    }

    .precision-grid,
    .contact-links,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-caption {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .portrait-card,
    .spotlight-visual,
    .team-visual {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
