/* eazi.click - site styles.
   One stylesheet for every page. No fonts, no frameworks, no external requests:
   the whole site is a few HTML files and a handful of SVGs, which is also why
   there is no cookie banner anywhere on it.

   Palette: the family's dark base, shared with slixio.eazi.click, plus a brand
   gradient (cyan to violet) that belongs to the hub itself. Every product keeps
   its own accent - see "product accents" further down. */

:root {
  --bg: #090c18;
  --bg-deep: #05070f;
  --panel: #10142a;
  --panel-2: #161b34;
  --line: #232a4d;
  --ink: #e7ebfa;
  --ink-dim: #a8b3d4;
  --ink-faint: #7b87ad;

  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --brand: linear-gradient(135deg, var(--cyan), var(--violet));

  /* Default accent. Each product card overrides it, and everything inside -
     kicker, glow, hover border, chip - follows without a second class. */
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, .12);

  --radius: 16px;
  --radius-lg: 22px;
  --wrap: 1120px;
  --read: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

/* Two soft lights and a grid, fixed behind everything. The same trick the game
   site uses, different colours, so the two read as one family without being
   twins. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 660px at 8% -10%, rgba(34, 211, 238, .10), transparent 62%),
    radial-gradient(1000px 560px at 96% 2%, rgba(139, 92, 246, .11), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0 / 100% 36px,
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0 / 36px 100%;
  pointer-events: none;
}

a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #7ee7f7; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg { max-width: 100%; }

/* ---------------------------------------------------------------- layout */

/* padding-inline, not the padding shorthand. Sections carry the class as well
   as the element (<section class="wrap">), and a class beats an element in the
   cascade: a shorthand here would zero out the 62px above and below every
   section on the page and glue them to each other. */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 22px; }
.read { max-width: var(--read); }

section { padding: 62px 0; }

.section-head { margin: 0 0 30px; }
.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}

h1, h2, h3 { text-wrap: balance; }
h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  font-weight: 750;
}
h3 { font-size: 19px; margin: 0 0 8px; font-weight: 700; }
.sub { color: var(--ink-dim); margin: 0; max-width: 62ch; }

/* ---------------------------------------------------------------- header */

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 12, 24, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  flex-wrap: wrap;
}

/* No flex gap here on purpose: the wordmark is two elements (eazi + .click) and
   a gap would open a space in the middle of the name. The mark carries its own
   margin instead. */
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand .mark { width: 28px; height: 28px; flex: none; margin-right: 10px; }
/* The TLD carries the gradient, the name stays plain ink: the wordmark has to
   survive being read as text, because that is how people will type it. */
.brand .tld {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14.5px;
  padding: 10px 12px;   /* 45px tap target, over the 44px minimum */
  border-radius: 9px;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--ink); background: var(--panel-2); }
.site-nav a[aria-current="page"] { color: var(--cyan); background: rgba(34, 211, 238, .1); }

/* ---------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  padding-block: 76px 64px;   /* block only - see the note on .wrap */
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 800;
}
.hero h1 .grad {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 7px 15px;
  margin: 0 0 22px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .16);
  flex: none;
}

.tagline {
  margin: 0 0 30px;
  max-width: 46ch;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-dim);
}

.cta-row { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #04121c;
  box-shadow: 0 12px 36px rgba(34, 211, 238, .18);
}
.btn-primary:hover { color: #04121c; filter: brightness(1.07); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--panel); }
.btn-ghost:hover { color: var(--ink); border-color: #36416f; }

.hero-facts {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-facts li { margin: 0; }
.hero-facts b {
  display: block;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.hero-facts span { font-size: 13.5px; color: var(--ink-faint); }

/* ---------------------------------------------------------------- the stage

   The hero drawing: the hub in the middle, what hangs off it around the edge,
   and two empty slots, because the whole point of a hub is that more arrive.
   Inline SVG rather than an <img> so the tiles can carry the same accents as
   the cards below and animate from this stylesheet. */

.stage { position: relative; }
.stage svg { display: block; width: 100%; height: auto; overflow: visible; }

.orbit { fill: none; stroke: var(--line); stroke-dasharray: 3 9; }
.orbit-spin { transform-box: fill-box; transform-origin: center; animation: spin 90s linear infinite; }
.orbit-spin-rev { transform-box: fill-box; transform-origin: center; animation: spin 130s linear infinite reverse; }

.spoke {
  fill: none;
  stroke: var(--accent);
  stroke-opacity: .5;
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
  animation: flow 3.4s linear infinite;
}

.ripple {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: ripple 4.2s ease-out infinite;
}
.ripple-2 { animation-delay: 1.4s; stroke: #5ce0f2; }
.ripple-3 { animation-delay: 2.8s; stroke: var(--violet); }

.node { transform-box: fill-box; transform-origin: center; animation: float 7s ease-in-out infinite; }
.node-2 { animation-delay: -1.6s; animation-duration: 8.2s; }
.node-3 { animation-delay: -3.1s; animation-duration: 6.4s; }
.node-4 { animation-delay: -4.4s; animation-duration: 9s; }
.node-5 { animation-delay: -2.2s; animation-duration: 7.6s; }

.node-plate { fill: var(--panel); stroke: var(--line); stroke-width: 1.5; }
.node-plate-empty { fill: rgba(16, 20, 42, .5); stroke: var(--line); stroke-width: 1.5; stroke-dasharray: 6 6; }
.node-glow { fill: var(--accent); opacity: .1; }
.node-label { fill: var(--ink-faint); font-size: 10.5px; letter-spacing: .1em; text-anchor: middle; font-weight: 700; }
.hub-plate { fill: var(--panel-2); stroke: rgba(34, 211, 238, .45); stroke-width: 1.5; }
.hub-glow { fill: rgba(34, 211, 238, .07); }
.plus { stroke: var(--ink-faint); stroke-width: 2.5; stroke-linecap: round; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flow { to { stroke-dashoffset: -22; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes ripple {
  0%   { transform: scale(.35); opacity: 0; }
  12%  { opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------------------------------------------------------------- products */

.apps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.app {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel), rgba(16, 20, 42, .45));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
/* The whole card is the link. The heading anchor covers it with ::after, so the
   cover art is clickable too without nesting anything interactive inside
   anything else interactive. */
.app-live:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.app-title a { color: var(--ink); text-decoration: none; }
.app-title a::after { content: ""; position: absolute; inset: 0; }
.app-title a:hover { color: var(--accent); }

.app-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 20% 0%, var(--accent-soft), transparent 62%),
    var(--bg-deep);
  overflow: hidden;
}
/* The page grid again, faded at the edges, so a cover never looks like a flat
   swatch with a logo dropped on it. */
.app-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 100% 26px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 26px 100%;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 78%);
}
.app-cover > * { position: relative; }

/* The app's own glyph, blown up and bled off the corner, behind the icon. A
   cover with nothing but a centred icon in it reads as a missing image; this
   is what fills the space for the products that have no screenshot yet. */
.cover-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .38;
}

/* Three shadows, in this order: the hairline that keeps the tile from bleeding
   into a dark cover, a soft plate of background colour that punches a hole in
   the artwork behind it - without it the equalizer icon disappears into the
   equalizer artwork - and the drop that lifts the whole thing off the card. */
.app-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px var(--line),
    0 0 0 14px rgba(5, 7, 15, .6),
    0 18px 44px rgba(0, 0, 0, .5);
}

/* A real screenshot in a phone-shaped window, cropped at the bottom: enough to
   show the thing running, not so much that the card becomes a screenshot. */
.app-shot {
  width: 124px;
  aspect-ratio: 9 / 16;
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  overflow: hidden;
  align-self: flex-end;
  background: var(--bg-deep);
  box-shadow: 0 -6px 40px rgba(0, 0, 0, .5);
}
.app-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }

.app-body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 14px; }
.app-title { margin: 0; font-size: 21px; font-weight: 750; letter-spacing: -.01em; }
.app-title .sup { color: var(--ink-faint); font-weight: 600; font-size: 14px; }
.app-pitch { margin: 0; color: var(--ink-dim); font-size: 15.5px; line-height: 1.62; }

/* Three facts under the pitch on a featured card. Without them the body of a
   card as tall as its cover is a paragraph floating over 120px of nothing. */
.app-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 15px;
  color: var(--ink-dim);
}
.app-points li { position: relative; padding-left: 21px; line-height: 1.5; }
.app-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}
.app-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.app-url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: var(--accent);
}
.app-url.muted { color: var(--ink-faint); }

.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
}
.chip-live {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
  background: var(--accent-soft);
}
.chip-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 2.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* One shipped product means one card, and a single card in an auto-fit grid
   stretches across the full 1120px: a 16:9 cover 630px tall with an 88px icon
   lost in the middle of it. The featured card spends that width sideways
   instead - art on the left, the pitch on the right. */
.app-feature { grid-column: 1 / -1; }
@media (min-width: 880px) {
  .app-feature { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
  .app-feature .app-cover {
    aspect-ratio: auto;
    height: 100%;
    min-height: 370px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .app-feature .app-body { padding: 30px; }
  .app-feature .app-title { font-size: 25px; }
  .app-feature .app-pitch { font-size: 16px; }
  .app-feature .app-icon { width: 104px; height: 104px; border-radius: 26px; }
  .app-feature .app-shot { width: 158px; }
}

/* In development: same card, less light. The cover is desaturated so the eye
   sorts shipped from unshipped before reading a single word. */
.app-wip .app-cover { filter: saturate(.55); aspect-ratio: 2 / 1; }
.app-wip .app-icon { opacity: .85; }
.app-wip .app-title { color: var(--ink-dim); }

/* ---------------------------------------------------------------- product accents */

.p-slixio { --accent: #3df5c5; --accent-soft: rgba(61, 245, 197, .13); }
.p-echo   { --accent: #c084fc; --accent-soft: rgba(192, 132, 252, .13); }
.p-eq     { --accent: #ffb020; --accent-soft: rgba(255, 176, 32, .12); }

/* ---------------------------------------------------------------- cards */

.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
/* Four cards. auto-fit strands the fourth one on a row of its own at some
   widths; these steps go 4 -> 2x2 -> 1 and never do. */
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--panel), rgba(16, 20, 42, .45));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 17.5px; margin: 0 0 7px; }
.card p { margin: 0; color: var(--ink-dim); font-size: 15.5px; line-height: 1.62; }
.card .num {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------- about + contact */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: 44px;
  align-items: start;
}
.about p { color: var(--ink-dim); }
.about p + p { margin-top: 16px; }

.contact-card {
  background: linear-gradient(150deg, rgba(34, 211, 238, .09), rgba(139, 92, 246, .09)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card h3 { margin: 0 0 6px; }
.contact-card p { color: var(--ink-dim); margin: 0 0 18px; font-size: 15.5px; }
.mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 17px;
  text-decoration: none;
  word-break: break-all;
}
.mail:hover { color: var(--cyan); border-color: #36416f; }
.contact-list { list-style: none; margin: 20px 0 0; padding: 0; font-size: 15px; }
.contact-list li { margin: 9px 0; color: var(--ink-dim); }
.contact-list b { color: var(--ink); font-weight: 650; }

/* ---------------------------------------------------------------- documents */

.doc { padding: 56px 0 30px; }
.doc .read { margin-inline: auto; }
.doc h1 { font-size: clamp(30px, 5vw, 42px); line-height: 1.1; margin: 0 0 10px; letter-spacing: -.02em; }
.doc .dates {
  color: var(--ink-faint);
  font-size: 14.5px;
  margin: 0 0 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.doc h2 { margin: 44px 0 10px; font-size: 22px; scroll-margin-top: 84px; }
.doc p, .doc li { color: var(--ink-dim); }
.doc strong { color: var(--ink); font-weight: 650; }
.doc ul { padding-left: 22px; }
.doc li { margin: 7px 0; }

.lede {
  font-size: 18.5px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin: 0 0 34px;
}

code, .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
  color: var(--cyan);
  word-break: break-word;
}

/* ---------------------------------------------------------------- footer */

.site-foot {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 40px 0 48px;
  font-size: 15px;
}
/* Grid, not flex: a wrapping flex row drops the last column onto a line of its
   own at tablet width. These steps go 4 -> 2x2 -> 1. */
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; } }
@media (max-width: 460px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-foot h2 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 12px;
  font-weight: 700;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin: 8px 0; }
.site-foot a { color: var(--ink-dim); text-decoration: none; }
.site-foot a:hover { color: var(--cyan); }
.foot-legal { color: var(--ink-faint); font-size: 13.5px; margin: 34px 0 0; }
.foot-brand { max-width: 32ch; color: var(--ink-faint); font-size: 14px; }
.foot-brand .brand { margin-bottom: 10px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: #04121c;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  z-index: 50;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 980px) {
  /* minmax(0, 1fr), not 1fr. A plain 1fr track refuses to go below the item's
     min-content width, and the min-content width of an SVG with a viewBox is
     its intrinsic 560px - which pushed the whole page 500px wide on a phone and
     cut every line of text off at the right edge. */
  .hero { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-block: 56px 48px; }
  /* The drawing goes second on a narrow screen and stops being full width: at
     100% it pushed the first product card a whole screen down. */
  .stage { width: 100%; max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  section { padding: 46px 0; }
  .btn { width: 100%; justify-content: center; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .hero-facts { gap: 20px; }

  /* The sticky header cost a sixth of a phone screen once the nav wrapped.
     Brand on one line, links on the next, and it scrolls away like content. */
  .site-head { position: static; }
  .site-head .wrap { min-height: 0; padding-top: 11px; padding-bottom: 11px; gap: 8px; }
  .brand { margin-right: 0; width: 100%; }
  .site-nav { width: 100%; gap: 2px; flex-wrap: nowrap; }
  .site-nav a { font-size: 13.5px; padding: 11px 9px; }
  .doc h2 { scroll-margin-top: 16px; }

  .apps { grid-template-columns: minmax(0, 1fr); }
  .app-cover { gap: 16px; }
  .app-icon { width: 72px; height: 72px; border-radius: 18px; }
  .app-shot { width: 104px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Everything moving in the hero is decoration. Stop it rather than slow it:
     the composition is drawn to stand still. */
  .orbit-spin, .orbit-spin-rev, .spoke, .ripple, .node, .chip-live .dot { animation: none; }
  .ripple { opacity: .45; }
}

/* ---------------------------------------------------------------- print */

@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  body::before, .site-head, .site-foot, .skip, .stage, .cta-row { display: none; }
  .wrap, .read { max-width: none; padding: 0; }
  a { color: #000; text-decoration: underline; }
  .doc p, .doc li, .doc strong, h1, h2, h3 { color: #000; }
  .card, .lede, .contact-card, .app { background: none; border: 1pt solid #999; break-inside: avoid; }
  code, .mono { background: none; border: 0; color: #000; }
  .doc a[href^="http"]::after, .doc a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  .doc a[href^="/"]::after { content: " (eazi.click" attr(href) ")"; font-size: 9pt; }
}
