/*
 * PageTime — paper, ink and a hairline, on the web.
 *
 * The same rules the app is built on: near-black paper, cream ink, one flat
 * amber accent with one job per section. No gradients, no glass, no drop
 * shadows, no blurs. Cards are the same paper as the page and are told apart
 * by a 1px hairline. Personality comes from the type and the layout, never
 * from a decorative layer.
 */

/* ------------------------------------------------------------------ faces */

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/InstrumentSerif-Regular-93698d45.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/InstrumentSerif-Italic-df8e897d.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/IBMPlexMono-Regular-61b83e6a.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/IBMPlexMono-Medium-03026b69.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/IBMPlexMono-SemiBold-0d329819.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------- tokens */

:root {
  --ground: #130e0a;
  --surface: #1e1811;

  --ink: #f3ecdf;
  --ink-muted: #c9c0af;
  --ink-soft: #8c8172;
  /* These two sit below 4.5:1 on the ground, so they are for marks and rules
     only — a "+" on an accordion, a dash before a list item, a dashed border.
     Copy someone has to read stops at --ink-soft. */
  --ink-faint: #6e6558;
  --ink-quiet: #4a4335;

  --accent: #d7a44c;

  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-strong: rgba(243, 236, 223, 0.28);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
  --section: clamp(72px, 11vw, 132px);
}

/* ------------------------------------------------------------------- base */

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

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ground);
  padding: 12px 18px;
  z-index: 100;
  font-family: var(--mono);
  font-size: 12px;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

/* ------------------------------------------------------------- typography */

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 9.5vw, 6.6rem);
}

h2 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.14;
}

em {
  font-style: italic;
}

.italic {
  font-style: italic;
}

.amber {
  color: var(--accent);
}

.struck {
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
}

/* Drawn rather than text-decoration so the rule sits on the x-height and can
   be animated in — the one flourish on the page, and it is the argument. */
.struck::after {
  content: "";
  position: absolute;
  left: -0.02em;
  right: -0.02em;
  top: 52%;
  height: 3px;
  background: var(--ink-soft);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) 0.9s forwards;
}

@keyframes strike {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .struck::after {
    animation: none;
    transform: scaleX(1);
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.eyebrow--accent {
  color: var(--accent);
}

.lede {
  font-size: clamp(1.15rem, 2.1vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 34ch;
  margin: 26px 0 0;
  text-wrap: pretty;
}

.lede--wide {
  max-width: 52ch;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

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

.figure {
  font-family: var(--mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* A sentence set the way the app sets one: small caps opening, serif body,
   at most one amber word. */
.sentence {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.38;
  color: var(--ink-muted);
  margin: 0;
}

.sentence .opening {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.sentence .mark {
  font-style: italic;
  color: var(--accent);
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section) 0;
  border-top: 1px solid var(--hairline);
}

/* Eyebrow across the top, headline left, lede right — a section opening set
   the way a magazine sets one, rather than a narrow column with dead space
   beside it. */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 15ch;
}

.section-head .lede {
  max-width: 42ch;
  margin: 0 0 8px;
}

@media (max-width: 860px) {
  .section-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .section-head .lede {
    margin-bottom: 0;
  }
}

/* -------------------------------------------------------------------- nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ground);
  border-bottom: 1px solid var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 27px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

@media (max-width: 820px) {
  .nav__links {
    display: none;
  }
}

/* ----------------------------------------------------------------- button */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--ground);
}

.btn--primary:hover {
  opacity: 0.88;
}

.btn--ghost {
  border-color: var(--hairline-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 14px;
}

/* Not launched yet: the same shape, but plainly inert rather than a link that
   goes nowhere. */
.btn--waiting {
  background: transparent;
  border: 1px dashed var(--ink-quiet);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 26px;
  white-space: nowrap;
}

.btn--waiting:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--waiting.btn--sm {
  padding: 10px 16px;
  font-size: 10.5px;
  letter-spacing: 0.13em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 18px 0 0;
}

/* Apple's mark, drawn rather than fetched. */
.btn svg {
  flex: none;
}

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

.hero {
  padding: clamp(56px, 9vw, 104px) 0 clamp(64px, 9vw, 110px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero h1 {
  margin-top: 6px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__shot {
    max-width: 300px;
    margin: 8px auto 0;
  }
}

/* ----------------------------------------------------------------- screens */

/* The screenshots already carry the phone's own rounded screen, so the frame
   is a hairline and a radius — no bezel drawing, no shadow, no glow. */
.shot {
  border: 1px solid var(--hairline-strong);
  border-radius: 13%/6.1%;
  overflow: hidden;
  background: var(--ground);
}

.shot img {
  width: 100%;
  display: block;
}

.caption {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

/* ----------------------------------------------------------------- ledger */

/* The onboarding reveal, restated in HTML: a bill, ruled, with the total
   converted into the only currency the app deals in. */
.ledger {
  border-top: 1px solid var(--hairline);
}

.ledger__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  color: var(--ink-muted);
}

.ledger__row .figure {
  font-size: 0.72em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.ledger__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 20px;
  border-top: 3px double var(--hairline-strong);
  border-bottom: 3px double var(--hairline-strong);
  margin-top: 4px;
  font-family: var(--serif);
  color: var(--ink);
}

.ledger__total dt {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  color: var(--ink-muted);
}

.ledger__total dd {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
}

.ledger__convert {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 0;
  font-family: var(--serif);
}

.ledger__convert dt {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  color: var(--ink-muted);
}

.ledger__convert dd {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1;
  color: var(--accent);
}

.ledger__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

/* Every phone in a split is the same size, whichever side it sits on. */
.shot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shot-col .shot {
  width: 100%;
  max-width: 380px;
}

.shot-col .caption {
  text-align: center;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .split--reverse > :first-child {
    order: 0;
  }

  .split .shot {
    max-width: 300px;
    margin-inline: auto;
  }
}

/* ------------------------------------------------------------------ steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.step {
  padding: 34px 26px 34px 0;
  border-right: 1px solid var(--hairline);
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step:not(:first-child) {
  padding-left: 26px;
}

.step__n {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step {
    border-bottom: 1px solid var(--hairline);
  }

  .step:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .step:nth-child(odd) {
    padding-left: 0;
  }

  .step:nth-child(even) {
    padding-left: 26px;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .step,
  .step:nth-child(even),
  .step:nth-child(odd) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* --------------------------------------------------------------- gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: minmax(0, 1fr);
    max-width: 300px;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------- features */

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
}

.feature {
  background: var(--ground);
  padding: clamp(26px, 3vw, 36px);
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.feature__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ----------------------------------------------------------------- claims */

.claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.claim__figure {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.claim p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 30ch;
}

@media (max-width: 760px) {
  .claims {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}

/* ---------------------------------------------------------------- pricing */

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
  align-items: stretch;
}

.plan {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
}

.plan--full {
  border-color: rgba(215, 164, 76, 0.45);
  background: var(--surface);
}

.plan__name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.plan--full .plan__name {
  color: var(--accent);
}

.plan__price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan__period {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}

.plan__alt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 14px 0 0;
  text-transform: uppercase;
}

.plan ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.plan li {
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-muted);
  font-size: 15.5px;
  position: relative;
}

.plan li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-faint);
}

.plan--full li::before {
  content: "✓";
  color: var(--accent);
  font-size: 13px;
}

.plan__cta {
  margin-top: auto;
  padding-top: 30px;
}

@media (max-width: 760px) {
  .plans {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Small print that still has to be read: mono for the family, but sentence
   case, because two lines of tracked capitals is a wall rather than a note. */
.fine-note {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 26px 0 0;
}

/* -------------------------------------------------------------------- faq */

.faq {
  border-top: 1px solid var(--hairline);
  max-width: 860px;
}

.faq details {
  border-bottom: 1px solid var(--hairline);
}

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.15s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--accent);
}

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ink-faint);
  flex: none;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq details > div {
  padding: 0 0 28px;
  max-width: 62ch;
  color: var(--ink-soft);
}

.faq details > div p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------- cta */

.closer {
  text-align: center;
  padding: clamp(84px, 12vw, 150px) 0;
  border-top: 1px solid var(--hairline);
}

.closer .lede {
  margin-inline: auto;
  max-width: 40ch;
}

.closer .cta-row {
  justify-content: center;
}

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

.footer {
  border-top: 1px solid var(--hairline);
  padding: 54px 0 64px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--ink);
}

.footer__fine {
  margin: 30px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ------------------------------------------------------------------ prose */

/* Privacy, support and terms. A single column of readable type, ruled the way
   the rest of the site is ruled. */
.prose {
  max-width: 68ch;
  padding: clamp(56px, 8vw, 92px) 0 clamp(72px, 10vw, 120px);
}

.prose h1 {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  margin-bottom: 20px;
}

.prose h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  margin: 56px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}

.prose h3 {
  font-size: 1.3rem;
  margin: 32px 0 10px;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 16.5px;
  line-height: 1.72;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  margin: 0 0 1.2em;
}

.prose li {
  margin-bottom: 0.5em;
}

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

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose__meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

.prose__summary {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 34px 0 8px;
  background: var(--surface);
}

.prose__summary p:last-child {
  margin-bottom: 0;
}

.prose__summary .eyebrow {
  margin-bottom: 14px;
}

/* A plain two-column table for "what is collected and why". */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
  font-size: 15.5px;
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-muted);
}

.table th {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.table td:first-child {
  color: var(--ink);
  width: 30%;
}

.table-scroll {
  overflow-x: auto;
}

/* ----------------------------------------------------------------- motion */

/* Things arrive; nothing floats, pulses or glows. */
.rise {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.rise.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* No-JS: never leave the page invisible. */
.no-js .rise {
  opacity: 1;
  transform: none;
}
