/*
  turingos-home.css — the Turing AI OS home page (turingos.html).

  Loaded after turingos.css, which the other OS pages (download, install,
  credits, thanks…) still share: that file keeps the navbar, the scroll reveal
  and the voice picker; this one is the home page's own layout, prefixed th-
  so neither can restyle the other.

  The dark sections take their colour from the wallpaper in the screenshots —
  the aurora night the desk ships with — so the pictures sit in the page
  rather than on it.
*/

body.tos-home {
  --th-night: #060913;
  --th-night-2: #0b1122;
  --th-on-night: #eef2fb;
  --th-on-night-dim: rgba(238, 242, 251, 0.62);
  --th-line-night: rgba(238, 242, 251, 0.12);
  --th-aurora: #3de0b0;
  --th-blue: #1f6bff;
  --th-tint: #f4f6fa;
  --th-glow-light:
    radial-gradient(60% 50% at 50% 40%, rgba(31, 107, 255, 0.16), transparent 70%),
    radial-gradient(40% 40% at 20% 30%, rgba(61, 224, 176, 0.14), transparent 70%),
    radial-gradient(40% 40% at 80% 30%, rgba(124, 70, 239, 0.12), transparent 70%);
  --th-radius: 18px;
  --th-shadow: 0 30px 80px -30px rgba(9, 12, 20, 0.35), 0 2px 6px rgba(9, 12, 20, 0.06);
}

/* ── Navbar ────────────────────────────────────────────── */

body.tos.tos-home .navbar-wrapper {
  position: sticky !important;
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tos-line);
}

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

.th-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 16px clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(50% 40% at 50% 12%, rgba(31, 107, 255, 0.12), transparent 70%),
    radial-gradient(35% 35% at 15% 20%, rgba(61, 224, 176, 0.12), transparent 70%),
    radial-gradient(35% 35% at 85% 20%, rgba(124, 70, 239, 0.10), transparent 70%),
    #fff;
  color: var(--tos-text);
  text-align: center;
}

.th-hero-copy {
  max-width: 64rem;
  margin: 0 auto;
}

.th-kicker {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--th-line-night);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--th-aurora);
  background: rgba(255, 255, 255, 0.04);
}

.th-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--tos-text);
}

/* The second line in the site's silver, as the Computers headline is. */
.th-hero h1 span {
  background: var(--tos-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.th-hero-lead {
  max-width: 38rem;
  margin: 1.6rem auto 0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.6;
  color: var(--tos-muted);
}

/* The spoken line: the mark on its disc, and a request beside it that changes
   every few seconds. Its height is fixed so the buttons below do not jump. */
.th-say {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 4.6rem;
  max-width: 44rem;
  margin: 2rem auto 0;
  padding: 0.55rem 1.4rem 0.55rem 0.6rem;
  border: 1px solid var(--tos-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--th-shadow);
}

.th-say-mark {
  flex: none;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
}

.th-say-line {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: var(--tos-text);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.th-say.is-out .th-say-line {
  opacity: 0;
  transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
  .th-hero-shot img { animation: none; }
}

.th-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.th-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.th-btn:hover { transform: translateY(-1px); }

.th-btn-light {
  background: var(--tos-text);
  color: #fff !important;
  box-shadow: 0 12px 30px -12px rgba(9, 12, 20, 0.5);
}

.th-btn-light:hover { background: #222a38; }

.th-btn-glass {
  background: #fff;
  border: 1px solid var(--tos-line-strong);
  color: var(--tos-text) !important;
}

.th-btn-glass:hover { background: var(--th-tint); }

.th-btn-dark {
  background: var(--tos-text);
  color: #fff !important;
}

.th-btn-dark:hover { background: #222a38; }

.th-btn-sm {
  min-height: 2.4rem;
  padding: 0 1.1rem;
  font-size: 0.92rem;
}

.th-hero-shot {
  position: relative;
  max-width: 76rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}

.th-hero-shot::before {
  /* The desk's own light, spilling round the edge of the picture. */
  content: "";
  position: absolute;
  inset: 8% 6% -6%;
  background: radial-gradient(closest-side, rgba(31, 107, 255, 0.22), rgba(61, 224, 176, 0.12), transparent);
  filter: blur(40px);
  z-index: 0;
}

.th-hero-shot:not(.th-hero-shot-2) img {
  animation: th-settle 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes th-settle {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.th-hero-shot img,
.th-feature img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--th-radius);
  border: 1px solid var(--tos-line);
  box-shadow: 0 40px 100px -40px rgba(9, 12, 20, 0.45);
}

.th-hero-shot-2 { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* The name of what the picture shows, set above it the way the OS names things. */
.th-shot-name {
  position: relative;
  z-index: 1;
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--th-blue);
}

.th-hero-shot figcaption {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 1.1rem auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-hero-shot figcaption strong { color: var(--tos-text); font-weight: 600; }

.th-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 76rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--tos-line);
  border-radius: var(--th-radius);
  overflow: hidden;
  background: var(--tos-line);
}

.th-facts li {
  padding: 1.2rem 1.3rem;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--tos-muted);
  text-align: left;
}

.th-facts strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.08rem;
  color: var(--tos-text);
}

/* ── The bar that follows the reader ───────────────────── */

.th-subnav {
  position: sticky;
  top: var(--t-nav-h, 74px);
  z-index: 1500;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tos-line);
}

.th-subnav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 76rem;
  min-height: 3.4rem;
  margin: 0 auto;
  padding: 0 16px;
}

.th-subnav-name {
  flex: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tos-text) !important;
  text-decoration: none !important;
}

.th-subnav-links {
  display: flex;
  flex: 1 1 auto;
  gap: 0.15rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.th-subnav-links::-webkit-scrollbar { display: none; }

.th-subnav-links a {
  flex: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tos-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease;
}

.th-subnav-links a:hover { color: var(--tos-text) !important; }

.th-subnav-links a.is-active {
  background: var(--th-tint);
  color: var(--tos-text) !important;
}

.th-subnav .th-btn { flex: none; }

/* ── The AI ────────────────────────────────────────────── */

.th-section-ai { padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.th-section-ai .th-models-split { margin-bottom: 0; }

/* ── How it works ──────────────────────────────────────── */

.th-section-how { padding-top: clamp(3.5rem, 7vw, 5.5rem); }

.th-how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: how;
}

.th-how li {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  border-radius: var(--th-radius);
  background: var(--th-tint);
}

.th-how-n {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--tos-text);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.th-how h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.th-how p {
  margin: 0;
  line-height: 1.6;
  color: var(--tos-muted);
}

/* ── Sections ──────────────────────────────────────────── */

.th-section {
  padding: clamp(4.5rem, 10vw, 8rem) 16px;
  background: #fff;
  color: var(--tos-text);
}

.th-section-tint { background: var(--th-tint); }

.th-section-dark {
  background:
    radial-gradient(50% 35% at 80% 0%, rgba(124, 70, 239, 0.08), transparent 70%),
    radial-gradient(50% 35% at 10% 100%, rgba(61, 224, 176, 0.08), transparent 70%),
    var(--th-tint);
  color: var(--tos-text);
}

.th-wrap {
  max-width: 76rem;
  margin: 0 auto;
}

.th-head {
  max-width: 46rem;
  margin: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.th-eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--th-blue);
}

.th-section-dark .th-eyebrow { color: var(--tos-teal); }

.th-section h2,
.th-split-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.th-section-dark h2 { color: var(--tos-text); }

.th-lead {
  margin: 1.1rem 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-section-dark .th-lead { color: var(--tos-muted); }

.th-note {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-section-dark .th-note { color: var(--tos-muted); }
.th-section-dark a:not(.th-btn) { color: var(--th-blue); }

/* ── What you can ask ──────────────────────────────────── */

.th-asks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.th-ask {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid var(--tos-line);
  border-radius: var(--th-radius);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.th-ask:hover {
  border-color: rgba(31, 107, 255, 0.35);
  box-shadow: 0 16px 40px -24px rgba(31, 107, 255, 0.45);
}

.th-ask-said {
  margin: 0 0 0.8rem;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--tos-text);
}

.th-ask-done {
  position: relative;
  margin: 0 0 0.9rem;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--tos-muted);
}

.th-ask-done::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--th-aurora), var(--th-blue));
}

.th-ask-reply {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: auto 0 0;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--tos-line-strong);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--tos-text);
}

.th-ask-reply svg {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  fill: var(--th-blue);
  color: var(--th-blue);
}

.th-gate {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--th-radius);
  background: var(--th-night);
  color: var(--th-on-night);
}

.th-gate-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 14px;
  background: rgba(61, 224, 176, 0.12);
}

.th-gate-mark svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: var(--th-aurora);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.th-gate h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: #fff;
}

.th-gate p {
  margin: 0;
  max-width: 50rem;
  line-height: 1.6;
  color: var(--th-on-night-dim);
}

/* ── Talking to it ─────────────────────────────────────── */

.th-talk {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.th-talk-item {
  padding-top: 1.4rem;
  border-top: 2px solid var(--tos-text);
}

.th-talk-big {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--tos-text);
}

.th-talk-big kbd {
  display: inline-block;
  padding: 0.15em 0.55em 0.2em;
  border: 1px solid var(--tos-line-strong);
  border-bottom-width: 3px;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.8em;
  color: var(--tos-text);
}

.th-talk-item p:not(.th-talk-big) {
  margin: 0;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-voices {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: calc(var(--th-radius) + 6px);
  background: #fff;
  box-shadow: 0 1px 0 var(--tos-line), 0 24px 60px -40px rgba(9, 12, 20, 0.3);
}

.th-voices-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 2.5rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.th-voices-head h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.th-voices-head p {
  margin: 0;
  line-height: 1.6;
  color: var(--tos-muted);
}

/* ── The desk ──────────────────────────────────────────── */

.th-feature { margin: 0; }

.th-feature figcaption {
  max-width: 44rem;
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-feature figcaption strong { color: var(--tos-text); font-weight: 600; }

.th-topbar {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

/* The bar at its own size: 32 px tall, as the screen draws it. On a narrow
   screen it scrolls sideways rather than shrinking to a line. */
.th-topbar-strip {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--tos-line);
  background: #eceff4;
  box-shadow: var(--th-shadow);
  overflow-x: auto;
}

.th-topbar-strip img {
  flex: none;
  display: block;
  height: 32px;
  width: auto;
}

.th-topbar figcaption {
  max-width: 44rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-topbar figcaption strong { color: var(--tos-text); font-weight: 600; }

.th-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* ── Apps ──────────────────────────────────────────────── */

.th-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.th-card-shot { margin: 0; }

.th-card-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--th-radius);
  border: 1px solid var(--tos-line);
  box-shadow: var(--th-shadow);
}

.th-card-shot figcaption {
  margin-top: 1rem;
  line-height: 1.55;
  color: var(--tos-muted);
}

.th-card-shot figcaption strong { color: var(--tos-text); }

.th-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.th-app {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-top: 1px solid var(--tos-line);
}

.th-app img {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.th-app h3 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.th-app p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--tos-muted);
}

/* ── Privacy ───────────────────────────────────────────── */

.th-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.th-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.th-points li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--tos-line);
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-points strong { color: var(--tos-text); font-weight: 600; }

.th-window { margin: 0; }

.th-window img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--th-radius);
  border: 1px solid var(--tos-line);
  box-shadow: var(--th-shadow);
}

/* ── The AI and its prices ─────────────────────────────── */

.th-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.th-tier {
  padding: 1.8rem 1.7rem;
  border: 1px solid var(--tos-line);
  border-radius: calc(var(--th-radius) + 4px);
  background: #fff;
}

.th-tier-main {
  background: var(--th-night);
  border-color: var(--th-night);
  color: var(--th-on-night);
  box-shadow: 0 30px 70px -30px rgba(9, 12, 20, 0.6);
}

.th-tier-name {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tos-dim);
}

.th-tier-main .th-tier-name { color: var(--th-aurora); }

.th-tier-price {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--tos-text);
}

.th-tier-main .th-tier-price { color: #fff; }

.th-tier-price small {
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--tos-muted);
}

.th-tier-main .th-tier-price small { color: var(--th-on-night-dim); }

.th-tier-line {
  margin: 0.7rem 0 1.2rem;
  font-weight: 500;
  color: var(--tos-text);
}

.th-tier-main .th-tier-line { color: #fff; }

.th-tier ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.th-tier li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-top: 1px solid var(--tos-line);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--tos-muted);
}

.th-tier-main li {
  border-top-color: var(--th-line-night);
  color: var(--th-on-night-dim);
}

.th-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.85rem;
  height: 0.45rem;
  border-left: 2px solid var(--th-blue);
  border-bottom: 2px solid var(--th-blue);
  transform: rotate(-45deg);
}

.th-tier-main li::before { border-color: var(--th-aurora); }

.th-models-split {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.th-models-h {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.th-plans-more {
  margin-top: 1.6rem;
  border-top: 1px solid var(--tos-line);
}

.th-plans-more summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 600;
  color: var(--tos-text);
}

.th-plans-more summary::-webkit-details-marker { display: none; }

.th-plans-more summary::before {
  content: "+";
  display: inline-block;
  width: 1.5rem;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--tos-dim);
  line-height: 0;
}

.th-plans-more[open] summary::before { content: "–"; }

.th-plans-more .th-plans { margin-bottom: 0.4rem; }
.th-plans-more > .th-note { margin: 0.8rem 0 1rem; }

.th-brains {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.th-brain {
  padding: 1.6rem;
  border-radius: var(--th-radius);
  background: var(--th-tint);
}

.th-brain-local {
  background: linear-gradient(160deg, rgba(61, 224, 176, 0.16), rgba(31, 107, 255, 0.08));
}

.th-brain-tier {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tos-dim);
}

.th-brain h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.th-brain p:not(.th-brain-tier) {
  margin: 0;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-plans {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.th-plans th {
  padding: 0 0.9rem 0.7rem 0;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: var(--tos-dim);
}

.th-plans td {
  padding: 0.85rem 0.9rem 0.85rem 0;
  border-top: 1px solid var(--tos-line);
  vertical-align: top;
  line-height: 1.5;
  color: var(--tos-muted);
}

.th-plans td:first-child {
  font-weight: 600;
  color: var(--tos-text);
  white-space: nowrap;
}

.th-plans td:nth-child(2) {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--tos-text);
  white-space: nowrap;
}

/* ── Questions ─────────────────────────────────────────── */

.th-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 2rem clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.th-faq-wrap .th-head { margin-bottom: 0; }

.th-faq details:first-child { border-top: 0; }
.th-faq details p a { color: var(--th-blue); }

/* ── Get it ────────────────────────────────────────────── */

.th-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.th-steps li {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--tos-line);
  border-radius: var(--th-radius);
  background: #fff;
}

.th-step-n {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--tos-text);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.th-steps h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--tos-text);
}

.th-steps p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tos-muted);
}

.th-get-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.th-get-foot .th-note {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Narrow screens ────────────────────────────────────── */

@media (max-width: 991px) {
  .th-how,
  .th-tiers,
  .th-faq-wrap { grid-template-columns: 1fr; }
  .th-subnav-name { display: none; }
  .th-facts,
  .th-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .th-asks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .th-talk,
  .th-brains { grid-template-columns: 1fr; }
  .th-split,
  .th-voices-head { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .th-facts,
  .th-steps,
  .th-asks,
  .th-pair,
  .th-showcase,
  .th-apps { grid-template-columns: 1fr; }
  .th-gate { flex-direction: column; }
  .th-hero h1 br { display: none; }
  .th-say { border-radius: 22px; padding: 0.8rem 1rem; }
  /* The site's own navbar wraps to two rows here and would hide a sticky
     bar; the section links stay in the flow instead. */
  .th-subnav { position: static; }
  .th-subnav .th-btn { display: none; }
  .th-hero { padding-top: 3rem; }
  .th-plans thead { display: none; }
  .th-plans tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--tos-line);
  }
  .th-plans td { padding: 0; border: 0; }
  .th-plans td:last-child { grid-column: 1 / -1; }
}
