/* Tev — tevapp.ai
   Tokens and components transcribed from the Claude Design source ("Tev Site.dc.html").
   Values are deliberately identical to the design's inline styles; do not "tidy" them.

   Two exceptions, both for contrast. In light mode the design's --faint (#8C8A85) reads at
   3.06:1 on --bg and --cyanText (#0E8390) at 3.99:1 — under the 4.5:1 that WCAG AA asks of
   normal-size text, and both are used for real copy, not decoration. They are darkened just
   far enough to pass (4.9:1 and 4.7:1 on --bg, and still 4.6:1 where --faint sits on the --elev chip). The dark palette already passes and is untouched. */

:root {
  --bg: #F5F1E8;
  --panel: #FBF9F4;
  --elev: #EEE9DD;
  --bar: #E9E5DC;
  --border: #D8D1C1;
  --hair: #E3DDD2;
  --ink: #14130F;
  --muted: #56524B;
  --faint: #6C6860;
  --mark: #14130F;
  --ghost: #C9C2B0;
  --cyan: #00B8CC;
  --cyanText: #0B7683;
  --cyanSoft: #EAF7F9;

  /* Archivo and Space Grotesk ship Latin only, so twelve of the thirteen locales rely on
     the fallbacks below for at least some glyphs — Armenian and CJK entirely, Cyrillic for
     body copy. Naming the platform faces explicitly is the difference between Japanese
     rendering in Hiragino and rendering in whatever the browser reaches for last. */
  --font-sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Noto Sans Armenian', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans Armenian', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

:root[data-theme="dark"] {
  --bg: #0F0F0E;
  --panel: #1A1A18;
  --elev: #232120;
  --bar: #2B2B29;
  --border: #3A3733;
  --hair: #2B2B29;
  --ink: #F5F1E8;
  --muted: #BDB7AA;
  --faint: #9C968A;
  --mark: #F5F1E8;
  --ghost: #3A3733;
  --cyan: #00B8CC;
  --cyanText: #2FC0CE;
  --cyanSoft: #123F46;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F0F0E;
    --panel: #1A1A18;
    --elev: #232120;
    --bar: #2B2B29;
    --border: #3A3733;
    --hair: #2B2B29;
    --ink: #F5F1E8;
    --muted: #BDB7AA;
    --faint: #9C968A;
    --mark: #F5F1E8;
    --ghost: #3A3733;
    --cyan: #00B8CC;
    --cyanText: #2FC0CE;
    --cyanSoft: #123F46;
  }
}

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

html { color-scheme: light dark; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--cyanText); text-decoration: none; }
a:hover { color: var(--cyan); }

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

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

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

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.section { padding-top: 104px; }
.section-first { padding-top: 88px; }

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand svg { display: block; flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}

.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14.5px; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--cyan); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 2px;
}

.theme-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--faint); }

/* ---------- language switcher ----------
   A native <select>: it is one tab stop, it is keyboard- and screen-reader-correct in
   every browser without any code, and on a phone it opens the platform picker rather than
   a custom menu nobody can scroll. */

.lang { display: inline-flex; align-items: center; }
.lang-select {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 5px 26px 5px 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  /* The chevron is a data: URI so it stays inside the CSP's img-src 'self' data:. */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='none' stroke='%236C6860' stroke-width='1.6' d='M1 1.5 5 5.5 9 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
}
.lang-select:hover { color: var(--ink); border-color: var(--border); }
:root[data-theme="dark"] .lang-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='none' stroke='%239C968A' stroke-width='1.6' d='M1 1.5 5 5.5 9 1.5'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lang-select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='none' stroke='%239C968A' stroke-width='1.6' d='M1 1.5 5 5.5 9 1.5'/%3E%3C/svg%3E");
  }
}
/* The options list is painted by the OS, which does not inherit the page palette. */
.lang-select option { background: var(--panel); color: var(--ink); }

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

.hero { display: flex; flex-wrap: wrap; gap: 64px; align-items: center; }
.hero-copy { flex: 1 1 460px; min-width: 320px; display: flex; flex-direction: column; gap: 26px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}
.dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; display: block; flex: none; }

h1.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.035em;
  text-wrap: pretty;
}

.lede {
  margin: 0;
  max-width: 56ch;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; max-width: 520px; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 14.5px;
  color: var(--faint);
}
.meta-row a { display: inline-flex; align-items: center; gap: 8px; }
.meta-row svg { flex: none; }

.footnote { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--faint); max-width: 46ch; }

/* ---------- waitlist forms ---------- */

.waitlist-plain { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.waitlist-plain input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
}
.waitlist-plain input[type="email"]:focus { border-color: var(--cyan); }
.waitlist-plain button {
  background: var(--ink);
  color: var(--bg);
  padding: 15px 24px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  flex: none;
}
.waitlist-plain button:hover { background: var(--cyan); color: #0A0A0A; }

.waitlist-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
}
.waitlist-pill:focus-within { border-color: var(--cyan); }
.waitlist-pill input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.2;
  outline: none;
  padding: 0;
}
.waitlist-pill button {
  background: var(--cyan);
  color: #0A0A0A;
  padding: 13px 22px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  flex: none;
}
.waitlist-pill button:hover { background: var(--ink); color: var(--bg); }

button[disabled] { opacity: .55; cursor: default; }

/* The browser default placeholder grey does not survive a contrast check on either
   palette. --faint does. */
input::placeholder { color: var(--faint); opacity: 1; }

/* the honeypot: never shown, never announced, no autofill */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--cyanText);
}
.form-status[hidden] { display: none; }
.form-status.is-error { color: #C4463A; }
:root[data-theme="dark"] .form-status.is-error { color: #FF8A7A; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form-status.is-error { color: #FF8A7A; }
}
.form-status.is-error .dot { background: currentColor; }

.consent { margin: 0; font-size: 13px; line-height: 1.55; color: var(--faint); }

/* ---------- editor preview ---------- */

.preview-col { flex: 1 1 440px; min-width: 320px; display: flex; justify-content: center; }
.preview {
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, .45);
}
.preview-chrome {
  height: 32px;
  background: var(--elev);
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 7px;
}
.preview-chrome span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); display: block; }
.preview-bar {
  background: var(--bar);
  padding: 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.preview-bar svg { flex: none; }
.preview-appmark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--elev);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex: none;
}
.preview-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.preview-canvas {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid var(--hair);
  background: repeating-linear-gradient(135deg, var(--elev) 0 8px, var(--panel) 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-timeline { display: flex; flex-direction: column; gap: 8px; }
.tl-row { display: flex; align-items: center; gap: 6px; }
.tl-row.tall { height: 22px; }
.tl-row.short { height: 14px; }
.tl { height: 100%; border-radius: 3px; }
.tl.ghost { background: var(--ghost); }
.tl.cyan { background: var(--cyan); }
.tl.chip { background: var(--elev); border: 1px solid var(--hair); }

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

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 6px;
  overflow: hidden;
}
.card {
  flex: 1 1 280px;
  background: var(--bg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card.wide { flex: 1 1 300px; gap: 10px; }
.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyanText);
}
/* h2 rather than h3: the cards follow the page's h1 with no heading between them, and a
   document that jumps h1 → h3 is harder to navigate with a screen reader. The size is the
   design's, the level is the correct one. */
.card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.card-line { font-size: 17px; line-height: 1.6; }
.card-sub { font-size: 16px; line-height: 1.6; color: var(--muted); }
.card-fine { font-size: 15px; line-height: 1.6; color: var(--faint); }

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

.split { display: flex; flex-wrap: wrap; gap: 56px; }
.split-lead { flex: 1 1 320px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; }
.split-body { flex: 1 1 460px; min-width: 300px; display: flex; flex-direction: column; }

h2.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.03em;
  text-wrap: pretty;
}

.step { display: flex; gap: 22px; padding: 26px 0; border-top: 1px solid var(--hair); }
.step:last-child { border-bottom: 1px solid var(--hair); }
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  padding-top: 4px;
  flex: none;
}
.step-copy { display: flex; flex-direction: column; gap: 7px; }
.step-copy .h { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.step-copy p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* ---------- closing panel ---------- */

.panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  text-align: center;
}
.panel-head { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 52ch; }
.panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.03em;
  text-wrap: pretty;
}
.panel-head p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.panel-form { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 480px; text-align: left; }
.panel-form-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 6px;
}
.panel-form-meta .ig { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--faint); margin-left: auto; }
.panel-form-meta .ig svg { flex: none; }

/* ---------- about ---------- */

.about-head { display: flex; flex-wrap: wrap; gap: 64px; }
.about-copy { flex: 1 1 520px; min-width: 320px; display: flex; flex-direction: column; gap: 26px; }
.about-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.035em;
  max-width: 18ch;
  text-wrap: pretty;
}
.about-copy .lede { max-width: 62ch; font-size: 19px; line-height: 1.62; }
.about-mark-col { flex: 0 1 300px; min-width: 240px; display: flex; align-items: flex-start; justify-content: center; padding-top: 12px; }
.about-mark {
  width: 180px;
  height: 180px;
  border-radius: 38px;
  background: var(--elev);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}
.about-mark svg { display: block; }

.prose-cols { flex: 1 1 480px; min-width: 300px; display: flex; flex-direction: column; gap: 22px; font-size: 17.5px; line-height: 1.65; color: var(--muted); }
.prose-cols p { margin: 0; text-wrap: pretty; }
.split-lead h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.03em;
  text-wrap: pretty;
}

/* ---------- legal pages ---------- */

.legal { max-width: 760px; margin: 0 auto; padding: 72px 32px 0; }
.legal h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.035em;
}
.legal .updated { margin: 18px 0 0; font-size: 14.5px; color: var(--faint); }
.legal .intro { margin: 26px 0 0; font-size: 18px; line-height: 1.62; color: var(--muted); text-wrap: pretty; }
.legal h2 {
  margin: 52px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  scroll-margin-top: 90px;
}
.legal h3 {
  margin: 30px 0 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.legal p, .legal li { font-size: 16.5px; line-height: 1.68; color: var(--muted); text-wrap: pretty; }
.legal p { margin: 16px 0 0; }
.legal ul, .legal ol { margin: 16px 0 0; padding-left: 22px; }
.legal li { margin-top: 9px; }
.legal strong { color: var(--ink); font-weight: 600; }

.legal-toc {
  margin: 40px 0 0;
  padding: 26px 28px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  background: var(--panel);
}
.legal-toc ol { margin: 14px 0 0; padding-left: 20px; }
.legal-toc li { margin-top: 7px; font-size: 15.5px; }

.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0 0; font-size: 15.5px; }
.legal-table th, .legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px 12px 0;
  border-top: 1px solid var(--hair);
  line-height: 1.6;
  color: var(--muted);
}
.legal-table th { color: var(--ink); font-weight: 600; }
.legal-table thead th { border-top: none; padding-top: 0; }

.legal-note {
  margin: 44px 0 0;
  padding: 20px 22px;
  border-left: 2px solid var(--cyan);
  background: var(--panel);
  border-radius: 0 6px 6px 0;
}
.legal-note p { margin: 0; font-size: 15px; }

/* ---------- 404 ---------- */

.notfound { max-width: 620px; margin: 0 auto; padding: 140px 32px 0; text-align: center; }
.notfound h1 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.notfound p { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: var(--muted); }
.notfound .back { display: inline-block; margin-top: 28px; font-size: 15px; }

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

.site-footer { margin-top: 104px; border-top: 1px solid var(--hair); }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 40px;
}
.footer-about { display: flex; flex-direction: column; gap: 14px; max-width: 34ch; }
.footer-about p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--faint); }
.footer-cols { display: flex; flex-wrap: wrap; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; line-height: 1.6; }
.footer-col .h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-col div:not(.h) { color: var(--muted); }
.footer-note { font-size: 13px; line-height: 1.5; color: var(--faint); max-width: 26ch; padding-top: 2px; }
.footer-legal {
  padding-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--faint);
}

/* ---------- script-specific typography ----------
   The display settings were drawn for Latin: negative tracking, 1.02 line-height, uppercase
   micro-labels with .16em of letter-spacing. Applied to CJK those choices are actively
   wrong — ideographs collide at negative tracking, there is no uppercase to apply, and
   letter-spaced Japanese reads as a ransom note. Armenian sits in between: it takes normal
   tracking but not the tight Latin display setting. */

html[lang^="zh"] h1,
html[lang^="ja"] h1,
html[lang^="zh"] h2,
html[lang^="ja"] h2,
html[lang^="zh"] .brand-word,
html[lang^="ja"] .brand-word {
  letter-spacing: 0;
  line-height: 1.3;
}

html[lang^="zh"] h1.display,
html[lang^="ja"] h1.display {
  line-height: 1.25;
}

html[lang^="zh"] .mono,
html[lang^="ja"] .mono,
html[lang^="zh"] .eyebrow,
html[lang^="ja"] .eyebrow,
html[lang^="zh"] .card-num,
html[lang^="ja"] .card-num,
html[lang^="zh"] .footer-col .h,
html[lang^="ja"] .footer-col .h,
html[lang^="zh"] .theme-toggle,
html[lang^="ja"] .theme-toggle {
  font-family: var(--font-sans);
  letter-spacing: .02em;
  text-transform: none;
}

html[lang="hy"] h1,
html[lang="hy"] h2,
html[lang="hy"] .brand-word {
  letter-spacing: -.01em;
}

html[lang="hy"] h1.display { line-height: 1.15; }

html[lang="hy"] .mono,
html[lang="hy"] .eyebrow,
html[lang="hy"] .theme-toggle {
  font-family: var(--font-sans);
  letter-spacing: .06em;
}

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

@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .legal { padding-left: 20px; padding-right: 20px; padding-top: 56px; }
  .notfound { padding-top: 96px; }
  .section { padding-top: 72px; }
  .section-first { padding-top: 56px; }
  .hero { gap: 48px; }
  .site-nav { gap: 18px; }
  .panel { padding: 48px 22px; }
  .site-footer { margin-top: 72px; }
  .footer-cols { gap: 32px; }
  .waitlist-pill { padding: 6px 6px 6px 18px; }
  .waitlist-pill button { padding: 13px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
