:root {
  --bg: oklch(0.08 0.006 278);
  --bg-deep: oklch(0.055 0.008 278);
  --surface: oklch(0.115 0.012 278);
  --surface-2: oklch(0.155 0.015 278);
  --line: oklch(0.25 0.018 278);
  --line-soft: oklch(0.19 0.014 278);
  --ink: oklch(0.94 0.008 278);
  --ink-soft: oklch(0.76 0.018 278);
  --muted: oklch(0.62 0.022 278);
  --violet: oklch(0.62 0.22 281);
  --violet-bright: oklch(0.71 0.19 281);
  --cyan: oklch(0.78 0.15 202);
  --font-sans: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1220px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 10px;
  --radius-lg: 16px;
  --z-nav: 20;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: var(--font-sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; }
p, h1, h2, h3, dl, dd, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
section { scroll-margin-top: 88px; }

.skip-link { position: fixed; top: 0.75rem; left: 0.75rem; z-index: 100; padding: 0.65rem 0.9rem; color: var(--bg); background: var(--ink); transform: translateY(-160%); transition: transform 0.2s; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 3rem)); margin-inline: auto; }
.section { padding-block: clamp(5.5rem, 10vw, 9rem); }
.section-heading p, .story-label, .contact-copy > p:first-child { margin-bottom: 1rem; color: var(--cyan); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; }
.section-heading h2, .technology-copy h2, .contact-copy h2 { max-width: 14ch; font-size: clamp(2.1rem, 4.4vw, 4.5rem); line-height: 1.12; letter-spacing: -0.035em; text-wrap: balance; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr); gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-intro > p { max-width: 44ch; color: var(--ink-soft); text-wrap: pretty; }

.site-header { position: fixed; inset: 0 0 auto; z-index: var(--z-nav); border-bottom: 1px solid transparent; transition: background 0.35s var(--ease), border-color 0.35s var(--ease); }
.site-header.scrolled { border-color: var(--line-soft); background: oklch(0.07 0.008 278 / 0.9); backdrop-filter: blur(14px); }
.nav-shell { width: min(var(--container), calc(100% - 3rem)); min-height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; min-width: max-content; }
.brand-mark { position: relative; width: 34px; height: 34px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: var(--violet); }
.brand-mark span { position: absolute; width: 25px; height: 5px; border: 1px solid white; border-radius: 999px; transform: rotate(-35deg); }
.brand-mark span:nth-child(2) { transform: rotate(-35deg) translateY(-7px); }
.brand-mark span:nth-child(3) { transform: rotate(-35deg) translateY(7px); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 0.96rem; letter-spacing: 0.04em; }
.brand-copy small { margin-top: 0.25rem; color: var(--muted); font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.14em; }
.nav-links { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.3rem); }
.nav-links a { color: var(--ink-soft); font-size: 0.88rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links .nav-contact { padding: 0.5rem 0.95rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); }
.nav-toggle { display: none; width: 38px; height: 38px; padding: 9px; border-radius: 50%; background: var(--surface); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 1px; margin: 4px 0; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: clamp(7rem, 12vh, 10rem) 0 5rem; background: radial-gradient(circle at 73% 34%, oklch(0.25 0.1 281 / 0.3), transparent 32%), var(--bg-deep); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.35; pointer-events: none; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 62%); }
.hero-glow { position: absolute; width: 42vw; height: 42vw; right: -12vw; bottom: -18vw; border-radius: 50%; background: var(--violet); opacity: 0.12; filter: blur(90px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr); gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.hero-copy { padding-top: 1rem; }
.hero-kicker { margin-bottom: 1.4rem; color: var(--cyan); font-family: var(--font-mono); font-size: clamp(0.67rem, 0.9vw, 0.78rem); letter-spacing: 0.09em; }
.hero h1 { max-width: 10ch; font-size: clamp(3.2rem, 6.7vw, 6rem); line-height: 1.02; letter-spacing: -0.04em; text-wrap: balance; }
.hero h1 span { color: var(--violet-bright); }
.hero-lead { max-width: 58ch; margin-top: 1.8rem; color: var(--ink-soft); font-size: clamp(1rem, 1.35vw, 1.15rem); text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.75rem 1.35rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--violet); color: white; }
.btn-primary:hover { background: var(--violet-bright); }
.btn-quiet { border: 1px solid var(--line); color: var(--ink); }
.btn-quiet:hover { border-color: var(--violet); background: oklch(0.62 0.22 281 / 0.08); }
.hero-data { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: clamp(2.5rem, 6vh, 4.5rem); padding-top: 1.2rem; border-top: 1px solid var(--line); }
.hero-data div { min-width: 90px; }
.hero-data dt { font-family: var(--font-mono); font-size: 0.92rem; color: var(--ink); }
.hero-data dd { color: var(--muted); font-size: 0.76rem; }
.specimen-wall { position: relative; min-height: 590px; display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 1fr 1fr; gap: 0.75rem; animation: heroReveal 1s var(--ease) both 0.15s; }
.specimen { position: relative; min-height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.specimen-main { grid-row: 1 / -1; }
.specimen img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04); transition: transform 0.8s var(--ease); }
.specimen:hover img { transform: scale(1.035); }
.specimen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.04 0.01 278 / 0.78), transparent 45%); pointer-events: none; }
.specimen figcaption { position: absolute; z-index: 1; inset: auto 1.1rem 1rem; display: flex; align-items: end; justify-content: space-between; gap: 0.8rem; }
.specimen figcaption span { color: var(--ink-soft); font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em; }
.specimen figcaption strong { font-family: var(--font-mono); font-size: 0.82rem; }
.specimen-caption { position: absolute; right: -1.3rem; bottom: -2.7rem; color: var(--ink-soft); font-size: 0.72rem; line-height: 1.5; text-align: right; }
.specimen-caption span { color: var(--muted); font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em; }
.hero-scroll { position: absolute; z-index: 2; left: 50%; bottom: 1.5rem; display: grid; justify-items: center; gap: 0.5rem; transform: translateX(-50%); color: var(--muted); font-size: 0.68rem; }
.hero-scroll i { width: 1px; height: 28px; background: var(--violet-bright); transform-origin: top; animation: scrollLine 2s ease-in-out infinite; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.35); opacity: 0.35; } 50% { transform: scaleY(1); opacity: 1; } }

.about { background: var(--bg); }
.about-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr); gap: clamp(3rem, 9vw, 10rem); align-items: start; }
.about-copy { padding-top: 2.1rem; }
.about-copy .lead { color: var(--ink); font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.65; }
.about-copy p + p { margin-top: 1.4rem; color: var(--ink-soft); }
.proof-band { margin-top: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.proof-band > div { min-width: 0; padding: 1.8rem clamp(1rem, 2vw, 2rem); }
.proof-band > div + div { border-left: 1px solid var(--line); }
.proof-band span, .proof-band small { display: block; color: var(--muted); font-size: 0.74rem; }
.proof-band strong { display: block; margin: 0.35rem 0 0.25rem; font-family: var(--font-mono); font-size: clamp(1.05rem, 1.7vw, 1.4rem); font-weight: 500; }

.products { background: var(--surface); }
.product-tabs { display: flex; width: fit-content; gap: 0.35rem; margin-bottom: 2rem; padding: 0.3rem; border: 1px solid var(--line); border-radius: 999px; }
.product-tab { padding: 0.6rem 1.2rem; border-radius: 999px; color: var(--ink-soft); background: transparent; font-size: 0.86rem; cursor: pointer; }
.product-tab.active { color: white; background: var(--violet); }
.product-panel[hidden] { display: none; }
.powder-showcase { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr); gap: 1rem; }
.product-feature, .product-compact, .slurry-heading, .table-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-deep); overflow: hidden; }
.product-image { position: relative; min-height: 340px; overflow: hidden; border-bottom: 1px solid var(--line); }
.product-image img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.04 0.01 278 / 0.65), transparent 40%); }
.product-image > span { position: absolute; z-index: 1; left: 1.4rem; bottom: 1.1rem; color: var(--cyan); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; }
.product-content { padding: clamp(1.4rem, 3vw, 2.2rem); }
.product-content > div > p, .product-compact-copy > p, .slurry-heading > div p { color: var(--cyan); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; }
.product-content h3 { margin-top: 0.2rem; font-size: clamp(1.4rem, 2.2vw, 2rem); }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; margin-top: 1.3rem; }
.spec-list div, .compact-specs div { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.65rem; border-bottom: 1px solid var(--line-soft); }
.spec-list dt, .compact-specs dt { color: var(--muted); font-size: 0.78rem; }
.spec-list dd, .compact-specs dd { font-family: var(--font-mono); font-size: 0.77rem; text-align: right; }
.product-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.product-compact { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 0; }
.product-compact > img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; border-right: 1px solid var(--line); }
.product-compact-copy { padding: 1.4rem; }
.product-compact h3 { margin-top: 0.1rem; font-size: 1.2rem; }
.compact-specs { margin-top: 0.8rem; }
.compact-specs div { padding-block: 0.42rem; }
.slurry-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 1rem; padding: clamp(1.5rem, 3vw, 2.5rem); }
.slurry-heading h3 { margin-top: 0.25rem; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.slurry-heading > p { max-width: 50ch; color: var(--ink-soft); }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 900px; border-collapse: collapse; text-align: left; }
th, td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line-soft); font-size: 0.82rem; white-space: nowrap; }
thead th { color: var(--muted); background: var(--surface-2); font-size: 0.72rem; font-weight: 500; }
tbody th { color: var(--cyan); font-family: var(--font-mono); font-weight: 500; }
tbody td { color: var(--ink-soft); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: oklch(0.62 0.22 281 / 0.05); }

.technology { background: var(--bg-deep); }
.technology-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.technology-gallery { position: relative; min-height: 660px; }
.technology-main, .technology-detail { position: absolute; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.technology-main { inset: 0 18% 14% 0; }
.technology-detail { width: 48%; height: 45%; right: 0; bottom: 0; }
.technology-gallery img { width: 100%; height: 100%; object-fit: cover; }
.technology-main img { object-position: 47% center; }
.technology-detail img { object-position: center; }
.technology-gallery figcaption { position: absolute; inset: auto 0 0; padding: 0.75rem 1rem; color: var(--ink-soft); background: oklch(0.05 0.008 278 / 0.88); backdrop-filter: blur(8px); font-size: 0.7rem; }
.technology-copy > p:not(.story-label) { max-width: 56ch; margin-top: 1.5rem; color: var(--ink-soft); }
.capability-list { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.capability-list li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--line); }
.capability-list li > span { color: var(--cyan); font-family: var(--font-mono); font-size: 0.7rem; }
.capability-list strong { font-size: 0.95rem; }
.capability-list p { margin-top: 0.25rem; color: var(--muted); font-size: 0.82rem; }

.honors { background: var(--bg); }
.honors-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 0.9rem; }
.honor-story { position: relative; grid-column: span 5; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.honor-featured { grid-column: span 7; grid-row: span 2; }
.honor-wide { grid-column: span 5; }
.honor-story img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.honor-story:hover img { transform: scale(1.03); }
.honor-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.04 0.008 278 / 0.9), transparent 65%); }
.honor-story > div { position: absolute; z-index: 1; inset: auto 1.3rem 1.2rem; }
.honor-story time { color: var(--cyan); font-family: var(--font-mono); font-size: 0.7rem; }
.honor-story h3 { margin-top: 0.2rem; font-size: clamp(1.05rem, 1.7vw, 1.45rem); }
.honor-story p { color: var(--ink-soft); font-size: 0.8rem; }
.honor-notes { display: grid; grid-template-columns: 1fr 1fr; margin-top: 0.9rem; border-block: 1px solid var(--line); }
.honor-notes > div { display: grid; grid-template-columns: 4rem 1.1fr 1fr; gap: 1rem; align-items: center; padding: 1.15rem 1rem; }
.honor-notes > div + div { border-left: 1px solid var(--line); }
.honor-notes time { color: var(--cyan); font-family: var(--font-mono); font-size: 0.75rem; }
.honor-notes strong { font-size: 0.86rem; }
.honor-notes span { color: var(--muted); font-size: 0.78rem; }

.contact { background: var(--surface); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(440px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-copy > p:not(:first-child) { max-width: 56ch; margin-top: 1.5rem; color: var(--ink-soft); }
.contact-links { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.contact-links > * { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.95rem; border-bottom: 1px solid var(--line); }
.contact-links span { color: var(--muted); font-size: 0.78rem; }
.contact-links strong { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; text-align: right; }
.contact-links a strong { color: var(--cyan); }
.contact-form { padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: var(--radius-lg); background: var(--bg-deep); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label > span { display: block; margin-bottom: 0.4rem; color: var(--ink-soft); font-size: 0.76rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 46px; padding: 0.72rem 0.85rem; border: 1px solid var(--line); border-radius: var(--radius); outline: none; color: var(--ink); background: var(--surface); transition: border-color 0.2s, box-shadow 0.2s; }
.contact-form textarea { min-height: 125px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--violet-bright); box-shadow: 0 0 0 3px oklch(0.62 0.22 281 / 0.16); }
.contact-form textarea::placeholder { color: var(--muted); opacity: 1; }
.btn-full { width: 100%; }
.form-note { margin-top: 0.7rem; color: var(--muted); font-size: 0.7rem; text-align: center; }

.footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-layout { min-height: 180px; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding-block: 2rem; }
.footer-brand > p { margin-top: 0.7rem; color: var(--muted); font-size: 0.76rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: end; gap: 1.5rem; color: var(--ink-soft); font-size: 0.78rem; }
.copyright { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 0.7rem; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .specimen-wall { min-height: 520px; }
  .powder-showcase { grid-template-columns: 1fr; }
  .product-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .product-compact { grid-template-columns: 1fr; }
  .product-compact > img { min-height: 220px; max-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .technology-layout { grid-template-columns: 1fr; }
  .technology-copy { max-width: 720px; }
}

@media (max-width: 820px) {
  .container, .nav-shell { width: min(100% - 2rem, var(--container)); }
  .nav-toggle { position: relative; z-index: 2; display: block; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; padding: 5rem 2rem; background: oklch(0.07 0.01 278 / 0.98); transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.05rem; }
  .hero { min-height: auto; padding-top: 7.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 12ch; }
  .specimen-wall { min-height: 560px; margin-bottom: 2rem; }
  .hero-scroll { display: none; }
  .about-layout, .section-intro, .contact-layout { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: 1fr 1fr; }
  .proof-band > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-band > div:nth-child(4) { border-top: 1px solid var(--line); }
  .slurry-heading { grid-template-columns: 1fr; gap: 1rem; }
  .technology-gallery { min-height: 560px; }
  .honors-mosaic { grid-auto-rows: 280px; }
  .honor-featured, .honor-story, .honor-wide { grid-column: span 12; grid-row: span 1; }
  .honor-notes { grid-template-columns: 1fr; }
  .honor-notes > div + div { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 600px) {
  .section { padding-block: 4.5rem; }
  .brand-copy strong { font-size: 0.88rem; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-data { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .hero-data div { min-width: 0; }
  .hero-data dt { font-size: 0.75rem; }
  .specimen-wall { min-height: 490px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.15fr 0.85fr; }
  .specimen-main { grid-column: 1 / -1; grid-row: auto; }
  .specimen-caption { display: none; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-band > div + div, .proof-band > div:nth-child(3), .proof-band > div:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .product-stack { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .technology-gallery { min-height: 440px; }
  .technology-main { inset: 0 10% 18% 0; }
  .technology-detail { width: 55%; height: 42%; }
  .honors-mosaic { grid-auto-rows: 240px; }
  .honor-notes > div { grid-template-columns: 3.5rem 1fr; }
  .honor-notes span { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-links > * { display: grid; }
  .contact-links strong { text-align: left; overflow-wrap: anywhere; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-nav { justify-content: start; }
  .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
::selection { color: white; background: var(--violet); }
