
:root {
--bg: #0e0f0d;
--surface: #161714;
--surface-2: #1c1d1a;
--border: #2a2c27;
--border-light: #363830;
--text: #e9e6df;
--text-soft: #b8b4aa;
--muted: #6a6860;
--accent: #c8a96e;
--accent-dim: rgba(184, 183, 122, 0.1);
--accent-mid: rgba(184, 180, 122, 0.25);
--ink: #d1bc94;
--rule: rgba(143,184,122,0.2);
--shadow: 0 24px 80px rgba(0,0,0,0.55);
--ff-display: 'Playfair Display', Georgia, serif;
--ff-text: 'Libre Baskerville', Georgia, serif;
--ff-ui: 'Barlow', sans-serif;
--ff-label: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--ff-ui);
font-weight: 300;
line-height: 1.6;
overflow-x: hidden;
}
::selection { background: rgba(143,184,122,0.2); }

/* Accessibility */
.skip-link {
position: absolute; left: -999px; top: 12px; z-index: 10000;
background: var(--accent); color: var(--bg); padding: 10px 14px;
text-decoration: none; font-family: var(--ff-label); font-size: 0.75rem; letter-spacing: 0.08em;
}
.skip-link:focus { left: 12px; outline: none; }
:focus-visible { outline: 2px solid rgba(143,184,122,0.6); outline-offset: 3px; }

/* Cursor */
.cursor {
position: fixed; width: 6px; height: 6px;
background: var(--accent); border-radius: 50%;
pointer-events: none; z-index: 9999;
transform: translate(-50%, -50%);
transition: width 0.2s, height 0.2s;
}
.cursor-ring {
position: fixed; width: 28px; height: 28px;
border: 1px solid rgba(184, 175, 122, 0.35); border-radius: 50%;
pointer-events: none; z-index: 9998;
transform: translate(-50%, -50%);
transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 12px; height: 12px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 44px; height: 44px; border-color: var(--accent); }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none !important; } }

/* Layout */
.container { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 22px 0;
border-bottom: 1px solid transparent;
transition: border-color 0.3s, background 0.3s;
}
nav.scrolled { background: rgba(14,15,13,0.94); backdrop-filter: blur(16px); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
font-family: var(--ff-display);
font-size: 1.05rem;
font-weight: 700;
color: var(--text);
text-decoration: none;
letter-spacing: 0.01em;
}
.nav-logo em { font-style: italic; color: var(--accent); font-weight: 400; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
color: var(--muted);
text-decoration: none;
font-family: var(--ff-label);
font-size: 0.78rem;
letter-spacing: 0.14em;
text-transform: uppercase;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
display: inline-flex; align-items: center; gap: 8px;
padding: 8px 18px;
border: 1px solid var(--border);
color: var(--text-soft);
text-decoration: none;
font-family: var(--ff-label);
font-size: 0.72rem;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 500;
transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.menu-btn {
display: none; align-items: center; justify-content: center;
width: 40px; height: 40px; border: 1px solid var(--border);
background: transparent; color: var(--text); cursor: pointer;
font-family: var(--ff-label);
}
.menu-btn:hover { border-color: var(--accent); }
.mobile-menu { display: none; border-top: 1px solid var(--border); padding: 12px 0 6px; }
.mobile-menu a {
display: block; padding: 12px 0; color: var(--muted);
text-decoration: none; font-family: var(--ff-label); font-size: 0.8rem;
letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--text); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }

/* Fine ruled lines instead of dot grid */
.hero-rules {
position: absolute; inset: 0; pointer-events: none;
overflow: hidden;
}
.hero-rules::before {
content: '';
position: absolute; inset: 0;
background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(143,184,122,0.06) 79px,
    rgba(143,184,122,0.06) 80px
);
mask-image: radial-gradient(ellipse 90% 70% at 20% 50%, black 30%, transparent 80%);
}
.hero-rules::after {
content: '';
position: absolute; inset: 0;
background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 119px,
    rgba(143,184,122,0.04) 119px,
    rgba(143,184,122,0.04) 120px
);
mask-image: radial-gradient(ellipse 90% 70% at 20% 50%, black 20%, transparent 70%);
}

/* Corner bracket ornament */
.hero-bracket {
position: absolute;
top: 160px; right: 48px;
width: 180px; height: 160px;
pointer-events: none;
opacity: 0.35;
}
.hero-bracket::before, .hero-bracket::after {
content: '';
position: absolute;
border-color: var(--accent);
border-style: solid;
}
.hero-bracket::before {
top: 0; right: 0;
width: 60px; height: 60px;
border-width: 1px 1px 0 0;
}
.hero-bracket::after {
bottom: 0; left: 0;
width: 60px; height: 60px;
border-width: 0 0 1px 1px;
}

.hero-content { position: relative; z-index: 1; }
.hero-tag {
display: inline-flex; align-items: center; gap: 12px;
font-family: var(--ff-label);
font-size: 0.7rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 28px;
opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero-tag::before {
content: '';
display: block; width: 32px; height: 1px;
background: var(--accent);
}
.hero-tag-num {
font-family: var(--ff-display);
font-style: italic;
font-size: 0.85rem;
color: var(--muted);
font-weight: 400;
letter-spacing: 0.04em;
margin-right: -4px;
}

.hero-name {
font-family: var(--ff-display);
font-size: clamp(4rem, 9vw, 8rem);
line-height: 0.95;
letter-spacing: -0.03em;
margin-bottom: 0;
opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
}
.hero-name .first { font-weight: 400; font-style: italic; color: var(--text-soft); }
.hero-name .last { font-weight: 900; color: var(--text); display: block; }

.hero-rule {
display: flex; align-items: center; gap: 16px;
margin: 20px 0 28px;
opacity: 0; animation: fadeUp 0.6s ease 0.5s forwards;
}
.hero-rule-line { flex: 1; height: 1px; background: var(--border-light); max-width: 280px; }
.hero-rule-text {
font-family: var(--ff-display);
font-style: italic;
font-size: 1.4rem;
color: var(--muted);
white-space: nowrap;
}

.hero-bio {
max-width: 460px;
font-family: var(--ff-text);
color: var(--text-soft);
font-size: 0.93rem;
line-height: 1.9;
margin-bottom: 20px;
opacity: 0; animation: fadeUp 0.7s ease 0.6s forwards;
}

.hero-bullets {
display: grid; grid-template-columns: 1fr;
gap: 8px; margin-bottom: 44px; max-width: 520px;
opacity: 0; animation: fadeUp 0.7s ease 0.68s forwards;
}
.hero-bullet {
display: flex; align-items: baseline; gap: 14px;
color: var(--muted);
font-family: var(--ff-ui);
font-size: 0.88rem;
line-height: 1.7;
}
.hero-bullet strong { color: var(--text-soft); font-weight: 500; }
.hero-bullet .dot {
color: var(--accent);
font-family: var(--ff-display);
font-style: italic;
font-size: 1.1rem;
line-height: 1;
flex-shrink: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s ease 0.75s forwards; }
.btn-primary {
display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px;
background: var(--accent); color: var(--bg); text-decoration: none;
font-family: var(--ff-label); font-size: 0.78rem; font-weight: 600;
letter-spacing: 0.12em; text-transform: uppercase;
transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #ccc58d; transform: translateY(-1px); }
.btn-ghost {
display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px;
border: 1px solid var(--border-light); color: var(--muted); text-decoration: none;
font-family: var(--ff-label); font-size: 0.78rem; font-weight: 500;
letter-spacing: 0.12em; text-transform: uppercase;
transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.status {
display: inline-flex; align-items: center; gap: 10px;
font-family: var(--ff-label); font-size: 0.7rem;
letter-spacing: 0.15em; text-transform: uppercase;
color: var(--accent); margin-top: 36px;
opacity: 0; animation: fadeUp 0.7s ease 0.9s forwards;
}
.status-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2.4s ease infinite; }

/* ── SECTION BASE ── */
section { padding: 96px 0; border-top: 1px solid var(--border); }

.section-label {
display: flex; align-items: baseline; gap: 16px;
font-family: var(--ff-display); font-style: italic;
font-size: 0.95rem; font-weight: 400;
color: var(--muted);
letter-spacing: 0.02em;
margin-bottom: 52px;
}
.section-label-num {
font-family: var(--ff-label);
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); margin-left: 8px; align-self: center; }

/* ── SKILLS ── */
.skills-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.skill-card { background: var(--surface); padding: 28px 30px; transition: background 0.2s; }
.skill-card:hover { background: var(--accent-dim); }
.skill-icon {
font-family: var(--ff-label);
font-size: 0.66rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 14px;
}
.skill-name {
font-family: var(--ff-display);
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 8px;
color: var(--text);
line-height: 1.2;
}
.skill-desc { font-size: 0.84rem; font-family: var(--ff-text); color: var(--muted); line-height: 1.75; }

/* ── PROJECTS ── */
.projects-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.project-card { background: var(--surface); transition: background 0.2s; overflow: hidden; }
.project-card.open { background: rgba(143,184,122,0.05); }
.project-row { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding: 40px; align-items: start; }
.project-btn { width: 100%; text-align: left; background: transparent; border: 0; color: inherit; cursor: pointer; }
.project-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.project-num {
font-family: var(--ff-display); font-style: italic;
font-size: 0.9rem; color: var(--muted); font-weight: 400;
}
.project-tag {
font-family: var(--ff-label); font-size: 0.66rem; font-weight: 600;
color: var(--accent); background: var(--accent-dim);
padding: 3px 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.project-title {
font-family: var(--ff-display); font-size: 1.85rem; font-weight: 700;
margin-bottom: 14px; line-height: 1.15; color: var(--text);
}
.project-desc {
font-family: var(--ff-text);
font-size: 0.87rem; color: var(--muted); max-width: 560px; line-height: 1.85;
}
.project-stack { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.stack-pill {
font-family: var(--ff-label); font-size: 0.66rem; font-weight: 500;
color: var(--muted); border: 1px solid var(--border);
padding: 3px 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.project-toggle {
display: flex; align-items: center; justify-content: center;
width: 34px; height: 34px; border: 1px solid var(--border);
color: var(--muted); font-size: 1.1rem; flex-shrink: 0; margin-top: 4px;
transition: border-color 0.2s, color 0.2s, transform 0.35s ease;
font-family: var(--ff-display); font-weight: 400;
}
.project-card.open .project-toggle { border-color: var(--accent); color: var(--accent); transform: rotate(45deg); }
.project-expand { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.project-card.open .project-expand { grid-template-rows: 1fr; }
.project-expand-inner { overflow: hidden; }
.project-expand-content {
display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-start;
border-top: 1px solid var(--border);
padding: 28px 40px 36px; margin: 0 40px;
}
.project-detail-label {
font-family: var(--ff-display); font-style: italic;
font-size: 0.82rem; color: var(--muted);
margin-bottom: 12px; font-weight: 400;
}
.project-detail-text {
font-family: var(--ff-text);
font-size: 0.87rem; color: var(--text-soft); line-height: 1.9; max-width: 540px;
}
.project-insights { display: flex; flex-direction: column; gap: 18px; }
.project-metrics { display: flex; flex-direction: column; gap: 10px; }
.project-metric { display: flex; flex-direction: column; gap: 5px; }
.project-metric-label-row { display: flex; justify-content: space-between; align-items: baseline; }
.project-metric-label {
font-family: var(--ff-label); letter-spacing: 0.14em; text-transform: uppercase;
font-size: 0.66rem; font-weight: 500; color: var(--muted);
}
.project-metric-value {
font-family: var(--ff-display); font-style: italic;
font-size: 0.78rem; color: var(--text-soft);
}
.project-metric-bar-wrap { position: relative; width: 100%; height: 3px; background: #1e201b; overflow: hidden; }
.project-metric-bar {
position: absolute; inset: 0;
background: linear-gradient(90deg, var(--accent), rgba(184, 182, 122, 0.15));
width: 0%; transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-links { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; margin-top: 12px; }
.project-link {
display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
font-family: var(--ff-label); font-size: 0.68rem; font-weight: 600;
letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase;
transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.project-link:hover { transform: translateY(-2px); }
.project-link.github { border: 1px solid var(--border); color: var(--muted); }
.project-link.github:hover { border-color: var(--accent); color: var(--accent); }
.project-link.live { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); }
.project-link.live:hover { background: #ccbe8d; border-color: #ccbc8d; }

/* ── AI USAGE ── */
.ai-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.ai-text p {
font-family: var(--ff-text);
color: var(--text-soft); line-height: 1.95;
margin-bottom: 18px; font-size: 0.92rem;
}
.ai-text p:last-child { margin-bottom: 0; }
.ai-media {
margin-top: 32px;
border: 1px solid var(--border);
background: var(--surface);
padding: 16px 18px 18px;
}
.ai-media-label {
display: flex; justify-content: space-between; align-items: baseline;
margin-bottom: 12px;
font-family: var(--ff-display); font-style: italic;
font-size: 0.82rem; color: var(--muted);
}
.ai-media-label span:last-child { font-family: var(--ff-label); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-style: normal; }
.ai-media-placeholder {
width: 100%; border: 1px solid var(--border);
background: rgba(14,15,13,0.8);
padding: 14px 14px 16px; min-height: 315px;
}
.ai-timeline { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr); gap: 18px; }
.ai-timeline-steps { display: flex; flex-direction: column; gap: 8px; }
.ai-timeline-step {
display: flex; align-items: center; gap: 10px; padding: 10px 12px;
border: 1px solid transparent;
color: var(--muted); background: rgba(255,255,255,0.02);
font-family: var(--ff-label); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
cursor: pointer;
transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.ai-timeline-step-badge {
width: 22px; height: 22px;
border: 1px solid var(--accent);
padding-right: 2px;
display: flex; align-items: center; justify-content: center;
font-style: italic;
font-size: 0.65rem; color: var(--accent);
background: rgba(181, 184, 122, 0.05); flex-shrink: 0;
}
.ai-timeline-step-label-main { color: var(--text-soft); line-height: 1.2; }
.ai-timeline-step-label-sub { font-family: var(--ff-text); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 0.7rem; color: var(--muted); line-height: 1.2; }
.ai-timeline-step-content { display: flex; flex-direction: column; gap: 2px; justify-content: center; }
.ai-timeline-step {
text-align: left;
}
.ai-timeline-step[aria-selected="true"], .ai-timeline-step:hover {
border-color: var(--accent); background: rgba(184, 177, 122, 0.07);
color: var(--text); transform: translateX(2px);
}
.ai-timeline-detail {
border: 1px solid var(--border);
background: var(--surface-2);
padding: 14px 16px 16px;
font-family: var(--ff-text);
font-size: 0.8rem; color: var(--muted); line-height: 1.75; min-height: 210px;
}
.ai-timeline-detail-title {
font-family: var(--ff-display); font-style: italic;
font-size: 0.92rem; color: var(--accent); margin-bottom: 8px; font-weight: 400;
}
.ai-timeline-detail-body strong { color: var(--text-soft); font-weight: 700; }
.ai-timeline-detail-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ai-timeline-detail-pill {
padding: 3px 9px; border: 1px solid var(--border);
font-family: var(--ff-label); font-size: 0.62rem;
font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
color: var(--muted);
}
@media (max-width: 768px) { .ai-timeline { grid-template-columns: 1fr; } .ai-media-placeholder { min-height: 0; } }
.ai-cards { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.ai-card { background: var(--surface); padding: 22px 26px; }
.ai-card h3 {
font-family: var(--ff-display); font-style: italic;
font-size: 0.9rem; font-weight: 400;
color: var(--accent); margin-bottom: 12px;
}
.ai-card ul { list-style: none; display: grid; gap: 10px; }
.ai-card li { font-family: var(--ff-text); color: var(--muted); font-size: 0.87rem; line-height: 1.75; }
.ai-card li strong { color: var(--text-soft); font-weight: 700; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { font-family: var(--ff-text); color: var(--text-soft); line-height: 1.95; margin-bottom: 20px; font-size: 0.92rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-facts { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.about-fact { background: var(--surface); padding: 18px 22px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.fact-label {
font-family: var(--ff-label); font-size: 0.65rem; font-weight: 600;
color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
}
.fact-value { font-family: var(--ff-text); font-size: 0.87rem; color: var(--text); text-align: right; }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-heading {
font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.1; margin-bottom: 20px; font-weight: 700;
}
.contact-heading em { color: var(--accent); font-weight: 400; }
.contact-sub { font-family: var(--ff-text); color: var(--muted); font-size: 0.9rem; line-height: 1.9; }
.contact-links { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.contact-link { background: var(--surface); display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; text-decoration: none; color: var(--text); transition: background 0.2s; }
.contact-link:hover { background: var(--accent-dim); }
.contact-link-label {
font-family: var(--ff-label); font-size: 0.62rem; font-weight: 600;
color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px;
}
.contact-link-value { font-family: var(--ff-text); font-size: 0.88rem; color: var(--text-soft); }
.contact-link-arrow { color: var(--muted); transition: color 0.2s, transform 0.2s; font-size: 1rem; }
.contact-link:hover .contact-link-arrow { color: var(--accent); transform: translate(2px, -2px); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 28px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--ff-label); font-size: 0.65rem; font-weight: 500; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

@media (max-width: 768px) {
.container { padding: 0 24px; }
.about-grid, .contact-inner, .ai-grid { grid-template-columns: 1fr; gap: 48px; }
.project-row { grid-template-columns: 1fr; }
.project-expand-content { grid-template-columns: 1fr; margin: 0 24px; }
.project-links { flex-wrap: wrap; }
.nav-links { display: none; }
.menu-btn { display: inline-flex; }
.mobile-menu.open { display: block; }
.nav-cta { display: none; }
.hero-bracket { display: none; }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.cursor, .cursor-ring { display: none !important; }
* { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
