/* Omnia Tech — omniatech.ai
   Two voices in the type, on purpose: the machine speaks in an expanded
   grotesque (Archivo at wdth 125), the person speaks in a soft italic serif
   (Fraunces). The tagline has one of each, and so does the page. */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  /* brand, measured from the mark Tucker showed on 16 Sep */
  --magenta: #e7228b;
  --orchid: #a83da0;
  --violet: #6b3fd4;
  --ember: #ffd9a8;

  --night-ink: #f4eff7;
  --day-ink: #1d1027;
  --paper: #fbf6f1;

  --pad: clamp(20px, 5.2vw, 96px);
  --rail: 0px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* driven by site.js */
  --s0: #06040d; --s1: #0d0719; --s2: #160b2c;
  --sun: 0; --sunO: 0; --prog: 0; --hz: 60%;

  --machine: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --human: "Fraunces", "Iowan Old Style", Georgia, serif;
}
@media (min-width: 1100px) { :root { --rail: 76px; } }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: #06040d;
  color: var(--night-ink);
  font: 400 clamp(1.02rem, .96rem + .3vw, 1.2rem)/1.62 var(--machine);
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, p, figure, blockquote, ol, ul { margin: 0; padding: 0; }
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; }
cite { font-family: var(--human); font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; font-size: 1.06em; }
::selection { background: var(--magenta); color: #fff; }
:focus-visible { outline: 2px solid var(--accent, var(--magenta)); outline-offset: 4px; border-radius: 4px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 100; background: #fff; color: #1d1027; padding: 10px 16px; border-radius: 999px; font-weight: 600; transition: top .2s; }
.skip:focus { top: 12px; }

/* ── schemes ───────────────────────────────────────────── */
[data-scheme="night"], [data-scheme="dawn"] {
  --ink: var(--night-ink);
  --ink-soft: color-mix(in oklab, var(--night-ink) 72%, transparent);
  --line: color-mix(in oklab, var(--night-ink) 18%, transparent);
  --accent: #ff6cb8;
  color: var(--ink);
}
[data-scheme="day"] {
  --ink: var(--day-ink);
  --ink-soft: color-mix(in oklab, var(--day-ink) 76%, transparent);
  --line: color-mix(in oklab, var(--day-ink) 20%, transparent);
  --accent: #a80f68;
  color: var(--ink);
}

/* Without JavaScript the sky never leaves night, so the day sections keep night ink. */
html:not(.js) [data-scheme="day"] {
  --ink: var(--night-ink);
  --ink-soft: color-mix(in oklab, var(--night-ink) 72%, transparent);
  --line: color-mix(in oklab, var(--night-ink) 18%, transparent);
  --accent: #ff6cb8;
}
html:not(.js) .btn--ink { background: var(--night-ink); color: #140a26; }
html:not(.js) .dawn { height: auto; }
html:not(.js) .dawn__pin { position: static; height: auto; padding-block: 18vh !important; }

/* ── sky ───────────────────────────────────────────────── */
/* Sky above the horizon, ground below it, the sun between the two, so the sun
   rises from behind a real edge and nothing has to be clipped once it is up. */
.sky { position: fixed; inset: 0; z-index: -2; background: linear-gradient(180deg, var(--s0) 0%, var(--s1) var(--hz), var(--s1) 100%); }
.sky__ground { position: absolute; left: 0; right: 0; top: var(--hz); bottom: 0; background: linear-gradient(180deg, var(--s1), var(--s2)); }
.sky__sun { position: absolute; inset: 0; opacity: var(--sunO); }
.sky__sun i {
  position: absolute; left: 50%; top: var(--hz);
  width: min(84vmin, 780px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, calc(-50% + (0.34 - var(--sun)) * 62vh));
  background: radial-gradient(circle, #fffdf6 0 13%, #ffedcb 17%, rgba(255, 205, 160, .78) 27%, rgba(255, 150, 160, .3) 46%, rgba(255, 120, 165, 0) 70%);
  will-change: transform;
}
/* Grain dithers the long gradients; without it the dawn bands on 8-bit panels. */
.sky__grain {
  position: absolute; inset: 0; opacity: .09; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
#field { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; display: block; pointer-events: none; }

/* ── header ────────────────────────────────────────────── */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 18px var(--pad);
  color: var(--night-ink);
  transition: color .5s, background-color .5s, backdrop-filter .5s, padding .4s var(--ease);
}
html[data-chrome="day"] .bar { color: var(--day-ink); }
.bar.is-stuck { padding-block: 12px; backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3); background: color-mix(in oklab, #0a0616 62%, transparent); box-shadow: 0 1px 0 color-mix(in oklab, currentColor 10%, transparent); }
html[data-chrome="day"] .bar.is-stuck { background: color-mix(in oklab, var(--paper) 70%, transparent); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-stretch: 125%; font-weight: 600; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-right: auto; }
.brand img { width: 34px; height: auto; }
.bar__nav { display: none; gap: 30px; font-size: .86rem; font-stretch: 108%; }
.bar__nav a { position: relative; opacity: .74; transition: opacity .3s; padding: 6px 0; }
.bar__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.bar__nav a:hover, .bar__nav a.is-on { opacity: 1; }
.bar__nav a:hover::after, .bar__nav a.is-on::after { transform: scaleX(1); transform-origin: left; }
.bar .btn--small { display: none; }
.bar__menu { appearance: none; border: 0; background: none; color: inherit; width: 44px; height: 44px; margin-right: -10px; display: grid; place-content: center; gap: 7px; cursor: pointer; }
.bar__menu i { display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform .45s var(--ease); }
.bar__menu[aria-expanded="true"] i:first-of-type { transform: translateY(4.25px) rotate(45deg); }
.bar__menu[aria-expanded="true"] i:last-of-type { transform: translateY(-4.25px) rotate(-45deg); }
@media (min-width: 900px) {
  .bar__nav { display: flex; }
  .bar .btn--small { display: inline-flex; }
  .bar__menu { display: none; }
}

.sheet { position: fixed; inset: 0; z-index: 45; display: grid; align-content: center; padding: 96px var(--pad) 48px; background: color-mix(in oklab, #0a0616 90%, transparent); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); color: var(--night-ink); }
.sheet[hidden] { display: none; }
.sheet nav { display: grid; }
.sheet a { display: flex; align-items: baseline; gap: 18px; padding: 18px 0; border-top: 1px solid color-mix(in oklab, var(--night-ink) 16%, transparent); font-stretch: 122%; font-weight: 600; font-size: clamp(1.4rem, 6.4vw, 2.2rem); letter-spacing: -.01em; opacity: 0; transform: translateY(14px); animation: sheetIn .7s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 60ms + 80ms); }
.sheet a small { font-size: .7rem; letter-spacing: .16em; opacity: .6; font-weight: 500; }
@keyframes sheetIn { to { opacity: 1; transform: none; } }
html.sheet-open .bar { color: var(--night-ink); }

/* ── buttons & links ───────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 999px; border: 0; cursor: pointer;
  font: 600 .92rem/1 var(--machine); font-stretch: 112%; letter-spacing: .01em;
  color: currentColor; background: color-mix(in oklab, currentColor 9%, transparent);
  transition: background-color .45s var(--ease), color .45s var(--ease), transform .6s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; z-index: -1;
  background: conic-gradient(from var(--ang), var(--magenta), var(--violet), var(--ember), var(--magenta));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: turn 7s linear infinite;
}
.btn span { display: inline-block; transition: transform .6s var(--ease); }
.btn:hover { background: var(--night-ink); color: #140a26; }
html[data-chrome="day"] .bar .btn:hover, [data-scheme="day"] .btn:hover { background: var(--day-ink); color: var(--paper); }
.btn:active { transform: scale(.97); }
.btn--small { padding: 12px 20px; font-size: .8rem; }
.btn--ink { background: var(--day-ink); color: var(--paper); padding-inline: 44px; }
.btn--ink:hover { background: var(--accent) !important; color: #fff !important; }
@keyframes turn { to { --ang: 360deg; } }

.link { display: inline-flex; align-items: center; gap: 8px; font-stretch: 108%; font-weight: 500; font-size: .92rem; padding: 8px 2px; border-bottom: 1px solid var(--line); transition: border-color .4s, gap .5s var(--ease); }
.link:hover { border-color: currentColor; gap: 12px; }
.link i { font-style: normal; }

/* ── shared type ───────────────────────────────────────── */
.eyebrow, .label {
  font-stretch: 125%; font-weight: 500; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
.label { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(20px, 3vw, 36px); }
.label b { font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }
.label b::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--line); margin-left: 14px; vertical-align: middle; }
h2 { font-stretch: 120%; font-weight: 600; font-size: clamp(1.9rem, 1.1rem + 3.3vw, 3.7rem); line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
h3 { font-stretch: 114%; font-weight: 600; font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); line-height: 1.15; letter-spacing: -.012em; }
.body { color: var(--ink-soft); max-width: 58ch; text-wrap: pretty; }
.human, h2 em, .quote blockquote, .dawn__title em, .foot__line em {
  font-family: var(--human); font-style: italic; font-weight: 300; font-stretch: 100%;
  font-variation-settings: "SOFT" 100, "WONK" 1; letter-spacing: -.015em;
}

/* word-by-word rise; the inline padding keeps Fraunces' italic overhang from being clipped */
.js [data-words] .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .08em .12em .16em; margin: -.08em -.12em -.16em; }
.js [data-words] .w > i { display: inline-block; font-style: inherit; transform: translateY(112%) rotate(3deg); transform-origin: left bottom; transition: transform 1.05s var(--ease); transition-delay: calc(var(--i) * 46ms + var(--d, 0ms)); }
.js [data-words].in .w > i { transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ── hero ──────────────────────────────────────────────── */
main > section { position: relative; padding-inline: var(--pad); padding-right: calc(var(--pad) + var(--rail)); }
.hero { min-height: 100svh; display: grid; align-items: end; padding-top: 41svh; padding-bottom: clamp(72px, 10svh, 120px); }
.hero__copy { max-width: 880px; }
.hero__title { margin: 16px 0 22px; font-size: clamp(2.1rem, 1rem + 5.4vw, 5.7rem); line-height: .98; }
.hero__title .machine { display: block; font-stretch: 125%; font-weight: 600; letter-spacing: -.035em; }
.hero__title .human { display: block; font-size: 1.1em; white-space: nowrap; line-height: 1.02; margin-top: .06em; color: #ffd3ea; --d: 320ms; }
.hero__lede { color: var(--ink-soft); max-width: 54ch; --d: 700ms; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 34px; --d: 860ms; }
.hero .eyebrow { --d: 120ms; }
.hero__cue { position: absolute; left: var(--pad); bottom: 26px; display: inline-flex; align-items: center; gap: 12px; font-stretch: 125%; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
.hero__cue i { display: block; width: 1px; height: 34px; background: linear-gradient(currentColor, transparent); transform-origin: bottom; animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: bottom; } 50% { transform: scaleY(1); transform-origin: bottom; } 51% { transform-origin: top; } 100% { transform: scaleY(0); transform-origin: top; } }
.hero__mark { position: absolute; top: 9svh; left: 50%; width: min(64vw, 300px); transform: translateX(-50%); color: var(--magenta); }
.hero__human { fill: var(--ember); }
html.gl .hero__mark { display: none; }
/* iPhone Safari shows about 659px of a 393px-wide screen. With the lede first, the
   button sat below the fold there, so on phones the action follows the headline
   and the explanation follows the action. */
@media (max-width: 899px) {
  .hero__copy { display: flex; flex-direction: column; }
  .hero__title { margin-bottom: 20px; }
  .hero__cta { order: 3; margin: 0 0 26px; gap: 12px 20px; flex-wrap: nowrap; --d: 620ms; }
  .hero__cta .btn { padding: 15px 22px; white-space: nowrap; }
  .hero__lede { order: 4; --d: 800ms; }
}
@media (min-width: 900px) {
  .hero { align-items: center; padding-top: 120px; }
  .hero__copy { max-width: min(60%, 900px); }
  .hero__mark { top: 50%; left: auto; right: calc(var(--pad) + var(--rail) + 4vw); width: min(34vw, 520px); transform: translateY(-50%); }
  .hero__cue { bottom: 34px; }
}

/* ── the work ──────────────────────────────────────────── */
.work { padding-block: clamp(96px, 16vh, 200px); display: grid; gap: clamp(40px, 6vw, 110px); }
.work__lead h2 { margin-bottom: clamp(20px, 2.4vw, 32px); max-width: 15ch; }
.work__list li { display: grid; grid-template-columns: 3.2rem 1fr; column-gap: clamp(10px, 2vw, 28px); row-gap: 10px; padding: clamp(24px, 3vw, 40px) 0; border-top: 1px solid var(--line); position: relative; }
.work__list li:last-child { border-bottom: 1px solid var(--line); }
.work__list .num { grid-row: span 2; font-stretch: 125%; font-weight: 300; font-size: .8rem; letter-spacing: .14em; color: var(--accent); padding-top: .45em; font-variant-numeric: tabular-nums; }
.work__list p { color: var(--ink-soft); max-width: 52ch; font-size: .96em; }
.work__list li::before { content: ""; position: absolute; left: 0; top: -1px; width: 100%; height: 1px; background: linear-gradient(90deg, var(--magenta), var(--violet) 60%, transparent); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease); transition-delay: var(--d, 0ms); }
.work__list li.in::before { transform: scaleX(1); }
@media (min-width: 900px) {
  .work { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start; }
  .work__lead { position: sticky; top: 22vh; }
  .work__list li:nth-child(even) { margin-left: 9%; }
}

/* ── the question ──────────────────────────────────────── */
.standard { padding-block: clamp(80px, 14vh, 180px) clamp(96px, 18vh, 220px); display: grid; gap: clamp(32px, 5vw, 72px); }
.standard .label { margin-bottom: 0; }
.quote blockquote { font-size: clamp(1.5rem, 1rem + 2.1vw, 2.6rem); line-height: 1.16; text-wrap: balance; }
.quote figcaption { margin-top: 20px; font-stretch: 125%; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 12px; }
.quote figcaption::before { content: ""; width: 28px; height: 1px; background: var(--accent); flex: none; }
.quote--xl blockquote { font-size: clamp(2rem, 1rem + 4.4vw, 4.6rem); line-height: 1.04; max-width: 18ch; letter-spacing: -.02em; }
.standard__body { display: grid; gap: clamp(24px, 3vw, 44px); }
.themes { border-top: 1px solid var(--line); }
.themes li { padding: 16px 0; border-bottom: 1px solid var(--line); font-stretch: 112%; font-weight: 500; font-size: clamp(1rem, .95rem + .3vw, 1.2rem); letter-spacing: -.005em; display: grid; grid-template-columns: 2.4rem 1fr; align-items: baseline; counter-increment: theme; }
.themes { counter-reset: theme; }
.themes li::before { content: "0" counter(theme); font-stretch: 125%; font-weight: 300; font-size: .72rem; letter-spacing: .14em; color: var(--accent); }
@media (min-width: 900px) {
  .standard { grid-template-columns: repeat(12, minmax(0, 1fr)); row-gap: clamp(40px, 5vw, 80px); }
  .standard .label { grid-column: 1 / -1; }
  .quote--xl { grid-column: 1 / span 8; }
  .standard__body { grid-column: 6 / span 6; }
}

/* ── the perspective ───────────────────────────────────── */
.perspective { padding-block: clamp(80px, 12vh, 160px) 46vh; }
.perspective__title { font-size: clamp(2.9rem, 1rem + 9.4vw, 9.6rem); line-height: .94; letter-spacing: -.03em; margin: 0 0 clamp(36px, 6vw, 90px) -.04em; font-weight: 300; }
.perspective__title em { font-weight: 200; }
.perspective__cols { display: grid; gap: clamp(28px, 4vw, 64px); }
.perspective__cols .quote { margin-bottom: 18px; }
.perspective__cols .quote blockquote { color: #ffd3ea; font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem); line-height: 1.24; }
.quote--hope { margin-top: clamp(64px, 12vh, 150px); }
.quote--hope blockquote { font-size: clamp(1.6rem, 1rem + 2.6vw, 3.1rem); line-height: 1.1; max-width: 24ch; }
@media (min-width: 900px) {
  .perspective__cols { grid-template-columns: minmax(0, 5fr) minmax(0, 5fr); padding-left: 8%; }
  .quote--hope { margin-left: 34%; }
}

/* ── first light ───────────────────────────────────────── */
.dawn { height: 240vh; padding: 0 !important; --p: 0; --a: 1; }
.js .dawn { --a: 0; }
.dawn__pin { position: sticky; top: 0; height: 100svh; display: grid; align-content: start; justify-content: center; justify-items: center; padding-top: 19svh !important; text-align: center; padding: 0 var(--pad); gap: clamp(20px, 3vh, 36px);
  color: color-mix(in oklab, var(--day-ink) calc(var(--p) * 100%), #fff8f2); }
.dawn__title { font-size: clamp(3rem, 1rem + 10.4vw, 11rem); line-height: .96; letter-spacing: -.03em; font-weight: 300;
  opacity: var(--a); transform: translateY(calc((1 - var(--a)) * 46px)); filter: blur(calc((1 - var(--a)) * 14px)); }
.dawn__title em { font-weight: 200; }
.dawn__body { max-width: 40ch; font-size: clamp(1.02rem, .95rem + .45vw, 1.3rem); line-height: 1.5; opacity: calc(var(--a) * .9); transform: translateY(calc((1 - var(--a)) * 30px)); text-wrap: balance; }

/* ── the person ────────────────────────────────────────── */
.person { padding-block: clamp(96px, 16vh, 200px) clamp(64px, 10vh, 120px); display: grid; gap: clamp(32px, 5vw, 90px); }
.person h2 { max-width: 13ch; }
.person__body { display: grid; gap: 22px; align-content: start; }
.rows { margin-top: clamp(20px, 3vw, 40px); border-top: 1px solid var(--line); }
.rows a { display: grid; grid-template-columns: minmax(84px, 10rem) 1fr auto; align-items: baseline; gap: 16px; padding: 20px 6px; border-bottom: 1px solid var(--line); transition: padding .6s var(--ease), background-color .5s; }
.rows small { font-stretch: 125%; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.rows span { font-stretch: 112%; font-weight: 600; font-size: clamp(1.05rem, 1rem + .5vw, 1.4rem); letter-spacing: -.01em; }
.rows i { font-style: normal; color: var(--accent); transition: transform .6s var(--ease); }
.rows a:hover { padding-inline: 18px 10px; background: color-mix(in oklab, var(--day-ink) 5%, transparent); }
.rows a:hover i { transform: translate(4px, -4px); }
@media (min-width: 900px) { .person { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start; } .person__lead { position: sticky; top: 12vh; } }

.portrait { margin-top: clamp(24px, 3vw, 40px); width: min(100%, 360px); }
.portrait__frame { position: relative; isolation: isolate; }
.portrait img { width: 100%; height: auto; max-height: 56vh; object-fit: cover; object-position: 50% 18%; border-radius: 3px; display: block; }
/* an offset hairline in the brand colours: the frame a print would sit in */
.portrait__frame::before { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid transparent; border-radius: 3px; background: linear-gradient(140deg, var(--magenta), var(--violet)) border-box; -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0); z-index: -1; opacity: .7; }
.portrait figcaption { margin-top: 30px; font-stretch: 125%; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.js .portrait[data-reveal] img { clip-path: inset(100% 0 0 0); transform: scale(1.06); transition: clip-path 1.4s var(--ease), transform 1.8s var(--ease); }
.js .portrait[data-reveal].in img { clip-path: inset(0); transform: none; }

/* ── contact ───────────────────────────────────────────── */
.contact { padding-block: clamp(80px, 14vh, 180px) clamp(72px, 10vh, 130px); display: grid; gap: clamp(36px, 5vw, 72px); }
.contact h2 { font-size: clamp(2.5rem, 1rem + 7vw, 7.4rem); line-height: .96; letter-spacing: -.04em; font-stretch: 125%; margin-bottom: 20px; }
.form { display: grid; gap: clamp(22px, 3vw, 40px) clamp(20px, 3vw, 48px); grid-template-columns: 1fr; }
.form label { display: grid; gap: 8px; }
.form label span { font-stretch: 125%; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.form input, .form textarea {
  width: 100%; appearance: none; border: 0; border-radius: 0; background: transparent; color: var(--ink);
  font: 500 clamp(1.1rem, 1rem + .5vw, 1.45rem)/1.35 var(--machine); font-stretch: 104%; padding: 10px 0 14px; resize: vertical;
  background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--line), var(--line));
  background-size: 0% 2px, 100% 1px; background-position: 0 100%, 0 100%; background-repeat: no-repeat;
  transition: background-size .7s var(--ease);
}
.form input:focus, .form textarea:focus { outline: none; background-size: 100% 2px, 100% 1px; }
.form [aria-invalid="true"] { background-image: linear-gradient(#b3261e, #b3261e), linear-gradient(#b3261e, #b3261e); background-size: 100% 2px, 100% 1px; }
/* The honeypot: off-screen, not display:none, because some bots skip hidden fields. */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.form__note { font-size: .92rem; color: var(--ink-soft); }
@media (min-width: 900px) { .form { grid-template-columns: repeat(3, minmax(0, 1fr)); } .form__wide, .form__foot { grid-column: 1 / -1; } }

/* ── footer ────────────────────────────────────────────── */
.foot { padding: clamp(40px, 6vh, 72px) calc(var(--pad) + var(--rail)) 40px var(--pad); display: grid; gap: 22px; border-top: 1px solid var(--line); margin-inline: 0; }
.foot img { width: clamp(150px, 16vw, 210px); margin-left: calc(clamp(150px, 16vw, 210px) * -0.075); }  /* the file carries its own left margin */
.foot__line { font-stretch: 122%; font-weight: 600; font-size: clamp(1.1rem, 1rem + 1vw, 1.8rem); letter-spacing: -.02em; }
.foot__line em { font-size: 1.1em; display: block; }
@media (min-width: 700px) { .foot__line em { display: inline; } }
.foot__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: .8rem; color: var(--ink-soft); }
.foot__meta a { border-bottom: 1px solid var(--line); }

/* ── altitude tape ─────────────────────────────────────── */
.alt { display: none; }
@media (min-width: 1100px) {
  .alt { position: fixed; z-index: 40; right: 30px; top: 50%; height: min(58vh, 520px); transform: translateY(-50%); display: grid; grid-template-rows: 1fr auto; justify-items: end; gap: 16px; color: var(--night-ink); transition: color .5s; pointer-events: none; }
  html[data-mid="day"] .alt { color: var(--day-ink); }
  .alt__rail { position: absolute; right: 0; top: 0; bottom: 44px; width: 1px; background: color-mix(in oklab, currentColor 22%, transparent); }
  .alt__fill { position: absolute; inset: 0; background: linear-gradient(var(--violet), var(--magenta)); transform: scaleY(var(--prog)); transform-origin: bottom; }
  .alt__ticks { display: flex; flex-direction: column-reverse; justify-content: space-between; height: 100%; padding-bottom: 0; }
  .alt__ticks li { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: 10px; height: 1px; }
  .alt__ticks li::after { content: ""; width: 9px; height: 1px; background: currentColor; opacity: .45; transition: width .5s var(--ease), opacity .4s; }
  .alt__ticks span { font-stretch: 125%; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity .5s, transform .6s var(--ease); }
  .alt__ticks li.on::after { width: 22px; opacity: 1; }
  .alt__ticks li.on span { opacity: .9; transform: none; }
  .alt__read { font-stretch: 125%; font-size: .62rem; letter-spacing: .16em; display: flex; align-items: baseline; gap: 6px; font-variant-numeric: tabular-nums; opacity: .85; }
  .alt__read b { font-weight: 600; font-size: .78rem; }
}

/* ── reticle: a trailing ornament; the system cursor stays ── */
.reticle { display: none; }
@media (hover: hover) and (pointer: fine) {
  .reticle { display: block; position: fixed; left: 0; top: 0; z-index: 90; width: 38px; height: 38px; margin: -19px 0 0 -19px; pointer-events: none; mix-blend-mode: difference; color: #fff; opacity: 0; transition: opacity .4s; }
  .reticle.on { opacity: 1; }
  .reticle i { position: absolute; inset: 0; border: 1px solid currentColor; border-radius: 50%; transition: transform .5s var(--ease), border-color .3s; transform: scale(.55); }
  .reticle i::before, .reticle i::after { content: ""; position: absolute; background: currentColor; }
  .reticle i::before { left: 50%; top: -5px; bottom: -5px; width: 1px; margin-left: -.5px; -webkit-mask: linear-gradient(#000 0 4px, transparent 4px calc(100% - 4px), #000 calc(100% - 4px)); mask: linear-gradient(#000 0 4px, transparent 4px calc(100% - 4px), #000 calc(100% - 4px)); }
  .reticle i::after { top: 50%; left: -5px; right: -5px; height: 1px; margin-top: -.5px; -webkit-mask: linear-gradient(90deg, #000 0 4px, transparent 4px calc(100% - 4px), #000 calc(100% - 4px)); mask: linear-gradient(90deg, #000 0 4px, transparent 4px calc(100% - 4px), #000 calc(100% - 4px)); }
  .reticle.over i { transform: scale(1.35) rotate(45deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-words] .w > i, .js [data-reveal] { transform: none !important; opacity: 1 !important; transition: none !important; }
  .js .portrait[data-reveal] img { clip-path: none !important; transform: none !important; transition: none !important; }
  .btn::before, .hero__cue i { animation: none; }
  .reticle { display: none !important; }
  .dawn { height: 140vh; }
}
@media print {
  .sky, #field, .alt, .reticle, .bar__menu, .hero__cue { display: none !important; }
  body, [data-scheme] { color: #000 !important; background: #fff; }
}
