/* ================================================================
   SNAPHOMZ CAREERS — brand tokens (screen adaptation)
   Cool graphite dark ladder + gray #E2E2E2 type + orange #F57F2E
   accent, with deep "ember" shades derived from the brand orange
   for depth/glows. Brand print black #231F20 is reserved for
   logo/print contexts; no pure white anywhere.
   ================================================================ */
:root {
  --ink-deep: #141517;  /* page base, deepest wells */
  --ink: #1b1d20;       /* main surfaces */
  --ink-raise: #24272b; /* cards, marquee, hovers */
  --gray: #e2e2e2;
  --gray-70: rgba(226, 226, 226, 0.7);
  --gray-60: rgba(226, 226, 226, 0.62);
  --line: rgba(226, 226, 226, 0.14);
  --accent: #f57f2e;
  --accent-soft: rgba(245, 127, 46, 0.12);
  --ember: #3b2214;     /* deep burnt shade of the brand orange */
  --ember-glow: rgba(245, 127, 46, 0.1);
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* keep the hidden attribute authoritative over display: grid/flex rules */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink-deep);
  color: var(--gray);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--ink-deep); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; }
.accent { color: var(--accent); font-style: normal; }

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

/* film grain */
.noise {
  position: fixed; inset: -50%; z-index: 60; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
}

/* custom cursor */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 70; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0;
}
.cursor.is-active { width: 34px; height: 34px; }
@media (hover: none) { .cursor { display: none; } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 21, 23, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; letter-spacing: 0.18em; font-size: 0.9rem;
  white-space: nowrap;
}
.nav__logo-mark {
  width: 9px; height: 9px; background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.nav__logo-sub { color: var(--gray-60); font-weight: 400; letter-spacing: 0.05em; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray-70);
  position: relative; transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s;
}
.nav__links a:hover { color: var(--gray); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav { padding: 0.9rem 1.25rem; }
  .nav__logo-sub { display: none; }
  .nav__cta .btn__count { display: none; }
}

/* ============ BUTTONS (uiverse-style slide fill) ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  border: 1px solid var(--gray); overflow: hidden;
  transition: color 0.35s, border-color 0.35s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--ink-deep); border-color: var(--accent); }
.btn:hover::before { transform: translateY(0); }
.btn--fill { background: var(--gray); color: var(--ink-deep); border-color: var(--gray); }
.btn--ghost { color: var(--gray); background: transparent; }
.btn--big { padding: 1.2rem 2.2rem; font-size: 0.85rem; }
.btn__arrow { transition: transform 0.3s; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn__count {
  background: var(--accent); color: var(--ink-deep);
  padding: 0.1rem 0.4rem; font-size: 0.6875rem;
}
.nav__cta { padding: 0.6rem 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--pad) 5.5rem;
  overflow: hidden;
}
#scene { position: absolute; inset: 0; width: 100%; height: 100%; }
/* ember horizon — heat under the particle grid */
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  left: 50%; bottom: -20%; transform: translateX(-50%);
  width: 130%; height: 60%;
  background: radial-gradient(
    ellipse 50% 55% at 50% 100%,
    var(--ember-glow),
    rgba(59, 34, 20, 0.35) 45%,
    transparent 74%
  );
}
.hero__frame { position: absolute; inset: 5.5rem 1.2rem 1.2rem; pointer-events: none; z-index: 2; }
.hero__tick { position: absolute; width: 14px; height: 14px; border: 1px solid var(--gray-60); }
.hero__tick--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__tick--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero__tick--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero__tick--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero__inner { position: relative; z-index: 2; max-width: 60rem; }
.hero__eyebrow { color: var(--gray-70); margin-bottom: 1.6rem; }
.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.02em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { position: relative; }
.hero__sub { max-width: 34rem; color: var(--gray-70); font-size: 1.02rem; margin-bottom: 2.4rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__meta {
  position: relative; z-index: 2;
  display: flex; gap: clamp(1.5rem, 5vw, 4.5rem); flex-wrap: wrap;
  margin-top: 4.5rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__meta span { display: block; font-size: 1.7rem; color: var(--gray); letter-spacing: 0; }
.hero__meta label {
  display: block; margin-top: 0.3rem;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-60);
}

.hero__scroll {
  position: absolute; right: var(--pad); bottom: 2rem; z-index: 2;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.6875rem; letter-spacing: 0.3em; color: var(--gray-60);
}
.hero__scroll-line { width: 56px; height: 1px; background: var(--gray-60); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: scrollhint 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollhint {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 1.1rem 0; background: var(--ink-raise);
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.28em;
  color: var(--gray-70);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(4.5rem, 10vw, 8rem) var(--pad); border-bottom: 1px solid var(--line); }
/* alternating surfaces: mission & stack sit one step above the page base */
#mission, #stack { background: var(--ink); }
.section__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 1.2rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  color: var(--gray-60);
}

/* mission */
.mission__statement {
  max-width: 56rem;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  font-weight: 500; line-height: 1.25; letter-spacing: -0.01em;
}
.mission__statement .w { opacity: 0.15; transition: none; }

/* ============ VALUE CARDS (uiverse-style corner brackets) ============ */
.cards {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  border: 1px solid var(--line);
}
.card {
  position: relative; background: var(--ink); padding: 2.2rem 1.8rem 2.6rem;
  transition: background 0.35s;
}
.card:hover {
  background:
    radial-gradient(120% 120% at 50% 130%, rgba(245, 127, 46, 0.07), transparent 60%),
    var(--ink-raise);
}
.card__index { display: block; color: var(--accent); margin-bottom: 2.6rem; }
.card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.7rem; letter-spacing: 0.01em; }
.card p { color: var(--gray-70); font-size: 0.9rem; }
.card__corners::before, .card__corners::after,
.card__corners { position: absolute; pointer-events: none; }
.card__corners { inset: 10px; opacity: 0; transition: opacity 0.3s; }
.card:hover .card__corners { opacity: 1; }
.card__corners::before, .card__corners::after { content: ""; width: 12px; height: 12px; }
.card__corners::before { top: 0; left: 0; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.card__corners::after { bottom: 0; right: 0; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

/* ============ STACK ============ */
.stack {
  display: grid; gap: 2.5rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}
.stack__col h4 { color: var(--gray-60); font-weight: 500; margin-bottom: 1.1rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 0.45rem 0.8rem; border: 1px solid var(--line); color: var(--gray-70);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
}
.chips li:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ============ ROLES ============ */
.roles__hint { color: var(--gray-60); margin-bottom: 1.8rem; }
.roles { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.role {
  position: relative;
  border-bottom: 1px solid var(--line);
}
.role::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 1;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.role:hover::before, .role.is-open::before { transform: scaleY(1); }

.role__head {
  width: 100%;
  display: grid; grid-template-columns: 1fr auto auto; align-items: center;
  gap: 1.5rem; padding: 1.6rem 1rem;
  background: transparent; border: 0; color: inherit; font: inherit;
  text-align: left; cursor: pointer;
  transition: padding-left 0.35s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
}
.role__head:hover, .role.is-open .role__head { padding-left: 1.8rem; background: var(--ink-raise); }
.role__title { font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 600; letter-spacing: 0.01em; }
.role__meta { color: var(--gray-60); }
.role__arrow { color: var(--accent); font-size: 1.2rem; transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1); }
.role__head:hover .role__arrow { transform: translateX(6px); }
.role.is-open .role__arrow { transform: rotate(90deg); }
@media (max-width: 640px) {
  .role__head { grid-template-columns: 1fr auto; }
  .role__meta { grid-column: 1; font-size: 0.6875rem; }
  .role__arrow { grid-row: 1; grid-column: 2; }
}

/* expanding brief */
.role__body { height: 0; overflow: hidden; }
.role__body-inner {
  padding: 2.2rem 1.8rem 2.8rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) { .role__body-inner { padding: 1.8rem 1rem 2.2rem; } }

.jd__brief {
  max-width: 46rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; line-height: 1.45;
  margin-bottom: 2.2rem;
}
.jd__grid {
  display: grid; gap: 2rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  margin-bottom: 2.2rem;
}
.jd__col h4 { color: var(--gray-60); font-weight: 500; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.jd__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.jd__col li {
  position: relative; padding-left: 1.1rem;
  color: var(--gray-70); font-size: 0.9rem;
}
.jd__col li::before {
  content: "\25B8"; position: absolute; left: 0; top: 0.18em;
  color: var(--accent); font-size: 0.7rem;
}
.jd__terms { color: var(--gray-60); border-top: 1px solid var(--line); padding-top: 1.3rem; }

/* ============ CATEGORY DIVISIONS ============ */
.cats { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.cat { position: relative; border-bottom: 1px solid var(--line); }
.cat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 1;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.cat:hover::before, .cat.is-open::before { transform: scaleY(1); }

.cat__head {
  width: 100%;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
  gap: 1.6rem; padding: 1.5rem 1rem;
  background: transparent; border: 0; color: inherit; font: inherit;
  text-align: left; cursor: pointer;
  transition: padding-left 0.35s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
}
.cat__head:hover, .cat.is-open .cat__head { padding-left: 1.6rem; background: var(--ink-raise); }

.cat__icon svg { width: 44px; height: 44px; display: block; }
.cat__icon svg * {
  fill: none; stroke: var(--gray-60);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cat__icon svg .acc { stroke: var(--accent); }
.cat__icon .draw { stroke-dasharray: 1; } /* paths carry pathLength="1" */
.cat__icon .fl-play, .cat__icon .sg-dot, .cat__icon .sc-pivot, .cat__icon .ct-dot {
  fill: var(--accent); stroke: none;
}
.cat__icon .sh-pulse { opacity: 0; }
.cat:hover .cat__icon svg *:not(.acc):not(.fl-play):not(.sg-dot):not(.sc-pivot):not(.ct-dot) { stroke: var(--gray); }

.cat__name {
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 600; letter-spacing: 0.01em;
}
.cat__tag { color: var(--gray-60); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.12em; }
.cat__count { color: var(--gray-60); white-space: nowrap; }
.cat__arrow { color: var(--accent); font-size: 1.2rem; transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1); }
.cat__head:hover .cat__arrow { transform: translateX(6px); }
.cat.is-open .cat__arrow { transform: rotate(90deg); }

.cat__body { height: 0; overflow: hidden; }
.cat__body-inner { padding: 0.4rem 0 2.6rem; }
.cat .roles {
  border-top: 0;
  margin-left: clamp(0.5rem, 4vw, 3.8rem);
  border-left: 1px solid var(--line);
}
.cat .role__head { padding-left: 1.4rem; }
.cat .role__head:hover, .cat .role.is-open .role__head { padding-left: 2.2rem; }

@media (max-width: 640px) {
  .cat__head { gap: 1rem; grid-template-columns: auto 1fr auto; }
  .cat__icon svg { width: 34px; height: 34px; }
  .cat__count { display: none; }
  .cat .roles { margin-left: 0.25rem; }
}

/* ============ APPLICATION CONSOLE ============ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.console {
  margin-top: 2.4rem; padding: 1.8rem;
  border: 1px solid var(--line); background: var(--ink);
}
.console__prompt { color: var(--gray-60); margin-bottom: 1.8rem; overflow-wrap: anywhere; }
.console__caret {
  display: inline-block; width: 0.55em; height: 1em;
  background: var(--accent); margin-left: 0.35em; vertical-align: -0.15em;
  animation: caret 1.1s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.console__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; }
@media (max-width: 900px) { .console__grid { grid-template-columns: 1fr; } }
.console__side { display: flex; flex-direction: column; gap: 1.8rem; }

.console__block { border: 0; min-width: 0; }
.console__legend { color: var(--gray-60); margin-bottom: 0.4rem; }
.console__tag {
  border: 1px solid var(--accent); color: var(--accent);
  padding: 0.1rem 0.4rem; margin-left: 0.5rem; font-size: 0.6rem;
}
.console__tag--opt { border-color: var(--line); color: var(--gray-60); }
.console__label { display: block; font-weight: 600; margin: 0.8rem 0 0.35rem; }
.console__hint { color: var(--gray-60); font-size: 0.85rem; margin-bottom: 0.9rem; }

.console textarea,
.console input[type="url"] {
  width: 100%; padding: 0.8rem 0.9rem;
  background: var(--ink-deep); border: 1px solid var(--line); border-radius: 0;
  color: var(--gray); font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.03em; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.console textarea:focus,
.console input[type="url"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.console ::placeholder { color: rgba(226, 226, 226, 0.35); }

.console__count { color: var(--gray-60); margin-top: 0.5rem; }
.console__count.is-ok { color: var(--accent); }

.dropzone {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 9rem; margin-top: 0.9rem; padding: 1.2rem; text-align: center;
  border: 1px dashed rgba(226, 226, 226, 0.3); cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.dropzone:hover, .dropzone.is-drag, .dropzone:focus-within { border-color: var(--accent); background: var(--accent-soft); }
.dropzone.has-file { border-style: solid; border-color: var(--accent); background: transparent; }
.dropzone__idle { color: var(--gray-60); line-height: 2; }
.dropzone__idle em { font-style: normal; opacity: 0.7; }
.dropzone__file { color: var(--gray); line-height: 1.9; overflow-wrap: anywhere; }
.dropzone__corners { position: absolute; inset: 6px; pointer-events: none; }
.dropzone__corners::before, .dropzone__corners::after {
  content: ""; position: absolute; width: 10px; height: 10px;
}
.dropzone__corners::before { top: 0; left: 0; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.dropzone__corners::after { bottom: 0; right: 0; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

.console__error { color: var(--accent); margin-top: 0.6rem; }

.console__url { display: block; color: var(--gray-60); margin-bottom: 0.9rem; }
.console__url input { margin-top: 0.35rem; }

.console__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 2rem;
}
.console__status { color: var(--gray-60); display: inline-flex; align-items: center; gap: 0.55rem; }
.console__lamp {
  width: 8px; height: 8px; display: inline-block;
  border: 1px solid var(--gray-60);
  transition: background 0.25s, border-color 0.25s;
}
.console__lamp.is-on { background: var(--accent); border-color: var(--accent); }
.console__send[disabled] { opacity: 0.35; pointer-events: none; }

.console__log {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
  color: var(--gray-70);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.console__log[hidden] { display: none; }

.console__done {
  margin-top: 1.6rem; padding: 1.6rem;
  border: 1px solid var(--accent); background: var(--accent-soft);
}
.console__done-head { color: var(--accent); letter-spacing: 0.2em; margin-bottom: 0.7rem; }
.console__done-ref { color: var(--gray); margin-bottom: 0.8rem; }
.console__done-copy { color: var(--gray-70); max-width: 32rem; font-size: 0.95rem; }

/* ============ CTA ============ */
.cta {
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  text-align: center;
  background:
    radial-gradient(ellipse 62% 55% at 50% 100%, var(--ember-glow), rgba(59, 34, 20, 0.4) 42%, transparent 72%),
    var(--ink-deep);
}
.cta__eyebrow { color: var(--gray-70); margin-bottom: 1.4rem; }
.cta__title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.015em;
  text-transform: uppercase; margin-bottom: 2.4rem;
}

/* ============ FOOTER ============ */
.footer {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem var(--pad);
  border-top: 1px solid var(--line);
  color: var(--gray-60);
}
.footer .mono { font-size: 0.6875rem; }

/* ============ SCROLL REVEAL DEFAULTS ============ */
.reveal { opacity: 0; transform: translateY(28px); }

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