:root {
  --bg0: #0a0d12;
  --bg1: #10151c;
  --ink: #edf1f6;
  --ink2: #c4cdd8;
  --steel: #94a1b0;
  --dim: #5b6774;
  --red: #db1c22;
  --red2: #e5343a;
  --line: rgba(148, 161, 176, 0.16);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: linear-gradient(175deg, var(--bg0), var(--bg1) 60%, var(--bg0));
  color: var(--ink);
  font-family: Inter, sans-serif;
}
a {
  color: var(--red2);
  text-decoration: none;
}
a:hover {
  color: #f05a5f;
}
.bsd {
  font-family: "Big Shoulders Display", sans-serif;
}
.trlogo {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  text-shadow:
    -8px 0 rgba(143, 192, 255, 0.3),
    -16px 0 rgba(143, 192, 255, 0.12);
}
.trlogo .tb {
  color: #7db1f5;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 64px;
}
.micro {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}
.kick {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red2);
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 14px 26px;
  font-family: "Big Shoulders Display";
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: #c0161c;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--steel);
  color: #fff;
}
.brandbar {
  padding: 46px 0 0;
}
.lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.lockup .x {
  color: var(--dim);
  font-size: 18px;
}
.lockup .trlogo {
  font-size: 30px;
}
.plogo {
  height: 42px;
  width: auto;
  aspect-ratio: 100 / 62;
  display: block;
}
.amark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pmark {
  font-family: "Big Shoulders Display";
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.pmark em {
  font-style: normal;
  color: var(--red2);
}
.brandline {
  height: 1px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  animation: sweep 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.55s forwards;
}
.bmark {
  opacity: 0;
  animation: markin 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.bmark-a {
  animation-delay: 0.05s;
}
.bmark-x {
  animation-delay: 0.3s;
}
.bmark-b {
  animation-delay: 0.42s;
}
@keyframes markin {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* While the splash intro plays, the header lockup waits its turn. */
.intro-hold .brandbar .bmark,
.intro-hold .brandbar .brandline {
  animation: none;
}
@keyframes sweep {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bmark,
  .brandline {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero {
  padding: 96px 0 104px;
}
.h1 {
  font-size: 84px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 18px 0 0;
}
.h1 em {
  font-style: normal;
  color: var(--red2);
}
.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel);
  max-width: 460px;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.herotop .lede {
  max-width: 560px;
}
/* Hero step tiles — the three things a tester does, one tile each, left to right. */
.htiles {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.htile {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(16, 21, 28, 0.5);
  padding: 26px 26px 26px;
  transition: border-color 0.2s;
}
.htile:hover {
  border-color: rgba(219, 28, 34, 0.45);
}
/* Thin connector across the gap, level with the numerals: 01 — 02 — 03. */
.htile:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -17px;
  width: 17px;
  height: 1px;
  background: var(--red);
  opacity: 0.55;
}
.hnum {
  display: block;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: var(--red2);
}
.htitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 20px 0 0;
}
.hline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  margin: 10px 0 22px;
  text-wrap: pretty;
}
.hline b {
  color: var(--ink2);
  font-weight: 600;
}
.htile .btn {
  margin-top: auto;
  justify-content: center;
  padding: 14px 16px;
  font-size: 16px;
}
.hnote {
  margin-top: 22px;
}
section.blk {
  padding: 88px 0;
}
.h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 14px 0 0;
}
.offer {
  background: var(--red);
  color: #fff;
}
.offergrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.offer .oh {
  font-family: "Big Shoulders Display";
  font-size: 52px;
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.offer .ok {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.offer p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
  max-width: 460px;
}
.ocol {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.btn-white {
  background: #fff;
  color: #b01218;
}
.btn-white:hover {
  background: #f3e9e9;
  color: #b01218;
}
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 520px;
}
.fcol .fh {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  margin-bottom: 14px;
}
.fcol div {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 8px;
}
.falogo {
  display: inline-block;
  margin-bottom: 14px;
}
.falogo .plogo {
  height: 30px;
}
.falogo:hover {
  opacity: 0.8;
}
.legal {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal span {
  font-size: 11.5px;
  color: var(--dim);
}
.rv-on .rv {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.62s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.62s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0ms);
}
.rv-on .rv-scale {
  transform: scale(0.985);
}
.rv-on .rv.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .rv-on .rv,
  .rv-on .rv-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 980px) {
  .wrap {
    padding: 0 32px;
  }
  .offergrid {
    grid-template-columns: 1fr;
  }
  /* Tiles stack as full-width rows: numeral | title + line | button. */
  .htiles {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .htile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 22px;
    align-items: center;
    padding: 20px 24px;
  }
  .htile:not(:last-child)::after {
    display: none;
  }
  .hnum {
    grid-row: 1 / 3;
    min-width: 1.3em; /* "01" is narrower than "02" — keep the title column aligned across tiles */
    font-size: 56px;
    line-height: 0.85;
  }
  .htitle {
    margin: 0;
    align-self: end;
  }
  .hline {
    margin: 6px 0 0;
    align-self: start;
  }
  .htile .btn {
    grid-column: 3;
    grid-row: 1 / 3;
    margin-top: 0;
    padding: 14px 22px;
  }
  .h1 {
    font-size: 60px;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .ocol {
    justify-self: start;
  }
  .offergrid {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
  .brandbar {
    padding-top: 34px;
  }
  .lockup {
    gap: 14px;
  }
  .lockup .trlogo {
    font-size: 23px;
  }
  .lockup .x {
    font-size: 15px;
  }
  .plogo {
    height: 31px;
  }
  .brandline {
    margin-top: 22px;
  }
  .hero {
    padding: 44px 0 48px;
  }
  section.blk {
    padding: 64px 0;
  }
  .h1 {
    font-size: 44px;
  }
  .h2 {
    font-size: 32px;
  }
  .offer .oh {
    font-size: 36px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .htiles {
    margin-top: 32px;
    gap: 10px;
  }
  .htile {
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 18px 18px 18px;
    text-align: left;
  }
  .hnum {
    font-size: 48px;
  }
  .htitle {
    font-size: 20px;
  }
  .hline {
    font-size: 13.5px;
  }
  .htile .btn {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 16px;
  }
  .ocol .btn {
    white-space: normal;
    text-align: center;
  }
  /* Centre-aligned mobile layout. */
  .hero > .wrap,
  #steps .wrap,
  #checklist .wrap,
  #feedback .wrap,
  .offergrid,
  footer .wrap {
    text-align: center;
    padding: 32px;
  }
  .lede {
    margin-left: auto;
    margin-right: auto;
  }
  .ocol {
    justify-self: center;
    align-items: center;
  }
  .fgrid {
    justify-items: center;
  }
  .legal {
    justify-content: center;
    text-align: center;
  }
}

/* Splash intro — logos build up big and centered, then hand over to the page. */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(175deg, var(--bg0), var(--bg1) 60%, var(--bg0));
  transition: opacity 0.75s ease 0.15s;
}
.intro-hold .intro,
.intro.out {
  display: flex;
}
.intro-hold {
  overflow: hidden;
}
.intro .ilay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  transition:
    transform 0.85s cubic-bezier(0.55, 0, 0.3, 1),
    opacity 0.7s ease 0.1s;
}
.intro .lockup {
  gap: clamp(16px, 4vw, 30px);
}
.intro .lockup .trlogo {
  font-size: clamp(38px, 9vw, 62px);
}
.intro .lockup .x {
  font-size: clamp(18px, 4vw, 28px);
}
.intro .lockup .plogo {
  height: clamp(50px, 11vw, 86px);
}
.intro .lockup .pmark {
  font-size: clamp(24px, 5vw, 40px);
}
.intro .brandline {
  width: min(420px, 72vw);
  animation-delay: 1.2s;
}
.intro .imark {
  opacity: 0;
  animation: markin 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.intro .imark-a {
  animation-delay: 0.15s;
}
.intro .imark-x {
  animation-delay: 0.6s;
}
.intro .imark-b {
  animation-delay: 0.8s;
}
.intro.out {
  opacity: 0;
  pointer-events: none;
}
.intro.out .ilay {
  transform: translateY(-26vh) scale(0.55);
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none !important;
  }
}

/* Android early-access lockup — robot mark + text wordmark shown together. */
.falogo.amark {
  display: inline-flex;
}
