/*
 * Palladium landing page.
 * Colour comes from tokens.css; this file owns type, layout and motion.
 *
 * The page is a direct build of the three responsive frames in the design file
 * (noted-app/noted2.pen — d5EcD desktop 1440, zqWxL tablet 834, NItbK mobile
 * 390). Sizes here interpolate between those three columns with clamp() rather
 * than snapping at breakpoints, so every width in between is a designed width
 * too. Where a clamp is written as `clamp(min, Apx + Bvw, max)`, A and B are
 * the line through the 390px and 1440px values — the 834px frame then falls
 * out within a pixel or so on its own.
 */

@font-face {
  font-family: 'Newsreader';
  src: url('../assets/fonts/newsreader-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-300-normal.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/*
 * The UA stylesheet's `[hidden] { display: none }` loses to any author
 * `display` declaration, so an element that sets `display` and also carries
 * `hidden` renders anyway — visible and still in the tab order. This page
 * toggles `hidden` to swap two exclusive CTA states, so that failure mode is
 * live, not theoretical: it shipped twice, on `.cta` and then on
 * `.cta-block__copy`, and there is no build step or linter here to catch a
 * third. Nothing on this page ever wants a `hidden` element painted, so state
 * it once, globally, instead of maintaining a list nobody remembers to update.
 */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

:root {
  /* Near-black for headings. tokens.css's --ink (#26221d) is the app's body
   * colour; the page wants more contrast and less warmth at display sizes. */
  --ink-deep: #14110e;

  /* The page margin: 24px at 390, 56px at 834, and held there while the
   * content column grows to its 1160px cap. */
  --gutter: clamp(24px, 7.2vw - 4px, 56px);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/*
 * Paper grain. Fixed and pointer-events:none so it never repaints with
 * scrolling content — attaching a filter or texture to a scrolling container
 * causes continuous GPU work and kills mobile frame rates.
 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Layout primitives ------------------------------------------------------ */

/* `.wrap` is the start guide's container and is left as it was. */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 32px;
}

/*
 * `.shell` is the landing page's container, and it centres with padding rather
 * than with a max-width plus `auto` margins. That is what lets the hero opt out
 * of the right edge alone: it reuses the identical left value and simply sets
 * `padding-right: 0`, so the wall can run off the screen while its copy still
 * lines up with every section below it.
 *
 * `%`, not `vw`: `vw` includes the scrollbar and a percentage does not, and on
 * a platform with classic (non-overlay) scrollbars — Windows Chrome and Edge,
 * the only browsers this product supports — that disagreement is visible.
 * 580 = 1160 / 2, the content column's half-width.
 */
.shell { padding-inline: max(var(--gutter), calc(50% - 580px)); }

/* Type ------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  color: var(--ink-deep);
  letter-spacing: -0.019em;
  line-height: 1.05;
}

h1 { font-size: clamp(36px, 24.1px + 3.05vw, 68px); }
h2 { font-size: clamp(28px, 21.3px + 1.71vw, 46px); line-height: 1.1; }
h3 { font-size: clamp(24px, 21.8px + 0.57vw, 30px); line-height: 1.15; letter-spacing: -0.015em; }

p { max-width: 60ch; }

.lede { font-size: clamp(16px, 14.5px + 0.38vw, 20px); line-height: 1.5; color: var(--ink); }
.muted { color: var(--muted); }

.caption {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

code { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 0.9em; }

/* Focus ------------------------------------------------------------------ */

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

@media (max-width: 719px) {
  .wrap { padding-inline: 22px; }
}

/* Icons ------------------------------------------------------------------- */

.icon {
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Masthead ---------------------------------------------------------------- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Wrapping is a backstop, not a layout: the rules below keep the bar on one
   * line at every width the frames draw. It is here because the wordmark is
   * the one string on the page whose width depends on a webfont arriving —
   * with `font-display: swap` a wide fallback is painted first, and a bar that
   * wraps for a moment is better than one that pushes the page sideways. */
  flex-wrap: wrap;
  gap: 20px;
  padding-block: clamp(14px, 12.5px + 0.38vw, 18px);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 15.8px + 0.57vw, 28px);
}
.site-header__open,
.site-header__link {
  font-size: clamp(13px, 12.6px + 0.1vw, 14px);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__link { color: var(--muted); }
.site-header__open:hover,
.site-header__link:hover { color: var(--orange); }

/* The lockup -------------------------------------------------------------- */

/*
 * Mark and wordmark are one drawing now, so the lockup is sized by width
 * alone and its height follows the artwork's own 8.888:1 ratio. The frames
 * draw it at 127px on mobile and 145px from the tablet up; the clamp is the
 * line through those two.
 */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__lockup {
  width: clamp(127px, 120.3px + 1.71vw, 145px);
  height: auto;
}

/* The staged scene -------------------------------------------------------- */

/*
 * Four copy panels in column one, four visuals stacked in column two. The
 * visuals all span every row, so their grid area is the whole section and
 * `position: sticky` holds them for its full height — one pinned column that
 * changes its mind rather than four things that scroll.
 *
 * The rows are declared explicitly because `grid-row: 1 / -1` counts lines in
 * the *explicit* grid; against implicit rows it would collapse to a single
 * row and the visuals would stop sticking at the first panel's bottom edge.
 *
 * No `overflow` here, deliberately. Clipping the section would make it the
 * scroll container for everything inside it, and a sticky element inside a
 * box that never scrolls simply sits still. The wall's bleed is clipped by
 * the sticky visual itself instead, which is allowed to clip because the
 * stickiness is on that element rather than under it.
 */
.stages {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  grid-template-rows: repeat(4, auto);
  column-gap: 64px;
  /* Same left edge as `.shell`; no right edge at all. */
  padding-left: max(var(--gutter), calc(50% - 580px));
  padding-right: 0;
}

.stages__panel {
  grid-column: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.stages__panel-inner {
  display: grid;
  gap: clamp(16px, 13.8px + 0.57vw, 22px);
  justify-items: start;
  width: 100%;
}
.stages__panel-inner p { max-width: none; }
.stages__panel--hero .stages__panel-inner { gap: clamp(24px, 20.3px + 0.95vw, 34px); }
.stages__panel--hero .lede { max-width: none; }

.stages__aside { font-size: clamp(15px, 14.3px + 0.19vw, 17px); color: var(--muted); }
.stages__aside a { color: var(--ink-deep); text-decoration-color: var(--line); text-underline-offset: 3px; }
.stages__aside a:hover { color: var(--orange); text-decoration-color: currentColor; }

.stages__visual {
  grid-column: 2;
  grid-row: 1 / -1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-content: start;
  /* Only the panel under the cursor's half of the screen is readable; the
   * rest are painted but transparent, so no layer ever reflows on a stage
   * change — opacity and transform only, never a layout property. */
  opacity: 0;
  transform: scale(0.965);
  transition:
    opacity 620ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 620ms cubic-bezier(0.32, 0.72, 0, 1);
}
.stages__visual > * { width: 658px; max-width: 100%; }
.stages__visual--wall > * { width: auto; max-width: none; }

.stages[data-stage='0'] [data-stage-visual='0'],
.stages[data-stage='1'] [data-stage-visual='1'],
.stages[data-stage='2'] [data-stage-visual='2'],
.stages[data-stage='3'] [data-stage-visual='3'] { opacity: 1; transform: none; }

/*
 * 133.4% of the column, which is the ratio the 1440 frame draws: a 1020px wall
 * in a 766px column, so a little over two of its three sheets are on screen and
 * the third is cut. Holding the ratio rather than the pixel width keeps that
 * same crop at every desktop size instead of only at 1440.
 */
.stages__visual--wall .wall { width: 133.4%; }

/* The note card ----------------------------------------------------------- */

.note {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--tint, var(--tint-paper));
  border: 1px solid var(--line);
}

.note__strip {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 40px;
  padding-inline: 12px;
  border-bottom: 1px solid var(--line);
}

.note__grip { width: 14px; height: 14px; color: var(--muted); }

.note__title {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.note__acts { display: flex; align-items: center; gap: 6px; }

.note__btn {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--cotton-control);
  border: 1px solid var(--line);
  color: var(--muted);
}
.note__btn--bare { background: none; border-color: transparent; }
.note__btn .icon { width: 13px; height: 13px; }
.note__btn--bare .icon { width: 14px; height: 14px; }

.note__body {
  max-width: none;
  padding: 18px 22px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  overflow: hidden;
}

/* The card that has been picked up: lifted, tilted, and holding its handle in
 * the accent so the gesture reads without a cursor to show it. */
.note--lifted {
  box-shadow: 0 16px 34px #5a4a3a33;
  transform: rotate(-2.6deg);
}
.note--lifted .note__grip { color: var(--orange); }

/* Sheets, in a grid ------------------------------------------------------- */

.wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wall .note { height: 264px; }

/* The things the scene shows ---------------------------------------------- */

.loose { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.loose .note { height: 264px; }
.loose .note--lifted {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 96px;
  width: 50%;
  height: 264px;
}

.pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.pair .note { height: 396px; }
.pair .note--focused { box-shadow: 0 16px 36px #5a4a3a2b; }

.filenames {
  display: grid;
  gap: 10px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(14px, 13.6px + 0.1vw, 15px);
  line-height: 1.3;
  color: var(--ink);
}

/* Proof ------------------------------------------------------------------- */

.proof { padding-block: clamp(64px, 41.7px + 5.71vw, 124px); }
.proof__shot { max-width: 1000px; margin-inline: auto; }
.proof__shot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 26px 64px #5a4a3a24;
}
.proof__shot figcaption {
  margin-top: clamp(18px, 15.8px + 0.57vw, 24px);
  text-align: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--muted);
}

/* Quiet ------------------------------------------------------------------- */

.quiet { padding-block: clamp(64px, 40.2px + 6.1vw, 128px); }
.quiet__copy { display: grid; gap: clamp(16px, 14.5px + 0.38vw, 20px); max-width: 700px; }
.quiet h2 { font-size: clamp(29px, 21.9px + 1.81vw, 48px); line-height: 1.08; }
.quiet .lede { max-width: none; line-height: 1.55; }

/* Requirements ------------------------------------------------------------ */

.requirements { padding-block: clamp(64px, 43.2px + 5.33vw, 120px); }
.requirements__copy {
  display: grid;
  gap: clamp(28px, 25.5px + 0.64vw, 36px);
  justify-items: start;
  max-width: 640px;
}

.reqs { display: grid; gap: clamp(20px, 18.5px + 0.38vw, 24px); width: 100%; }
.reqs li {
  display: flex;
  gap: clamp(12px, 11.3px + 0.19vw, 14px);
  font-size: clamp(15px, 14.3px + 0.19vw, 17px);
}
.reqs li::before {
  content: '\2014';
  flex: none;
  color: var(--muted);
}
.reqs__text { flex: 1; min-width: 0; }
.reqs strong { display: block; font-weight: 600; color: var(--ink-deep); }
.reqs__text span { display: block; margin-top: 4px; line-height: 1.55; color: var(--muted); }

/* The call to action ------------------------------------------------------ */

.cta-block { display: grid; gap: clamp(10px, 9.3px + 0.19vw, 12px); justify-items: start; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(9px, 8.6px + 0.1vw, 10px);
  background: var(--ink-deep);
  color: var(--paper);
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(15px, 14.6px + 0.1vw, 16px);
  line-height: 1.2;
  padding: clamp(14px, 13.6px + 0.1vw, 15px) clamp(20px, 19.3px + 0.19vw, 22px);
  border-radius: 8px;
  transition: background 260ms cubic-bezier(0.32, 0.72, 0, 1);
}
.cta:hover { background: var(--orange); }
.cta .icon { width: clamp(17px, 16.6px + 0.1vw, 18px); height: clamp(17px, 16.6px + 0.1vw, 18px); }

.cta-block__cap { font-size: 13px; color: var(--muted); }
.cta-block__note { font-weight: 500; }

.cta-block__copy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 10px 10px 16px;
}

.cta-block__copybtn {
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-deep);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.32, 0.72, 0, 1);
}
.cta-block__copybtn:hover { background: var(--cotton-hover); }

/* Signup ------------------------------------------------------------------ */

.signup-section { padding-block: clamp(60px, 43.7px + 4.19vw, 104px); }
.signup-section__copy { display: grid; gap: clamp(18px, 16.5px + 0.38vw, 22px); max-width: 560px; }
.signup-section__copy p { max-width: none; font-size: clamp(15px, 14.3px + 0.19vw, 17px); line-height: 1.6; }

.signup { display: grid; gap: clamp(14px, 13.3px + 0.19vw, 16px); }
.signup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.signup__field { display: grid; gap: clamp(7px, 6.6px + 0.1vw, 8px); }
.signup__field > span { font-size: 13px; font-weight: 500; color: var(--muted); }
.signup__field em { font-style: normal; font-weight: 400; }

.signup__field input {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--tint-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  height: clamp(44px, 43.3px + 0.19vw, 46px);
  width: 100%;
}
.signup__field input:hover { border-color: var(--muted); }

.signup__submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding-inline: clamp(22px, 21.3px + 0.19vw, 24px);
}
.signup__submit[disabled] { opacity: 0.55; cursor: default; }

.signup__status { font-size: 14px; margin: 0; min-height: 1.4em; }
.signup__status[data-state='failed'] { color: var(--orange); }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.signup__gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer ------------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: clamp(28px, 25px + 0.76vw, 36px);
}
/* The frames draw the contact line as plain text, but an address on a live page
 * should be clickable — so it is a `mailto:` that keeps the muted colour it is
 * drawn in and only picks up the accent on hover. */
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }

/* The guide's footer still sits in `.wrap`, which has no block padding of its
 * own; the landing footer gets its padding from `.site-footer__inner` above. */
.wrap.site-footer__inner { padding-block: 32px; }

/*
 * Collapsed — no scene at all.
 *
 * Two separate conditions, one outcome. Below 1080px the sticky column has no
 * room to be beside anything; under reduced motion the cross-fade is the
 * whole point of the mechanism, so there is nothing left worth keeping. Both
 * fall back to the same four stacked sections the tablet and mobile frames
 * draw — not a shortened animation, no animation.
 *
 * Source order is already panel, visual, panel, visual, so `display: block`
 * on its own interleaves them correctly; everything below is undoing the
 * grid, the pinning and the cross-fade rather than rebuilding a layout.
 */
@media (max-width: 1079px), (prefers-reduced-motion: reduce) {
  .stages { display: block; padding-inline: 0; }

  /* The page margin goes on the outer boxes, not the inner ones: `max-width`
   * on a border-box element counts its padding, so a measure set on
   * `.stages__panel-inner` would silently lose 2 × the gutter. */
  .stages__panel,
  .stages__visual { padding-inline: max(var(--gutter), calc(50% - 580px)); }
  .stages__panel { display: block; min-height: 0; }

  .stages__panel--hero { padding-top: clamp(56px, 35.2px + 5.33vw, 112px); }
  .stages__panel:not(.stages__panel--hero) { padding-top: clamp(64px, 43.2px + 5.33vw, 120px); }

  .stages__visual {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
    opacity: 1;
    transform: none;
    transition: none;
    margin-top: clamp(34px, 30.3px + 0.95vw, 44px);
  }
  .stages__visual > *,
  .stages__visual--wall .wall { width: auto; max-width: none; }

  /* The last visual closes the section, so it owns the bottom margin the
   * following section would otherwise have to guess at. */
  [data-stage-visual='3'] { padding-bottom: clamp(64px, 43.2px + 5.33vw, 120px); }
}

/* Tablet — the 834 frame -------------------------------------------------- */

@media (max-width: 1079px) {
  .wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wall .note { height: 250px; }
  /* Six sheets rather than nine: the same wall, cropped to the width. */
  .wall .note:nth-child(5),
  .wall .note:nth-child(7),
  .wall .note:nth-child(9) { display: none; }

  /* The frames set the stacked copy to a 560px measure — narrower than the
   * column it sits in, so the line length stays readable at 834. */
  .stages__panel:not(.stages__panel--hero) .stages__panel-inner { max-width: 560px; }

  .loose .note { height: 250px; }
  .loose .note--lifted { top: 92px; }

  .pair .note { height: 380px; }

  .proof__shot { max-width: none; }
}

/* Mobile — the 390 frame -------------------------------------------------- */

@media (max-width: 639px) {
  .wall { grid-template-columns: minmax(0, 1fr); }
  .wall .note { height: 210px; }
  /* Three sheets. Kept: the first two and the mint one, so the crop still
   * shows a tint rather than three sheets of plain paper. */
  .wall .note:nth-child(3),
  .wall .note:nth-child(6),
  .wall .note:nth-child(8) { display: none; }

  .loose { grid-template-columns: minmax(0, 1fr); }
  .loose .note { height: 200px; }
  .loose .note--walking { display: none; }
  /* The empty cell goes last once the row it belonged to no longer exists;
   * it is the room the lifted card is being dropped into. */
  .loose__slot { order: 3; height: 150px; }
  .loose .note--lifted { left: 13%; top: 340px; width: 84%; height: 190px; }

  .pair { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .pair .note { height: 280px; }

  .filenames { gap: 9px; }

  .proof__shot img { border-radius: 10px; }

  /* Three items in a bar this narrow. The 390 frame still draws the wordmark,
   * so it stays — the gaps give way first. */
  .site-header__inner { gap: 12px; }
  .site-header__nav { gap: 14px; }

  .signup__row { grid-template-columns: 1fr; gap: 14px; }
  .signup__submit { justify-self: stretch; text-align: center; justify-content: center; }

  /* 13px is what the 390 frame draws, and the contact line needs it: at 14px
   * it measures 340px against 342px of column, so a fallback face wider than
   * Inter by a hair would wrap it. */
  .site-footer { font-size: 13px; }
  .site-footer__inner { flex-direction: column; gap: 6px; }
}

/*
 * The wordmark used to be text that could be dropped below 390px to keep the
 * masthead on one line. It is artwork now and cannot be split, and shrinking
 * the lockup enough to fit beside both links would take it under 65px wide —
 * seven pixels tall, unreadable. So below the narrowest drawn frame the bar
 * simply wraps to two lines, which is what `flex-wrap` on
 * `.site-header__inner` is there for.
 */

/* Reveals ----------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 520ms cubic-bezier(0.32, 0.72, 0, 1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
