:root {
  color-scheme: dark;
  --background: #f4f2f0;

  --foreground: #ffffff;
  --border: #333333;
  --muted: #333333;
  --muted-foreground: #888888;
  --secondary: #222222;
  --secondary-soft: rgb(34 34 34 / 0.5);
  --panel: rgb(34 34 34 / 0.3);
  --green: #00c950;
  --green-soft: #05df72;
  --yellow: #efb100;
  --red: #fb2c36;
  --red-soft: #ff6467;
  --blue: #2b7fff;
  --blue-soft: #51a2ff;
  --wam-bg: #f5f4f1;
  --wam-ink: #050505;
  --wam-muted: #606060;
  --wam-border: #deddd9;
  --font-body:
    "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-size: 80.5%; /* scales whole site to feel like ~75–85% zoom */
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  background: var(--wam-bg);
  box-shadow: 0 0 0 100vmax var(--wam-bg);
  clip-path: inset(0 -100vmax);
  color: var(--wam-ink);
  margin: 0 auto;
  max-width: 82rem;
  padding: clamp(7rem, 12vw, 12rem) 1.5rem 4.5rem;
  text-align: center;
}

.hero-section h1 {
  font-size: clamp(3.35rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 2rem;
}

.hero-section p {
  color: var(--wam-muted);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.25;
  margin: 0 auto 3.5rem;
  max-width: 61rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 5.5rem;
  padding: 0 4rem;

  border-radius: 10px;
  border: 2px solid #111;

  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;

  cursor: pointer;
}

/* Primary black button */
.button-primary {
  background: #000;
  color: white;
  border-radius: 1.3rem;

  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(0, 0, 0, 0.22);
}

/* Secondary outlined button */
.button-secondary {
  background: transparent;
  border-radius: 1.3rem;
  color: #000;
}

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

@media (max-width: 768px) {
  .button {
    width: 100%;
    min-height: 4.5rem;
    font-size: 1.15rem;
    padding: 0 2rem;
    border-radius: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.image-marquee {
  align-items: center;
  background: var(--wam-bg);
  box-shadow: 0 0 0 100vmax var(--wam-bg);
  clip-path: inset(0 -100vmax);
  display: flex;
  min-height: clamp(22rem, 35vw, 34rem);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 0;

  width: 100vw;
}

.marquee-track {
  align-items: end;
  animation: marquee-scroll 34s linear infinite;
  display: flex;
  gap: clamp(1rem, 2vw, 1.7rem);
  min-width: max-content;
  padding-inline: clamp(1rem, 4vw, 4rem);
}

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

.marquee-card {
  border-radius: clamp(1rem, 1.6vw, 1.5rem);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.marquee-card:hover {
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.16);
  transform: translateY(-0.65rem) scale(1.015);
}

.marquee-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.marquee-card-mid {
  height: clamp(14rem, 23vw, 23.5rem);
  width: clamp(12rem, 18vw, 18.5rem);
}

.marquee-card-tall {
  height: clamp(18rem, 29vw, 29rem);
  width: clamp(13rem, 18vw, 18.75rem);
}

.marquee-card-wide {
  height: clamp(13rem, 19vw, 19rem);
  width: clamp(20rem, 31vw, 31rem);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(0.5rem, 1vw, 0.85rem)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ======================
   HEADER
====================== */

.site-header-wrap {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);

  width: min(92%, 82rem);
  z-index: 999;
}

.nav-frost-layer {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 180px;

  pointer-events: none;
  z-index: 998;

  /* reduced blur */
  backdrop-filter: blur(25px) saturate(100%);
  -webkit-backdrop-filter: blur(35px) saturate(120%);

  /* lighter tint */
  background: linear-gradient(
    to bottom,
    rgba(244, 243, 239, 0.16) 0%,
    rgba(244, 243, 239, 0.08) 45%,
    transparent 100%
  );

  /* softer fade */
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );
}

.site-header {
  background: rgba(244, 243, 239, 0.92);
  backdrop-filter: blur(24px);

  border-radius: 2rem;
  overflow: visible;

  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);

  transition:
    border-radius 0.4s ease,
    height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s ease;

  position: relative;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.25rem 1.5rem;
}

.brand img {
  width: clamp(9rem, 14vw, 13rem);
}

/* RIGHT SIDE */

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions {
  position: relative;
}

.download-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  transition: 0.25s ease;

  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

  padding: 18px;
  width: 240px;
}

.download-popover.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.qr-box {
  text-align: center;
}

.qr-box img {
  width: 170px;
  margin: 0 auto 14px;
}

.qr-box p {
  color: #666;
  margin-bottom: 14px;
}

.store-links {
  display: flex;
  gap: 8px;
}

.store-links a {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.app-button {
  background: #000;
  color: #fff;

  border-radius: 1.3rem;

  min-height: 3.8rem;
  padding: 0 1.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.95rem;
  font-weight: 600;
}

/* MENU BUTTON */

.menu-button {
  width: 3.8rem;
  height: 3.8rem;

  border: none;
  background: transparent;
  cursor: pointer;

  position: relative;
}

.menu-button span {
  position: absolute;

  left: 50%;
  width: 1.5rem;
  height: 2.5px;

  background: black;
  border-radius: 999px;

  transition: 0.3s ease;
}

.menu-button span:first-child {
  top: 44%;
  transform: translateX(-50%);
}

.menu-button span:last-child {
  top: 58%;
  transform: translateX(-50%);
}

/* X STATE */

.site-header.is-open .menu-button span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

/* ======================
   EXPAND
====================== */

.header-expand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  padding: 0 2rem;

  transition:
    max-height 0.55s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
}

.site-header.is-open .header-expand {
  max-height: 40rem;
  opacity: 1;

  padding: 0 2rem 2rem;
}

/* RIGHT CONTENT */

.expanded-side {
  align-self: end;
  max-width: 24rem;
}

.expanded-side p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.expanded-socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.expanded-socials a {
  color: black;
  text-decoration: none;
}

.overlay-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: black;
  color: white;

  border-radius: 999px;
  padding: 0.9rem 1.4rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .header-expand {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .expanded-nav a {
    font-size: 1rem;
    color: #000;
  }

  .app-button {
    font-size: 0.8rem;
    min-height: 3.3rem;
    padding-inline: 1rem;
  }
}

.feature-section {
  background: var(--wam-bg);
  box-shadow: 0 0 0 100vmax var(--wam-bg);
  clip-path: inset(0 -100vmax);
  color: var(--wam-ink);
  margin: 0 auto;
  max-width: 100rem;
  padding: clamp(6rem, 10vw, 11rem) 2rem clamp(5rem, 8vw, 9rem);
}

.benefits-section {
  margin: 0 auto;
  max-width: 72rem;
  padding: 0 1.5rem 8rem;
}

.feature-panel {
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--wam-border);
  border-radius: clamp(1.5rem, 2vw, 2.25rem);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(18rem, 0.82fr) minmax(24rem, 1fr);
  min-height: clamp(36rem, 42vw, 46rem);
  overflow: hidden;
  padding: clamp(2rem, 4.5vw, 5.25rem);
  position: relative;
}

.feature-device {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  min-height: 30rem;
  overflow: hidden;
}

.app-phone {
  background:
    radial-gradient(
      circle at 48% 45%,
      rgb(255 255 255 / 0.08),
      transparent 27%
    ),
    linear-gradient(140deg, #191919 0%, #040404 52%, #161616 100%);
  border: 0.55rem solid #111111;
  border-radius: clamp(2.2rem, 4vw, 3.9rem);
  box-shadow:
    0 22px 45px rgb(0 0 0 / 0.18),
    inset 0 0 0 1px rgb(255 255 255 / 0.12);
  color: #ffffff;
  height: clamp(34rem, 45vw, 45rem);
  margin-bottom: clamp(-7rem, -8vw, -4rem);
  max-width: 100%;
  overflow: hidden;
  padding: clamp(1.45rem, 2vw, 2.1rem);
  position: relative;
  transform: translateY(0.5rem);
  transition:
    transform 260ms ease,
    filter 260ms ease;
  width: clamp(18rem, 29vw, 30rem);
}

.app-phone::before {
  background: #000000;
  border-radius: 999px;
  content: "";
  height: 2.2rem;
  left: 50%;
  position: absolute;
  top: 1.3rem;
  transform: translateX(-50%);
  width: 8.8rem;
  z-index: 1;
}

.app-phone::after {
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / 0.1), transparent),
    radial-gradient(circle at 70% 20%, rgb(255 255 255 / 0.12), transparent 35%);
  content: "";
  inset: 0;
  opacity: 0.65;
  pointer-events: none;
  position: absolute;
}

.phone-status,
.phone-top-row,
.phone-orbit,
.phone-progress,
.app-phone p {
  position: relative;
  z-index: 2;
}

.phone-status {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 2rem;
  max-width: 100%;
  padding-inline: clamp(0.7rem, 2.5vw, 1.45rem);
  padding-top: 0.2rem;
}

.phone-status span:first-child {
  font-size: 1.15rem;
  font-weight: 700;
}

.phone-signal {
  border: 0.18rem solid #ffffff;
  border-radius: 999px;
  height: 0.62rem;
  opacity: 0.95;
  width: 1.9rem;
}

.phone-top-row {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.phone-chip,
.phone-icon {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgb(255 255 255 / 0.1);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  min-height: 2.3rem;
}

.phone-chip {
  color: #ffffff;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
}

.phone-chip::before {
  color: #ff7a1a;
  content: "●";
  font-size: 0.72rem;
}

.phone-chip-trophy::before {
  color: #ffffff;
  content: "◆";
}

.phone-icon {
  justify-content: center;
  margin-left: auto;
  width: 2.3rem;
}

.phone-icon + .phone-icon {
  margin-left: 0;
}

.phone-orbit {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(5rem, 7vw, 7rem);
  position: relative;
  width: min(84%, 22rem);
}

.phone-orbit::before {
  border: 0.42rem solid #8daeff;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  height: clamp(7rem, 10vw, 10rem);
  left: 50%;
  position: absolute;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-13deg);
  width: clamp(14rem, 21vw, 22rem);
}

.phone-orbit::after {
  background: #171717;
  border: 2px solid rgb(255 255 255 / 0.8);
  border-radius: 28% 30% 32% 34%;
  content: "";
  height: clamp(8rem, 11vw, 11rem);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  width: clamp(9rem, 13vw, 13rem);
}

.phone-orbit strong,
.phone-orbit small {
  color: #9eb8ff;
  position: relative;
  text-shadow: 0 2px 0 #ffffff;
  z-index: 1;
}

.phone-orbit strong {
  font-size: clamp(5.5rem, 9vw, 9.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.8;
}

.phone-orbit small {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
}

.orbit-star {
  background: #bed0ff;
  clip-path: polygon(
    50% 0,
    62% 35%,
    100% 50%,
    62% 65%,
    50% 100%,
    38% 65%,
    0 50%,
    38% 35%
  );
  height: 1.25rem;
  position: absolute;
  width: 1.25rem;
  z-index: 2;
}

.orbit-star-left {
  left: 10%;
  top: 38%;
}

.phone-progress {
  color: rgb(255 255 255 / 0.34);
  display: grid;
  font-size: 0.82rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 2rem;
  width: min(70%, 13rem);
}

.phone-progress span:nth-child(2) {
  text-align: right;
}

.phone-progress div {
  background: rgb(255 255 255 / 0.16);
  grid-column: 1 / -1;
  height: 0.22rem;
  margin-top: 0.4rem;
  overflow: hidden;
}

.phone-progress div span {
  background: #ffffff;
  display: block;
  height: 100%;
  transition: width 360ms ease;
  width: 46%;
}

.app-phone p {
  bottom: 2.5rem;
  color: rgb(255 255 255 / 0.35);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  left: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.feature-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.feature-copy h2,
.section-heading h2,
.quote-section blockquote {
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}

.feature-copy h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.feature-copy p {
  color: #858585;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  max-width: 48rem;
}

.feature-copy-stage {
  min-height: clamp(20rem, 24vw, 26rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  width: 100%;
}
/* Base */
.feature-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-progress button {
  width: 3rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: #d9d9d9;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.feature-progress button.is-active {
  width: 5.5rem;
  background: #000;
}

.feature-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Desktop 900+ ---------- */
@media (min-width: 900px) {
  .feature-controls {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .feature-progress {
    justify-content: flex-start;
  }

  .feature-arrows {
    justify-content: flex-end;
  }
}

/* ---------- Tablet & Mobile (<900px) ---------- */
@media (max-width: 899px) {
  .feature-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  /* centered progress */
  .feature-progress {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  /* fix disappearing issue */
  .feature-progress button {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .feature-progress button.is-active {
    flex: 1.8;
    width: auto;
  }

  /* arrows on next line */
  .feature-arrows {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.feature-arrows button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  padding: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 3rem;
}

.feature-arrows button:hover {
  transform: translateY(-2px);
}

.feature-arrows button span {
  border-bottom: 0.22rem solid #000;
  border-left: 0.22rem solid #000;
  border-radius: 0.18rem; /* rounded corners */
  display: block;
  height: 0.9rem; /* smaller */
  width: 0.9rem; /* smaller */
  transform: rotate(45deg);
}

.feature-arrows [data-feature-next] span {
  transform: rotate(225deg);
}

.feature-panel.is-switching .feature-copy-stage,
.feature-panel.is-switching .app-phone {
  opacity: 0;
  transform: translateY(0.85rem);
}

.how-section {
  background: #000000;
  box-shadow: 0 0 0 100vmax #000000;
  clip-path: inset(0 -100vmax);
  color: #ffffff;
  padding: clamp(6rem, 9vw, 9.5rem) 1.5rem clamp(7rem, 10vw, 11rem);
}

.how-heading {
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  max-width: 61rem;
  text-align: center;
}

.how-heading h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 1.35rem;
}

.how-heading p {
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1rem, 1.3vw, 1.32rem);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 55rem;
}

.work-stack {
  border: 0px solid rgb(255 255 255 / 0.18);
  border-radius: 1.75rem;
  margin: 0 auto;
  max-width: 86rem;
  padding: 0.7rem;
}

.work-card {
  align-items: stretch;
  background: #151515;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.25rem;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(20rem, 0.9fr) minmax(24rem, 1.1fr);
  min-height: clamp(31rem, 42vw, 40rem);
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 4rem);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.work-card + .work-card {
  margin-top: 1.35rem;
}

.work-card:nth-child(1) {
  z-index: 1;
}

.work-card:nth-child(2) {
  top: 6rem;
  z-index: 2;
}

.work-card:nth-child(3) {
  top: 7rem;
  z-index: 3;
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.work-step {
  color: rgb(255 255 255 / 0.58);
  font-size: 1rem;
  margin: 0 0 clamp(3rem, 6vw, 5.6rem);
}

.work-step::before {
  color: #ffffff;
  content: "•";
  margin-right: 0.65rem;
}

.work-copy h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 31rem;
}

.work-copy > p:not(.work-step) {
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.45;
  margin: 0;
  max-width: 34rem;
}

.work-copy ul {
  color: rgb(255 255 255 / 0.68);
  display: grid;
  gap: 1.35rem;
  list-style: none;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  padding: 0;
}

.work-copy li {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.35;
  padding-left: 1.65rem;
  position: relative;
}

.work-copy li::before {
  content: "››";
  left: 0;
  position: absolute;
  top: 0;
}

.work-link {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.95rem;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: clamp(2rem, 4vw, 5rem);
  width: fit-content;
}

.work-link::before {
  content: "+";
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
}

.work-link:hover {
  color: rgb(255 255 255 / 0.7);
}

.work-visual {
  align-items: end;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.28), rgb(0 0 0 / 0.04)),
    url("./assets/mountain-view.jpg") center / cover;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  min-height: 27rem;
  overflow: hidden;
  position: relative;
}

.work-visual::before {
  backdrop-filter: blur(2px);
  background: rgb(0 0 0 / 0.08);
  content: "";
  inset: 0;
  position: absolute;
}

.work-phone {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgb(255 255 255 / 0.08),
      transparent 27%
    ),
    linear-gradient(145deg, #1d1d1d 0%, #050505 52%, #1b1b1b 100%);
  border: 0.45rem solid #0b0b0b;
  border-radius: 2.65rem 2.65rem 0 0;
  box-shadow: 0 24px 42px rgb(0 0 0 / 0.38);
  height: clamp(26rem, 35vw, 34rem);
  margin-bottom: -0.35rem;
  max-width: 72%;
  overflow: hidden;
  padding: 1.35rem;
  position: relative;
  width: clamp(16rem, 23vw, 22rem);
  z-index: 1;
}

.work-phone::before {
  background: #000000;
  border-radius: 999px;
  content: "";
  height: 1.6rem;
  left: 50%;
  position: absolute;
  top: 1rem;
  transform: translateX(-50%);
  width: 6.7rem;
}

.work-time,
.work-phone-top,
.work-orbit,
.work-bar,
.work-phone p {
  position: relative;
  z-index: 1;
}

.work-time {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1.85rem 1.2rem;
}

.work-phone-top {
  display: flex;
  gap: 0.55rem;
  margin-bottom: clamp(4rem, 6vw, 6rem);
}

.work-phone-top span {
  background: rgb(255 255 255 / 0.1);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
}

.work-phone-top span::before {
  color: #ff7a1a;
  content: "●";
  font-size: 0.6rem;
  margin-right: 0.35rem;
}

.work-phone-top span:nth-child(2)::before {
  color: #ffffff;
  content: "◆";
}

.work-orbit {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(4rem, 6vw, 6rem);
  position: relative;
}

.work-orbit::before {
  border: 0.35rem solid #8daeff;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  height: clamp(5.6rem, 8vw, 8rem);
  left: 50%;
  position: absolute;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-13deg);
  width: clamp(11rem, 16vw, 16rem);
}

.work-orbit::after {
  background: #171717;
  border: 2px solid rgb(255 255 255 / 0.78);
  border-radius: 28% 30% 32% 34%;
  content: "";
  height: clamp(6.4rem, 9vw, 9rem);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  width: clamp(7rem, 10vw, 10rem);
}

.work-orbit strong,
.work-orbit small {
  color: #9eb8ff;
  position: relative;
  text-shadow: 0 2px 0 #ffffff;
  z-index: 1;
}

.work-orbit strong {
  font-size: clamp(4.2rem, 6.8vw, 7rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.8;
}

.work-orbit small {
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 700;
}

.work-bar {
  background: rgb(255 255 255 / 0.16);
  height: 0.2rem;
  margin: 0 auto;
  overflow: hidden;
  width: 44%;
}

.work-bar::before {
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  width: 46%;
}

.work-phone p {
  bottom: 1.45rem;
  color: rgb(255 255 255 / 0.35);
  font-size: 0.72rem;
  left: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 28rem;
}

.section-heading p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
  max-width: 28rem;
}

.benefit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  border-radius: 1.5rem;
  height: 25rem;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.benefit-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.benefit-card::after {
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.8),
    rgb(0 0 0 / 0.2),
    transparent
  );
  content: "";
  inset: 0;
  position: absolute;
}

.benefit-card div {
  bottom: 0;
  color: #ffffff;
  padding: 2rem;
  position: absolute;
  z-index: 1;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.benefit-card p {
  color: rgb(255 255 255 / 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.quote-section {
  margin: 120px auto;
  max-width: 56rem;
  padding: 0 1.5rem 10rem;
  text-align: center;
}

.quote-section figure {
  margin: 0;
}

.quote-section blockquote {
  font-size: clamp(1.75rem, 3.3vw, 2rem);
  line-height: 1.375;
  margin-bottom: 2rem;
}

.quote-section figcaption {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-align: left;
}

.quote-section img {
  border-radius: 999px;
  height: 3rem;
  object-fit: cover;
  width: 3rem;
}

.quote-section strong,
.quote-section small {
  display: block;
}

.quote-section small {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0 auto;
  max-width: 72rem;
  padding: 2rem 1.5rem 8rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1024px) {
  .feature-panel {
    gap: 3rem;
    grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1fr);
    padding: 3rem;
  }

  .work-card {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding-top: 5.5rem;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .feature-device {
    min-height: 28rem;
  }

  .feature-copy {
    width: 100%;
  }

  .feature-copy p {
    font-size: clamp(1.35rem, 5.2vw, 1.5rem);
    max-width: none;
    font-weight: 300;
  }

  .feature-copy-stage {
    min-height: auto;
  }

  .section-heading,
  .feature-controls {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .benefit-card {
    height: 23rem;
  }

  .how-section {
    padding-inline: 1rem;
  }

  .work-stack {
    border-radius: 1.25rem;
    padding: 0.45rem;
  }

  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3) {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.4rem;
    position: sticky;
    top: 1rem;
  }

  .work-step {
    margin-bottom: 2.25rem;
  }

  .work-copy h3 {
    max-width: none;
  }

  .work-copy > p:not(.work-step) {
    max-width: none;
  }

  .work-link {
    padding-top: 2rem;
  }

  .work-visual {
    min-height: 23rem;
    order: -1;
  }

  .work-phone {
    height: 27rem;
    max-width: 82%;
    width: 17rem;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 7.6rem;
  }

  .app-button {
    border-radius: 0.75rem;
    font-size: 0.78rem;
    gap: 0.42rem;
    min-height: 2.55rem;
    padding: 0.64rem 0.72rem;
  }

  .apple-mark {
    height: 1.08rem;
    width: 1.08rem;
  }

  .menu-button {
    width: 1.85rem;
  }

  .menu-button span {
    height: 0.16rem;
    width: 1.35rem;
  }

  .hero-section {
    padding: 4rem 1rem 2.75rem;
  }

  .hero-section h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .image-marquee {
    min-height: 20rem;
    padding-top: 2rem;
  }

  .feature-section {
    padding: 4.5rem 1rem 5rem;
  }

  .benefits-section {
    padding: 0 1rem 5rem;
  }

  .feature-panel {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }

  .feature-device {
    min-height: 23rem;
  }

  .app-phone {
    border-radius: 2.4rem;
    height: 30rem;
    max-width: 100%;
    padding: 1.25rem;
    width: 17rem;
  }

  .phone-top-row {
    gap: 0.45rem;
    margin-bottom: 4rem;
  }

  .phone-chip,
  .phone-icon {
    min-height: 1.9rem;
  }

  .phone-icon {
    width: 1.9rem;
  }

  .feature-copy h2 {
    font-size: 1.65rem;
  }

  .feature-copy p {
    font-size: 1.25rem;
  }

  .feature-controls {
    gap: 1.25rem;
  }

  .feature-arrows {
    justify-content: space-between;
    width: 100%;
  }

  .how-heading {
    margin-bottom: 2.5rem;
  }

  .how-heading h2 {
    font-size: 2.5rem;
  }

  .how-heading p {
    font-size: 0.95rem;
  }

  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3) {
    border-radius: 1rem;
    top: 0.75rem;
  }

  .work-card + .work-card {
    margin-top: 0.85rem;
  }

  .work-copy h3 {
    font-size: 1.65rem;
  }

  .work-copy ul {
    gap: 1rem;
  }

  .work-visual {
    min-height: 18rem;
  }

  .work-phone {
    border-radius: 2.1rem 2.1rem 0 0;
    height: 22rem;
    width: 14rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .benefit-card {
    height: 21rem;
  }

  .benefit-card div {
    padding: 1.5rem;
  }

  .quote-section {
    padding: 0 1rem 6rem;
  }

  .site-footer {
    padding-bottom: 5rem;
  }
}

/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
  background: var(--wam-bg);
  color: var(--wam-ink);
  padding: clamp(5rem, 8vw, 8rem) 1.5rem;
}

.journey-header {
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  max-width: 52rem;
  text-align: center;
}

.journey-header h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
}

.journey-header p {
  color: var(--wam-muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 42rem;
}

/* GRID */

.journey-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 86rem;
  margin: 0 auto;

  grid-template-columns: 1.35fr 1fr;
  grid-template-areas:
    "large challenge"
    "route analytics";
}

/* CARD BASE */

.journey-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 2rem);
  min-width: 0;
}

.journey-card-large {
  grid-area: large;
}

.journey-card-wide {
  grid-area: analytics;
}

.journey-grid .journey-card:nth-child(3) {
  grid-area: route;
}

.journey-grid .journey-card:nth-child(2) {
  grid-area: challenge;
}

.journey-card h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.journey-card p {
  color: #666;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.5;
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

/* ANALYTICS CARD */

.analytics-preview {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 89, 0, 0.15),
      transparent 35%
    ),
    #000;
  border-radius: 1.5rem;
  color: #fff;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 2rem);
  position: relative;
}

.analytics-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.analytics-top strong {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.analytics-top span {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 0.35rem;
}

.live-pill {
  align-items: center;
  background: rgba(152, 255, 75, 0.08);
  border: 1px solid rgba(152, 255, 75, 0.18);
  border-radius: 999px;
  display: flex;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

.live-pill span {
  width: 0.55rem;
  height: 0.55rem;
  background: #98ff4b;
  border-radius: 999px;
}

.analytics-graph {
  height: clamp(8rem, 14vw, 12rem);
  margin: 1.5rem 0;
}

.analytics-graph svg {
  width: 100%;
  height: 100%;
}

.analytics-graph path {
  fill: none;
  stroke: #ff5b00;
  stroke-width: 2.5;
}

.consistency-pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
}

.consistency-pill strong {
  color: #ff6a00;
}

/* IMAGE CARDS */

.journey-image-card,
.performance-card {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}

.journey-image-card img,
.performance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fixed heights for consistency */

.journey-image-card {
  height: clamp(18rem, 28vw, 24rem);
}

.performance-card {
  height: clamp(18rem, 28vw, 24rem);
}

.image-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;

  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);

  color: white;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

/* PERFORMANCE */

.performance-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;

  backdrop-filter: blur(22px);
  background: rgba(0, 0, 0, 0.45);

  border-radius: 1.25rem;
  color: white;

  display: flex;
  justify-content: space-between;
  gap: 1rem;

  padding: 1.25rem;
}

.performance-overlay span {
  color: rgba(255, 255, 255, 0.75);
}

.performance-overlay strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 0.35rem;
}

.bars {
  align-items: end;
  display: flex;
  gap: 0.35rem;
}

.bars span {
  width: 0.9rem;
  background: #86ff27;
  border-radius: 999px;
}

.bars span:nth-child(1) {
  height: 3rem;
}
.bars span:nth-child(2) {
  height: 5rem;
}
.bars span:nth-child(3) {
  height: 4rem;
}
.bars span:nth-child(4) {
  height: 5.5rem;
}
.bars span:nth-child(5) {
  height: 3.5rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large large"
      "challenge route"
      "analytics analytics";
  }

  .performance-overlay {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .journey-section {
    padding-inline: 1rem;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "challenge"
      "route"
      "analytics";
  }

  .journey-card {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }

  .journey-header h2 {
    font-size: 2.3rem;
    line-height: 1.05;
  }

  .journey-image-card,
  .performance-card {
    height: 18rem;
  }

  .performance-overlay {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .bars span {
    width: 0.75rem;
  }
}

/* ==========================
   FOOTER
========================== */

.footer-section {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;

  margin-top: -18rem;
  padding: 6rem 2rem 3rem;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================
   TOP
========================== */

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer-brand {
  max-width: 48rem;
}

.footer-logo {
  width: clamp(12rem, 18vw, 22rem);
  margin-bottom: 2rem;
}

.footer-brand p {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.1vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex-shrink: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.25rem, 1.3vw, 1.6rem);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* ==========================
   DIVIDER
========================== */

.footer-divider {
  margin: 5rem 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================
   MIDDLE
========================== */

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 8rem;
}

.footer-middle p {
  font-size: clamp(1rem, 1vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-policy a,
.footer-policy span {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1vw, 1.35rem);
  text-decoration: none;
}

.footer-policy a:hover {
  opacity: 0.7;
}

/* ==========================
   BOTTOM
========================== */

.footer-bottom {
  position: relative;
  min-height: 20rem;
}

/* giant text */

.footer-bg-text {
  position: absolute;
  left: 50%;
  bottom: -3rem;

  transform: translateX(-50%);

  margin: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;

  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  z-index: 0;
}

/* store buttons */

.store-buttons {
  position: absolute;
  left: 0;
  bottom: 2rem;

  display: flex;
  gap: 1.25rem;
  z-index: 2;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 1rem;

  min-width: 19rem;
  padding: 1rem 1.4rem;

  border-radius: 1.8rem;

  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.14);

  text-decoration: none;
  color: #fff;

  backdrop-filter: blur(10px);

  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: translateY(-3px);
}

.store-button i {
  font-size: 3rem;
  flex-shrink: 0;
}

.store-copy {
  display: flex;
  flex-direction: column;
}

.store-copy span {
  font-size: 0.78rem;
  opacity: 0.75;
}

.store-copy strong {
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  font-weight: 500;
}

/* back to top */

.back-to-top {
  position: absolute;
  right: 0;
  bottom: 2rem;

  display: flex;
  align-items: center;
  gap: 1rem;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.03);
  color: #fff;

  padding: 0.7rem 0.7rem 0.7rem 1.8rem;
  cursor: pointer;

  z-index: 2;
}

.back-to-top span {
  width: 3.25rem;
  height: 3.25rem;

  border-radius: 50%;
  background: #fff;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1024px) {
  .footer-section {
    margin-top: -12rem;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-bg-text {
    font-size: 10rem;
  }

  .store-button {
    min-width: 16rem;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .footer-section {
    margin-top: -10rem;
    padding: 4rem 1.5rem 2rem;
    border-radius: 2rem 2rem 0 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand p {
    font-size: 1rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-links a {
    font-size: 1.4rem;
  }

  .footer-divider {
    margin: 3rem 0;
  }

  .footer-middle {
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
    padding-bottom: 8rem;
  }

  .store-buttons {
    position: relative;
    bottom: auto;
    left: auto;

    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .store-button {
    width: 100%;
    justify-content: center;
    min-width: unset;
    border-radius: 2rem;
  }

  .back-to-top {
    position: relative;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    right: auto;
    bottom: auto;
    padding-left: 2rem;
  }

  .footer-bg-text {
    bottom: -2rem;
    left: 50%;

    font-size: 7rem;
    opacity: 0.5;
  }
}

.menu-backdrop {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;

  z-index: 998;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .site-header-wrap {
    width: calc(100% - 0.5rem);
    top: 0.5rem;
  }

  .site-header.is-open {
    min-height: 98vh;
  }

  .header-expand {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .site-header.is-open .header-expand {
    min-height: 75vh;

    padding: 2rem 1.5rem 2rem;
  }

  .expanded-nav a {
    font-size: 0.8rem;
    color: #000;
  }

  .expanded-side {
    margin-top: auto;
  }

  .app-button {
    min-height: 3.4rem;
    padding-inline: 1rem;
    font-size: 0.82rem;
  }
}

/* ==========================
   NAVBAR ALIGNMENT FIX
========================== */

.header-expand {
  display: grid !important;
  grid-template-columns: minmax(380px, 720px) minmax(260px, 320px) !important;
  justify-content: center !important;
  align-items: center !important;
  column-gap: clamp(4rem, 8vw, 8rem) !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
}

.expanded-nav {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding-top: 3rem;
  padding-bottom: 3rem;
  gap: 16px;
}

.expanded-nav a {
  width: 100%;
  text-align: start !important;

  color: #000;
  font-size: 3.5rem;
  font-weight: 500;
}

.expanded-side {
  align-self: center !important;
  margin: 0 auto !important;
  max-width: 24rem !important;
}

@media (max-width: 768px) {
  .header-expand {
    grid-template-columns: 1fr !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
  }

  .expanded-nav a {
    text-align: center !important;
    color: #000;
    font-size: 3.5rem;
    font-weight: 500;
  }

  .expanded-side {
    display: none;
  }
}

/* =========================
   VIRTUAL CHALLENGES
========================= */

.challenges-section {
  background: var(--wam-bg);
  color: var(--wam-ink);
  padding: clamp(5rem, 8vw, 8rem) 1.5rem;
}

.challenges-header {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 4rem;
}

.challenges-header h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 1rem;
}

.challenges-header p {
  color: var(--wam-muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 92rem;
  margin: 0 auto;
  align-items: stretch;
}

.challenge-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  height: 100%;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.challenge-image {
  position: relative;
  height: 15rem;
  overflow: hidden;

  flex-shrink: 0;
}

.challenge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.challenge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);

  transform: scale(1);
  will-change: transform;
}

.challenge-card:hover .challenge-image img {
  transform: scale(1.08) translateY(-6px);
}
.challenge-content {
  padding: 1.5rem;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.challenge-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;

  min-height: 3.6rem;
  display: flex;
  align-items: flex-start;
}

.challenge-rate {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.challenge-content p {
  color: #666;
  line-height: 1.5;
  margin: 0 0 1.5rem;

  min-height: 4.8rem;
}

.challenge-button {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: white;

  min-height: 3.8rem;
  border-radius: 1.3rem;

  font-weight: 600;
  margin-bottom: 1.5rem;
}

.challenge-content ul {
  list-style: none;
  padding: 0;
  margin-top: auto;

  display: grid;
  gap: 0.9rem;
}

.challenge-content li {
  position: relative;
  padding-left: 1.8rem;
  color: #444;
}

.challenge-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 700;
}

/* tablet */
@media (max-width: 1100px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile scroll */
@media (max-width: 768px) {
  .challenges-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .challenge-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .challenges-grid::-webkit-scrollbar {
    display: none;
  }
}

.scroll-indicator {
  display: none;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    margin-top: 1.25rem;

    color: #777;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .scroll-indicator span {
    width: 2.5rem;
    height: 2px;
    background: #000;
    position: relative;
    border-radius: 999px;
  }

  .scroll-indicator span::after {
    content: "";

    position: absolute;
    right: -1px;
    top: 50%;

    width: 0.55rem;
    height: 0.55rem;

    border-top: 2px solid #000;
    border-right: 2px solid #000;

    transform: translateY(-50%) rotate(45deg);

    animation: swipeHint 1.8s infinite;
  }
}

@keyframes swipeHint {
  0% {
    transform: translateY(-50%) translateX(0) rotate(45deg);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: translateY(-50%) translateX(0) rotate(45deg);
    opacity: 0.4;
  }
}

/* =========================
   COMMUNITY SECTION V2

========================= */
.community-section {
  background: var(--wam-bg);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
}

.community-shell {
  position: relative;
  max-width: 92rem;
  margin: 0 auto;
  min-height: 55rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CENTER CONTENT */

.community-content {
  text-align: center;
  max-width: 52rem;
  position: relative;
  z-index: 2;
}

.community-label {
  display: inline-block;

  margin-bottom: 1rem;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;

  color: #666;
}

.community-content h2 {
  font-size: clamp(3rem, 6vw, 6rem);

  line-height: 0.95;
  font-weight: 500;

  margin: 0 0 1.5rem;
}

.community-content p {
  color: #666;

  font-size: clamp(1.05rem, 1.3vw, 1.2rem);

  line-height: 1.65;

  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* CTA */

.community-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 4.5rem;

  background: #000;
  color: #fff;

  border-radius: 1.3rem;

  padding: 0 2rem;

  font-weight: 600;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.community-cta:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

/* STATS */

.community-features {
  display: flex;
  justify-content: center;
  gap: 3rem;

  margin-top: 3rem;
}

.community-features div {
  text-align: center;
}

.community-features strong {
  display: block;

  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.community-features span {
  color: #666;
}

/* FLOATING IMAGES */

.community-orbit {
  position: absolute;
  inset: 0;
}

.community-card {
  position: absolute;

  width: 13rem;
  height: 16rem;

  border-radius: 2rem;
  overflow: hidden;

  background: #fff;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);

  transition: transform 0.4s ease;
}

.community-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* positioning */

.card-one {
  top: 4rem;
  left: 0;
  transform: rotate(-18deg);
}

.card-two {
  top: 0;
  left: 18%;
  transform: rotate(-10deg);
}

.card-three {
  top: 3rem;
  right: 18%;
  transform: rotate(8deg);
}

.card-four {
  top: 7rem;
  right: 0;
  transform: rotate(14deg);
}

.card-five {
  bottom: 5rem;
  left: 10%;
  transform: rotate(-10deg);
}

.card-six {
  bottom: 3rem;
  right: 12%;
  transform: rotate(12deg);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .community-shell {
    min-height: 55rem;
    padding-top: 0;
  }

  .community-card {
    width: 9rem;
    height: 12rem;
  }
}

@media (max-width: 768px) {
  .community-shell {
    padding-top: 1rem;
  }

  .community-content h2 {
    line-height: 1;
  }

  .community-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .community-card {
    width: 7rem;
    height: 9rem;
    border-radius: 1.5rem;
  }

  .card-one {
    top: 2rem;
    left: -1rem;
  }

  .card-four {
    right: -1rem;
  }
}
