/* ===== eyes.plus - Art Deco + Glitch Fusion ===== */

/* --- CSS Custom Properties --- */
:root {
    --bg-darkest: #1A0610;
    --bg-wine: #2A0A10;
    --bg-plum: #3D1225;
    --accent-gold: #C9A84C;
    --accent-copper: #6B8F71;
    --text-bone: #F2E8D4;
    --text-rose: #C4A4A7;
    --glitch-cyan: #00E5CC;
    --glitch-magenta: #FF2D6B;
    --glitch-gold: #FFD700;
    --gold-dark: #8B6914;
    --burgundy-deep: #4A0E1B;
    --scanline-opacity: 0.06;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-darkest);
    color: var(--text-bone);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    cursor: none;
    overflow-x: hidden;
}

/* --- Custom Cursor --- */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-crosshair {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    line-height: 1;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
    transition: opacity 0.2s ease;
}

.cursor-circle {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

body.cursor-expanded .cursor-crosshair {
    opacity: 0;
}

body.cursor-expanded .cursor-circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* --- Scan Line Overlay --- */
#scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9990;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
    opacity: var(--scanline-opacity);
}

/* --- Glitch Overlay --- */
#glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9989;
    opacity: 0;
    transition: opacity 0.1s ease;
}

#glitch-overlay.active {
    opacity: 1;
}

/* --- Blink Transition Bars --- */
.blink-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-darkest);
    z-index: 9995;
    pointer-events: none;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#blink-top {
    top: 0;
}

#blink-bottom {
    bottom: 0;
}

/* --- Navigation --- */
#nav-crosshair {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9998;
}

.nav-trigger {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}

.nav-trigger:hover {
    transform: scale(1.15);
    border-color: var(--glitch-cyan);
}

.nav-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.nav-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-radial.open {
    opacity: 1;
    pointer-events: all;
}

.nav-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background: var(--bg-darkest);
    cursor: none;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.nav-dot:nth-child(1) { top: -50px; left: 0; }
.nav-dot:nth-child(2) { top: -15px; left: 47px; }
.nav-dot:nth-child(3) { top: 40px; left: 29px; }
.nav-dot:nth-child(4) { top: 40px; left: -29px; }
.nav-dot:nth-child(5) { top: -15px; left: -47px; }

.nav-dot:hover {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 12px rgba(74, 14, 27, 0.8);
}

.nav-dot.active {
    background: var(--burgundy-deep);
    box-shadow: 0 0 8px rgba(74, 14, 27, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-inner {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(74, 14, 27, 0.6); }
    50% { box-shadow: 0 0 16px rgba(74, 14, 27, 1); }
}

/* --- Sections Base --- */
.section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    contain: layout paint;
}

.section:nth-child(odd) {
    background: var(--bg-darkest);
}

.section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-darkest), var(--bg-plum));
}

/* --- Iris Sections --- */
.iris-section {
    background: var(--bg-darkest);
}

.iris-container {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iris-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 100%;
    height: 100%;
    border: 2px solid var(--burgundy-deep);
    animation: irisRotate 30s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border: 1px dashed var(--accent-gold);
    animation: irisRotate 25s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border: 2px solid var(--burgundy-deep);
    border-style: dotted;
    animation: irisRotate 20s linear infinite;
}

.ring-4 {
    width: 40%;
    height: 40%;
    border: 1px solid var(--accent-gold);
    opacity: 0.6;
    animation: irisRotate 15s linear infinite reverse;
}

@keyframes irisRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.iris-core {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 60%;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 12vw, 180px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--accent-gold);
    text-shadow: 2px 2px 0 var(--burgundy-deep);
    margin-bottom: 24px;
}

.letter-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.letter-wrap:hover {
    transform: scale(1.08);
}

.letter {
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-rose);
    letter-spacing: 0.05em;
}

/* --- Sunburst Background --- */
.sunburst-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vmax;
    height: 120vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        #C9A84C 0deg, transparent 8deg,
        transparent 12deg, #C9A84C 12deg,
        #C9A84C 14deg, transparent 14deg,
        transparent 24deg, #C9A84C 24deg,
        #C9A84C 26deg, transparent 26deg,
        transparent 36deg, #C9A84C 36deg,
        #C9A84C 38deg, transparent 38deg,
        transparent 48deg, #C9A84C 48deg,
        #C9A84C 50deg, transparent 50deg,
        transparent 60deg, #C9A84C 60deg,
        #C9A84C 62deg, transparent 62deg,
        transparent 72deg, #C9A84C 72deg,
        #C9A84C 74deg, transparent 74deg,
        transparent 84deg, #C9A84C 84deg,
        #C9A84C 86deg, transparent 86deg,
        transparent 96deg, #C9A84C 96deg,
        #C9A84C 98deg, transparent 98deg,
        transparent 108deg, #C9A84C 108deg,
        #C9A84C 110deg, transparent 110deg,
        transparent 120deg, #C9A84C 120deg,
        #C9A84C 122deg, transparent 122deg,
        transparent 132deg, #C9A84C 132deg,
        #C9A84C 134deg, transparent 134deg,
        transparent 144deg, #C9A84C 144deg,
        #C9A84C 146deg, transparent 146deg,
        transparent 156deg, #C9A84C 156deg,
        #C9A84C 158deg, transparent 158deg,
        transparent 168deg, #C9A84C 168deg,
        #C9A84C 170deg, transparent 170deg,
        transparent 180deg, #C9A84C 180deg,
        #C9A84C 182deg, transparent 182deg,
        transparent 192deg, #C9A84C 192deg,
        #C9A84C 194deg, transparent 194deg,
        transparent 204deg, #C9A84C 204deg,
        #C9A84C 206deg, transparent 206deg,
        transparent 216deg, #C9A84C 216deg,
        #C9A84C 218deg, transparent 218deg,
        transparent 228deg, #C9A84C 228deg,
        #C9A84C 230deg, transparent 230deg,
        transparent 240deg, #C9A84C 240deg,
        #C9A84C 242deg, transparent 242deg,
        transparent 252deg, #C9A84C 252deg,
        #C9A84C 254deg, transparent 254deg,
        transparent 264deg, #C9A84C 264deg,
        #C9A84C 266deg, transparent 266deg,
        transparent 276deg, #C9A84C 276deg,
        #C9A84C 278deg, transparent 278deg,
        transparent 288deg, #C9A84C 288deg,
        #C9A84C 290deg, transparent 290deg,
        transparent 300deg, #C9A84C 300deg,
        #C9A84C 302deg, transparent 302deg,
        transparent 312deg, #C9A84C 312deg,
        #C9A84C 314deg, transparent 314deg,
        transparent 324deg, #C9A84C 324deg,
        #C9A84C 326deg, transparent 326deg,
        transparent 336deg, #C9A84C 336deg,
        #C9A84C 338deg, transparent 338deg,
        transparent 348deg, #C9A84C 348deg,
        #C9A84C 350deg, transparent 350deg,
        transparent 360deg
    );
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

/* --- Column Sections --- */
.column-section {
    background: linear-gradient(180deg, var(--bg-darkest), var(--bg-plum));
}

.columns-container {
    display: flex;
    width: 90%;
    max-width: 1400px;
    min-height: 70vh;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.column-left {
    flex: 0 0 38.2%;
    padding: 40px;
}

.column-divider {
    flex: 0 0 23.6%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    position: relative;
}

.column-divider::before,
.column-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        var(--burgundy-deep) 0px,
        var(--burgundy-deep) 8px,
        transparent 8px,
        transparent 16px
    );
}

.column-divider::before { left: 0; }
.column-divider::after { right: 0; }

.chevron-strip {
    width: 40px;
    height: 100%;
    opacity: 0.5;
}

.column-right {
    flex: 0 0 38.2%;
    padding: 40px;
}

.section-subhead {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-copper);
    margin-bottom: 24px;
    line-height: 1.2;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-rose);
    margin-bottom: 20px;
}

.meta-text {
    font-family: 'Azeret Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--glitch-cyan);
    margin-bottom: 8px;
}

/* --- Frieze Bands --- */
.frieze-band {
    position: relative;
    height: 20vh;
    min-height: 100px;
    width: 100%;
    background: var(--bg-plum);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frieze-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.frieze-glitch-block {
    position: absolute;
    width: 0;
    height: 0;
    background: var(--glitch-cyan);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.frieze-band.glitching .frieze-glitch-block {
    opacity: 0.4;
}

/* --- Marquee Section --- */
.marquee-section {
    background: var(--bg-wine);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-text {
    display: flex;
    white-space: nowrap;
}

.marquee-char {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0 var(--burgundy-deep));
    display: inline-block;
    will-change: transform;
    transition: transform 0.2s ease;
}

.marquee-char.glitch-active {
    animation: charGlitch 0.2s steps(2) forwards;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes charGlitch {
    0% { transform: translateX(0); filter: hue-rotate(0deg); }
    25% { transform: translateX(-3px); filter: hue-rotate(180deg); }
    50% { transform: translateX(4px); filter: hue-rotate(90deg) brightness(1.5); }
    75% { transform: translateX(-2px); filter: hue-rotate(270deg); }
    100% { transform: translateX(0); filter: hue-rotate(0deg); }
}

/* --- Portal Section --- */
.portal-section {
    background: var(--bg-darkest);
}

.portal-frame {
    position: relative;
    width: 80vw;
    max-width: 1200px;
    min-height: 60vh;
    border-radius: 24px;
    border: 1px solid var(--accent-gold);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.portal-frame:hover {
    transform: scale(1.03);
}

.portal-frame:hover .portal-inner {
    transform: scale(0.97);
}

.corner-ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

.corner-tl { top: 0; left: 0; }
.corner-tr { top: 0; right: 0; }
.corner-bl { bottom: 0; left: 0; }
.corner-br { bottom: 0; right: 0; }

.portal-inner {
    background: linear-gradient(180deg, var(--bg-wine), var(--bg-darkest));
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portal-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--glitch-cyan), transparent, var(--glitch-magenta));
    opacity: 0.04;
    pointer-events: none;
}

.portal-content {
    max-width: 700px;
    text-align: center;
}

.portal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--text-bone);
    text-shadow: 2px 2px 0 var(--burgundy-deep);
    margin-bottom: 32px;
}

.portal-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-rose);
    margin-bottom: 20px;
}

.portal-data {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 32px;
}

.data-line {
    font-family: 'Azeret Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--glitch-cyan);
}

/* --- Closing Section --- */
.iris-closing .iris-core {
    max-width: 70%;
}

.closing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--accent-gold);
    text-shadow: 2px 2px 0 var(--burgundy-deep);
    margin-bottom: 24px;
}

.closing-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-rose);
    margin-bottom: 32px;
}

.closing-sigil {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.eye-sigil {
    width: 80px;
    height: 80px;
    animation: sigilRotate 20s linear infinite;
}

@keyframes sigilRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-meta {
    text-align: center;
    opacity: 0.7;
}

/* --- Organic Blobs --- */
.organic-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.organic-blob:hover {
    transform: scale(1.15);
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -80px;
    right: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    bottom: -60px;
    left: -80px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -60px;
}

.blob-4 {
    width: 380px;
    height: 380px;
    bottom: -80px;
    right: -100px;
}

.blob-path {
    animation: blobMorph 20s ease-in-out infinite alternate;
}

@keyframes blobMorph {
    0% {
        d: path("M300,80 C420,80 520,180 520,300 C520,420 420,520 300,520 C180,520 80,420 80,300 C80,180 180,80 300,80 Z");
    }
    33% {
        d: path("M300,100 C400,60 540,200 500,320 C460,440 400,540 280,500 C160,460 60,400 100,280 C140,160 200,140 300,100 Z");
    }
    66% {
        d: path("M320,80 C440,100 500,200 480,320 C460,440 380,520 260,500 C140,480 80,380 100,260 C120,140 200,60 320,80 Z");
    }
    100% {
        d: path("M300,80 C420,80 520,180 520,300 C520,420 420,520 300,520 C180,520 80,420 80,300 C80,180 180,80 300,80 Z");
    }
}

/* --- RGB Split Effect --- */
.rgb-split {
    position: relative;
}

.rgb-split::before,
.rgb-split::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    pointer-events: none;
}

.rgb-split::before {
    color: var(--glitch-cyan);
    transform: translateX(-2px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rgb-split::after {
    color: var(--glitch-magenta);
    transform: translateX(2px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rgb-split:hover::before {
    opacity: 0.7;
    transform: translateX(-4px);
}

.rgb-split:hover::after {
    opacity: 0.7;
    transform: translateX(4px);
}

/* --- Scale Hover Interactions --- */
.scale-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.08);
}

/* --- Ambient Glitch Animation --- */
@keyframes ambientGlitch {
    0% { clip-path: inset(10% 0 80% 0); transform: translateX(5px); }
    20% { clip-path: inset(40% 0 40% 0); transform: translateX(-8px); }
    40% { clip-path: inset(70% 0 10% 0); transform: translateX(12px); }
    60% { clip-path: inset(20% 0 60% 0); transform: translateX(-5px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translateX(10px); }
    100% { clip-path: inset(10% 0 80% 0); transform: translateX(5px); }
}

/* --- Scroll Glitch Effect --- */
.scroll-glitch-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9988;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.scroll-glitch-layer.cyan {
    background: var(--glitch-cyan);
    transform: translateX(-3px);
}

.scroll-glitch-layer.magenta {
    background: var(--glitch-magenta);
    transform: translateX(3px);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .columns-container {
        flex-direction: column;
    }

    .column-left,
    .column-right {
        flex: none;
        width: 100%;
        padding: 30px 20px;
    }

    .column-divider {
        flex: none;
        width: 100%;
        height: 60px;
    }

    .column-divider::before,
    .column-divider::after {
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: repeating-linear-gradient(
            90deg,
            var(--burgundy-deep) 0px,
            var(--burgundy-deep) 8px,
            transparent 8px,
            transparent 16px
        );
    }

    .column-divider::after {
        display: none;
    }

    .chevron-strip {
        width: 100%;
        height: 40px;
        transform: rotate(90deg);
    }

    .portal-frame {
        width: 95vw;
    }

    .portal-inner {
        padding: 40px 24px;
    }

    .iris-container {
        width: 95vmin;
        height: 95vmin;
    }

    .iris-core {
        max-width: 80%;
    }

    .iris-closing .iris-core {
        max-width: 85%;
    }

    .organic-blob {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(48px, 15vw, 100px);
    }

    .marquee-char {
        font-size: clamp(60px, 18vw, 120px);
    }

    .section-subhead {
        font-size: 22px;
    }

    .body-text {
        font-size: 15px;
    }

    .portal-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .closing-title {
        font-size: clamp(28px, 8vw, 56px);
    }

    #nav-crosshair {
        top: 16px;
        right: 16px;
    }

    .nav-trigger {
        width: 40px;
        height: 40px;
    }
}
