/* hirable-ai.com — launch site.
   Black and white, like the logo and like the product. The tokens below are the
   app's design system (app/frontend/styles.css) with the semantic colours taken
   out: on a marketing page nothing needs to mean "warning", so proven / claimed
   / missing are told apart by fill, outline and dash instead of by hue.

   Dark is the default here — the product follows the device, but a launch page
   gets to have a stance. The toggle in the header overrides it and is kept in
   localStorage under `hirable.site.theme`. */

:root {
  --ink-rgb: 255, 255, 255;
  --bg: #0b0b0c;
  --bg-deep: #050506;
  --bg-elevated: #151517;
  --surface: #1d1d1f;
  --surface-hover: #262628;
  --border: rgba(var(--ink-rgb), 0.12);
  --border-strong: rgba(var(--ink-rgb), 0.24);

  --text: #ffffff;
  --text-secondary: #d0d0d0;
  --text-muted: #a8a8a8;
  --text-faint: #7c7c80;

  --accent: #ffffff;
  --accent-contrast: #0b0b0c;
  --accent-soft: rgba(var(--ink-rgb), 0.1);
  --accent-wash: rgba(var(--ink-rgb), 0.05);

  --font-display: "Bricolage Grotesque", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --page-max: 1240px;
  --gutter: 24px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.5), 0 18px 48px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --ink-rgb: 11, 11, 12;
  --bg: #fafafa;
  --bg-deep: #ffffff;
  --bg-elevated: #ffffff;
  --surface: #f2f2f2;
  --surface-hover: #e9e9e9;
  --border: rgba(var(--ink-rgb), 0.1);
  --border-strong: rgba(var(--ink-rgb), 0.2);

  --text: #0b0b0c;
  --text-secondary: #3d3d3f;
  --text-muted: #555555;
  --text-faint: #767676;

  --accent: #0b0b0c;
  --accent-contrast: #ffffff;
  --accent-soft: rgba(var(--ink-rgb), 0.1);
  --accent-wash: rgba(var(--ink-rgb), 0.05);

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 18px 48px rgba(0, 0, 0, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

section {
  position: relative;
}

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

.band.tight {
  padding: 84px 0;
}

.eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--border-strong);
  flex: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 18px 0 0;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: 18px;
  max-width: 62ch;
}

.lede {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 62ch;
}

/* ------------------------------------------------------------- decorations */

/* A faint ruled grid that drifts as the page scrolls. Pure geometry, no image. */
.grid-bg {
  position: fixed;
  inset: -20vh -10vw;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(var(--ink-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(var(--ink-rgb), 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  transform: translate3d(0, var(--grid-shift, 0px), 0);
}

/* Cursor spotlight. Desktop pointers only — it follows the mouse in main.js. */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  background: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(var(--ink-rgb), 0.06),
    transparent 70%
  );
}

body.has-pointer .spotlight {
  opacity: 1;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 70;
  background: transparent;
}

.progress-rail span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
}

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

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-head.stuck {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--border);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  transition: height 0.35s var(--ease);
}

.site-head.stuck .head-inner {
  height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.brand .mark {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.brand:hover .mark {
  transform: rotate(-8deg) scale(1.06);
}

.brand .ai {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: 999px;
  padding: 2px 7px;
  transform: translateY(-7px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s,
    transform 0.25s var(--ease);
}

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

.btn.solid {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.btn.solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--ink-rgb), 0.18);
}

.btn.big {
  font-size: 15.5px;
  padding: 15px 28px;
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

.theme-toggle:hover {
  background: var(--accent-soft);
}

.theme-toggle svg {
  transition: transform 0.6s var(--ease), opacity 0.35s;
}

:root[data-theme="light"] .theme-toggle svg {
  transform: rotate(180deg);
}

.menu-btn {
  display: none;
}

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

.hero {
  position: relative;
  padding: 168px 0 96px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: var(--accent-wash);
}

.launch-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.launch-pill .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: ping 2.4s var(--ease) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  80%,
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(46px, 7.4vw, 96px);
  margin: 26px 0 0;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1s var(--ease) forwards;
}

.hero h1 .line:nth-child(2) > span {
  animation-delay: 0.12s;
}

@keyframes rise {
  to {
    transform: translateY(0);
  }
}

/* The word that cycles: "your code", "your commits", "your projects"… */
/* All the words share one grid cell, so the box is as wide as the longest of
   them and the sentence never reflows mid-swap. Its height matches the line
   box so the word sits on the same baseline as the text around it. */
.rotator {
  display: inline-grid;
  align-items: center;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.6em;
  text-align: left;
}

.rotator > span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  white-space: nowrap;
}

.rotator > span.on {
  opacity: 1;
  transform: translateY(0);
}

.rotator > span.out {
  opacity: 0;
  transform: translateY(-0.6em);
}

.hero-sub {
  font-size: 18.5px;
  color: var(--text-muted);
  margin-top: 28px;
  max-width: 54ch;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ------------------------------------------------------------- countdown */

.countdown {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.count-cell {
  min-width: 82px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg-elevated);
  text-align: center;
}

.count-cell .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  display: block;
}

.count-cell .u {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-top: 7px;
  display: block;
}

.count-cell.flip .n {
  animation: flip 0.4s var(--ease);
}

@keyframes flip {
  0% {
    transform: translateY(40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.hero-panel {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-panel .float-tag {
  position: absolute;
  z-index: 3;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.float-tag.a {
  top: -18px;
  left: -14px;
  animation: bob 6s ease-in-out infinite;
}

.float-tag.b {
  bottom: 40px;
  right: -22px;
  animation: bob 6s ease-in-out infinite 1.6s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ------------------------------------------------------- app chrome / UI */

.app {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.app-bar .lights {
  display: flex;
  gap: 6px;
}

.app-bar .lights i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: block;
}

.app-bar .url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
  margin: 0 auto;
}

.app-body {
  padding: 20px;
}

.ui-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ui-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.ui-meta {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 3px;
}

.section-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 10px;
  font-weight: 600;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.ui-grid {
  display: grid;
  gap: 12px;
}

.ui-grid.two {
  grid-template-columns: 1fr 1fr;
}

.ui-grid.hero-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

/* The readiness ring. Stroke is drawn on reveal by main.js. */
.ring {
  display: grid;
  place-items: center;
  position: relative;
}

.ring svg {
  transform: rotate(-90deg);
  overflow: visible;
}

.ring .track {
  fill: none;
  stroke: var(--accent-soft);
}

.ring .value {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: var(--circ) var(--circ);
  stroke-dashoffset: var(--circ);
  transition: stroke-dashoffset 1.6s var(--ease);
}

.ring .readout {
  position: absolute;
  text-align: center;
}

.ring .readout b {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  display: block;
  line-height: 1;
}

.ring .readout span {
  font-size: 10.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 13px;
  background: var(--bg);
}

.tile .k {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}

.tile .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.tile .c {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Evidence / language bars. Widths animate in from 0. */
.bar-row {
  display: grid;
  grid-template-columns: 116px 1fr 44px;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  padding: 5px 0;
}

.bar-row .name {
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-row .num {
  text-align: right;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  font-size: 11.5px;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: var(--accent-wash);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 999px;
  transition: width 1.3s var(--ease);
}

/* Claimed-but-unproven reads as a hatch: same shape, no substance. */
.bar i.hatch {
  background: repeating-linear-gradient(
    -45deg,
    rgba(var(--ink-rgb), 0.85) 0 3px,
    transparent 3px 7px
  );
  border: 1px solid var(--border-strong);
}

.bar i.half {
  background: rgba(var(--ink-rgb), 0.42);
}

.stack {
  display: flex;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}

.stack i {
  display: block;
  width: 0;
  transition: width 1.4s var(--ease);
}

.stack i.solid {
  background: var(--accent);
}

.stack i.mid {
  background: rgba(var(--ink-rgb), 0.4);
}

.stack i.hatch {
  background: repeating-linear-gradient(
    -45deg,
    rgba(var(--ink-rgb), 0.55) 0 3px,
    transparent 3px 7px
  );
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend i {
  width: 13px;
  height: 9px;
  border-radius: 3px;
  border: 1px solid var(--border-strong);
  display: block;
}

.legend i.solid {
  background: var(--accent);
}

.legend i.mid {
  background: rgba(var(--ink-rgb), 0.4);
}

.legend i.hatch {
  background: repeating-linear-gradient(-45deg, rgba(var(--ink-rgb), 0.55) 0 2px, transparent 2px 5px);
}

/* Skill chips — the app's three states, told apart without colour. */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 12.5px;
  color: var(--text-secondary);
  background: var(--bg);
}

.chip .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}

.chip.proven {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
}

.chip.proven .d {
  background: var(--accent);
}

.chip.claimed {
  border-style: dashed;
}

.chip.claimed .d {
  border: 1px solid var(--text-muted);
}

.chip.missing {
  border-style: dotted;
  color: var(--text-faint);
}

.chip.missing .d {
  background: repeating-linear-gradient(-45deg, var(--text-faint) 0 1px, transparent 1px 3px);
}

.chip small {
  font-size: 10.5px;
  color: var(--text-faint);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}

.pill.filled {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--bg);
  font-size: 13px;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.row:hover {
  border-color: var(--border-strong);
  transform: translateX(3px);
}

.row .sub {
  font-size: 11.5px;
  color: var(--text-faint);
}

.sparkline {
  width: 100%;
  height: 46px;
  overflow: visible;
}

.sparkline path.line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 1.8s var(--ease);
}

.sparkline path.area {
  fill: rgba(var(--ink-rgb), 0.07);
  stroke: none;
  opacity: 0;
  transition: opacity 1s var(--ease) 0.6s;
}

.columns {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 78px;
}

.columns i {
  flex: 1;
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 0.9s var(--ease);
}

.columns i.on {
  background: var(--accent);
}

.tex {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  overflow: hidden;
  white-space: pre;
}

.tex b {
  color: var(--text);
  font-weight: 600;
}

.paper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.paper h5 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0;
  letter-spacing: -0.02em;
}

.paper .rule {
  height: 1px;
  background: var(--border-strong);
  margin: 10px 0 12px;
}

.paper .ln {
  height: 6px;
  border-radius: 999px;
  background: var(--accent-wash);
  margin-bottom: 7px;
}

.paper .ln.dark {
  background: rgba(var(--ink-rgb), 0.22);
}

/* --------------------------------------------------------------- marquee */

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--accent-wash);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: slide 38s linear infinite;
}

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

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* -------------------------------------------------------- claim vs proof */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.proof:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.proof .glyph {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.proof.solid .glyph {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.proof.dashed .glyph {
  border-style: dashed;
}

.proof.dotted .glyph {
  border-style: dotted;
  color: var(--text-faint);
}

.proof h3 {
  font-size: 22px;
}

.proof p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-top: 10px;
}

.proof .word {
  position: absolute;
  right: 16px;
  top: 12px;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  color: rgba(var(--ink-rgb), 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* ---------------------------------------------------------- capabilities */

.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cap {
  background: var(--bg);
  padding: 30px 26px 34px;
  position: relative;
  transition: background 0.35s var(--ease);
}

.cap:hover {
  background: var(--bg-elevated);
}

.cap .n {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.cap h3 {
  font-size: 19px;
  margin: 14px 0 8px;
  font-weight: 700;
}

.cap p {
  font-size: 14px;
  color: var(--text-muted);
}

.cap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.cap:hover::after {
  transform: scaleX(1);
}

/* -------------------------------------------------------------- previews */

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.tab {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.tab:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.tab[aria-selected="true"] {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.shots {
  position: relative;
}

.shot {
  display: none;
  animation: shotIn 0.55s var(--ease);
}

.shot.on {
  display: block;
}

@keyframes shotIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.995);
  }
}

.shot-caption {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.shot-caption b {
  color: var(--text);
  font-weight: 600;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  position: absolute;
  top: 12px;
  left: 0;
}

.step .prog {
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 1s var(--ease);
}

.step h3 {
  font-size: 18px;
  margin: 18px 0 8px;
  font-weight: 700;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-elevated);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.plan.featured {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.plan.featured .plan-tag,
.plan.featured li,
.plan.featured .plan-sub {
  color: color-mix(in srgb, var(--accent-contrast) 72%, transparent);
}

.plan-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  font-weight: 600;
}

.plan h3 {
  font-size: 24px;
  margin: 14px 0 4px;
}

.plan .price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 16px 0 2px;
  line-height: 1;
}

.plan .price em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.6;
  font-family: var(--font-body);
}

.plan-sub {
  font-size: 13.5px;
  color: var(--text-muted);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.plan li svg {
  flex: none;
  margin-top: 3px;
  opacity: 0.8;
}

.plan .btn {
  width: 100%;
}

.plan.featured .btn {
  background: var(--accent-contrast);
  color: var(--accent);
  border-color: var(--accent-contrast);
}

.trial-note {
  margin-top: 26px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--text-muted);
  background: var(--accent-wash);
}

.trial-note b {
  color: var(--text);
}

/* ----------------------------------------------------------------- launch */

.launch {
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}

.launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      color-mix(in srgb, var(--accent-contrast) 8%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, color-mix(in srgb, var(--accent-contrast) 8%, transparent) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 20%, #000, transparent 75%);
  pointer-events: none;
}

.launch-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}

.launch .eyebrow {
  color: color-mix(in srgb, var(--accent-contrast) 60%, transparent);
}

.launch .eyebrow::before {
  background: color-mix(in srgb, var(--accent-contrast) 40%, transparent);
}

.date-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 122px);
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin: 20px 0 0;
  font-variant-numeric: tabular-nums;
}

.date-long {
  font-size: 17px;
  margin-top: 16px;
  color: color-mix(in srgb, var(--accent-contrast) 72%, transparent);
}

.launch .count-cell {
  background: color-mix(in srgb, var(--accent-contrast) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent-contrast) 22%, transparent);
}

.launch .count-cell .u {
  color: color-mix(in srgb, var(--accent-contrast) 60%, transparent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-contrast) 20%, transparent);
  align-items: start;
}

.tl .when {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.6;
  padding-top: 3px;
}

.tl h4 {
  font-size: 17px;
  font-weight: 700;
}

.tl p {
  font-size: 13.5px;
  margin-top: 5px;
  color: color-mix(in srgb, var(--accent-contrast) 68%, transparent);
}

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

.faq {
  border-top: 1px solid var(--border);
}

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

.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}

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

.qa summary:hover {
  color: var(--text-muted);
}

.qa summary .pm {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.4s var(--ease), background 0.3s;
  font-size: 15px;
  line-height: 1;
}

.qa[open] summary .pm {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.qa .answer {
  padding: 0 0 26px;
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 15px;
  animation: fadeUp 0.45s var(--ease);
}

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

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

.signup {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
}

.signup input {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.signup input::placeholder {
  color: var(--text-faint);
}

.signup input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash);
}

.signup-msg {
  font-size: 13.5px;
  margin-top: 14px;
  color: var(--text-muted);
  min-height: 20px;
}

.cta-band {
  text-align: center;
  padding: 130px 0;
}

.cta-band h2 {
  font-size: clamp(40px, 7vw, 86px);
}

.cta-band .signup {
  margin: 34px auto 0;
  justify-content: center;
}

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

.site-foot {
  border-top: 1px solid var(--border);
  padding: 54px 0 40px;
}

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

.foot-grid p {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 14px;
  max-width: 34ch;
}

.foot-links {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
}

.foot-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s, transform 0.25s var(--ease);
}

.foot-col a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.foot-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ------------------------------------------------------------- reveal fx */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}

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

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .hero-grid,
  .launch-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .caps,
  .proof-grid,
  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .launch {
    padding: 52px 32px;
  }

  .float-tag.b {
    right: 0;
  }
}

@media (max-width: 820px) {
  .nav,
  .head-actions .btn.solid {
    display: none;
  }

  .band {
    padding: 84px 0;
  }

  .hero {
    padding: 132px 0 70px;
  }

  .caps,
  .proof-grid,
  .plans,
  .steps,
  .ui-grid.two,
  .ui-grid.hero-split {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: 1fr 1fr;
  }

  .app-body {
    padding: 14px;
  }

  .bar-row {
    grid-template-columns: 92px 1fr 38px;
  }

  .float-tag {
    display: none;
  }

  .tl {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-head {
    margin-bottom: 38px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero h1 .line > span {
    transform: none;
  }
}
