/* =========================================================================
   VELTIX — landing page
   1. Tokens          6. Header / burger      11. Pricing
   2. Reset & base    7. Mobile menu          12. Platforms
   3. Layout          8. Hero                 13. Support / chat
   4. Typography      9. Marquee / metrics    14. CTA
   5. Buttons        10. Network / features   15. Footer
                                              16. Motion & responsive
   ========================================================================= */

/* ── 1. Tokens ────────────────────────────────────────────────────────── */
:root {
  --ink: #0b0b0c;
  --ink-2: #3d3e43;
  --ink-3: #6c6e75;
  /* #97999f measured 2.49:1 on paper — every micro-label on the site failed AA.
     This is the lightest grey that clears 4.5:1 against the lightest backdrop. */
  --ink-4: #64666d;

  --paper: #ffffff;
  --paper-2: #f2f2f0;
  --paper-3: #e9e9e6;
  --paper-4: #dededa;
  --line: #e2e2de;
  --line-soft: rgba(11, 11, 12, .08);

  --accent: #24c684;
  --accent-ink: #0b6e49;
  /* #0c7a51 landed on 4.49:1 — one hundredth short of AA */
  --accent-dim: rgba(36, 198, 132, .14);
  --amber: #d9971f;

  /* diffuse pool of light behind the platform grid — the thing the glass bends */
  --section-light: radial-gradient(118% 76% at 50% 40%,
      #fafafa 0%, #f4f4f2 46%, #eeeeeb 78%, #e9e9e6 100%);


  --font: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4.4vw, 56px);
  --nav-h: 62px;
  /* 54px bar + 8px hatch */

  --r-card: 18px;
  --r-btn: 9px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);

  --sh-1: 0 1px 2px rgba(11, 11, 12, .04), 0 10px 28px -14px rgba(11, 11, 12, .16);
  --sh-2: 0 2px 4px rgba(11, 11, 12, .05), 0 26px 60px -26px rgba(11, 11, 12, .28);
  --sh-3: 0 40px 96px -44px rgba(11, 11, 12, .55);
}

@media (min-width: 1000px) {
  :root {
    --nav-h: 70px;
  }
}

/* 62px bar + 8px hatch */

/* ── 2. Reset & base ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: var(--nav-h);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure {
  margin: 0;
}

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

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  transform: translateY(-160%);
  padding: 10px 18px;
  border-radius: var(--r-btn);
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .3s var(--ease);
}

.skip:focus {
  transform: none;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* ── 3. Layout ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.marquee,
.metrics,
.network,
.features,
.pricing,
.platforms,
.support,
.cta {
  background: var(--paper-2);
}

.metrics {
  padding-block: clamp(44px, 6vw, 76px);
}

.network {
  padding-block: clamp(56px, 8vw, 116px);
}

.features {
  padding-block: clamp(64px, 9vw, 132px);
}

.pricing {
  padding-block: clamp(64px, 9vw, 132px);
}

.platforms {
  padding-block: clamp(64px, 9vw, 132px);
}

.support {
  padding-block: clamp(56px, 8vw, 120px);
}

.cta {
  padding-block: clamp(24px, 4vw, 64px) clamp(64px, 9vw, 128px);
}

.sechead {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.sechead--center {
  margin-inline: auto;
  text-align: center;
}

/* ── 4. Typography ────────────────────────────────────────────────────── */
.h2 {
  font-size: clamp(1.9rem, 1.24rem + 2.1vw, 3.1rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.032em;
  text-wrap: balance;
}

.lede {
  margin-top: 18px;
  max-width: 54ch;
  color: var(--ink-3);
  font-size: clamp(.95rem, .9rem + .18vw, 1.06rem);
  line-height: 1.62;
}

.sechead--center .lede {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.eyebrow__chip {
  padding: 3px 9px 4px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 9.5px;
  letter-spacing: .13em;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}

.link .icon {
  font-size: 14px;
  transition: transform .35s var(--ease);
}

.link:hover {
  border-color: var(--ink);
  gap: 12px;
}

.link:hover .icon {
  transform: translate(2px, -2px);
}

.hide-sm {
  display: none;
}

@media (min-width: 900px) {
  .hide-sm {
    display: inline;
  }
}

/* ── 5. Buttons ───────────────────────────────────────────────────────── */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-btn);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .045em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .28s var(--ease-2),
    color .28s var(--ease-2), border-color .28s var(--ease-2),
    box-shadow .35s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
}

.btn--dark:hover {
  box-shadow: var(--sh-2);
}

.btn--line {
  --btn-bg: var(--paper);
  --btn-bd: var(--line);
}

.btn--line:hover {
  --btn-bd: var(--ink);
  box-shadow: var(--sh-1);
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  --btn-bd: #fff;
}

.btn--light:hover {
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .55);
}

.btn--ghostlight {
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .32);
}

.btn--ghostlight:hover {
  --btn-bd: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn--sm {
  min-height: 40px;
  padding: 0 17px;
  font-size: 12px;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ── 6. Header ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 210;
  background: var(--paper);
  transition: box-shadow .4s var(--ease);
}

.nav.is-stuck {
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -26px rgba(11, 11, 12, .5);
}

.nav__in {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  height: calc(var(--nav-h) - 8px);
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  color: var(--ink);
}

.brand__mark {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.brand__reg {
  font-size: 8px;
  line-height: 1;
  color: var(--ink-4);
  margin-top: 1px;
}

.brand__word {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-right: auto;
}

.nav__links a {
  position: relative;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-block: 6px;
  transition: color .25s var(--ease-2);
}

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

.nav__links a:hover {
  color: var(--ink);
}

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

.nav__act {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav__login,
.nav__cta {
  display: none;
}

.hatch {
  height: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-image: repeating-linear-gradient(-45deg,
      var(--paper-3) 0 1.5px,
      transparent 1.5px 7px);
  background-color: var(--paper-2);
}

/* burger */
.burger {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}

.burger i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -.75px 0 0 -11px;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .45s var(--ease), background-color .3s var(--ease-2);
}

.burger i:first-child {
  transform: translateY(-4px);
}

.burger i:last-child {
  transform: translateY(4px);
}

html.is-menu-open .burger {
  color: #fff;
}

html.is-menu-open .burger i:first-child {
  transform: rotate(45deg);
}

html.is-menu-open .burger i:last-child {
  transform: rotate(-45deg);
}

html.is-menu-open .nav {
  background: transparent;
  box-shadow: none;
}

html.is-menu-open .nav .brand,
html.is-menu-open .nav .brand__reg {
  color: #fff;
}

html.is-menu-open .hatch {
  opacity: 0;
}

/* ── 7. Mobile menu ───────────────────────────────────────────────────── */
.menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + clamp(18px, 5vw, 40px)) var(--gutter) max(clamp(26px, 6vw, 46px), env(safe-area-inset-bottom));
  background: var(--ink);
  color: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .45s var(--ease),
    transform .55s var(--ease),
    visibility 0s linear .45s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.menu__nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: clamp(14px, 3.4vw, 22px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: clamp(1.6rem, 8.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.035em;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .25s var(--ease-2);
}

.menu.is-open .menu__nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(.1s + var(--i) * .06s);
}

.menu:not(.is-open) .menu__nav a {
  transition-delay: 0s;
}

.menu__nav a:active {
  color: var(--accent);
}

.menu__idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .38);
}

.menu__label {
  margin-right: auto;
}

.menu__ar {
  font-size: 18px;
  align-self: center;
  color: rgba(255, 255, 255, .3);
  transition: transform .4s var(--ease);
}

.menu__nav a:active .menu__ar {
  transform: translate(3px, -3px);
}

.menu__foot {
  padding-top: clamp(24px, 6vw, 40px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease) .34s, transform .6s var(--ease) .34s;
}

.menu.is-open .menu__foot {
  opacity: 1;
  transform: none;
}

.menu__status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 18px;
}

.menu__acts {
  display: grid;
  gap: 10px;
}

.menu__legal {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

/* ── 8. Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(32px, 5vw, 64px) clamp(48px, 7vw, 92px);
  background: var(--paper);
}

.hero__grid {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-left: max(var(--gutter), calc((100% - var(--maxw)) / 2));
  padding-right: var(--gutter);
}

.hero__copy {
  max-width: 640px;
}

.hero__title {
  margin-top: 26px;
  font-size: clamp(2.5rem, 1.35rem + 4.6vw, 4.9rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.hero__lede {
  margin-top: clamp(18px, 2.4vw, 28px);
  max-width: 44ch;
  color: var(--ink-3);
  font-size: clamp(.95rem, .9rem + .2vw, 1.06rem);
  line-height: 1.6;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 3.4vw, 38px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px) clamp(24px, 4vw, 56px);
  margin-top: clamp(38px, 5vw, 62px);
  max-width: 470px;
}

.stat__num {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.05rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat__lab {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-4);
  line-height: 1.4;
}

.hero__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #101012;
  box-shadow: var(--sh-2);
}

.hero__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  object-position: center;
}

/* Small glass pill over the photo. No stroke — the specular sliver in the gradient is
   the edge. Dark UI means dark-tinted glass, and the tint is fully in before the label
   so the text keeps its contrast against whatever the photo is doing underneath. */
.hero__live {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .22) 0%,
      rgba(255, 255, 255, .04) 14%,
      rgba(11, 11, 14, .70) 34%,
      rgba(9, 9, 11, .74) 100%);
  -webkit-backdrop-filter: blur(7px) saturate(180%);
  backdrop-filter: blur(7px) saturate(180%);
  color: rgba(255, 255, 255, .86);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
    padding-right: 0;
  }

  .hero__media {
    border-radius: 14px 0 0 14px;
  }

  .hero__media img {
    aspect-ratio: 1.34 / 1;
  }

  .hero__live {
    left: 20px;
    bottom: 20px;
  }
}

/* ── 9a. Marquee ──────────────────────────────────────────────────────── */
.marquee {
  padding-block: clamp(22px, 3vw, 34px);
  border-block: 1px solid var(--line);
}

.marquee__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 46s linear infinite;
}

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

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
  padding-right: clamp(38px, 6vw, 78px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-4);
  font-size: clamp(.95rem, .9rem + .3vw, 1.12rem);
  font-weight: 400;
  letter-spacing: -.018em;
  white-space: nowrap;
  transition: color .3s var(--ease-2);
}

.logo:hover {
  color: var(--ink-2);
}

.logo__mark {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── 9b. Metrics ──────────────────────────────────────────────────────── */
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 40px);
}

.metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
}

.metric__chip {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 17px;
}

.metric__val {
  align-self: end;
  font-size: clamp(1.15rem, 1.02rem + .5vw, 1.44rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.metric__lab {
  align-self: start;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--ink-4);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .metrics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── 10a. Network ─────────────────────────────────────────────────────── */
.network__grid {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.network__media {
  border-radius: var(--r-card);
  overflow: hidden;
  background: #101012;
  box-shadow: var(--sh-2);
}

.network__media img {
  width: 100%;
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
  object-position: center;
}

.regions {
  display: grid;
  gap: 2px;
  margin-top: clamp(28px, 3.6vw, 42px);
  margin-bottom: clamp(26px, 3.2vw, 36px);
  max-width: 460px;
}

.regions li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.regions li:first-child {
  border-top: 1px solid var(--line);
}

.regions__name {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.regions__bar {
  width: clamp(52px, 14vw, 104px);
  height: 3px;
  border-radius: 2px;
  background: var(--paper-4);
  overflow: hidden;
}

.regions__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 2px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.1s var(--ease) .15s;
}

.reveal.in .regions__bar i,
.regions.in .regions__bar i {
  transform: scaleX(1);
}

.regions__n {
  min-width: 3.6ch;
  text-align: right;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

@media (min-width: 900px) {
  .network__grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  }
}

/* ── 10b. Features ────────────────────────────────────────────────────── */
.fgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}

@media (min-width: 760px) {
  .fgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fcard {
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 30vw, 372px);
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper-3);
  transition: background-color .4s var(--ease-2), border-color .4s var(--ease-2),
    transform .5s var(--ease), box-shadow .5s var(--ease);
}

.fcard:hover {
  background: var(--paper);
  border-color: var(--paper-4);
  transform: translateY(-4px);
  box-shadow: var(--sh-1);
}

.fcard__top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.fcard__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 16px;
  flex: none;
  transition: color .4s var(--ease-2), border-color .4s var(--ease-2);
}

.fcard:hover .fcard__icon {
  color: var(--accent-ink);
  border-color: var(--accent);
}

.fcard__title {
  font-size: clamp(1rem, .96rem + .22vw, 1.12rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.fcard__viz {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-block: 20px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  opacity: .5;
  -webkit-mask-image: linear-gradient(90deg, #000 62%, transparent);
  mask-image: linear-gradient(90deg, #000 62%, transparent);
  transition: opacity .5s var(--ease-2), transform .6s var(--ease);
}

.fcard:hover .fcard__viz {
  opacity: .85;
  transform: translateX(-6px);
}

.fcard__viz--strike span {
  text-decoration: line-through;
  text-decoration-color: var(--ink-4);
}

.fcard__viz--halt span:nth-child(2) {
  color: var(--amber);
}

.fcard__viz--halt span:nth-child(3) {
  color: var(--accent-ink);
}

.fcard__body {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.62;
  max-width: 46ch;
}

/* ── 11. Pricing ──────────────────────────────────────────────────────── */
.plans {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  max-width: 460px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 32px) clamp(24px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease-2);
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-1);
  border-color: var(--paper-4);
}

.plan__name {
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -.028em;
}

.plan__sub {
  margin-top: 8px;
  color: var(--ink-4);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 30ch;
}

.plan__price {
  display: flex;
  align-items: flex-start;
  margin-top: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.plan__amt {
  font-size: clamp(3.3rem, 2.6rem + 2.4vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: .86;
  font-variant-numeric: tabular-nums;
}

.plan__cur {
  margin-left: 4px;
  font-size: clamp(1rem, .9rem + .4vw, 1.3rem);
  font-weight: 300;
  color: var(--ink-3);
}

.plan__note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.plan__list {
  display: grid;
  gap: 11px;
  margin-block: clamp(24px, 3vw, 34px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--line);
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
}

.plan__list .icon {
  font-size: 15px;
  margin-top: 1px;
  color: var(--accent-ink);
  stroke-width: 1.9;
}

.plan .btn {
  margin-top: auto;
}

.plan__flag {
  position: absolute;
  top: clamp(26px, 3vw, 38px);
  right: clamp(22px, 2.6vw, 32px);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.plan--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: var(--sh-3);
}

.plan--featured .plan__sub {
  color: rgba(255, 255, 255, .5);
}

.plan--featured .plan__cur {
  color: rgba(255, 255, 255, .6);
}

.plan--featured .plan__note {
  color: rgba(255, 255, 255, .42);
}

.plan--featured .plan__list {
  border-top-color: rgba(255, 255, 255, .16);
}

.plan--featured .plan__list li {
  color: rgba(255, 255, 255, .82);
}

.plan--featured .plan__list .icon {
  color: var(--accent);
}

.plan--featured:hover {
  box-shadow: 0 48px 110px -46px rgba(11, 11, 12, .68);
}

.pricing__foot {
  margin-top: clamp(28px, 3.4vw, 44px);
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-4);
}

@media (min-width: 980px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    align-items: stretch;
  }

  .plan--featured {
    margin-block: -22px;
  }
}

/* ── 12. Platforms ────────────────────────────────────────────────────── */
/* Tight gutters between adjacent glass panes — a wide gap shows an undistorted
   sliver of the backdrop between them and reads as a rendering glitch. */
.pgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(10px, .9vw, 12px);
}

@media (min-width: 620px) {
  .pgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Single-column panes carry more height than the clamp's vw term gives them —
   scaled off viewport width so it tracks the card, which is always gutter-to-gutter. */
@media (max-width: 619px) {
  .pcard {
    min-height: clamp(280px, 74vw, 312px);
  }
}

.platforms {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* Lighting, not pattern: a soft pool of light behind the grid. This is what the
     card bevels bend — refraction needs *something* behind the glass, and a diffuse
     luminance field gives the rims a caustic without putting texture on the page. */
  background-image: var(--section-light);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.platforms>.container {
  position: relative;
  z-index: 1;
}

/* ── glass cards ── */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(280px, 20vw, 300px);
  /* ~1.45 pane ratio at every breakpoint */
  padding: clamp(20px, 2.2vw, 26px);
  border: 0;
  /* real glass has a specular edge, not a stroke */
  border-radius: var(--r-card);
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    /* specular top edge */
    inset 0 -1px 0 rgba(255, 255, 255, .50),
    inset 1px 0 0 rgba(255, 255, 255, .55),
    inset -1px 0 0 rgba(255, 255, 255, .55),
    inset 0 14px 26px -16px rgba(255, 255, 255, .95),
    /* light entering the top bevel */
    inset 0 -20px 32px -22px rgba(11, 11, 12, .13),
    /* thickness, pooling at the base */
    0 1px 2px rgba(11, 11, 12, .045),
    0 14px 30px -18px rgba(11, 11, 12, .14);
  /* the pane floats */
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

/* Static copy of the light behind the card, refracted once and then composited.
   backdrop-filter would recompute this every frame for a result that never changes. */
.glass__refract {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--paper-2);
  background-image: var(--section-light);
  background-repeat: no-repeat;
  background-size: var(--gw, 100%) var(--gh, 100%);
  background-position: var(--gx, 0px) var(--gy, 0px);
  filter: url(#liquidGlass);
}

/* body tint + specular sliver, above the refraction and below the content */
.pcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(255, 255, 255, .40) 1.6%,
      rgba(234, 234, 231, .74) 8%,
      rgba(231, 231, 228, .72) 58%,
      rgba(224, 224, 220, .80) 100%);
  transition: opacity .5s var(--ease-2);
}

.pcard>.pcard__badge,
.pcard>.pcard__foot {
  position: relative;
  z-index: 2;
}

.pcard>.pcard__glyph {
  z-index: 2;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, .55),
    inset 1px 0 0 rgba(255, 255, 255, .62),
    inset -1px 0 0 rgba(255, 255, 255, .62),
    inset 0 14px 26px -16px rgba(255, 255, 255, 1),
    inset 0 -20px 32px -22px rgba(11, 11, 12, .11),
    0 1px 2px rgba(11, 11, 12, .05),
    0 26px 50px -22px rgba(11, 11, 12, .20);
}

.pcard:hover::after {
  opacity: .82;
}

/* the pane clears slightly as it lifts */

/* the featured pane reads as clearer glass: less body tint, brighter specular */
.pcard--hot::after {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, .70) 2%,
      rgba(255, 255, 255, .90) 8%,
      rgba(255, 255, 255, .86) 58%,
      rgba(250, 250, 249, .92) 100%);
}

.pcard--hot {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, .6),
    inset 1px 0 0 rgba(255, 255, 255, .7),
    inset -1px 0 0 rgba(255, 255, 255, .7),
    inset 0 16px 28px -16px rgba(255, 255, 255, 1),
    0 1px 2px rgba(11, 11, 12, .05),
    0 22px 44px -20px rgba(11, 11, 12, .18);
}

.pcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.pcard__glyph {
  position: absolute;
  right: -12px;
  bottom: 30%;
  width: clamp(92px, 10vw, 122px);
  height: clamp(92px, 10vw, 122px);
  fill: none;
  stroke: var(--ink);
  stroke-width: .7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .07;
  transition: opacity .5s var(--ease-2), transform .6s var(--ease);
}

.pcard:hover .pcard__glyph {
  opacity: .12;
  transform: translate(-4px, -4px);
}

.pcard__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pcard__name {
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem);
  font-weight: 300;
  letter-spacing: -.038em;
  line-height: 1;
}

.pcard__ver {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--ink-4);
  text-align: right;
  white-space: nowrap;
}

/* ── 13. Support / chat ───────────────────────────────────────────────── */
.support__grid {
  display: grid;
  gap: clamp(32px, 4.4vw, 68px);
  align-items: center;
}

.support__facts {
  display: grid;
  gap: 2px;
  margin-top: clamp(28px, 3.4vw, 40px);
  max-width: 440px;
}

.support__facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.support__facts li:first-child {
  border-top: 1px solid var(--line);
}

.support__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.support__v {
  font-size: 14px;
  color: var(--ink);
  text-align: right;
}

.chat {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper-3);
  overflow: hidden;
  box-shadow: var(--sh-1);
}

.chat__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 22px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.chat__av {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--accent-ink);
  font-size: 16px;
  flex: none;
}

.chat__who {
  display: grid;
  gap: 2px;
  margin-right: auto;
  min-width: 0;
}

.chat__who strong {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.01em;
}

.chat__who span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  color: var(--ink-4);
}

.chat__on {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.chat__log {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 24px);
  max-height: 420px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.msg {
  display: flex;
  gap: 10px;
  max-width: 88%;
}

.msg--in {
  align-self: flex-start;
}

.msg--out {
  align-self: flex-end;
  flex-direction: row;
}

.msg__av {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--accent-ink);
  font-size: 13px;
  flex: none;
  align-self: flex-start;
}

.msg__av--you {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .04em;
}

.bubble {
  padding: 11px 14px;
  border-radius: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.msg--in .bubble {
  border-bottom-left-radius: 4px;
}

.msg--out .bubble {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(255, 255, 255, .92);
  border-bottom-right-radius: 4px;
}

.msg time {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  color: var(--ink-4);
}

.msg--out time {
  text-align: right;
}

.bubble--typing {
  display: inline-flex;
  gap: 5px;
  padding: 15px 15px;
}

.bubble--typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-4);
  animation: blip 1.25s var(--ease-2) infinite;
}

.bubble--typing i:nth-child(2) {
  animation-delay: .16s;
}

.bubble--typing i:nth-child(3) {
  animation-delay: .32s;
}

@keyframes blip {

  0%,
  60%,
  100% {
    opacity: .28;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px 11px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.chat__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink);
  padding-block: 8px;
}

.chat__form input::placeholder {
  color: var(--ink-4);
}

.chat__form input:focus {
  outline: none;
}

.chat__form button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 15px;
  cursor: pointer;
  flex: none;
  transition: background-color .28s var(--ease-2), color .28s var(--ease-2),
    border-color .28s var(--ease-2), transform .3s var(--ease);
}

.chat__form button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .support__grid {
    grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
  }
}

/* ── 14. CTA ──────────────────────────────────────────────────────────── */
.cta__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(460px, 46vw, 600px);
  padding: clamp(28px, 4vw, 62px);
  border-radius: clamp(18px, 2vw, 24px);
  overflow: hidden;
  background: #0d0d0f;
  color: #fff;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
}

.cta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, .1) 0%, rgba(10, 10, 12, .32) 42%, rgba(10, 10, 12, .84) 100%),
    linear-gradient(90deg, rgba(10, 10, 12, .58) 0%, rgba(10, 10, 12, .05) 62%);
}

.cta__in {
  max-width: 640px;
}

.cta__title {
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.1rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.038em;
}

.cta__lede {
  margin-top: clamp(14px, 1.8vw, 20px);
  max-width: 44ch;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(.92rem, .88rem + .18vw, 1.02rem);
  line-height: 1.6;
}

.cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 34px);
}

@media (min-width: 900px) {
  .cta__card {
    justify-content: flex-end;
  }

  .cta__btns {
    position: absolute;
    right: clamp(28px, 4vw, 62px);
    bottom: clamp(28px, 4vw, 62px);
    margin-top: 0;
  }

  .cta__in {
    max-width: 52%;
  }
}

/* ── 15. Footer ───────────────────────────────────────────────────────── */
.foot {
  background: var(--paper);
  padding-top: clamp(52px, 7vw, 96px);
}

.foot__top {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 68px);
}

.brand--foot {
  align-items: center;
  gap: 9px;
}

.brand--foot .brand__mark {
  width: 22px;
  height: 22px;
}

.foot__quote {
  margin-top: 20px;
  max-width: 34ch;
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.65;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 44px);
}

.foot__h {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.foot__col ul {
  display: grid;
  gap: 10px;
}

.foot__col a {
  font-size: 13.5px;
  color: var(--ink-3);
  transition: color .25s var(--ease-2);
}

.foot__col a:hover {
  color: var(--ink);
}

.foot__legal {
  display: grid;
  gap: 16px;
  padding-block: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--line);
}

.foot__copy,
.foot__credit,
.foot__policies a {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-4);
}

.foot__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.foot__policies a {
  transition: color .25s var(--ease-2);
}

.foot__policies a:hover {
  color: var(--ink);
}

.foot__credit a {
  color: var(--ink-3);
  transition: color .2s ease;
}

.foot__credit a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wordmark {
  padding-inline: var(--gutter);
  overflow: hidden;
}

.wordmark__box {
  overflow: hidden;
  line-height: 0;
}

.wordmark__box span {
  display: inline-block;
  vertical-align: top;
  font-size: 28vw;
  font-weight: 300;
  line-height: .74;
  letter-spacing: -.045em;
  white-space: nowrap;
  color: var(--paper-3);
  user-select: none;
}

@media (min-width: 900px) {
  .foot__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }

  .foot__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .foot__legal {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 12px 34px;
  }

  .foot__copy {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
    max-width: 62ch;
  }

  .foot__policies {
    grid-row: 1;
    grid-column: 2;
    justify-content: flex-end;
  }

  .foot__credit {
    grid-row: 2;
    grid-column: 2;
    text-align: right;
  }
}

/* ── 16. Motion, reveals, responsive tail ─────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0) * 1ms);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (min-width: 1000px) {
  .nav__links {
    display: flex;
  }

  .nav__login,
  .nav__cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero__btns .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }

  .cta__btns .btn {
    flex: 1 1 100%;
  }

  .msg {
    max-width: 96%;
  }
}

@media (max-width: 380px) {
  .hero__btns .btn {
    flex: 1 1 100%;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .regions__bar i {
    transform: scaleX(1);
  }

  .marquee__track {
    animation: none;
  }
}

@media print {

  .nav,
  .menu,
  .marquee,
  .cta,
  .wordmark,
  .chat__form {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}