/*
  One palette, in oklch because the design is authored in oklch and converting it
  to hex would quietly flatten the blues. Every neutral carries a 250 hue: a pure
  grey beside this accent reads as dirty, and the tiny chroma is what keeps the
  paper and the ink looking like they belong to the same object.
*/
:root {
  color-scheme: light;

  --ink: oklch(0.16 0.008 250);
  --body: oklch(0.42 0.01 250);
  --muted: oklch(0.52 0.01 250);
  --faint: oklch(0.58 0.008 250);

  --paper: oklch(0.99 0.001 250);
  --card: oklch(1 0 0);
  --wash: oklch(0.975 0.002 250);

  --line: oklch(0.92 0.004 250);
  --hairline: oklch(0.94 0.004 250);
  --edge: oklch(0.9 0.005 250);

  --ink-body: oklch(0.78 0.006 250);
  --ink-muted: oklch(0.68 0.008 250);
  --ink-raised: oklch(0.22 0.012 250);
  --ink-line: oklch(0.3 0.012 250);

  /* The accent. One per page, and the app's own Space blue. */
  --accent: oklch(0.551 0.13 255);
  --accent-warm: oklch(0.562 0.125 45);
  --accent-red: oklch(0.565 0.12 20);
  --accent-violet: oklch(0.561 0.11 300);

  --shell: 1180px;

  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

a:hover {
  color: oklch(0.45 0.01 250);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 60;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}

/* ── The mark ──────────────────────────────────────────────────────────────
   A tile with two eyes above the fill line. The geometry is not decorative:
   it is `packages/ui/src/tokens/face.ts` at 1/100 scale, so the mark here and
   the mark on the home screen are the same object.

   The fill is 42%, not the 62% the brief drew. 62% reaches the underside of the
   eyes — the dots sit at 33% with a 11.5% diameter, so their lower edge is at
   38.75% from the top, which is 61.25% from the bottom. The app clamps the level
   for exactly this reason and the icon ships at 42%.
*/
.mark {
  display: block;
  width: var(--mark, 28px);
  height: var(--mark, 28px);
  flex: none;
  color: var(--ink);

  /*
    Read by presentation attributes inside the symbol rather than by selectors.
    A `.mark .vessel` rule cannot match a cloned element — `<use>` builds a shadow
    tree that outside selectors do not reach — but custom properties inherit into
    it, so these three are what actually paint the mark.
  */
  --mark-paper: var(--card);
  --mark-edge: var(--edge);
}

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid oklch(0.93 0.004 250);
  background: oklch(0.99 0.001 250 / 85%);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

.site-header .shell {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-block: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--body);
  font-size: 15px;
  white-space: nowrap;
}

.site-header .button {
  margin-left: auto;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: oklch(0.98 0.002 250);
  font-size: 15px;
  font-weight: 500;
  padding: 0 22px;
  white-space: nowrap;
}

.button:hover {
  background: oklch(0.26 0.012 250);
  color: oklch(0.98 0.002 250);
}

.button.large {
  min-height: 54px;
  font-size: 16px;
  padding: 0 28px;
}

.button.quiet {
  border-color: var(--edge);
  background: transparent;
  color: oklch(0.3 0.01 250);
  font-weight: 400;
}

.button.quiet:hover {
  background: var(--wash);
  color: var(--ink);
}

.dark .button {
  background: oklch(0.98 0.002 250);
  color: var(--ink);
}

.dark .button:hover {
  background: oklch(0.9 0.004 250);
  color: var(--ink);
}

.dark .button.quiet {
  border-color: oklch(0.4 0.012 250);
  background: transparent;
  color: oklch(0.9 0.004 250);
}

.dark .button.quiet:hover {
  background: oklch(0.24 0.012 250);
  color: oklch(0.98 0.002 250);
}

/* ── Type ──────────────────────────────────────────────────────────────── */
.eyebrow {
  color: oklch(0.55 0.01 250);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(52px, 7.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.043em;
  line-height: 0.97;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.06;
  text-wrap: balance;
}

h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.2;
}

.lede {
  color: oklch(0.4 0.01 250);
  font-size: 19px;
  line-height: 1.5;
  text-wrap: pretty;
}

.note {
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}

.fine {
  color: var(--faint);
  font-size: 14px;
  line-height: 1.5;
}

.points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  list-style: none;
  color: oklch(0.3 0.01 250);
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
}

.dark .eyebrow {
  color: var(--ink-muted);
}

.dark .lede,
.dark .note {
  color: var(--ink-body);
}

.dark .points {
  color: oklch(0.82 0.006 250);
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.section {
  padding-block: 92px;
}

.band {
  border-block: 1px solid oklch(0.93 0.004 250);
  background: var(--wash);
}

.dark {
  background: var(--ink);
  color: oklch(0.97 0.002 250);
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.split.wide-left {
  grid-template-columns: 1.05fr 0.95fr;
}

.split.wide-right {
  grid-template-columns: 0.9fr 1.1fr;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.stack > h2 {
  max-width: 10em;
}

.stack > .lede {
  max-width: 24em;
}

.head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding-block: 92px 84px;
  gap: 64px;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}

/* ── Phone frames ──────────────────────────────────────────────────────── */
.phone {
  position: relative;
  width: 336px;
  max-width: 100%;
  height: 700px;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: 0 50px 90px -50px oklch(0.3 0.02 250 / 55%);
  margin-inline: auto;
}

.phone.compact {
  width: 320px;
  height: 424px;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 40px 80px -40px oklch(0 0 0 / 70%);
}

.phone-board {
  position: absolute;
  display: grid;
  align-content: start;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  inset: 0;
  padding: 104px 16px 0;
}

.phone.compact .phone-board {
  padding: 26px 16px 0;
}

.phone-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--hairline);
  background: oklch(1 0 0 / 72%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 16px;
}

.clock {
  color: oklch(0.5 0.008 250);
  font-size: 11px;
  font-weight: 500;
}

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

.space {
  display: flex;
  height: 28px;
  align-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: oklch(0.99 0.002 250);
  font-size: 12px;
  font-weight: 500;
  padding: 0 11px;
}

.space.empty {
  width: 28px;
  border: 1px solid var(--edge);
  background: none;
  padding: 0;
}

.phone-kip {
  position: absolute;
  right: 16px;
  bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px -12px oklch(0.3 0.02 250 / 50%);
}

/* ── Tiles ─────────────────────────────────────────────────────────────── */
.tile {
  position: relative;
  display: flex;
  height: 136px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 19px;
  background: var(--card);
}

.tile > span {
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  padding: 14px;
}

.fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--fill, 50%);
  background: var(--accent);
  opacity: var(--opacity, 1);
}

/*
  The one moving thing on the page. It is the argument the copy is making — time
  passes, the tile fills — so it earns motion where nothing else does.
*/
.tile.rising .fill {
  height: 100%;
  animation: rise 2.8s cubic-bezier(0.3, 0.7, 0.3, 1) infinite alternate;
}

.tile.rising > span {
  color: oklch(0.99 0.002 250);
}

@keyframes rise {
  from {
    height: 46%;
  }

  to {
    height: 100%;
  }
}

@keyframes settle {
  from {
    opacity: 0.55;
  }

  to {
    opacity: 1;
  }
}

.mini {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 18px;
  background: var(--card);
}

/* ── How it works ──────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  padding: 30px;
}

.card .note {
  color: oklch(0.45 0.01 250);
}

.card-visual {
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 18px;
  background: var(--wash);
}

.card-visual .mini {
  width: 92px;
  height: 118px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: oklch(0.4 0.01 250);
  font-size: 13px;
  padding: 11px 14px;
}

.toast .undo {
  margin-left: auto;
  color: var(--accent);
  font-weight: 500;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 214px;
}

.swatch {
  position: relative;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

/* ── Chip strip ────────────────────────────────────────────────────────── */
.strip .shell {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-block: 26px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.chips li {
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: var(--card);
  color: var(--body);
  font-size: 14px;
  padding: 9px 15px;
  white-space: nowrap;
}

/* ── Today ─────────────────────────────────────────────────────────────── */
.today-art {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.panel {
  border: 1px solid oklch(0.91 0.005 250);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 30px 60px -40px oklch(0.3 0.02 250 / 50%);
  padding: 16px;
}

.ready {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 250px;
}

.ready-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.ready-tile {
  display: flex;
  height: 84px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  background: var(--tint, var(--accent));
  color: oklch(0.99 0.002 250);
  padding: 13px;
}

.ready-tile .meta {
  color: oklch(0.99 0.002 250 / 80%);
  font-size: 12px;
}

.ready-tile .name {
  font-size: 16px;
}

.aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 172px;
}

.widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 22px;
  box-shadow: 0 20px 40px -30px oklch(0.3 0.02 250 / 40%);
}

.widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.widget-grid > div {
  position: relative;
  height: 44px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--wash);
}

.notif {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 22px;
  background: var(--ink);
  padding: 16px;
}

.notif .label {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
}

.notif .body {
  color: oklch(0.96 0.003 250);
  font-size: 14px;
  line-height: 1.4;
}

/* ── Ask Kip ───────────────────────────────────────────────────────────── */
.prompts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.meet {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--ink-line);
  padding-top: 18px;
  margin-top: 8px;
}

.scrim {
  position: absolute;
  background: oklch(0.22 0.012 250 / 34%);
  inset: 0;
}

.chat {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 208px;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px 24px 0 0;
  background: oklch(1 0 0 / 93%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 18px 22px;
}

.said {
  align-self: flex-end;
  max-width: 80%;
  border-radius: 16px;
  background: oklch(0.24 0.01 250);
  color: oklch(0.98 0.002 250);
  font-size: 14px;
  line-height: 1.45;
  padding: 11px 14px;
}

.replied {
  align-self: flex-start;
  max-width: 84%;
  color: oklch(0.3 0.01 250);
  font-size: 14px;
  line-height: 1.45;
}

.composer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
}

.composer .field {
  flex: 1;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: oklch(0.6 0.008 250);
  font-size: 15px;
  padding: 12px 16px;
}

.just-added {
  display: flex;
  height: 118px;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--accent);
  border-radius: 18px;
  background: var(--card);
  padding: 13px;
}

.just-added .label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.just-added .name {
  color: oklch(0.24 0.01 250);
  font-size: 15px;
  line-height: 1.2;
}

/* ── Packs ─────────────────────────────────────────────────────────────── */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  padding: 24px;
}

.pack-glyph {
  display: flex;
  gap: 6px;
}

.pack-glyph > div {
  position: relative;
  width: 26px;
  height: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: oklch(0.97 0.002 250);
}

.pack .count {
  color: oklch(0.55 0.01 250);
  font-size: 15px;
}

.pack .note {
  color: oklch(0.45 0.01 250);
  font-size: 15px;
  line-height: 1.5;
}

/* ── The record, and sharing ───────────────────────────────────────────── */
.sheet {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  max-width: 100%;
  padding: 22px;
  box-shadow: 0 30px 60px -44px oklch(0.3 0.02 250 / 50%);
}

.sheet-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sheet-head h3 {
  font-size: 22px;
}

.rows {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 0;
}

.rows li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding: 12px 0;
  font-size: 15px;
}

.rows .when {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.sheet-foot {
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding-top: 14px;
}

/* ── Looks ─────────────────────────────────────────────────────────────── */
.looks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.look {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--body);
  font-size: 14px;
}

.look-board {
  display: flex;
  height: 122px;
  flex-direction: column;
  gap: 8px;
  border: var(--card-edge, none);
  border-radius: 14px;
  background: var(--bg);
  background-image: var(--bg-image, none);
  background-size: var(--bg-size, auto);
  padding: 11px;
}

.look-rail {
  display: flex;
  gap: 5px;
}

.look-rail span {
  height: 9px;
  border-radius: var(--chip, 3px);
}

.look-rail .on {
  width: 28px;
  background: var(--full);
}

.look-rail .off {
  width: 18px;
  border: 1px solid var(--tile-border);
}

.look-tiles {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.look-tiles span {
  position: relative;
  display: block;
  overflow: hidden;
  border: var(--tile-edge, none);
  border-radius: var(--tile, 7px);
}

.look-tiles .full {
  background: var(--full);
}

.look-tiles .part {
  background: var(--tile-bg);
}

.look-tiles .part span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  border: 0;
  background: var(--partial);
}

/* ── Pillars, FAQ ──────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-glyph {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: oklch(0.97 0.002 250);
}

.pillar-glyph span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--fill);
  background: var(--ink);
}

.pillar h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.pillar .note {
  color: oklch(0.45 0.01 250);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
}

.faq h2 {
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: -0.028em;
  line-height: 1.1;
}

.faq dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.faq-row {
  display: grid;
  align-items: baseline;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq dt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

.faq dd {
  margin: 0;
  color: oklch(0.45 0.01 250);
  font-size: 16px;
  line-height: 1.55;
}

/* ── Close, footer ─────────────────────────────────────────────────────── */
.close .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-block: 100px;
  text-align: center;
}

.close h2 {
  max-width: 680px;
  font-size: clamp(38px, 5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.close .lede {
  max-width: 470px;
  font-size: 18px;
}

.close .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 6px;
}

.site-footer {
  border-top: 1px solid oklch(0.93 0.004 250);
}

.site-footer .shell {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 34px;
}

.site-footer .brand {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

/* ── Inner pages ───────────────────────────────────────────────────────── */
.legal,
.support {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 60vh;
  padding-block: 90px 120px;
}

.legal h1,
.support h1 {
  font-size: clamp(44px, 6vw, 68px);
}

.legal p,
.support p {
  max-width: 62ch;
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

.legal a:not(.button),
.support a:not(.button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ── Document pages ───────────────────────────────────────────────────────
   A policy is read, not scanned, so the display sizes the landing page uses are
   far too loud in here. `.legal` and `.support` lay out as a flex column with a
   20px gap; margins do not collapse in a flex container, so the extra top margin
   on a section heading adds to that gap rather than fighting it.
*/
.doc h2 {
  margin-top: 24px;
  font-size: 25px;
  letter-spacing: -0.022em;
  line-height: 1.25;
}

.doc h3 {
  margin-top: 6px;
  font-size: 18px;
}

.doc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 62ch;
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
  padding-left: 20px;
}

.doc li::marker {
  color: var(--faint);
}

.doc .stamp {
  color: var(--faint);
  font-size: 14px;
}

.doc strong {
  font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .looks {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .cards,
  .pillars,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .split.wide-left,
  .split.wide-right,
  .faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section {
    padding-block: 68px;
  }

  .split.flip > :first-child {
    order: 2;
  }

  .strip .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 40px, 620px);
  }

  .hero {
    padding-block: 56px 64px;
  }

  .looks {
    grid-template-columns: repeat(2, 1fr);
  }

  .today-art {
    flex-direction: column;
    align-items: center;
  }

  .aside {
    width: 250px;
  }

  .site-footer .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-block: 28px;
  }

  .footer-links {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /*
    The tile still arrives full — the point of the animation is the end state,
    not the travel — it just fades in rather than climbing.
  */
  .tile.rising .fill {
    animation: settle 0.6s ease-out both;
  }
}
