@font-face {
  font-family: "Geist";
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #050505;
  --bg-2: #0b0b0c;
  --panel: #0e0e0f;
  --line: rgb(255 255 255 / 0.1);
  --line-orange: rgb(255 106 19 / 0.32);
  --text: #ffffff;
  --muted: #c9c9cc;
  --muted-2: #a1a1a6;
  --orange: #ff6a13;
  --orange-2: #ff8a3d;
  --orange-deep: #e85d04;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --font:
    "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1.0625rem/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: #120800;
  font-weight: 700;
  border-radius: 8px;
}
.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow {
  max-width: 820px;
}

.accent {
  color: var(--orange);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(5 5 5 / 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  flex: none;
  width: 2.35rem;
  height: 1.65rem;
  fill: var(--orange);
}
.brand-word {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-word b {
  color: var(--orange);
  font-weight: 700;
}
.nav {
  display: none;
  margin-inline: auto;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease;
}
.nav a:hover {
  border-color: var(--orange);
}
.btn-header {
  margin-left: auto;
}

/* Mobile menu (native <details>, works without JavaScript) */
.menu {
  position: relative;
}
.menu summary {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  list-style: none;
}
.menu summary::-webkit-details-marker {
  display: none;
}
.menu summary span,
.menu summary span::before,
.menu summary span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  content: "";
  position: relative;
}
.menu summary span::before {
  position: absolute;
  top: -6px;
}
.menu summary span::after {
  position: absolute;
  top: 6px;
}
.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  display: grid;
  min-width: 14rem;
  padding: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--line-orange);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.6);
}
.menu-panel a {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}
.menu-cta {
  display: none;
  margin-top: 0.25rem;
  background: linear-gradient(180deg, #ff7a24 0%, #f25c00 100%);
  color: #140700;
  font-weight: 700;
}
.menu-panel a:hover {
  background: rgb(255 106 19 / 0.14);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font: 600 0.95rem/1 var(--font);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  color: #140700;
  background: linear-gradient(180deg, #ff7a24 0%, #f25c00 100%);
  box-shadow:
    0 0 0 1px rgb(255 160 90 / 0.35) inset,
    0 10px 30px -8px rgb(255 106 19 / 0.55);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ff8a3d 0%, #ff6a13 100%);
  box-shadow:
    0 0 0 1px rgb(255 190 130 / 0.5) inset,
    0 14px 38px -8px rgb(255 106 19 / 0.75);
}
.btn-outline {
  color: var(--text);
  border-color: rgb(255 255 255 / 0.55);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgb(255 106 19 / 0.1);
}
.btn-lg {
  min-height: 3.4rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
}
.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.4rem;
  font-weight: 600;
  text-decoration: none;
}
.btn-link .icon {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  transform: rotate(90deg);
  transition: transform 0.18s ease;
}
.btn-link:hover .icon {
  transform: rotate(90deg) translateX(3px);
}

/* Shared type */
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6d6d8;
}
.eyebrow-line span {
  width: 2.6rem;
  height: 2px;
  background: var(--orange);
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: clamp(660px, 56vw, 840px);
  background: #000;
  isolation: isolate;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-video,
.hero-poster {
  position: absolute;
  display: block;
}
/* Provisional fallback (no animal): fills the right side, fading into the copy. */
.hero-provisional {
  left: 30%;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0, #000 26%);
}
/* Real footage: the video is pure black outside the animal, so it blends into the hero
   without masks. It keeps its own aspect ratio and is never cropped. */
.hero-stage[data-media="video"] .hero-video,
.hero-stage[data-media="video"] .hero-poster {
  left: 41.5%;
  top: 52%;
  width: 65%;
  height: auto;
  transform: translateY(-50%);
}
.hero-stage[data-media="video"] .hero-video,
.hero-stage[data-media="video"] .hero-poster {
  /* The footage's floor reflection is cut by the frame: fade it out instead of a hard edge.
     The animal (paws end at ~84% of the height) stays fully opaque. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 88%, transparent 100%);
}
.hero-video {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-stage.is-playing .hero-video {
  opacity: 1;
}
.hero-lines {
  position: absolute;
  inset: 0 0 0 32%;
  z-index: -2;
  background: url("/img/hero-lines.svg") right center / cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
  animation: streak 7s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, rgb(0 0 0 / 0.92) 26%, rgb(0 0 0 / 0.55) 42%, transparent 66%),
    linear-gradient(0deg, #000 0%, transparent 22%),
    linear-gradient(180deg, rgb(0 0 0 / 0.65) 0%, transparent 18%);
}
.hero-stage[data-media="video"] ~ .hero-lines {
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    transparent 37%,
    transparent 79%,
    #000 89%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    transparent 37%,
    transparent 79%,
    #000 89%
  );
}
.hero-stage[data-media="video"] ~ .hero-shade {
  background:
    linear-gradient(90deg, #000 0%, rgb(0 0 0 / 0.9) 24%, rgb(0 0 0 / 0.4) 38%, transparent 47%),
    linear-gradient(0deg, #000 0%, transparent 18%),
    linear-gradient(180deg, rgb(0 0 0 / 0.55) 0%, transparent 16%);
}
.hero-inner {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.hero-copy {
  max-width: 34rem;
}
.hero h1 {
  font-size: clamp(3.1rem, 6.4vw, 6.1rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.hero h1 .line {
  display: block;
}
.hero-lead {
  margin-top: 1.75rem;
  max-width: 30rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: #e4e4e6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.25rem;
}
.hero-side {
  position: absolute;
  right: var(--gutter);
  top: 15%;
  display: none;
  margin: 0;
  padding: 0 1rem 0 0;
  list-style: none;
  border-right: 2px solid var(--orange);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.85;
  text-align: right;
  width: min-content;
  color: #e4e4e6;
}
.hero-steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.6rem;
  margin: 0;
  padding: 1.15rem 0 1.6rem;
  list-style: none;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6d6d8;
}
.hero-steps ol::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 3.4rem;
  height: 3px;
  background: var(--orange);
}
.preview-note {
  position: absolute;
  right: var(--gutter);
  bottom: 5.2rem;
  z-index: 5;
  max-width: 20rem;
  padding: 0.7rem 0.9rem;
  border: 1px dashed var(--orange);
  border-radius: 10px;
  background: rgb(0 0 0 / 0.72);
  color: #ffd2b0;
  font-size: 0.74rem;
  line-height: 1.45;
}
.preview-note strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--orange-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Showcase */
.showcase {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--bg);
}
.showcase-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.showcase-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  max-width: 30rem;
}
.showcase-lead {
  margin-top: 1.5rem;
  max-width: 26rem;
  color: var(--muted);
}
.showcase-copy .btn {
  margin-top: 2rem;
}

.devices {
  position: relative;
  padding-bottom: 1.5rem;
}
.laptop {
  width: 90%;
}
.laptop-lid {
  padding: 0.7rem 0.7rem 0.85rem;
  border: 1px solid rgb(255 150 70 / 0.5);
  border-radius: 18px 18px 6px 6px;
  background: #0a0a0b;
  box-shadow:
    0 0 60px rgb(255 106 19 / 0.22),
    0 30px 80px rgb(0 0 0 / 0.65);
}
.laptop-lid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}
.laptop-base {
  position: relative;
  height: 0.9rem;
  margin-inline: -5%;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #d8d8dc 0%, #8b8b90 45%, #2b2b2f 100%);
  box-shadow: 0 18px 40px rgb(255 106 19 / 0.28);
}
.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 18%;
  height: 0.32rem;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: #3a3a3f;
}
.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27%;
  aspect-ratio: 390 / 844;
  border: 6px solid #141416;
  border-radius: 9% / 4.2%;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgb(255 150 70 / 0.6),
    0 0 50px rgb(255 106 19 / 0.28),
    0 30px 70px rgb(0 0 0 / 0.7);
}
.phone-screen,
.phone-screen img {
  width: 100%;
  height: 100%;
}
.phone-screen img {
  object-fit: cover;
  object-position: top;
}
.phone-island {
  position: absolute;
  top: 2.2%;
  left: 50%;
  width: 28%;
  height: 2.6%;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #000;
}
.devices-note {
  max-width: 66%;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* Features */
.features {
  display: grid;
  gap: 2rem 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(7rem, 12vw, 10rem);
}
.feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feature-icon {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 0.3rem;
}
.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.feature p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}

/* More */
.more {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background: var(--bg);
}
.more-grid {
  display: grid;
  gap: 1.25rem;
}
.more-card,
.time-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 100% 0%, rgb(255 106 19 / 0.14), transparent 60%),
    linear-gradient(160deg, #0d0d0e, #150b05);
}
.more-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/spots.svg") right center / 70% auto no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.more-card > * {
  position: relative;
  z-index: 1;
}
.more-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 22rem;
}
.more-card p {
  margin-top: 1.1rem;
  max-width: 24rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.more-card .btn {
  margin-top: 1.6rem;
}
.more-list {
  display: grid;
  align-content: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
}
.more-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.more-icon {
  flex: none;
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 0.35rem;
}
.more-list h3 {
  margin-bottom: 0.3rem;
}
.more-list p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.time-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.3rem;
  fill: var(--orange);
}
.time-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.time-card p {
  margin-top: 1rem;
  max-width: 15rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.time-bars {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}
.time-bars i {
  width: 0.7rem;
  background: linear-gradient(0deg, var(--orange-deep), var(--orange-2));
  border-radius: 2px 2px 0 0;
}
.time-bars i:nth-child(1) {
  height: 1.1rem;
}
.time-bars i:nth-child(2) {
  height: 1.9rem;
}
.time-bars i:nth-child(3) {
  height: 2.9rem;
}

.steps-wrap {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.steps {
  display: grid;
  gap: 1.75rem 2rem;
  margin: 0;
  padding: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  counter-reset: none;
}
.steps li {
  position: relative;
}
.step-dot {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}
.steps h3 {
  margin-bottom: 0.4rem;
}
.steps p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

/* WhatsApp */
.wa {
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg);
}
.wa-banner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgb(255 106 19 / 0.12), rgb(10 10 11 / 0.85) 40%);
}
.wa-icon {
  width: 4.2rem;
  height: 4.2rem;
  fill: var(--orange);
}
.wa-eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-2);
}
.wa-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.wa-copy p:last-child {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.wa-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 0.25rem;
}
.wa-list {
  display: grid;
  gap: 0.6rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: #e4e4e6;
}
.wa-list li {
  display: flex;
  gap: 0.7rem;
}
.wa-list li::before {
  content: "";
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.55rem;
  background: var(--orange);
  transform: skewX(-13deg);
}
.wa-notice {
  max-width: 62rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted-2);
}

/* Legal pages and 404 */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(60% 80% at 85% 20%, rgb(255 106 19 / 0.18), transparent 60%), var(--bg);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.not-found {
  min-height: 62vh;
  display: grid;
  align-items: center;
}
.legal {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(50% 30% at 90% 0%, rgb(255 106 19 / 0.14), transparent 70%), var(--bg);
}
.legal-head {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.legal-head h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted-2);
}
.legal h2 {
  margin: 2.6rem 0 0.85rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.legal p,
.legal li {
  color: #d4d4d8;
}
.legal ul {
  display: grid;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}
.legal li::marker {
  color: var(--orange);
}
.legal p + p,
.legal ul + p {
  margin-top: 0.85rem;
}
.legal strong {
  color: var(--text);
}
.legal a {
  color: var(--orange-2);
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-tagline {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
}
.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover {
  color: var(--orange-2);
}
.footer-top .btn {
  justify-self: start;
}
.footer-company,
.footer-bottom {
  position: relative;
}
.footer-company::before,
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.footer-company {
  padding-block: 1.75rem;
}
.footer-company h2 {
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.footer-company .facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.5rem;
  margin: 1.1rem 0 0;
}
.footer-company .facts div {
  display: grid;
  gap: 0.15rem;
}
.footer-company dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-company dd {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}
.footer-company a {
  color: var(--orange-2);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-block: 1.5rem 2.25rem;
  font-size: 0.85rem;
  color: var(--muted-2);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.footer-legal a {
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

/* Motion: content stays visible unless the script opts in. */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes streak {
  from {
    transform: translateX(0);
    opacity: 0.55;
  }
  to {
    transform: translateX(-2.5%);
    opacity: 0.85;
  }
}
.hero-rise {
  animation: rise 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-copy > :nth-child(2) {
  animation-delay: 0.07s;
}
.hero-copy > :nth-child(3) {
  animation-delay: 0.14s;
}
.hero-copy > :nth-child(4) {
  animation-delay: 0.21s;
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Tablet and up */
@media (min-width: 640px) {
  .showcase {
    background:
      url("/img/waves.svg") center bottom / 100% 340px no-repeat,
      var(--bg);
  }
  .wa {
    background:
      url("/img/waves.svg") center 30% / 100% 300px no-repeat,
      var(--bg);
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .wa-list {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .menu {
    display: none;
  }
  .showcase-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
  .more-grid {
    grid-template-columns: 1.15fr 1fr 0.85fr;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .wa-banner {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }
  .footer-top {
    grid-template-columns: 1.2fr 2fr auto;
  }
  .footer-top .btn {
    justify-self: end;
  }
  .wa-list {
    grid-template-columns: repeat(4, auto);
    gap: 0.6rem 2.5rem;
  }
}

/* Wide desktop: the stage sits beside the copy */
@media (min-width: 1100px) {
  .hero-side {
    display: block;
  }
}

/* Below 1100px the stage becomes a band above the copy (the animal is never cropped) */
@media (max-width: 1099px) {
  .hero {
    min-height: 0;
  }
  .hero-stage {
    inset: 0 0 auto 0;
    height: clamp(200px, 47vw, 560px);
  }
  .hero-provisional {
    left: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .hero-stage[data-media="video"] .hero-video,
  .hero-stage[data-media="video"] .hero-poster {
    left: 0;
    top: 50%;
    width: 100%;
  }
  .hero-lines {
    inset: 0 0 auto 0;
    height: clamp(200px, 47vw, 560px);
  }
  .hero-stage[data-media="video"] ~ .hero-lines {
    display: none;
  }
  .hero-shade,
  .hero-stage[data-media="video"] ~ .hero-shade {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 0.5) 0%, transparent 16%),
      linear-gradient(0deg, #000 0%, transparent 30%);
  }
  .hero-inner {
    padding-top: clamp(12rem, 44vw, 32rem);
    padding-bottom: 1.5rem;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.6rem);
  }
  /* Review-only notice: in the flow, below the hero, so it never covers the animal. */
  .preview-note {
    position: static;
    max-width: none;
    margin: 0 var(--gutter) 1.25rem;
  }
}

/* Phones: enlarge the footage a little; the animal still fits with a small margin
   (its body spans 5%-84% of the frame, so 120% width at -3.5% keeps it inside). */
@media (max-width: 640px) {
  .hero-stage {
    height: 58vw;
    min-height: 200px;
  }
  .hero-stage[data-media="video"] .hero-video,
  .hero-stage[data-media="video"] .hero-poster {
    left: -3.5%;
    width: 120%;
  }
  .hero-inner {
    padding-top: max(13.5rem, 54vw);
  }
}

/* Phones and small tablets */
@media (max-width: 899px) {
  .devices {
    padding-top: 0.5rem;
  }
  .phone {
    width: 31%;
  }
  .btn-header {
    padding-inline: 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .brand-word {
    font-size: 1.35rem;
  }
  .btn-header {
    display: none;
  }
  .menu {
    margin-left: auto;
  }
  .menu-cta {
    display: block;
  }
  .header-row {
    gap: 0.75rem;
  }
  .hero-steps ol {
    gap: 0.5rem 1.4rem;
    font-size: 0.7rem;
  }
}
