/* ==========================================================================
   Blocks — timeblocks.io
   Hand-built stylesheet. No framework, no build step, no third-party requests.
   Brand tokens are the app's own, from BlocksKit/Sources/BlocksFeatures/DesignSystem.swift.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  /* Blocks brand */
  --navy:        #000215;
  --logo-blue:   #0343f4;
  --lum-blue:    #6e91ff;
  --coral:       #fc3e41;
  --yellow:      #febb0c;

  /* Apple's marketing-site neutrals */
  --ink:         #1d1d1f;
  --ink-2:       #6e6e73;
  --paper:       #f5f5f7;
  --chalk:       #f5f5f7;
  --chalk-2:     #86868b;
  --hairline:    rgba(0, 0, 0, .12);
  --hairline-d:  rgba(255, 255, 255, .14);

  --tint:        #0071e3;
  --link-light:  #0066cc;
  --link-dark:   #2997ff;

  --radius:      22px;   /* BlocksDesign.cardRadius */
  --radius-lg:   32px;
  --pill:        980px;

  --shell:       1680px;
  --measure:     980px;

  --pad-x:       clamp(22px, 5vw, 48px);
  --pad-y:       clamp(72px, 10vw, 120px);

  --ease:        cubic-bezier(.28, .11, .32, 1);

  /* SF Pro on Apple platforms — where the audience is — with clean native
     fallbacks elsewhere. Deliberately no webfont: a font CDN would send every
     visitor's IP to a third party, which is exactly what /privacy promises
     this site does not do. */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --round: ui-rounded, "SF Pro Rounded", var(--sans);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -.022em;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4, p, ul, ol, figure, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: inherit; }

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

.skip {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -200%);
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
  transition: transform .2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ------------------------------------------------------------ typography -- */
.eyebrow {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: .004em;
  line-height: 1.16;
}

.headline {
  font-size: clamp(40px, 7.4vw, 80px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.015em;
}

.headline--xl {
  font-size: clamp(44px, 9vw, 96px);
  letter-spacing: -.02em;
}

.title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.07143;
  font-weight: 600;
  letter-spacing: -.005em;
}

.title--sm {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.intro {
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.28572;
  font-weight: 400;
  letter-spacing: .007em;
}

.lede {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.42859;
  letter-spacing: .011em;
}

.body { font-size: 17px; line-height: 1.47059; letter-spacing: -.022em; }

.small { font-size: 14px; line-height: 1.42859; letter-spacing: -.016em; }

.footnote {
  font-size: 12px;
  line-height: 1.33337;
  letter-spacing: -.01em;
}

.numeric {
  font-family: var(--round);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.dim { color: var(--ink-2); }
.center { text-align: center; }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---------------------------------------------------------------- layout -- */
.shell { max-width: var(--shell); margin-inline: auto; }

.wrap {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.wrap--wide { max-width: 1240px; }

.section { padding-block: var(--pad-y); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }

/* The apple.com band alternation: near-black against #f5f5f7. */
.s-light { background: var(--paper); color: var(--ink); }
.s-white { background: #fff; color: var(--ink); }
.s-dark  { background: #000; color: var(--chalk); }
.s-navy  { background: var(--navy); color: var(--chalk); }

.s-light .dim, .s-white .dim { color: var(--ink-2); }
.s-dark .dim,  .s-navy .dim  { color: var(--chalk-2); }

.s-light a.tlink, .s-white a.tlink { color: var(--link-light); }
.s-dark a.tlink,  .s-navy a.tlink  { color: var(--link-dark); }

.stack > * + * { margin-top: var(--gap, 18px); }

.rule { height: 1px; border: 0; background: var(--hairline); margin: 0; }
.s-dark .rule, .s-navy .rule { background: var(--hairline-d); }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border: 0;
  border-radius: var(--pill);
  font: inherit;
  font-size: 17px;
  line-height: 1.176;
  letter-spacing: -.022em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), opacity .22s var(--ease);
}

.btn--primary { background: var(--tint); color: #fff; }
.btn--primary:hover { background: #0077ed; }
.btn--primary:active { transform: scale(.975); }

.btn--ghost {
  background: transparent;
  color: var(--link-dark);
  box-shadow: inset 0 0 0 1px currentColor;
}
.s-light .btn--ghost, .s-white .btn--ghost { color: var(--link-light); }
.btn--ghost:hover { background: rgba(41, 151, 255, .1); }
.s-light .btn--ghost:hover, .s-white .btn--ghost:hover { background: rgba(0, 102, 204, .08); }

.btn--sm { min-height: 32px; padding: 6px 15px; font-size: 14px; }

.tlink {
  text-decoration: none;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: .011em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.tlink:hover { text-decoration: underline; }
.tlink::after { content: "\203A"; font-size: 1.15em; line-height: 1; }
.tlink--plain::after { content: none; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.actions--center { justify-content: center; }

/* ------------------------------------------------------------------- nav -- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 48px;
  background: rgba(0, 0, 0, .88);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--chalk);
}

.nav__bar {
  max-width: var(--shell);
  height: 48px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
  flex: 0 0 auto;
}
.brand img { width: 19px; height: 15.01px; }

.nav__links {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  margin-inline: auto;
  align-items: center;
}

.nav__links a {
  font-size: 12px;
  line-height: 1;
  letter-spacing: -.01em;
  text-decoration: none;
  opacity: .84;
  transition: opacity .2s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { opacity: 1; }

.nav__cta { flex: 0 0 auto; }

.nav__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: inherit;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav[data-open="true"] .nav__toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span:last-child  { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 833px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 48px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px clamp(22px, 6vw, 40px) 24px;
    background: rgba(0, 0, 0, .94);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease);
  }
  .nav[data-open="true"] .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a {
    font-size: 17px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .nav__cta { display: none; }
}

/* ------------------------------------------------------------------ hero -- */
.hero {
  background: var(--navy);
  color: var(--chalk);
  padding-block: clamp(56px, 8vw, 92px) 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero__aura {
  position: absolute;
  inset: -20% -10% auto;
  height: 130%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 32% at 18% 22%, rgba(252, 62, 65, .20), transparent 70%),
    radial-gradient(42% 30% at 84% 14%, rgba(254, 187, 12, .16), transparent 70%),
    radial-gradient(66% 46% at 50% 78%, rgba(3, 67, 244, .48), transparent 72%);
  filter: blur(20px);
}

.hero__copy { text-align: center; max-width: 860px; margin-inline: auto; }
.hero .eyebrow { color: var(--lum-blue); }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  font-size: 13px;
  letter-spacing: -.01em;
}
.availability::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lum-blue);
  box-shadow: 0 0 0 3px rgba(110, 145, 255, .22);
}

.hero__stage {
  margin-top: clamp(44px, 6vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  padding-inline: var(--pad-x);
}

/* ---------------------------------------------------- device chrome (CSS) -- */
.device {
  --w: 300px;
  width: var(--w);
  flex: 0 0 auto;
  position: relative;
  padding: calc(var(--w) * .0315);
  border-radius: calc(var(--w) * .175);
  background: linear-gradient(160deg, #4b4d55, #17181c 26%, #101115 62%, #3a3c43);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, .5),
    0 30px 70px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.device__screen {
  position: relative;
  border-radius: calc(var(--w) * .145);
  overflow: hidden;
  background: #000;
  aspect-ratio: 1206 / 2622;
}
.device__screen picture { display: block; width: 100%; height: 100%; }
.device__screen img { width: 100%; height: 100%; object-fit: cover; }

.device__island {
  position: absolute;
  top: calc(var(--w) * .032);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--w) * .30);
  height: calc(var(--w) * .088);
  border-radius: var(--pill);
  background: #000;
  z-index: 2;
}

.device--lg { --w: min(320px, 74vw); }
.device--md { --w: min(272px, 62vw); }

/* Apple Watch, drawn rather than screenshotted — there is no watch capture. */
.watch {
  --w: 156px;
  width: var(--w);
  flex: 0 0 auto;
  position: relative;
  padding: calc(var(--w) * .045);
  border-radius: calc(var(--w) * .30);
  background: linear-gradient(155deg, #55575f, #1b1c20 30%, #121317 66%, #43454c);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .1);
  margin-bottom: clamp(12px, 3vw, 40px);
}
.watch::after {   /* digital crown */
  content: "";
  position: absolute;
  right: calc(var(--w) * -.028);
  top: 26%;
  width: calc(var(--w) * .034);
  height: calc(var(--w) * .13);
  border-radius: 3px;
  background: linear-gradient(90deg, #6b6d75, #2c2d33);
}
.watch__screen {
  border-radius: calc(var(--w) * .255);
  overflow: hidden;
  background: #000;
  aspect-ratio: 176 / 215;
}

@media (max-width: 833px) {
  .hero__stage { flex-direction: column; align-items: center; gap: 28px; }
  .watch { margin-bottom: 0; }
}

/* ---------------------------------------------------------------- cards -- */
.grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 32px);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 8px 30px rgba(0, 0, 0, .06);
  height: 100%;
}
.s-dark .card, .s-navy .card {
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}
.card h3 { font-size: 21px; font-weight: 600; letter-spacing: .004em; }
.card p  { margin-top: 8px; }

/* Cards in a row keep their trailing link on one baseline however long the copy is. */
.card { display: flex; flex-direction: column; }
.card .push { margin-top: auto; padding-top: 18px; }
.card .tlink { font-size: 17px; letter-spacing: -.022em; }

.card__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--logo-blue);
}
.s-dark .card__icon, .s-navy .card__icon { color: var(--lum-blue); }

/* alternating feature rows */
.feature {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__art { order: -1; }
}
.feature__art { display: flex; justify-content: center; }
.feature__copy { max-width: 520px; }

/* An inline <svg> with a viewBox reports that viewBox as its intrinsic width, and a
   flex/grid child's automatic minimum size honours it — which pushed the page wider
   than a 390px viewport. Every flexible child opts out of that minimum explicitly. */
.feature > *,
.grid > *,
.plans > *,
.mini-panels > *,
.feature__art { min-width: 0; }

.feature__art > svg,
.mini__art > svg { max-width: 100%; height: auto; }

.checks { --gap: 14px; margin-top: 26px; }
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17px;
  letter-spacing: -.022em;
}
.checks li + li { margin-top: 14px; }
.checks svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; color: var(--logo-blue); }
.s-dark .checks svg, .s-navy .checks svg { color: var(--lum-blue); }

/* -------------------------------------------------------- privacy proof -- */
.proof { display: grid; gap: clamp(20px, 3vw, 34px); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.proof dt {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.05;
  background: linear-gradient(140deg, var(--lum-blue), #b9c9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof dd { margin: 8px 0 0; font-size: 15px; color: var(--chalk-2); letter-spacing: -.01em; }

/* ------------------------------------------------------------- palette -- */
.palette {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(6px, .9vw, 12px);
  margin-top: 44px;
}
.palette li { position: relative; }
.swatch {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .12);
}
@media (max-width: 833px) { .palette { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 480px) { .palette { grid-template-columns: repeat(6, 1fr); } }

/* ------------------------------------------------------------- pricing -- */
.plans { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }

.plan {
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 10px 34px rgba(0, 0, 0, .07);
  position: relative;
  height: 100%;
}
.plan--feature { box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 14px 44px rgba(3, 67, 244, .18), inset 0 0 0 1.5px rgba(3, 67, 244, .34); }
.plan__tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--logo-blue);
  background: rgba(3, 67, 244, .1);
  padding: 5px 10px;
  border-radius: var(--pill);
}
.plan__price {
  font-family: var(--round);
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  margin-top: 6px;
}
.plan__price span { font-size: 17px; font-weight: 400; letter-spacing: -.022em; color: var(--ink-2); font-family: var(--sans); }
.plan ul { margin-top: 24px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; }
.plan ul li + li { margin-top: 13px; }
.plan ul svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; color: var(--logo-blue); }

/* --------------------------------------------------------------- specs -- */
.specs { margin-top: 40px; }
.specs__row {
  display: grid;
  grid-template-columns: minmax(140px, 240px) 1fr;
  gap: 12px clamp(20px, 4vw, 60px);
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.s-dark .specs__row, .s-navy .specs__row { border-top-color: var(--hairline-d); }
.specs__row dt { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.specs__row dd { margin: 0; font-size: 15px; letter-spacing: -.016em; }
@media (max-width: 640px) { .specs__row { grid-template-columns: 1fr; gap: 4px; } }

/* ----------------------------------------------------------------- faq -- */
.faq { margin-top: 40px; border-top: 1px solid var(--hairline); }
.s-dark .faq, .s-navy .faq { border-top-color: var(--hairline-d); }

.faq details {
  border-bottom: 1px solid var(--hairline);
}
.s-dark .faq details, .s-navy .faq details { border-bottom-color: var(--hairline-d); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 500;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 13px; height: 13px;
  margin-top: -7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .55;
  transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover::after { opacity: 1; }
.faq .faq__a { padding: 0 44px 24px 0; max-width: 720px; }
.faq .faq__a > * + * { margin-top: 12px; }

/* -------------------------------------------------------------- footer -- */
.footer {
  background: var(--paper);
  color: var(--ink-2);
  padding-block: 40px 44px;
  font-size: 12px;
  line-height: 1.33337;
  letter-spacing: -.01em;
}
.footer a { color: var(--ink-2); text-decoration: none; }
.footer a:hover { color: var(--ink); text-decoration: underline; }

.footer__top { display: flex; align-items: center; gap: 10px; padding-bottom: 22px; }
.footer__top img { width: 13px; height: 10.27px; }
.footer__top span { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }

.footer__cols {
  display: grid;
  gap: 26px clamp(20px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding-block: 26px;
  border-top: 1px solid var(--hairline);
}
.footer__cols h2 { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.footer__cols li + li { margin-top: 8px; }

.footer__legal { border-top: 1px solid var(--hairline); padding-top: 20px; }
.footer__legal p + p { margin-top: 9px; }
.footer__legal .row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  margin-top: 12px;
}

/* -------------------------------------------------------- prose (legal) -- */
.prose { max-width: 720px; margin-inline: auto; }
.prose > * + * { margin-top: 18px; }
.prose h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: -.003em;
  line-height: 1.15;
  margin-top: 56px;
  scroll-margin-top: 72px;
}
.prose h3 { font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin-top: 32px; }
.prose p, .prose li { font-size: 17px; line-height: 1.5; letter-spacing: -.018em; color: #38383c; }
.prose ul { margin-top: 14px; }
.prose ul li {
  position: relative;
  padding-left: 24px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 6px; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-2);
}
.prose ul li + li { margin-top: 10px; }
.prose a { color: var(--link-light); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { font-weight: 600; color: var(--ink); }

.callout {
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 10px 30px rgba(0, 0, 0, .06);
}
.callout h2 { margin-top: 0; font-size: 21px; }
.callout ul { margin-top: 14px; }

.toc {
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .035);
  padding: 22px 26px;
}
.toc h2 { font-size: 13px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); }
.toc ol { counter-reset: toc; columns: 2; column-gap: 32px; }
.toc li { counter-increment: toc; break-inside: avoid; }
.toc li + li { margin-top: 7px; }
.toc a { font-size: 15px; color: var(--link-light); text-decoration: none; }
.toc a::before { content: counter(toc) ". "; color: var(--ink-2); }
.toc a:hover { text-decoration: underline; }
@media (max-width: 640px) { .toc ol { columns: 1; } }

.page-head { padding-block: clamp(48px, 7vw, 84px) clamp(24px, 3vw, 40px); }

/* --------------------------------------------------------------- motion -- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Nothing removes the start state without JS, so only hide when the inline head
   script has confirmed scripting is alive. Crawlers that skip or fail on the
   script still see a fully painted page. */
html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------------------------------------------------- misc -- */
.mini-panels { display: grid; gap: clamp(14px, 2vw, 22px); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 52px; }
.mini {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini__art { display: flex; justify-content: center; align-items: center; min-height: 128px; }
.mini h3 { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.mini p { margin-top: 7px; font-size: 15px; color: var(--chalk-2); letter-spacing: -.014em; }

.mailcard {
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 10px 30px rgba(0, 0, 0, .06);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
}
