/* ============================================================
   HERO (marketing film backdrop)
   ============================================================ */

.hero {
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.hero-backdrop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-poster,
.hero-poster img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.hero-bg video {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.28s ease;
}

.hero.is-video-ready .hero-bg video {
  opacity: 1;
}

.hero-poster {
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, transparent 68%, rgba(6, 10, 9, 0.35) 86%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 52px) 0 clamp(40px, 5.5vw, 64px);
}

.hero-title {
  max-width: 14ch;
}

.hero-lead {
  max-width: 48ch;
  color: var(--muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(6, 10, 9, 0.9);
  object-fit: cover;
  object-position: center 18%;
  margin-left: -10px;
  background: #1a2320;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-proof p {
  font-size: 0.89rem;
  color: rgba(242, 247, 244, 0.72);
  line-height: 1.45;
  max-width: 30ch;
}

.hero-proof strong {
  color: var(--text);
}

.hero-sound {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
}

.film-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, color 0.2s ease;
}

.film-sound:hover {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.film-sound svg {
  width: 16px;
  height: 16px;
}

.film-sound.is-muted .icon-on {
  display: none;
}

.film-sound.is-muted .icon-off {
  display: block;
}

.film-sound:not(.is-muted) .icon-on {
  display: block;
}

.film-sound:not(.is-muted) .icon-off {
  display: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee-band {
  padding: clamp(16px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--stroke);
  background: var(--bg-elev);
  overflow: clip;
}

.marquee {
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(18px, 2.4vw, 32px);
  animation: marquee-scroll 28s linear infinite;
}

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

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

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 247, 244, 0.48);
}

.marquee-item.solid {
  color: var(--text);
  -webkit-text-stroke: 0;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--grad);
}

/* ============================================================
   FEATURE ROWS
   ============================================================ */

.features-wrap {
  padding: var(--section-pad) 0 0;
}

.feature-row {
  padding: clamp(26px, 4vw, 52px) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.feature-row--flip .feature-copy {
  order: 2;
}

.feature-row--flip .feature-visual {
  order: 1;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature-copy h2 {
  max-width: 15ch;
}

.feature-copy .lead {
  max-width: 46ch;
}

.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(8px, 1.6vw, 22px);
}

.feature-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(50% 50% at 50% 50%, var(--glow, var(--glow-mint)), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.feature-visual--teal {
  --glow: var(--glow-teal);
}

.phone {
  position: relative;
  aspect-ratio: 1421 / 2909;
}

.phone video,
.phone > picture img,
.phone > img.screen {
  position: absolute;
  left: 4.72%;
  top: 1.9%;
  width: 90.78%;
  height: 96.08%;
  object-fit: cover;
  border-radius: 11% / 5%;
  background: #0a0f0d;
}

.phone .phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.phone-md {
  width: clamp(210px, 19vw, 270px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* ============================================================
   WATCH BAND
   ============================================================ */

.watch-band {
  padding: var(--section-pad) 0;
}

.watch-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(70% 90% at 82% 20%, rgba(44, 201, 214, 0.10), transparent 62%),
    radial-gradient(60% 80% at 12% 90%, rgba(76, 224, 161, 0.08), transparent 62%),
    var(--bg-elev);
  overflow: clip;
  padding: clamp(28px, 4.5vw, 56px);
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}

.watch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.watch-duo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
}

.watch-device {
  position: relative;
  width: clamp(140px, 13vw, 185px);
  aspect-ratio: 416 / 496;
  border-radius: 30% / 25%;
  background: #050706;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 5px rgba(20, 24, 22, 0.9);
  overflow: visible;
}

.watch-device::before {
  content: "";
  position: absolute;
  right: -3%;
  top: 26%;
  width: 4.5%;
  height: 18%;
  border-radius: 4px;
  background: linear-gradient(90deg, #2c322f, #141816);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: -1;
}

.watch-device::after {
  content: "";
  position: absolute;
  right: -2.4%;
  top: 50%;
  width: 3.6%;
  height: 11%;
  border-radius: 3px;
  background: #12100f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.watch-device video {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 27% / 22%;
  background: #000;
}

.watch-device.small {
  width: clamp(118px, 10.5vw, 155px);
  margin-top: clamp(30px, 3.4vw, 50px);
}

/* ============================================================
   BENTO GRID
   ============================================================ */

.bento {
  padding: var(--section-pad) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #000;
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 224, 161, 0.35);
}

.bento-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.bento-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.9) 100%);
}

.bento-body {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: -34px;
}

.bento-body h3 {
  font-size: 1.05rem;
}

.bento-body p {
  font-size: 0.89rem;
  color: var(--muted);
  line-height: 1.5;
}

.bento-extra {
  margin-top: clamp(32px, 5vw, 56px);
}

.bento-extra--community .feature-grid {
  gap: clamp(28px, 4.5vw, 60px);
}

/* ============================================================
   AMBASSADOR CREW
   ============================================================ */

.crew {
  padding: var(--section-pad) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  overflow: clip;
}

.crew-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3.6vw, 40px);
}

.crew-head-row .section-head {
  margin-bottom: 0;
}

.ambassador-carousel {
  --carousel-gap: 16px;
  --carousel-visible: 3;
  margin-top: clamp(24px, 3.6vw, 40px);
}

.ambassador-carousel-viewport {
  overflow: clip;
  overflow-clip-margin: 12px;
  padding: 8px 2px 4px;
}

.ambassador-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ambassador-carousel-slide {
  flex: 0 0 calc((100% - ((var(--carousel-visible) - 1) * var(--carousel-gap))) / var(--carousel-visible));
  display: flex;
  min-width: 0;
}

.ambassador-carousel-slide .crew-card {
  width: 100%;
  flex: 1 1 auto;
  aspect-ratio: 4 / 5;
}

.ambassador-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.ambassador-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: min(100%, 320px);
}

.ambassador-carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: var(--stroke-strong);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.ambassador-carousel-dot.is-active {
  width: 22px;
  background: var(--grad);
}

.ambassador-carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ambassador-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.ambassador-carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambassador-carousel-play {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.ambassador-carousel-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ambassador-carousel-progress-bg {
  fill: none;
  stroke: var(--stroke-strong);
  stroke-width: 2;
}

.ambassador-carousel-progress-ring {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 97.4;
  transition: none;
}

.ambassador-carousel-toggle-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.ambassador-carousel-toggle-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.ambassador-carousel.is-playing .ambassador-carousel-toggle-icon--play,
.ambassador-carousel.is-paused .ambassador-carousel-toggle-icon--pause {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .ambassador-carousel-track {
    transition: none;
  }
}

.crew-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--card);
  transition: transform 0.3s ease;
}

a.crew-card:hover {
  transform: translateY(-6px);
}

.crew-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.crew-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 46%, rgba(4, 8, 7, 0.92) 88%);
}

.crew-card--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 80% at 50% 20%, rgba(76, 224, 161, 0.08), transparent 70%),
    var(--card);
}

.crew-card--placeholder .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crew-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(8px, 1.6vw, 20px);
  padding-top: 22px;
  border-top: 1px solid var(--stroke);
}

.crew-cta p {
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.95rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.cta-final {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: clip;
}

.cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke-strong);
  background:
    radial-gradient(90% 130% at 15% 0%, rgba(76, 224, 161, 0.16), transparent 58%),
    radial-gradient(80% 120% at 88% 20%, rgba(44, 201, 214, 0.14), transparent 60%),
    linear-gradient(180deg, #0c1412, #070c0a);
  overflow: clip;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: clamp(18px, 3.4vw, 48px);
  min-height: 360px;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(28px, 4.5vw, 60px);
  align-self: center;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 13ch;
}

.cta-visual {
  align-self: end;
  display: flex;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 32px) clamp(16px, 2.4vw, 40px) 0;
}

.cta-visual img {
  width: min(100%, 440px);
  height: auto;
  filter: drop-shadow(0 -8px 40px rgba(0, 0, 0, 0.4));
}

.cta-note {
  font-size: 0.86rem;
  color: var(--faint);
}
