/* =============================================================
   OCUTARI — Bull's Eye Cybersecurity
   Stylesheet v1.0
   Aesthetic: Editorial-tactical · Dark · Optical instrumentation
   ============================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Palette — deep ink with bone, single oxblood accent, brass instrumentation warmth */
  --ink: #0b0d10;
  --ink-2: #11141a;
  --ink-3: #181c24;
  --ash: #2a2d33;
  --ash-2: #3a3e46;
  --steel: #7a818c;
  --bone: #e8e2d4;
  --bone-dim: #c9c3b5;
  --ox: #8b1e1e;
  --ox-bright: #b32a2a;
  --brass: #c8a96a;
  --brass-dim: #8a7548;

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", "Arial", sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", "Consolas", monospace;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 2px;
  --rule: 1px solid rgba(232, 226, 212, 0.12);
  --rule-strong: 1px solid rgba(232, 226, 212, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.005em;
  background-image:
    radial-gradient(ellipse at 80% -10%, rgba(139, 30, 30, 0.08), transparent 50%),
    radial-gradient(ellipse at 0% 110%, rgba(200, 169, 106, 0.04), transparent 50%);
  background-attachment: fixed;
}

/* Subtle grain overlay for tactile depth */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

::selection { background: var(--ox); color: var(--bone); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.875rem); letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; font-variation-settings: "opsz" 14, "SOFT" 50; letter-spacing: 0.02em; }
p { color: var(--bone-dim); }
strong { color: var(--bone); font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow .reg {
  color: var(--steel);
  margin-right: 0.6em;
}

.lede { font-size: clamp(1.05rem, 1.4vw, 1.225rem); line-height: 1.55; color: var(--bone-dim); max-width: 56ch; }

.mono { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); position: relative; z-index: 2; }
.container.narrow { max-width: var(--container-narrow); }

section { padding: var(--s-9) 0; position: relative; }
section + section { border-top: var(--rule); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
  align-items: end;
}
.section-head .index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  letter-spacing: 0.16em;
  border-top: var(--rule-strong);
  padding-top: var(--s-3);
}
.section-head h2 { max-width: 18ch; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: var(--s-4); }
  section { padding: var(--s-8) 0; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand .mark { width: 32px; height: 32px; flex: 0 0 32px; }
.brand .mark circle { transition: transform 0.6s var(--ease); transform-origin: center; }
.brand:hover .mark .iris-pulse { animation: irisPulse 0.8s var(--ease); }
@keyframes irisPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.7); }
}
.brand-name { font-weight: 500; }
.brand-name .em { color: var(--ox-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  position: relative;
  padding: var(--s-2) 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--bone); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--ox-bright);
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--s-3) var(--s-5);
  border: 1px solid var(--bone);
  color: var(--bone);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--bone); color: var(--ink); }

.nav-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    padding: var(--s-2);
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--bone);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ink); padding: var(--s-5) var(--s-6);
    border-bottom: var(--rule);
  }
  .nav.is-open .nav-links a {
    padding: var(--s-4) 0;
    border-bottom: var(--rule);
    font-size: 1rem;
  }
  .nav.is-open .nav-links a:last-child { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-10) 0 var(--s-9);
  overflow: hidden;
  border-bottom: var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-text { animation: fadeUp 0.8s var(--ease) 0.1s both; }
.hero-eyebrow { margin-bottom: var(--s-5); }
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 6rem);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 360;
  margin-bottom: var(--s-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 320;
}
.hero .lede { margin-bottom: var(--s-6); }
.hero-meta {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: var(--rule);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}
.hero-meta div span { display: block; color: var(--bone); font-size: 0.9rem; margin-top: 4px; letter-spacing: 0.02em; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.4s var(--ease) 0.3s both;
}
.hero-target { width: 100%; max-width: 460px; }
.hero-target .ring { fill: none; stroke: var(--bone); stroke-width: 0.5; }
.hero-target .ring-thick { stroke-width: 1; stroke: var(--bone-dim); }
.hero-target .ring-accent { stroke: var(--ox-bright); stroke-width: 1.2; }
.hero-target .crosshair { stroke: var(--bone); stroke-width: 0.5; }
.hero-target .mark-tick { stroke: var(--brass); stroke-width: 1; }
.hero-target .center-dot { fill: var(--ox-bright); }
.hero-target .ring-rotate { transform-origin: center; animation: slowRotate 60s linear infinite; }
.hero-target .ring-rotate-rev { transform-origin: center; animation: slowRotate 90s linear infinite reverse; }
.hero-target .iris-blink { animation: blink 5.5s var(--ease) infinite; transform-origin: center; }

@keyframes slowRotate { to { transform: rotate(360deg); } }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.04); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 880px) {
  .hero { padding: var(--s-8) 0; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-meta { flex-wrap: wrap; gap: var(--s-4); }
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--s-4) var(--s-6);
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
  transition: all 0.25s var(--ease);
  position: relative;
  cursor: pointer;
}
.btn::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.25s var(--ease);
}
.btn:hover { background: var(--bone); color: var(--ink); }
.btn:hover::after { transform: translateX(4px); }
.btn-primary { background: var(--ox); border-color: var(--ox); color: var(--bone); }
.btn-primary:hover { background: var(--ox-bright); border-color: var(--ox-bright); color: var(--bone); }
.btn-ghost { border-color: rgba(232, 226, 212, 0.3); color: var(--bone-dim); }
.btn-ghost:hover { border-color: var(--bone); color: var(--ink); background: var(--bone); }

/* ---------- Discipline Cards (services) ---------- */
.disciplines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: var(--rule);
  border-bottom: 0;
  border-right: 0;
}
.discipline {
  padding: var(--s-7) var(--s-6);
  border-right: var(--rule);
  border-bottom: var(--rule);
  position: relative;
  transition: background 0.3s var(--ease);
}
.discipline:hover { background: var(--ink-2); }
.discipline:hover .d-num { color: var(--ox-bright); }
.discipline:hover .d-icon { transform: scale(1.04); }
.d-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s-5);
  gap: var(--s-4);
}
.d-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  letter-spacing: 0.16em;
  transition: color 0.3s var(--ease);
}
.d-icon {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  transition: transform 0.3s var(--ease);
}
.d-icon circle, .d-icon line, .d-icon path, .d-icon rect, .d-icon polyline {
  fill: none; stroke: var(--brass); stroke-width: 1.2;
}
.d-icon .accent { stroke: var(--ox-bright); }
.d-icon .fill-accent { fill: var(--ox-bright); stroke: none; }
.discipline h3 { margin-bottom: var(--s-4); }
.discipline h3 em { font-style: italic; color: var(--brass); }
.discipline p { font-size: 0.95rem; line-height: 1.6; }
.discipline ul {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-4);
}
.discipline li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-left: var(--s-4);
}
.discipline li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 1px;
  background: var(--brass);
}

@media (max-width: 720px) {
  .disciplines { grid-template-columns: 1fr; }
  .discipline ul { grid-template-columns: 1fr; }
}

/* ---------- Article / Tool listings ---------- */
.listing { display: grid; gap: 0; border-top: var(--rule); }
.item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: var(--rule);
  align-items: center;
  transition: padding 0.3s var(--ease);
}
.item:hover { padding-left: var(--s-3); }
.item:hover .item-arrow { transform: translateX(6px); color: var(--ox-bright); }
.item-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--steel); letter-spacing: 0.14em; }
.item-body h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); margin-bottom: var(--s-2); }
.item-body p { font-size: 0.92rem; max-width: 60ch; }
.item-meta { display: flex; gap: var(--s-4); margin-top: var(--s-3); font-family: var(--font-mono); font-size: 0.72rem; color: var(--steel); letter-spacing: 0.1em; text-transform: uppercase; }
.item-meta .price { color: var(--brass); }
.item-meta .pill {
  border: 1px solid var(--ash-2);
  padding: 2px 8px;
}
.item-arrow {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--bone-dim);
  transition: all 0.3s var(--ease);
}

@media (max-width: 640px) {
  .item { grid-template-columns: 60px 1fr; gap: var(--s-4); }
  .item-arrow { grid-column: 2; justify-self: end; }
}

/* ---------- Manifest / About blocks ---------- */
.manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
.manifest-lede {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  color: var(--bone);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.manifest-lede em { color: var(--brass); font-style: italic; }
.manifest-body p + p { margin-top: var(--s-4); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: var(--rule-strong);
}
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1;
  color: var(--bone);
  font-variation-settings: "opsz" 144;
}
.stat .n .unit { font-size: 0.5em; color: var(--brass); margin-left: 0.15em; vertical-align: super; }
.stat .l {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: var(--s-3);
}

@media (max-width: 720px) {
  .manifest { grid-template-columns: 1fr; gap: var(--s-5); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Process band ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--rule-strong);
  border-bottom: var(--rule-strong);
}
.process-step {
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  border-right: var(--rule);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ox-bright);
  letter-spacing: 0.14em;
  margin-bottom: var(--s-4);
}
.process-step h4 { margin-bottom: var(--s-3); }
.process-step p { font-size: 0.88rem; color: var(--bone-dim); }

@media (max-width: 720px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: var(--rule); padding: var(--s-5) 0; }
  .process-step:last-child { border-bottom: 0; }
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-8);
  align-items: start;
}
.contact-aside h2 { margin-bottom: var(--s-5); }
.contact-aside .lede { margin-bottom: var(--s-6); }
.contact-channels { border-top: var(--rule); padding-top: var(--s-5); }
.contact-channels dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--s-2);
}
.contact-channels dd {
  font-size: 1rem;
  color: var(--bone);
  margin-bottom: var(--s-5);
}
.contact-channels dd a:hover { color: var(--ox-bright); }

.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: var(--s-2); }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.field label .req { color: var(--ox-bright); margin-left: 4px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ash-2);
  padding: var(--s-3) 0;
  font-size: 1rem;
  color: var(--bone);
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-bottom-color: var(--ox-bright);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.field-honey {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-3);
  flex-wrap: wrap;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: var(--s-3) var(--s-4);
  letter-spacing: 0.08em;
  display: none;
}
.form-status.is-success { display: block; background: rgba(200, 169, 106, 0.08); border-left: 2px solid var(--brass); color: var(--bone); }
.form-status.is-error { display: block; background: rgba(139, 30, 30, 0.12); border-left: 2px solid var(--ox-bright); color: var(--bone); }

.g-recaptcha { transform: scale(0.9); transform-origin: left top; margin-top: var(--s-3); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-2);
  border-top: var(--rule);
  padding: var(--s-8) 0 var(--s-5);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: var(--rule);
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.footer-brand p { font-size: 0.9rem; max-width: 38ch; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer ul li { margin-bottom: var(--s-2); }
.footer ul a { font-size: 0.9rem; color: var(--bone-dim); transition: color 0.2s var(--ease); }
.footer ul a:hover { color: var(--ox-bright); }
.footer-base {
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}
.footer-base .sig { color: var(--bone-dim); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Utility ---------- */
.tagline-strip {
  background: var(--ink-2);
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: var(--s-4) 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}
.tagline-strip .scroll {
  display: inline-block;
  animation: marquee 60s linear infinite;
}
.tagline-strip .scroll span { margin-right: var(--s-7); }
.tagline-strip .scroll span::before { content: "◎  "; color: var(--ox); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ---------- 404 ---------- */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.9;
  color: var(--ox);
  font-variation-settings: "opsz" 144;
}

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