/* ═══════════════════════════════════════════════════════════════════
   HOSANNA — design system
   Deep black, one iridescent light source, a grotesk set very tight.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #060709;
  --bg-lift:   #0B0D11;
  --ink:       #EDEEF0;
  --ink-dim:   #9AA0A8;
  --ink-mute:  #62676E;
  --line:      rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);

  --violet: #7C5CFF;
  --cyan:   #3ED6E0;
  --amber:  #FFB765;

  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --gut: clamp(20px, 4.5vw, 72px);
  --max: 1560px;

  /* one easing everywhere — motion should feel like a single hand */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  /* the header is fixed for the whole page, so anchored sections have to
     stop clear of it rather than underneath it */
  scroll-padding-top: 96px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--violet); color: #fff; }

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

/* Cursor is drawn by JS on fine pointers; hide the native one there. */
@media (pointer: fine) {
  html.is-booted body, html.is-booted a, html.is-booted button { cursor: none; }
}

/* ── layout primitives ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { position: relative; padding-block: clamp(90px, 13vw, 190px); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── type scale ────────────────────────────────────────────────────── */
.display {
  font-size: clamp(2.65rem, 8.4vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.h2 {
  font-size: clamp(1.85rem, 4.6vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.32rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink-dim);
}

.body { font-size: 1rem; line-height: 1.62; color: var(--ink-dim); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.685rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}

.tnum { font-variant-numeric: tabular-nums; }

/* iridescent text — used once, on one word */
.irid {
  background: linear-gradient(96deg, var(--amber) 0%, var(--violet) 42%, var(--cyan) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(28px, 5vw, 64px);
  overflow: hidden;
}

.hero__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* CSS stand-in when WebGL is unavailable */
.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  background:
    radial-gradient(ellipse 46% 38% at 50% 44%, rgba(124, 92, 255, 0.34), transparent 68%),
    radial-gradient(ellipse 32% 26% at 62% 52%, rgba(62, 214, 224, 0.20), transparent 70%),
    radial-gradient(ellipse 28% 24% at 40% 38%, rgba(255, 183, 101, 0.16), transparent 72%),
    var(--bg);
}
html.no-gl .hero__fallback { display: block; }
html.no-gl .hero__gl { display: none; }

/* keeps the type legible over the light */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.42) 32%, transparent 62%);
}

/* Top scrim. The iris sits up-right, directly behind the nav, and the header
   only earns its own backdrop once you scroll past 40px — so at rest the nav
   would otherwise sit on the brightest part of the light. Several stops
   rather than two, so the falloff never reads as a band. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 210px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(6, 7, 9, 0.92) 0,
    rgba(6, 7, 9, 0.78) 46px,
    rgba(6, 7, 9, 0.46) 104px,
    rgba(6, 7, 9, 0.16) 158px,
    transparent 100%
  );
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__title { margin-bottom: clamp(20px, 2.6vw, 34px); }

.hero__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
}

.hero__blurb { max-width: 46ch; }

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink-mute), transparent);
  animation: scrollPulse 2.6s var(--ease-io) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);    opacity: 1;   transform-origin: top; }
}

/* line-mask reveal, driven by [data-split] */
.ln { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }

.ln > i {
  display: block;
  font-style: normal;
  transform: translateY(105%);
  animation: lineUp 1.15s var(--ease) forwards;
  animation-delay: calc(0.18s + var(--i) * 0.085s);
}

@keyframes lineUp { to { transform: translateY(0); } }

/* everything else in the hero fades up behind the headline */
.js .hero__inner [data-hero-fade] {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease) forwards;
  animation-delay: 0.62s;
}

@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding-block: 20px;
  transition: background-color 0.4s linear, backdrop-filter 0.4s linear, border-color 0.4s linear;
  border-bottom: 1px solid transparent;
}

.header.is-solid {
  background: rgba(6, 7, 9, 0.62);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Hosanna's actual mark is the wordmark alone — bold neo-grotesk, tight,
   no symbol. Matched rather than invented. */
.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.06rem;
  letter-spacing: -0.042em;
  font-weight: 700;
  color: var(--ink);
}

.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }

.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }

.nav a {
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  /* a touch brighter than --ink-dim: these sit over a live shader, not a flat panel */
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  letter-spacing: -0.012em;
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, var(--amber), var(--violet) 50%, var(--cyan));
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}

.btn:hover { color: #08090C; border-color: transparent; }
.btn:hover::before { transform: translateY(0); }

.btn--solid { background: var(--ink); color: #08090C; border-color: transparent; }
.btn--solid:hover { color: #08090C; }

.btn__arrow { transition: transform 0.45s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.3s linear, width 0.4s var(--ease), height 0.4s var(--ease),
              background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  mix-blend-mode: difference;
}

.cursor.is-live { opacity: 1; }

.cursor.is-active {
  width: 62px; height: 62px;
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  mix-blend-mode: difference;
}

.cursor.has-label { width: 92px; height: 92px; }

.cursor__label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0B0D11;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.cursor.has-label .cursor__label { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════
   REVEALS
   ═══════════════════════════════════════════════════════════════════ */
.js [data-reveal] [data-reveal-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.07s);
}

.js [data-reveal].is-in [data-reveal-child] { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADS
   ═══════════════════════════════════════════════════════════════════ */
.shead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: clamp(42px, 6vw, 84px);
}

@media (min-width: 900px) {
  .shead { grid-template-columns: 1fr minmax(0, 42%); align-items: end; gap: clamp(30px, 5vw, 80px); }
}

.shead__num { display: block; margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════════════════ */
.manifesto__quote {
  font-size: clamp(1.5rem, 3.6vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 20ch;
  text-wrap: balance;
}

.manifesto__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 7vw, 96px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.pillar { border-top: 1px solid var(--line); padding-top: 20px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 0.93rem; line-height: 1.6; color: var(--ink-mute); }

/* ═══════════════════════════════════════════════════════════════════
   WORK
   ═══════════════════════════════════════════════════════════════════ */
.work { border-top: 1px solid var(--line); }

.work__row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 40px);
  padding-block: clamp(22px, 3.2vw, 40px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.6s var(--ease);
}

.work__row::before {
  content: '';
  position: absolute;
  inset: 0 calc(var(--gut) * -0.4);
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.work__row.is-hot::before { opacity: 1; }

.work__idx {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-mute);
  transition: color 0.4s var(--ease);
}
.work__row.is-hot .work__idx { color: var(--violet); }

.work__name {
  font-size: clamp(1.5rem, 4.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}

@media (pointer: fine) {
  .work__row.is-hot .work__name { transform: translateX(clamp(8px, 1.4vw, 22px)); }
  .work:hover .work__row:not(.is-hot) .work__name { opacity: 0.34; }
}

.work__meta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

.work__tag {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
  white-space: nowrap;
}

.work__award { color: var(--amber); }

@media (max-width: 760px) {
  .work__row { grid-template-columns: auto minmax(0, 1fr); row-gap: 10px; }
  .work__meta { grid-column: 2; justify-content: flex-start; text-align: left; }
}

/* floating preview card that chases the pointer */
.work__media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 22vw, 330px);
  aspect-ratio: 4 / 3;
  margin: calc(clamp(220px, 22vw, 330px) * -0.375) 0 0 calc(clamp(220px, 22vw, 330px) * -0.5);
  border-radius: 14px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  scale: 0.86;
  transition: opacity 0.45s var(--ease), scale 0.6s var(--ease);
  border: 1px solid var(--line);
  background: var(--bg-lift);
  will-change: transform;
}

.work__row.is-hot .work__media { opacity: 1; scale: 1; }
.work__media > * { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px), (pointer: coarse) {
  .work__media { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════════════════════════════ */
.quote { border-top: 1px solid var(--line); }

.quote__body {
  margin: 0;
  font-size: clamp(1.6rem, 4.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 500;
  max-width: 17ch;
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════════════════
   CAPABILITIES
   ═══════════════════════════════════════════════════════════════════ */
.caps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

.cap {
  background: var(--bg);
  padding: clamp(26px, 3.2vw, 44px) clamp(20px, 2.4vw, 32px);
  position: relative;
  transition: background-color 0.5s var(--ease);
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.cap:hover { background: var(--bg-lift); }

.cap__no {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--ink-mute);
  margin-bottom: auto;
  padding-bottom: 32px;
}

.cap h3 { margin-bottom: 10px; }
.cap p { font-size: 0.9rem; line-height: 1.58; color: var(--ink-mute); }

.cap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.cap:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE — clients
   ═══════════════════════════════════════════════════════════════════ */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding-right: clamp(30px, 5vw, 76px);
  flex: none;
  min-width: 100%;
  animation: slide 46s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes slide { to { transform: translateX(-100%); } }

.marquee__item {
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.marquee__item:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════════ */
.stats {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.stat { border-top: 1px solid var(--line); padding-top: 18px; }

.stat__fig {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 12px;
}

.stat__fig sup { font-size: 0.42em; vertical-align: super; letter-spacing: 0; }
.stat p { font-size: 0.88rem; line-height: 1.55; color: var(--ink-mute); }

/* ═══════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════ */
.cta { position: relative; overflow: hidden; text-align: center; }

.cta__glow {
  position: absolute;
  left: 50%;
  bottom: -46%;
  width: min(1150px, 100vw);
  aspect-ratio: 1;
  translate: -50% 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.26), rgba(62, 214, 224, 0.09) 42%, transparent 66%);
  animation: ctaBreathe 9s var(--ease-io) infinite;
}

@keyframes ctaBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.12); opacity: 1; }
}

.cta__inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: 30px; }

.cta__title { max-width: 16ch; text-wrap: balance; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(40px, 5vw, 70px); }

.footer__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  margin-bottom: clamp(40px, 6vw, 76px);
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 16px;
}

.footer__col li + li { margin-top: 9px; }

.footer__col a, .footer__col span {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.3s var(--ease);
  display: inline-block;
}
.footer__col a:hover { color: var(--ink); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* underline-on-hover link */
.ul {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.45s var(--ease);
  padding-bottom: 1px;
}
.ul:hover { background-size: 100% 1px; }

/* ═══════════════════════════════════════════════════════════════════
   CONNECT PAGE
   ═══════════════════════════════════════════════════════════════════ */
.connect {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(120px, 16vw, 190px);
  overflow: hidden; /* the glow overhangs the viewport on narrow screens */
}

.connect__glow {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(900px, 100vw);
  aspect-ratio: 1;
  translate: -50% 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.20), rgba(255, 183, 101, 0.06) 44%, transparent 68%);
  animation: ctaBreathe 11s var(--ease-io) infinite;
}

.connect__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(46px, 7vw, 100px);
}

@media (min-width: 980px) {
  .connect__grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}

.mailto {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(1.25rem, 3.4vw, 2.5rem);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1.1;
  word-break: break-word;
}

.mailto .btn__arrow { font-size: 0.6em; }

.detail { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 26px; }
.detail dt { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.detail dd { margin: 0; font-size: 0.98rem; color: var(--ink-dim); line-height: 1.55; }

/* form */
.form { display: grid; gap: 22px; }

.field { position: relative; display: grid; gap: 8px; }

.field label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
  appearance: none;
}

.field select { cursor: pointer; }
.field select option { background: var(--bg-lift); color: var(--ink); }

.field textarea { resize: vertical; min-height: 116px; line-height: 1.55; }

.field input::placeholder, .field textarea::placeholder { color: #3D4147; }

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--violet);
}

.field::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.field:focus-within::after { transform: scaleX(1); }

.form__foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }

.form__note { font-size: 0.8rem; color: var(--ink-mute); max-width: 34ch; }

/* ── motion opt-out ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ln > i { transform: none; }
  .js [data-reveal] [data-reveal-child] { opacity: 1; transform: none; }
  .js .hero__inner [data-hero-fade] { opacity: 1; transform: none; }
  .cursor { display: none; }
}
