/* Trax home — standalone light layout (does not rely on Next/_next for hosting) */

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins-700.woff2") format("woff2");
}

html {
  --font-poppins: "Poppins", system-ui, sans-serif;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  font-family: var(--font-poppins);
}

.font-sans,
.font-heading {
  font-family: var(--font-poppins);
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-display {
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.04;
}

.text-hero {
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.02;
}

html.bg-white,
html.bg-white body {
  background: #fff;
  color: #050507;
}

.bg-wash { background-color: #f5f7fa; }

.th-wrap {
  width: min(80rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .th-wrap { width: min(80rem, calc(100% - 3rem)); }
}

@media (min-width: 1024px) {
  .th-wrap { width: min(80rem, calc(100% - 4rem)); }
}

/* Navbar */
.th-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 4.25rem;
  background: #e6e8eb;
  transition: background 0.2s ease;
}

.th-header.is-scrolled {
  background: #fff;
}

.th-nav {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.th-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.th-logo img {
  height: 2.585rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .th-logo img { height: 2.805rem; }
}

.th-links {
  display: none;
  align-items: center;
  gap: 1.65rem;
}

@media (min-width: 1024px) {
  .th-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.th-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(5, 5, 7, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

.th-links a:hover { color: #050507; }

.th-links a.is-current {
  color: #17A3AF;
  font-weight: 600;
}

.th-links a.is-current:hover {
  color: #17A3AF;
}

.th-drawer a.is-current {
  color: #17A3AF;
  font-weight: 600;
}

.th-links a.th-nav-live.is-current,
.th-drawer a.th-nav-live.is-current,
.th-links a.th-nav-live.is-current:hover,
.th-drawer a.th-nav-live.is-current:hover {
  background: #17A3AF;
  color: #fff;
}

.th-nav-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  border-radius: 999px;
  background: #002430;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.th-links a.th-nav-live { color: #fff; }

.th-nav-live:hover,
.th-links a.th-nav-live:hover {
  background: #013844;
  color: #fff;
  transform: scale(1.03);
}

.th-nav-live svg {
  flex-shrink: 0;
}

.th-nav-live i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: th-pulse 1.2s ease-in-out infinite;
}

.th-actions {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.th-lang {
  position: relative;
}

.th-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(5, 5, 7, 0.1);
  background: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.55rem 0.3rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #050507;
  cursor: pointer;
}

.th-lang-toggle svg {
  width: 12px;
  height: 12px;
  opacity: 0.45;
}

.th-lang.is-open .th-lang-toggle svg {
  transform: rotate(180deg);
}

.th-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 60;
  min-width: 9.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(5, 5, 7, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.18);
}

.th-lang-menu[hidden] { display: none; }

.th-lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #050507;
  cursor: pointer;
  text-align: left;
}

.th-lang-menu button:hover { background: #f5f7fa; }

.th-lang-menu button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.th-lang-menu button.is-active {
  font-weight: 600;
  background: rgb(20 107 82 / 0.08);
}

.th-btn-mint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: #002430;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.th-btn-mint .th-iso {
  display: block;
  height: 1.05rem;
  width: auto;
}

.th-btn-mint:hover {
  background: #013844;
  transform: scale(1.03);
}

.th-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 7, 0.14);
  background: #fff;
  color: #050507;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.55rem 1.15rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.th-btn-outline:hover {
  border-color: rgba(5, 5, 7, 0.32);
  background: #f5f7fa;
}

.th-menu-btn {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #050507;
  border-radius: 0.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .th-links,
  .th-actions { display: flex; }
  .th-menu-btn { display: none; }
}

.th-drawer {
  display: none;
  position: fixed;
  inset: 4.25rem 0 0;
  z-index: 40;
  background: #fff;
  padding: 1.25rem 1.25rem 2rem;
  border-bottom: 1px solid rgba(5, 5, 7, 0.06);
}

.th-drawer.is-open { display: block; }

.th-drawer a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #050507;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 5, 7, 0.06);
}

.th-drawer .th-btn-mint { margin-top: 1.25rem; width: 100%; }

.th-drawer a.th-nav-live,
.th-drawer a.th-btn-mint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 100%;
  height: 2.85rem;
  box-sizing: border-box;
  border-bottom: 0;
  white-space: nowrap;
}

.th-drawer a.th-nav-live {
  margin-top: 1.15rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #fff;
}

.th-drawer a.th-btn-mint {
  margin-top: 0.7rem;
  padding: 0 1.15rem;
}

.th-drawer a.th-btn-mint .th-iso {
  display: block;
  height: 1.05rem;
  width: auto;
  flex-shrink: 0;
}

/* Hero + plataforma: shared wash so the mint orb can continue into the next section */
.th-band {
  position: relative;
  background: #e6e8eb;
  overflow-x: clip;
}

/* Hero */
.th-clip {
  position: absolute;
  width: 0;
  height: 0;
}

.th-hero {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 4.25rem 0 0;
  overflow: hidden;
  background: transparent;
}

.th-hero-grid {
  display: grid;
  position: absolute;
  inset: 0;
  z-index: 2;
  gap: 0;
  align-items: center;
}

.th-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 0 3.25rem;
  background: transparent;
  max-width: 38rem;
}

.th-hero .th-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.32);
  color: #fff;
  letter-spacing: 0.16em;
}

.th-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #146b52;
}

.th-hero h1 {
  margin: 1rem 0 0;
  max-width: none;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  color: #fff;
  hyphens: none;
}

.th-hero-line {
  display: block;
  white-space: nowrap;
}

.th-hero-place {
  white-space: nowrap;
}

.th-mark {
  color: #17A3AF;
}

.th-lead {
  margin: 0.85rem 0 0;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(5, 5, 7, 0.6);
}

.th-checks {
  list-style: none;
  margin: 2.45rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.th-hero .th-checks {
  margin-top: 1.85rem;
}

@media (min-width: 1024px) {
  .th-hero .th-checks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.7rem 1.35rem;
  }
}

.th-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(5, 5, 7, 0.72);
}

.th-hero .th-checks li {
  color: rgba(255, 255, 255, 0.86);
}

.th-checks svg {
  flex-shrink: 0;
  color: #17A3AF;
}

.th-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.th-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.th-hero-cta {
  display: flex;
  justify-content: center;
  padding: 0.35rem 1rem 2.25rem;
}

.th-hero-cta .th-hero-actions {
  margin-inline: auto;
}

.th-hero .th-cta-row {
  margin-top: 0;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 640px) {
  .th-hero .th-cta-row {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .th-hero-cta {
    padding: 0.25rem 0 2.5rem;
  }
}

.th-hero-note {
  width: 0;
  min-width: 100%;
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(5, 5, 7, 0.42);
}

.th-download {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #050507;
}

.th-split .th-download,
#plataforma .th-cta-row,
#camaras .th-cta-row {
  margin-top: 3.25rem;
}

#plataforma .th-cta-row {
  margin-top: 2.25rem;
}

@media (min-width: 1024px) {
  #camaras .th-split {
    align-items: stretch;
  }
  #camaras .th-split > div:first-of-type {
    display: flex;
    flex-direction: column;
  }
  #plataforma .th-download,
  #camaras .th-cta-row {
    margin-top: auto;
    padding-top: 3rem;
    align-self: flex-start;
  }
  #plataforma .th-cta-row {
    margin-top: 2.25rem;
    padding-top: 0;
    align-self: flex-start;
  }
  #camaras .th-split-media {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  #camaras .th-split {
    grid-template-columns: 0.92fr 1.08fr;
  }
  #camaras h2 {
    max-width: 16ch;
  }
}

.th-download-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 2.85rem;
  padding: 0 1.15rem;
  border: 1.5px solid #050507;
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.th-download-stores {
  display: block;
  height: 1.35rem;
  width: auto;
}

.th-download:hover .th-download-pill {
  background: #f5f7fa;
}

.th-stats {
  margin: 1.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(5, 5, 7, 0.42);
}

.th-hero-visual {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: min(100%, 1584px);
  margin-inline: auto;
}

.th-hero-orb {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 12%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-42%, 20%);
  filter: blur(72px);
  opacity: 0.9;
  background: radial-gradient(circle at 40% 40%, rgb(62 219 160 / 0.42), rgb(62 219 160 / 0.08) 62%, transparent 72%);
}

.th-hero-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  height: auto;
}

.th-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.42) 0%, rgb(0 0 0 / 0.22) 36%, rgb(0 0 0 / 0.06) 58%, transparent 74%);
}

.th-hero-photo img {
  display: block;
  width: 100%;
  max-width: 1584px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1023px) {
  .th-hero-visual {
    width: 100%;
    min-height: calc(100svh - 4.25rem);
  }
  .th-hero-photo {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
  }
  .th-hero-photo::after {
    display: block;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.38) 0%, rgb(0 0 0 / 0.66) 55%, rgb(0 0 0 / 0.78) 100%);
  }
  .th-hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 68% 48%;
  }
  .th-hero-grid {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - 4.25rem);
    display: flex;
    align-items: center;
  }
  .th-hero-copy {
    padding: 1.5rem 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .th-hero-copy {
    padding: 2.25rem 0 3.5rem;
  }
  .th-hero-photo::after {
    background: linear-gradient(90deg, rgb(0 0 0 / 0.34) 0%, rgb(0 0 0 / 0.16) 32%, rgb(0 0 0 / 0.05) 52%, transparent 68%);
  }
  .th-lead { font-size: 1.125rem; }
}

.th-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  line-height: 0;
}

.th-hero-scroll img {
  display: block;
  width: 2.85rem;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  opacity: 0.82;
  animation: th-scroll-hint 2.8s ease-in-out infinite;
}

.th-hero-scroll:hover img,
.th-hero-scroll:focus-visible img {
  opacity: 1;
}

@keyframes th-scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(4px); opacity: 1; }
}

@media (min-width: 1024px) {
  .th-hero-scroll {
    bottom: 1.25rem;
  }
  .th-hero-scroll img {
    width: 3.15rem;
  }
}

/* Pillars */
.th-section {
  padding: 5.5rem 0;
  scroll-margin-top: 5rem;
}

#plataforma {
  position: relative;
  z-index: 0;
  background: transparent;
  padding-top: 5.5rem;
}

@media (min-width: 1024px) {
  #plataforma { padding-top: 7rem; }
}

#plataforma.th-fx {
  overflow: visible;
}

#plataforma .th-wrap {
  position: relative;
  z-index: 2;
}

#plataforma.th-fx::after {
  display: none;
}

#plataforma .th-orb-a {
  top: 22rem;
}

/* Soft blur orbs + grain */
.th-fx {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.th-fx > .th-wrap {
  position: relative;
  z-index: 2;
}

.th-fx-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.th-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.th-orb-a {
  width: 34rem;
  height: 34rem;
  left: -8rem;
  top: -10rem;
  background: radial-gradient(circle at 40% 40%, rgb(62 219 160 / 0.42), rgb(62 219 160 / 0.08) 62%, transparent 72%);
  animation: th-orb-drift 22s ease-in-out infinite;
}

.th-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.04  0 0 0 0 0.04  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
  background-size: 180px 180px;
}

@keyframes th-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.06); }
}

.th-fx-flip .th-orb-a {
  left: auto;
  right: -17rem;
  top: calc(50% - 17rem);
}

.th-fx-left .th-orb-a {
  left: -17rem;
  right: auto;
  top: calc(50% - 17rem);
}

.th-fx-teal .th-orb-a {
  background: radial-gradient(circle at 40% 40%, rgb(0 36 48 / 0.28), rgb(0 36 48 / 0.07) 62%, transparent 72%);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .th-orb { animation: none; }
  .th-nav-live i { animation: none; }
  .th-hero-scroll img { animation: none; opacity: 0.9; }
}

.th-split {
  display: grid;
  gap: 3.25rem;
  align-items: center;
}

.th-split h2 {
  margin: 0.9rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  color: #050507;
}

.th-copy {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(5, 5, 7, 0.6);
}

.th-features {
  display: flex;
  width: fit-content;
  max-width: none;
  align-items: center;
  gap: 0;
  margin-top: 2.25rem;
}

.th-features > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.75rem;
}

.th-features > div:first-child {
  padding-left: 0;
}

.th-features > div:last-child {
  padding-right: 0;
}

.th-features > div + div {
  position: relative;
}

.th-features > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.2rem;
  background: rgba(5, 5, 7, 0.22);
  transform: translateY(-50%);
}

.th-features p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #050507;
}

@media (max-width: 639px) {
  .th-features {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .th-features > div {
    padding: 0.55rem 0;
  }
  .th-features > div + div::before {
    left: 0;
    top: 0;
    width: 1.2rem;
    height: 1px;
    transform: none;
  }
}

.trax-icon {
  display: flex;
  height: auto;
  width: auto;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #146b52;
}

.trax-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.th-phone {
  width: min(340px, 100%);
  margin-inline: auto;
}

#plataforma .th-phone,
#como-funciona .th-phone {
  width: min(289px, 100%);
}

#como-funciona .th-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

#como-funciona .th-phone-mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  height: 122%;
  width: auto;
  max-width: none;
  transform: translate(-34%, -50%);
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1024px) {
  #como-funciona .th-phone-mark {
    height: 126%;
    transform: translate(-30%, -50%);
  }
}

#como-funciona .th-phone {
  position: relative;
  z-index: 1;
}

#como-funciona .th-phone-frame {
  background: #0b1220;
  border-color: rgba(5, 5, 7, 0.16);
}

.th-split-cta {
  margin-top: 2rem;
}

.th-monitor {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.th-monitor figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  height: 22rem;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.22);
}

.th-monitor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  transform-origin: 50% 42%;
  transition: transform 1.35s ease;
}

@media (hover: hover) {
  .th-monitor figure:hover img {
    transform: scale(1.02) translate3d(0, -5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .th-monitor img {
    transform: none;
    transition: none;
  }
}

.th-monitor figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 2.1rem 0.65rem 0.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 55%, transparent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 640px) {
  .th-monitor {
    gap: 0.75rem;
  }
  .th-monitor figure {
    height: 28rem;
    border-radius: 4px;
  }
}

@media (min-width: 1024px) {
  .th-monitor {
    height: 100%;
  }
  .th-monitor figure {
    height: 100%;
    min-height: 32rem;
  }
}

@keyframes th-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.th-phone-frame {
  overflow: hidden;
  border-radius: 2.6rem;
  background: #fff;
  padding: 7px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(5, 5, 7, 0.08);
}

.th-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.15rem;
}

.th-shot {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(5, 5, 7, 0.08);
}

.th-shot img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

#modulos .th-shot,
#plataforma .th-shot {
  border-radius: 4px 0 0 4px;
  box-shadow: none;
  border: 0;
  background: transparent;
  width: calc(100% + max(1rem, (100vw - 80rem) / 2));
}

#modulos .th-shot img,
#plataforma .th-shot img {
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

@media (min-width: 640px) {
  #modulos .th-shot,
  #plataforma .th-shot {
    width: calc(100% + max(1.5rem, (100vw - 80rem) / 2));
  }
}

@media (min-width: 1024px) {
  #modulos .th-shot,
  #plataforma .th-shot {
    width: calc(100% + max(2rem, (100vw - 80rem) / 2));
  }
}

@media (min-width: 640px) {
  .th-shot img { height: 500px; }
}

@media (min-width: 1024px) {
  .th-section { padding: 7rem 0; }
  .th-page-about { padding-top: calc(4.25rem + 7rem); }
  .th-split {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
  .th-split.is-flip .th-split-media { order: -1; }
}

/* Partners */
.th-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(5, 5, 7, 0.06);
  border-bottom: 1px solid rgba(5, 5, 7, 0.06);
}

.th-partners p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(5, 5, 7, 0.38);
}

.th-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.th-partners-logos img {
  height: 35px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.th-partners-logos img:last-child { height: 38px; max-width: 192px; }

.th-partners-logos span {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: rgba(5, 5, 7, 0.1);
}

@media (min-width: 640px) {
  .th-partners {
    flex-direction: row;
    gap: 2.5rem;
  }
  .th-partners-logos span { display: block; }
}

/* Hub cards */
.th-about {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.th-about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 7.5vh;
  background: #f5f7fa;
  clip-path: url(#arch-down);
  pointer-events: none;
  z-index: 2;
}

.th-about h2 {
  margin: 1rem 0 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  color: #050507;
}

.th-page-about {
  padding-top: calc(4.25rem + 5.5rem);
  min-height: 70vh;
}

.th-page-about::after {
  display: none;
}

.th-prologic {
  display: block;
  margin-top: 2rem;
  height: 2.35rem;
  width: auto;
}

.th-pl-hero {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.th-pl-copy .th-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgb(23 163 175 / 0.12);
  letter-spacing: 0.16em;
}

.th-pl-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.th-pl .th-pl-logo {
  display: block;
  height: auto;
  width: min(100%, 22rem);
  margin: 0;
}

.th-pl h1 {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #050507;
}

@media (min-width: 1024px) {
  .th-pl-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    min-height: 22rem;
    align-items: center;
  }
  .th-pl-brand {
    justify-content: center;
  }
  .th-pl .th-pl-logo {
    width: min(100%, 28rem);
  }
}

.th-pl-origins {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 34rem;
}

.th-pl-origins > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(5, 5, 7, 0.1);
}

.th-pl-origins strong {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #17A3AF;
}

.th-pl-origins span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(5, 5, 7, 0.62);
}

@media (min-width: 640px) {
  .th-pl-origins {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .th-pl-origins > div + div {
    padding-left: 1.5rem;
    margin-left: 1.5rem;
    border-top: 0;
    border-left: 1px solid rgba(5, 5, 7, 0.12);
  }
}

.th-pl-stats {
  display: grid;
  gap: 2.25rem 2.5rem;
  margin-top: 3.75rem;
}

.th-pl-stats article b {
  display: block;
  font-size: clamp(2.85rem, 6.4vw, 4.35rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: #17A3AF;
}

.th-pl-stats h2 {
  margin: 0.7rem 0 0;
  max-width: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #050507;
}

.th-pl-stats p {
  margin: 0.4rem 0 0;
  max-width: 36ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(5, 5, 7, 0.55);
}

@media (min-width: 768px) {
  .th-pl-stats {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem 3.5rem;
  }
}

@media (min-width: 1024px) {
  .th-pl-stats {
    grid-template-columns: 1fr 1fr;
    gap: 3.25rem 4.5rem;
  }
}

.th-pl-iso {
  margin: 3rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(5, 5, 7, 0.42);
}

.trax-placeholder {
  display: flex;
  height: 4.5rem;
  width: 12rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  border-radius: 0.75rem;
  border: 1px dashed rgb(5 5 7 / 0.18);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(5 5 7 / 0.4);
}

.th-hub {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.th-hub-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(5, 5, 7, 0.08);
  background: #fff;
}

.th-hub-card strong {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #050507;
}

.th-hub-card div span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  color: rgba(5, 5, 7, 0.5);
}

@media (min-width: 640px) {
  .th-hub { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .th-hub { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* CTA */
#descargar {
  position: relative;
  z-index: 1;
}

.th-final {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.th-final h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  color: #050507;
}

.th-final .th-copy {
  margin-left: auto;
  margin-right: auto;
}

.th-final .th-cta-row { justify-content: center; }

.th-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 7, 0.2);
  background: transparent;
  color: #050507;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.th-btn-dark:hover {
  background: #050507;
  color: #fff;
}

/* Footer */
.th-footer {
  border-top: 0;
  background: #0b0c0e;
  color: rgba(255, 255, 255, 0.88);
  padding: 4.25rem 0 2.5rem;
}

.th-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.th-footer img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.th-footer-brand,
.th-footer .th-footer-brand {
  display: block;
  height: 2.9rem;
  width: auto;
}

.th-footer .th-muted {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
}

.th-footer .th-muted a {
  color: inherit;
}

.th-developed {
  margin-top: 1.75rem;
}

.th-developed p {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.th-developed img {
  display: block;
  height: 1.55rem;
  width: auto;
  max-width: 10.5rem;
  opacity: 0.82;
}

.th-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.th-social a {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.th-social a:hover {
  border-color: #3edba0;
  color: #3edba0;
}

.th-footer h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.th-footer ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.th-footer a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.th-footer a:hover { color: #3edba0; }

.th-footer li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.th-iso-link {
  display: block;
  width: 90%;
  max-width: 90%;
  line-height: 0;
  color: inherit;
}

.th-footer a.th-iso-link:hover {
  color: inherit;
  opacity: 0.88;
}

.th-footer img.th-iso-cert,
img.th-iso-cert {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: 0.45rem;
  padding: 0;
  background: none;
  border-radius: 8px;
  overflow: hidden;
  object-fit: contain;
  box-sizing: border-box;
}

.th-legal {
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
}

.th-legal p { margin: 0; }
.th-legal p + p { margin-top: 0.25rem; }

@media (min-width: 768px) {
  .th-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.th-hero .th-btn-mint,
.th-final .th-btn-mint {
  height: 2.85rem;
  padding: 0 1.4rem;
}

body.th-has-home-nav header:not(.th-header),
body:has(header.th-header) header:not(.th-header) {
  display: none !important;
}

/* Download landing — one screen, no scroll */
html.th-dl,
html.th-dl body {
  height: 100%;
  overflow: hidden;
  background: #e6e8eb;
}

.th-dl-screen {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #e6e8eb;
}

.th-dl-orb {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 27.5rem;
  height: 27.5rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(72px);
  opacity: 0.9;
  background: radial-gradient(circle at 40% 40%, rgb(62 219 160 / 0.42), rgb(62 219 160 / 0.08) 62%, transparent 72%);
}

.th-dl-grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100svh;
  align-items: center;
  padding: 5.5rem 0 1.5rem;
  gap: 1.5rem;
}

.th-dl-copy {
  max-width: 28rem;
}

.th-dl-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #050507;
}

.th-dl-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.th-store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11.5rem;
  height: 3.35rem;
  padding: 0 1.15rem 0 1rem;
  border-radius: 0.95rem;
  background: #002430;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.th-store svg { flex-shrink: 0; }

.th-store span {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.th-store small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.62;
}

.th-store-light {
  background: #fff;
  color: #050507;
  border: 1.5px solid #050507;
}

.th-store:hover { transform: scale(1.03); }
.th-store-light:hover { background: #f5f7fa; }

.th-store.is-preferred {
  box-shadow: 0 0 0 3px rgb(23 163 175 / 0.28);
}

.th-dl-copy .th-hero-note {
  width: auto;
  min-width: 0;
  text-align: left;
}

.th-dl-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 1.1rem;
  min-height: 0;
  min-width: 0;
}

.th-dl-icon,
.th-dl-phone {
  position: relative;
  z-index: 1;
}

.th-dl-icon {
  display: block;
  width: 5.5rem;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 28px rgba(0, 36, 48, 0.25));
}

.th-phone.th-dl-phone {
  display: block;
  width: min(230px, 42vw);
  height: auto;
  max-width: 100%;
  max-height: none;
  min-width: 0;
  flex-shrink: 1;
}

.th-dl-phone .th-phone-frame {
  height: auto;
  max-height: none;
  width: 100%;
  box-sizing: border-box;
}

.th-dl-phone .th-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin-inline: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .th-dl-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5.5rem 0 2rem;
  }
  .th-dl-visual {
    justify-self: center;
  }
  .th-dl-icon {
    width: 7rem;
  }
  .th-phone.th-dl-phone {
    width: min(240px, 24vw);
  }
}

/* Live cameras landing */
html.th-live,
html.th-live body {
  height: 100%;
  overflow: hidden;
  background: #e6e8eb;
}

.th-live-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100svh;
  padding-top: 4.25rem;
  box-sizing: border-box;
  overflow: hidden;
  background: #e6e8eb;
}

.th-live-feed {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #0b1220;
}

.th-live-feed img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.th-live-feed:nth-child(3) {
  border-radius: 0 0 0 4px;
}

.th-live-feed:nth-child(4) {
  border-radius: 0 0 4px 0;
}

.th-live-feed.is-soon img {
  filter: blur(14px) saturate(0.7) brightness(0.72);
  transform: scale(1.12);
}

.th-live-soon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 36, 48, 0.28);
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.th-live-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 2.4rem 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.72), rgba(5, 5, 7, 0.22) 55%, transparent);
  color: #fff;
}

.th-live-meta .th-kicker {
  color: rgb(62 219 160 / 0.95);
}

.th-live-meta h1,
.th-live-meta h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.th-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
  padding: 0.32rem 0.7rem 0.32rem 0.55rem;
  border-radius: 999px;
  background: #002430;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.th-live-badge i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: th-pulse 1.2s ease-in-out infinite;
}

@media (min-width: 640px) {
  .th-live-meta {
    padding: 2.8rem 2rem 1.4rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .th-live-meta {
    padding: 3rem 2rem 1.6rem;
  }
}

/* ========== Mobile-only layout (do not affect desktop) ========== */
@media (max-width: 1023px) {
  .th-hero-orb {
    display: none;
  }

  .th-hero .th-kicker {
    display: none;
  }

  .th-hero h1 {
    color: #fff;
    font-size: clamp(1.7rem, 7.4vw, 2.15rem);
    line-height: 1.18;
  }

  .th-hero-line,
  .th-hero-place {
    white-space: normal;
  }

  .th-hero .th-checks {
    margin-top: 1.15rem;
    gap: 0.55rem;
  }

  .th-hero .th-checks li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
  }

  .th-hero-scroll {
    bottom: 0.85rem;
  }

  .th-section {
    padding: 3.5rem 0;
  }

  #plataforma {
    padding-top: 5rem;
  }

  #como-funciona,
  #modulos,
  #camaras {
    padding-top: 4.5rem;
    padding-bottom: 3.75rem;
  }

  .th-split {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .th-split > div:first-of-type {
    display: contents;
  }

  .th-split .th-kicker {
    order: 1;
  }

  .th-split h2 {
    order: 2;
    margin-top: 0.45rem;
    max-width: none;
    font-size: clamp(1.55rem, 6.6vw, 2rem);
  }

  .th-split-media {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0 0.35rem;
    justify-content: center;
  }

  .th-split .th-copy {
    order: 4;
    margin-top: 1.1rem;
    font-size: 1rem;
    max-width: none;
  }

  .th-split .th-features {
    order: 5;
  }

  .th-split .th-cta-row {
    order: 6;
  }

  .th-copy {
    font-size: 1rem;
    max-width: none;
  }

  .th-features {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 0.4rem;
    margin-top: 1.35rem;
  }

  .th-features > div {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0;
  }

  .th-features > div:first-child,
  .th-features > div:last-child {
    padding: 0;
  }

  .th-features > div + div::before {
    display: none;
  }

  .th-features p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .th-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .th-cta-row .th-btn-mint,
  .th-cta-row .th-btn-outline,
  .th-cta-row .th-btn-dark {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .th-btn-mint:hover {
    transform: none;
  }

  #plataforma .th-cta-row,
  #camaras .th-cta-row,
  .th-split .th-download {
    margin-top: 1.5rem;
  }

  #modulos .th-shot,
  #plataforma .th-shot {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 1rem;
    background: transparent;
    box-shadow: none;
    border: 0;
    overflow: visible;
  }

  .th-shot {
    border-radius: 1rem;
  }

  .th-shot img,
  #modulos .th-shot img,
  #plataforma .th-shot img {
    height: auto;
    max-height: 22rem;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  #como-funciona .th-phone-mark {
    height: 108%;
    transform: translate(-42%, -50%);
    opacity: 0.9;
  }

  #como-funciona .th-phone {
    width: min(240px, 72vw);
  }

  #como-funciona .th-phone-stage {
    padding-inline: 0.5rem;
  }

  .th-monitor {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .th-monitor figure {
    flex: 0 0 72%;
    height: 16.5rem;
    scroll-snap-align: start;
  }

  .th-partners {
    padding: 1.35rem 0;
    gap: 0.9rem;
  }

  .th-partners-logos {
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
  }

  .th-partners-logos img {
    height: 28px;
    max-width: 140px;
  }

  .th-final .th-cta-row {
    max-width: 22rem;
    margin-inline: auto;
  }

  .th-footer {
    padding: 2.75rem 0 2rem;
  }

  .th-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .th-legal {
    margin-top: 2rem;
    padding-top: 1.35rem;
  }

  html.th-dl,
  html.th-dl body {
    height: auto;
    min-height: 100%;
    overflow: auto;
  }

  .th-dl-screen {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .th-dl-grid {
    height: auto;
    align-items: start;
    padding: 5.5rem 0 2.5rem;
    gap: 2rem;
  }

  .th-dl-visual {
    height: auto;
    align-self: center;
    flex-wrap: nowrap;
    gap: 0;
    padding-bottom: 1.5rem;
  }

  .th-dl-icon {
    display: none;
  }

  .th-phone.th-dl-phone {
    width: min(168px, 58vw);
  }
}
