/*
 * LittleStep — littlestep.app
 *
 * Tokens are the corporate identity, verbatim. Do not invent a colour here:
 * if a shade is missing, it is missing from the brand, and the brand is the
 * one in `apps/mobile/src/theme/tokens.ts`. Keep the two in step.
 *
 * Two rules from the identity that are easy to break by accident:
 *   1. No black anywhere. The darkest tone is cocoa (#3F2617).
 *   2. The mark's three steps never reorder or resize relative to each other.
 *
 * There is deliberately **no dark mode**. The palette is warm paper with three
 * bright steps on it and the app itself ships light-only, so an inverted site
 * was a second identity to keep in step with the first for no one's benefit —
 * and it made every photograph on the page wrong in one of the two themes.
 * Do not add `prefers-color-scheme` back; add the colour you need as a token.
 */

:root {
  /* Paper */
  --cream: #faf7f1;
  --paper: #fffdfa;
  --sand: #f7efe6;
  --beige: #f0e3d3;

  /* Steps */
  --tangerine: #ff6a2b;
  --clay: #c6431a;
  --sun: #eda01a;
  --teal: #1ea896;

  /* Ink — cocoa, never black */
  --ink: #3f2617;
  --bark: #7a6355;
  --faint: #7c6a5a;

  --line: rgba(63, 38, 23, 0.11);
  --line-soft: rgba(63, 38, 23, 0.07);
  --tangerine-soft: rgba(255, 106, 43, 0.14);

  --bg: var(--cream);
  --card: var(--paper);
  /* Paper, one hairline, and a soft shadow. The hairline is the app's own
   * card treatment (`styles.planCard`); the shadow is the site's, and it stays
   * — a landing page is read at arm's length on a big screen, where the app's
   * completely flat card goes slack. Both are gentle on purpose: nothing here
   * should look like it is hovering off the page. */
  --shadow: 0 1px 2px rgba(63, 38, 23, 0.04), 0 12px 32px -18px rgba(63, 38, 23, 0.28);
  --shadow-lift: 0 2px 4px rgba(63, 38, 23, 0.05), 0 28px 60px -28px rgba(63, 38, 23, 0.34);

  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);

  color-scheme: light;
}

/* Figtree is Latin-only and self-hosted: no third-party request on any page,
 * which is a promise the privacy policy makes out loud. Non-Latin scripts drop
 * the family and take the platform face — the same rule the app follows in
 * `src/theme/script-font.ts`. */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/figtree-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

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

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Thai (and any other non-Latin) takes the platform face and more leading —
 * Figtree has no Thai glyphs, and Thai stacks vowel + tone above the line. */
:lang(th) body,
body:lang(th),
.th {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Noto Sans Thai',
    'Sarabun', sans-serif;
  line-height: 1.86;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

/*
 * Weight 600, which is `fonts.semibold` — the only weight the app's type scale
 * uses for display, title, heading and card. The site used to set these at 800,
 * which was heavier than the product it advertises and read as shouting next to
 * a photograph. Size and space carry the hierarchy now; the weight does not
 * have to.
 */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.021em;
  line-height: 1.1;
}

:lang(th) h1,
:lang(th) h2,
:lang(th) h3,
:lang(th) h4 {
  letter-spacing: 0;
  line-height: 1.42;
}

p {
  margin: 0;
}

/* ── Layout ─────────────────────────────────────────────────────────── */

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

.section {
  padding-block: clamp(72px, 10vw, 132px);
}

.section--tight {
  padding-block: clamp(52px, 7vw, 92px);
}

.section--sand {
  background: var(--sand);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 100;
}
.skip:focus {
  left: 0;
}

:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid var(--tangerine);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ── The mark ───────────────────────────────────────────────────────── */

.mark {
  display: block;
  height: 26px;
  width: auto;
  flex: none;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}

.wordmark {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.022em;
  line-height: 1;
}

/* ── Nav ────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav[data-scrolled='true'] {
  border-bottom-color: var(--line-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}

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

/* `:not(.btn)` because the CTA lives in here too, and an ambient link colour
 * (0,1,1) outranks a single button class (0,1,0). Without it this rule paints
 * the primary button's label bark-on-tangerine — 1.96:1 — no matter what
 * `.btn--primary` asks for. Same trap in `.band a` further down. */
.nav__links a:not(.btn) {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--bark);
  white-space: nowrap;
}

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

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

/* ── Buttons ────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    background-color 0.14s ease,
    box-shadow 0.14s ease;
}

.btn:active {
  transform: translateY(1px);
}

/*
 * White on clay — the brand's own darker orange.
 *
 * Two things have to be true at once here: the label is white, and the fill is
 * a brand orange. On tangerine a white label measures 2.81:1 — under WCAG AA
 * for body text (4.5:1) and under the 3:1 floor for large text as well, so it
 * fails at every size and reads as sunken into the fill. Clay is the same
 * orange one step down (`tokens.ts`: "tangerine's darker voice"), and white on
 * it is 4.90:1. Hover settles onto cocoa, which is the app's own primary
 * button (`ui/Button.tsx`) at 13.78:1.
 *
 * Tangerine still carries the identity everywhere else on the page — the mark,
 * the chips, the accents. It is only as a *background for type* that it has to
 * step down a shade.
 */
.btn--primary {
  background: var(--clay);
  color: var(--paper);
  box-shadow: 0 10px 24px -12px rgba(198, 67, 26, 0.9);
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: var(--sand);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 15px;
}

/* The closing call sits on a photograph, where neither store badge would read:
 * both are black artwork and neither vendor permits a recolour. */
.btn--onPhoto {
  background: var(--cream);
  color: var(--ink);
  padding: 16px 30px;
  font-size: 17px;
}

.btn--onPhoto:hover {
  background: #fff;
}

/* ── Store buttons ──────────────────────────────────────────────────────
 * A matched pair: same height, same width, same corner radius, same padding —
 * which is the whole reason these are ours and not the vendors' badges. Apple's
 * badge and Google's are two different aspect ratios with different clear space
 * baked into the file (and Google's differs per locale), and neither may be
 * cropped or restyled, so a true pair is not achievable with them. That
 * trade-off was made deliberately; `assets/icons/CREDITS.md` records it, the
 * glyph licence, and how to go back to the official badges.
 *
 * Cocoa on paper with cream type — the app's own primary button
 * (`ui/Button.tsx`: `backgroundColor: colors.ink`, cream label).
 */

/*
 * A grid of equal columns inside a `fit-content` box, rather than two flex
 * items. It is the difference between "both buttons are at least 176px" and
 * "both buttons are exactly as wide as the wider one" — English needs 193px for
 * "Download on the" and only 176px for "Get it on", so a min-width equalises
 * them only until someone edits the copy. This equalises them by construction,
 * in every language.
 */
.stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: fit-content;
  max-width: 100%;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition:
    background-color 0.16s ease,
    transform 0.16s ease;
}

.store:not([data-state='soon']):hover {
  background: #4d2f1c;
  transform: translateY(-1px);
}

.store:not([data-state='soon']):active {
  transform: translateY(0);
}

/* Waiting for a store URL: same button, quieter, and not a link. */
.store[data-state='soon'] {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--line);
  cursor: default;
}

.store__glyph {
  width: 22px;
  height: 22px;
  flex: none;
  fill: currentColor;
}

.store__text {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
  min-width: 0;
}

.store__kicker {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.72;
  white-space: nowrap;
}

.store__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* On the narrowest phones the pair stacks, and equal widths keep the column
 * flush on both edges. */
@media (max-width: 400px) {
  .stores {
    grid-template-columns: 1fr;
  }
}

/* ── Type helpers ───────────────────────────────────────────────────── */

.kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.h1 {
  font-size: clamp(42px, 6.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.026em;
}

.h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.14;
}

.h3 {
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.3;
}

.lede {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.58;
  color: var(--bark);
  max-width: 58ch;
}

.muted {
  color: var(--bark);
}

.small {
  font-size: 14.5px;
  color: var(--faint);
}

.center {
  text-align: center;
}

/* `.lede` is capped at 58ch, so centring the *text* inside it is not the same
 * as centring the block: without an auto margin the box stays flush left and
 * the line sits well off the page's centre. Both selectors are needed — the
 * class turns up on a wrapper and on the paragraph itself. */
.center .lede,
.lede.center {
  margin-inline: auto;
}

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-top: clamp(36px, 5.5vw, 76px);
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow: clip;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero__grid .lede,
  .hero__grid .stores {
    margin-inline: auto;
  }
  .hero__cta {
    align-items: center;
  }
  .microtrust {
    justify-content: center;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--tangerine-soft);
  color: var(--clay);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero .lede {
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero__note {
  font-size: 14.5px;
  color: var(--faint);
}

.hero__note a,
.close .small a {
  color: var(--clay);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ── Cards & grids ──────────────────────────────────────────────────── */

.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow);
}

.card__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--bark);
}

.dot--sun {
  background: var(--sun);
}
.dot--teal {
  background: var(--teal);
}
.dot--tangerine {
  background: var(--tangerine);
}

/* Numbered steps */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 62px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tangerine-soft);
  color: var(--clay);
  font-weight: 800;
  font-size: 17px;
}

@media (max-width: 860px) {
  .step {
    padding-left: 56px;
  }
}

/* ── Parent panel ───────────────────────────────────────────────────── */

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow);
}

.panel__rows {
  display: grid;
  gap: 20px;
}

/* Always stacked: this panel lives in a half-width column, and a 200px label
 * gutter left the value column too narrow to read — three words per line. */
.panel__row {
  display: grid;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.panel__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.panel__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── Promise list (the anti-features) ───────────────────────────────── */

.promises {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.promise {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.promise__tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tangerine-soft);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.promise__tick svg {
  width: 13px;
  height: 13px;
  stroke: var(--clay);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise b {
  font-weight: 700;
}

/* ── Beta band ──────────────────────────────────────────────────────── */

.beta {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4.4vw, 56px);
}

.beta h2 {
  margin-bottom: 16px;
}

.beta p {
  color: rgba(250, 247, 241, 0.76);
}

.beta .grid {
  margin-top: 32px;
}

.beta__item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.beta__item p {
  font-size: 15px;
}

/* ── Closing CTA ────────────────────────────────────────────────────── */

.close {
  text-align: center;
}

.close__cta {
  margin-top: 32px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding-block: 44px 56px;
  font-size: 14.5px;
  color: var(--bark);
}

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

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

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

.footer__links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  color: var(--faint);
  font-size: 13.5px;
}

.lang {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.lang a {
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bark);
}

.lang a[aria-current='page'] {
  background: var(--sand);
  color: var(--ink);
}

/* ── Document pages (privacy, terms, support, deletion) ─────────────── */

.doc {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 84px);
}

.doc h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 14px;
}

.doc__meta {
  color: var(--faint);
  font-size: 14.5px;
  margin-bottom: 40px;
}

.doc h2 {
  font-size: clamp(21px, 2.6vw, 26px);
  margin-top: 44px;
  margin-bottom: 12px;
}

.doc h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.doc p,
.doc li {
  color: var(--bark);
}

.doc p + p {
  margin-top: 14px;
}

.doc ul,
.doc ol {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.doc a {
  color: var(--clay);
  text-underline-offset: 3px;
}

.doc strong {
  color: var(--ink);
}

.callout {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 24px;
}

.callout p {
  color: var(--ink);
}

.toc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 8px;
}

.toc ol {
  margin-top: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 15.5px;
  display: block;
  overflow-x: auto;
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--bark);
}

.table th {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

/* ── Thai ───────────────────────────────────────────────────────────────
 * Every uppercase + wide-tracking label in this sheet is a Latin device.
 * Thai has no case, so `text-transform` does nothing, while the tracking
 * pulls the tone marks away from the consonants they belong to and makes a
 * 11px label genuinely hard to read. Thai keeps the label's ROLE — small,
 * quiet, above the thing it names — and drops the mechanics.
 */

:lang(th) .kicker,
:lang(th) .panel__label {
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
}

:lang(th) .kicker,
:lang(th) .panel__label {
  font-size: 13px;
}

:lang(th) .store__kicker {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

/* Thai stacks a tone mark above an upper vowel, so the two-line label needs
 * more room than the Latin one does. */
:lang(th) .store {
  height: 62px;
}

:lang(th) .store__text {
  line-height: 1.45;
}

/* ── 404 ────────────────────────────────────────────────────────────── */

.notfound {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════
 * The landing page's own layer.
 *
 * Everything above this line is shared with the four document pages and is
 * the brand as it was drawn. Everything below is the landing page: motion,
 * depth and the section machinery a 2026 product page is expected to have.
 *
 * Three rules held the whole way down, because they are the identity rather
 * than taste:
 *   1. No colour that is not a token. No black — cocoa is as dark as it goes.
 *   2. Nothing decorative touches the mark or the wordmark: no gradient on
 *      them, no dimming, no rotation, no all-caps.
 *   3. Every motion is optional. `prefers-reduced-motion` turns all of it off
 *      (see the global rule near the top) and the page still reads.
 * ══════════════════════════════════════════════════════════════════════ */

/* ── Scroll progress, in the nav's hairline ─────────────────────────── */

.nav__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: var(--tangerine);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav[data-scrolled='true'] .nav__progress {
  opacity: 1;
}

/* ── Nav additions ──────────────────────────────────────────────────── */

.nav__lang {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.nav__lang a {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
}

.nav__lang a[aria-current='page'] {
  background: var(--sand);
  color: var(--ink);
}

.nav__lang a.th,
.lang a.th {
  line-height: 1.7;
}

@media (max-width: 860px) {
  .nav__lang {
    display: none;
  }
}

/* ── Reveal on scroll ───────────────────────────────────────────────────
 * Applied only once `motion.js` has run (it stamps `data-js` on <html> before
 * the body parses), so a page with JavaScript off shows everything, in place,
 * with no flash and nothing hidden.
 */

html[data-js] .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

html[data-js] .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Headlines arrive a word at a time, slightly out of focus — the same idea as
 * a camera settling. The words are wrapped by JS; the markup stays plain. */
html[data-js] .split__w {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 0.5em, 0);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 52ms);
}

html[data-js] .split.is-in .split__w {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

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

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero__badge {
  position: relative;
  border: 1px solid rgba(255, 106, 43, 0.22);
}

/* A live signal, not a decoration: it says the beta is open right now. */
.hero__badge::before {
  animation: pulse-dot 2.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 43, 0.5);
  }
  60% {
    box-shadow: 0 0 0 7px rgba(255, 106, 43, 0);
  }
}

.hero .h1 {
  letter-spacing: -0.03em;
}

/* The three promises that decide it for most parents, right under the fold. */
.microtrust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 22px;
}

.microtrust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bark);
  list-style: none;
}

.microtrust svg {
  width: 13px;
  height: 13px;
  flex: none;
  stroke: var(--tangerine);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.microtrust ul,
ul.microtrust {
  padding: 0;
  margin: 22px 0 0;
}

/* ── Photography ────────────────────────────────────────────────────────
 * Every photo is self-hosted in assets/photos (see CREDITS.md there). Nothing
 * is hotlinked: `_headers` ships `img-src 'self' data:`, so a remote image
 * would be blocked by the site's own CSP before it ever reached a reader.
 *
 * They are all warm interiors and skin on cream — chosen against the palette
 * rather than for the subject, because a cool-toned photo next to tangerine
 * makes both look wrong.
 */

.ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The photos run a touch warmer and softer than stock so they sit with the
   * paper instead of on top of it. */
  filter: saturate(0.94) contrast(0.98);
}

.ph-frame {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
}

/* ── The hero stage: a photograph, with the app in front of it ──────────
 * One grid cell holding both, so they overlap without absolute positioning
 * and the cell still sizes itself. The offsets shrink with the viewport and
 * disappear entirely on a phone, where there is no room to overlap anything.
 */

.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  justify-self: end;
  width: 100%;
}

.stage__photo,
.stage__device {
  grid-area: 1 / 1;
}

.stage__photo {
  aspect-ratio: 3 / 4;
  width: min(82%, 420px);
  justify-self: end;
  transform: translate3d(13%, -4%, 0);
  box-shadow: var(--shadow-lift);
}

.stage__device {
  justify-self: start;
  align-self: end;
  transform: translate3d(-2%, 6%, 0);
  z-index: 1;
}

@media (max-width: 1180px) {
  .stage__photo {
    width: min(76%, 340px);
    transform: translate3d(8%, -3%, 0);
  }
  .stage__device {
    transform: translate3d(0, 6%, 0);
  }
}

/* Below the two-column breakpoint the hero centres, and an overlap that was
 * depth at 1200px is just a collision at 600px. */
@media (max-width: 960px) {
  .stage {
    justify-self: center;
    justify-items: center;
  }
  .stage__photo {
    display: none;
  }
  .stage__device {
    justify-self: center;
    transform: none;
  }
}

/* ── Full-bleed photo bands ─────────────────────────────────────────────
 * Two of them, and they are the page's punctuation: the evening lamp under
 * the manifesto line, and a child mid-step under the closing call. Both run
 * edge to edge, which is the one thing a centred content column cannot do
 * and the reason the page stops reading as a stack of cards.
 */

.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
}

.band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.band__bg .ph {
  /* Pushed back so the type sits in front of it. A living room is a busy
   * photograph — sharp and bright, it competes with the one sentence the band
   * exists to carry. */
  filter: saturate(0.86) contrast(0.96) brightness(0.86);
}

/* Cocoa, not black — the palette has no black, and this is the one place a
 * flat overlay could quietly introduce one. */
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(46, 27, 16, 0.7);
}

.band--soft::after {
  background: rgba(46, 27, 16, 0.66);
}

.band .kicker {
  color: rgba(250, 247, 241, 0.62);
}

.band .lede,
.band p {
  color: rgba(250, 247, 241, 0.82);
}

/* `:not(.btn)` for the same reason as `.nav__links a` — the closing band's
 * button is an anchor, and this rule was painting its label #ffc39f on cream
 * at 1.45:1, which is very nearly invisible. */
.band a:not(.btn) {
  color: #ffc39f;
}

.band .small {
  color: rgba(250, 247, 241, 0.72);
}

.band .small a {
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ── Editorial plates — the two choices ─────────────────────────────────
 * Not two equal cards side by side. One drops below the other, each carries
 * its own photograph, and the type sits under the image the way a picture
 * caption does.
 */

.plates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.plate__img {
  display: block;
  aspect-ratio: 4 / 5;
}

.plate h3 {
  font-size: clamp(23px, 2.8vw, 30px);
  margin-bottom: 12px;
}

.plate p {
  color: var(--bark);
  max-width: 44ch;
}

/*
 * The number is the point of the section — there are exactly two choices, and
 * saying so in 96px says it faster than the sentence underneath does. It takes
 * the colour the app gives each kind of thing: sun for Stories, teal for
 * Moments (`tokens.ts`), so the numeral is also the legend.
 *
 * It is `aria-hidden`: a screen reader gets the heading and the copy, and "1"
 * read aloud before them would be noise.
 */
/* The numeral leads, above the photograph. Done with `order` rather than by
 * moving the markup: the picture stays first in the source, where it belongs
 * for anything reading the document linearly. */
.plate {
  display: flex;
  flex-direction: column;
}

.plate__lead {
  order: -1;
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 1.8vw, 22px);
  padding-bottom: 16px;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
}

.plate__num {
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 600;
  line-height: 0.74;
  letter-spacing: -0.05em;
  font-variant-numeric: lining-nums;
}

.plate--sun .plate__num {
  color: var(--sun);
}

.plate--teal .plate__num {
  color: var(--teal);
}

.plate__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* The image no longer needs its own top margin: the rule under the numeral is
 * what separates it from the copy above. */
.plate__img {
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

/* The drop is the whole point of the layout — take it away and this is a
 * two-column card grid again. */
@media (min-width: 861px) {
  .plate--drop {
    margin-top: clamp(40px, 7vw, 104px);
  }
}

@media (max-width: 860px) {
  .plates {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ── Marquee — the frameworks the content is actually built on ──────── */

.strip {
  border-block: 1px solid var(--line-soft);
  padding-block: 22px;
  overflow: hidden;
}

.strip__label {
  text-align: center;
  margin-bottom: 16px;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  flex: none;
  gap: clamp(24px, 4vw, 52px);
  padding-right: clamp(24px, 4vw, 52px);
  align-items: center;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--bark);
}

.marquee__item::before {
  content: '✦';
  color: var(--tangerine);
  font-size: 0.8em;
  font-weight: 400;
}

/* ── Manifesto — the line the whole product is ──────────────────────────
 * Reads dim and lights word by word as it passes the middle of the screen.
 * `motion.js` writes one number, `--lit`; the words do the rest in CSS.
 */

.manifesto {
  padding-block: clamp(72px, 12vw, 150px);
}

/* Lit by default, so a page without JavaScript shows the line in full ink
 * rather than a paragraph of 14%-opacity text. `motion.js` stamps `data-js`
 * on <html> before the body paints, and only then does it start dim. */
.mf {
  --lit: 99;
  font-size: clamp(26px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.18;
  max-width: 20ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

html[data-js] .mf {
  --lit: 0;
}

/*
 * Each word lights AND comes into focus as the line scrolls past — the blur
 * falls to zero on the same `--lit` counter that drives the opacity, so it is
 * one number doing both and no extra JavaScript. A sentence resolving out of
 * soft focus is also what the sentence is about.
 */
.mf__w {
  display: inline-block;
  color: var(--ink);
  opacity: clamp(0.14, calc((var(--lit) - var(--i)) * 0.85 + 0.14), 1);
  filter: blur(clamp(0px, calc((var(--i) - var(--lit) + 1) * 2px), 7px));
  transition:
    opacity 0.18s linear,
    filter 0.18s linear;
}

.mf__w--accent {
  color: var(--clay);
}

/* On the lamp band the same line runs the other way: dim cream lighting to
 * full cream, with tangerine on the turn. `--lit` and the markup do not
 * change — only which end of the palette the words start from. */
.band .mf__w {
  color: var(--cream);
  opacity: clamp(0.3, calc((var(--lit) - var(--i)) * 0.85 + 0.3), 1);
}

.band .mf__w--accent {
  color: #ffb489;
}

@media (prefers-reduced-motion: reduce) {
  .mf__w {
    opacity: 1;
    filter: none;
  }
}

.mf__sig {
  margin-top: 30px;
  margin-inline: auto;
  text-align: center;
  max-width: 46ch;
}

/* ── Bento ──────────────────────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.tile-card {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 2.8vw, 38px);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.tile-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tangerine) 32%, var(--line));
  box-shadow: var(--shadow-lift);
}

/*
 * The cursor carries a little warmth across the card. It is light, not a
 * fill: nothing in the identity's misuse list is touched by it, and it is
 * gone the moment the pointer leaves (and never drawn on a touch device).
 */
.tile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 106, 43, 0.12),
    transparent 62%
  );
}

@media (hover: hover) and (pointer: fine) {
  .tile-card:hover::before {
    opacity: 1;
  }
}

.tile-card--wide {
  grid-column: span 6;
}
.tile-card--half {
  grid-column: span 3;
}
.tile-card--third {
  grid-column: span 2;
}
.tile-card--two-thirds {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .tile-card--third,
  .tile-card--two-thirds,
  .tile-card--half {
    grid-column: span 6;
  }
}

.tile-card h3 {
  margin-bottom: 10px;
}

.tile-card p {
  color: var(--bark);
}

.tile-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.tile-card__eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow--sun::before {
  background: var(--sun);
}
.eyebrow--teal::before {
  background: var(--teal);
}
.eyebrow--tangerine::before {
  background: var(--tangerine);
}

/* The cocoa tile in the bento — one per grid, and it is the privacy one. */
.tile-card--ink {
  background: var(--ink);
  border-color: transparent;
  color: var(--cream);
}

.tile-card--ink h3,
.tile-card--ink .tile-card__eyebrow {
  color: var(--cream);
}

.tile-card--ink p {
  color: rgba(250, 247, 241, 0.74);
}

.tile-card--ink a {
  color: #ffb08a;
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ── Sticky showcase ────────────────────────────────────────────────────
 * The phone stays; the copy moves past it and changes the screen. This is
 * the only place on the site that shows more than one screen of the app, so
 * it is also the only place that has to keep them in step: `motion.js` reads
 * which step is in view and switches `data-active` on the matching screen.
 */

.show {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.show__sticky {
  position: sticky;
  top: 96px;
  display: grid;
  place-items: center;
  padding-block: 12px;
}

.show__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 12vh, 128px);
  padding-top: clamp(24px, 8vh, 90px);
  /* Deliberately deep: `position: sticky` releases as soon as its containing
   * block ends, so without this trailing room the phone slides up and out from
   * under the last step instead of staying with it. */
  padding-bottom: clamp(180px, 42vh, 400px);
}

.show__step {
  border-left: 2px solid var(--line);
  padding-left: clamp(20px, 2.4vw, 30px);
  transition:
    border-color 0.4s ease,
    opacity 0.4s ease;
  opacity: 0.5;
}

.show__step[data-current] {
  border-left-color: var(--tangerine);
  opacity: 1;
}

.show__step h3 {
  margin-bottom: 12px;
}

.show__step p {
  color: var(--bark);
  max-width: 46ch;
}

.show__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, Menlo, Monaco, 'SF Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

.show__screenName {
  color: var(--clay);
  font-weight: 700;
}

@media (max-width: 900px) {
  .show {
    grid-template-columns: 1fr;
  }
  .show__sticky {
    position: static;
    margin-bottom: 8px;
  }
  .show__steps {
    gap: 34px;
    padding: 0;
  }
  .show__step {
    opacity: 1;
  }
}

/* ── Parent panel, lifted ───────────────────────────────────────────── */

.panel {
  position: relative;
}

.panel__tag {
  position: absolute;
  top: -13px;
  right: clamp(18px, 3vw, 32px);
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FAQ ────────────────────────────────────────────────────────────────
 * A <details> list, so it opens with JavaScript off and every answer is in
 * the page for a search engine to read.
 */

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 8px;
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease;
}

.faq__item[open] {
  border-color: color-mix(in srgb, var(--tangerine) 34%, var(--line));
}

.faq__q {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 16px;
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 600;
  letter-spacing: -0.018em;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.4px solid var(--faint);
  border-bottom: 2.4px solid var(--faint);
  transform: rotate(45deg) translate(-2px, -2px);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.faq__item[open] .faq__q::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--tangerine);
}

.faq__a {
  padding: 0 16px 22px;
  color: var(--bark);
  max-width: 68ch;
}

.faq__a a {
  color: var(--clay);
  font-weight: 600;
  text-underline-offset: 3px;
}

.faq__item[open] .faq__a {
  animation: faq-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* ── Free Beta band ─────────────────────────────────────────────────── */

.beta {
  position: relative;
  overflow: hidden;
}

/* One soft tangerine light inside the cocoa card, far from the mark. */
.beta::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 460px;
  height: 460px;
  right: -140px;
  top: -220px;
  border-radius: 50%;
  background: var(--tangerine);
  opacity: 0.22;
  filter: blur(90px);
  pointer-events: none;
}

.beta > * {
  position: relative;
  z-index: 1;
}

.beta__item {
  border-top: 1px solid rgba(250, 247, 241, 0.16);
  padding-top: 18px;
}

/* ── Closing ────────────────────────────────────────────────────────── */

.close {
  position: relative;
  overflow: clip;
  padding-block: clamp(84px, 12vw, 148px);
}

/* The one place the mark sits over a photograph. The identity forbids the
 * full-colour mark on a photo, so this cut is the single-colour cream one —
 * the same rule the app follows for `tone`. */
.close .mark--onPhoto circle {
  fill: var(--cream);
}

/* ── The seal ───────────────────────────────────────────────────────────
 * A ring of type on an SVG <textPath>, turning once a minute around the
 * mark. No library: text on a path is what SVG is for, and the circle it
 * follows is one `d` attribute.
 *
 * The ring rotates; the mark does not. The identity does not allow the mark
 * to be rotated, so the two are separate elements that merely share a centre
 * — and the animation stops entirely under `prefers-reduced-motion`.
 */
.seal {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
}

/* The grid above centres this, so it must carry no margin of its own — a
 * bottom margin here does not push the mark down, it pushes it *up* by half,
 * off the ring's centre. Size lives here and nowhere else. */
.seal .mark--onPhoto {
  height: 58px;
  width: auto;
  margin: 0;
}

.seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: seal-turn 60s linear infinite;
}

.seal__ring text {
  fill: rgba(250, 247, 241, 0.68);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes seal-turn {
  to {
    transform: rotate(360deg);
  }
}

/* Thai says the same thing in far fewer glyphs, so it repeats the phrase three
 * times where English repeats it twice. Both then land within about 10% of the
 * ring's 578.1 circumference and `lengthAdjust` only has to nudge them. Two
 * repeats of the Thai stretched 1.63×, which opened gaps between the letters
 * and pulled the tone marks off their consonants. If either string is
 * reworded, re-check the repeat count against that number. */
:lang(th) .seal__ring text {
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.close .h2 {
  max-width: 16ch;
  margin-inline: auto;
  text-wrap: balance;
}

/* ── Section headers ────────────────────────────────────────────────── */

.sec-head {
  max-width: 62ch;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.sec-head--center {
  margin-inline: auto;
  text-align: center;
}

.sec-head .h2 {
  text-wrap: balance;
}

.sec-head .lede {
  margin-top: 16px;
}

.sec-head--center .lede {
  margin-inline: auto;
}

/* ── Thai, for the layer above ──────────────────────────────────────── */

:lang(th) .microtrust li,
:lang(th) .tile-card__eyebrow,
:lang(th) .plate__eyebrow,
:lang(th) .panel__tag,
:lang(th) .show__num {
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.7;
}

:lang(th) .tile-card__eyebrow,
:lang(th) .plate__eyebrow,
:lang(th) .panel__tag,
:lang(th) .show__num {
  font-size: 13px;
}

:lang(th) .plate__lead {
  align-items: flex-end;
}

:lang(th) .mf {
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 24ch;
}

:lang(th) .faq__q {
  letter-spacing: 0;
  line-height: 1.55;
}

:lang(th) .marquee__item {
  letter-spacing: 0;
}
