:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #101010;
  --panel: #161616;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f1ea;
  --muted: #b9b3aa;
  --dim: #746f67;
  --warm: #d9cfbd;
  --olive: #8d947b;
  --paper: #f2eee7;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@keyframes ypodFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(4deg);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
}

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

video {
  display: block;
  width: 100%;
}

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

button,
a.button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: lowercase;
}

nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 4vw, 64px) 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(141, 148, 123, 0.12), transparent 29%),
    linear-gradient(115deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.78));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.78) contrast(1.06);
}

.site-float {
  position: absolute;
  z-index: 1;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.5));
  pointer-events: auto;
  user-select: none;
  touch-action: none;
  cursor: grab;
  animation: ypodFloat 6s ease-in-out infinite;
}

.site-float-lite {
  right: clamp(24px, 7vw, 120px);
  bottom: 5%;
  width: clamp(145px, 18vw, 285px);
  animation-delay: -0.7s;
}

.site-float-yema-one-left {
  right: clamp(210px, 34vw, 610px);
  top: 17%;
  width: clamp(82px, 10vw, 160px);
  animation-delay: -2.2s;
}

.site-float-yema-one-right {
  right: clamp(120px, 22vw, 420px);
  bottom: 17%;
  width: clamp(86px, 11vw, 170px);
  animation-delay: -4s;
}

.site-float-pro {
  right: clamp(310px, 43vw, 760px);
  top: 34%;
  width: clamp(84px, 10vw, 155px);
  animation-delay: -1.8s;
}

.site-float-pro-right {
  right: clamp(18px, 6vw, 95px);
  top: 28%;
  width: clamp(80px, 9vw, 150px);
  animation-delay: -5s;
}

.site-float-remote {
  right: clamp(70px, 13vw, 240px);
  top: 9%;
  width: clamp(100px, 11vw, 190px);
  animation-delay: -3.1s;
}

.site-float-wrap {
  right: clamp(240px, 30vw, 560px);
  bottom: 4%;
  width: clamp(92px, 10vw, 175px);
  animation-delay: -3.8s;
}

.section-float {
  position: absolute;
  z-index: 0;
  height: auto;
  object-fit: contain;
  pointer-events: auto;
  user-select: none;
  touch-action: none;
  cursor: grab;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.32));
  animation: ypodFloat 7s ease-in-out infinite;
}

.site-float.dragging,
.section-float.dragging {
  z-index: 6;
  cursor: grabbing;
  animation-play-state: paused;
}

.hero-copy {
  position: relative;
  max-width: 690px;
  padding-top: 5vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 9rem;
  line-height: 0.86;
  font-weight: 540;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 0.92;
  font-weight: 520;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.85rem;
  line-height: 1.05;
  font-weight: 520;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.55;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #ded8cf;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary {
  background: var(--paper);
  color: #0b0b0b;
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.tagline {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: 28px;
  color: rgba(245, 241, 234, 0.62);
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: 3.4rem;
  line-height: 1;
}

.statement,
.vision-room,
.motion,
.models,
.fit-section,
.remote-section,
.customize-section,
.remote-lifestyle,
.remote-cta,
.gallery,
.pitch,
.spec,
.sources,
.controls-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 4vw, 64px);
}

.statement > :not(.section-float),
.motion > :not(.section-float),
.remote-section > :not(.section-float),
.customize-section > :not(.section-float),
.remote-lifestyle > :not(.section-float),
.remote-cta > :not(.section-float),
.gallery > :not(.section-float),
.pitch > :not(.section-float),
.controls-band > :not(.section-float),
.models > :not(.section-float),
.fit-section > :not(.section-float),
.spec > :not(.section-float),
.sources > :not(.section-float),
footer > :not(.section-float) {
  position: relative;
  z-index: 1;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: end;
  background: var(--paper);
  color: #111;
}

.statement .eyebrow,
.statement p {
  color: #514d47;
}

.statement p {
  margin-bottom: 8px;
}

.section-float-yema1 {
  right: clamp(16px, 5vw, 90px);
  bottom: 10%;
  width: clamp(82px, 10vw, 160px);
  opacity: 0.18;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}

.motion {
  background: #090909;
}

.section-float-pro {
  left: clamp(12px, 4vw, 62px);
  top: 7%;
  width: clamp(78px, 9vw, 145px);
  opacity: 0.28;
  animation-delay: -2.8s;
}

.vision-room {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 42, 57, 0.3), transparent 34%),
    linear-gradient(180deg, #0c0b0b, #080808);
}

.vision-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.vision-hero-grid article,
.document-board article,
.pitch-path article {
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(22px, 3vw, 36px);
}

.vision-hero-grid .vision-lead {
  background:
    linear-gradient(145deg, rgba(93, 42, 57, 0.34), rgba(12, 11, 11, 0.98)),
    #0c0b0b;
}

.vision-hero-grid span,
.pitch-path span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) repeat(5, minmax(140px, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ecosystem-map div {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  background: #080808;
}

.ecosystem-map .ecosystem-core {
  align-content: center;
  background: var(--paper);
  color: #0c0b0b;
}

.ecosystem-core span {
  font-size: 2.3rem;
  font-weight: 620;
}

.ecosystem-core p {
  margin: 0;
  color: #4d463f;
}

.ecosystem-map strong {
  font-size: 1.08rem;
  font-weight: 720;
  text-transform: lowercase;
}

.ecosystem-map div > span {
  color: var(--muted);
  line-height: 1.35;
}

.document-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.document-board article {
  min-height: 270px;
  background: #0a0a0a;
}

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

.document-board.dense-board article {
  min-height: 330px;
}

.pitch-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.pitch-path article {
  min-height: 210px;
  background: rgba(18, 19, 15, 0.86);
}

.pitch-room-page {
  padding-top: 130px;
}

.pitch-room-page h1 {
  font-size: 6.4rem;
}

.pitch-room-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.pitch-room-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #050505;
}

.pitch-room-media .pitch-float {
  position: absolute;
  z-index: 2;
  width: clamp(120px, 17vw, 260px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.5));
  animation: ypodFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.pitch-float-lite {
  left: 4%;
  bottom: 3%;
}

.pitch-float-wrap {
  right: 7%;
  top: 7%;
  width: clamp(100px, 12vw, 180px);
  animation-delay: -2.2s;
}

.roadmap-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.roadmap-board article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 36px);
  background: #080808;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.finance-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(93, 42, 57, 0.2), rgba(8, 8, 8, 0.98)),
    #080808;
}

.finance-grid span {
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finance-grid strong {
  color: var(--text);
  font-size: 2.35rem;
  font-weight: 620;
  line-height: 1;
}

.cost-scenario-grid,
.cost-warning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

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

.cost-scenario-grid article,
.cost-warning-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 36px);
  background: #080808;
}

.cost-scenario-grid h3 {
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 2rem;
}

.cost-warning-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cost-table-wrap {
  margin-top: clamp(24px, 4vw, 48px);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080808;
}

.cost-table-wrap h3 {
  margin: 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cost-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.cost-table th {
  color: var(--warm);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cost-table td {
  color: var(--muted);
  line-height: 1.4;
}

.cost-table td:first-child {
  color: var(--text);
  font-weight: 700;
}

.research-steps article {
  min-height: 280px;
}

.pitch-room-page strong {
  color: var(--text);
  font-weight: 740;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.motion-card {
  display: grid;
  grid-template-rows: minmax(340px, 36vw) auto;
  background: #0c0c0c;
}

.motion-card.wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  grid-template-rows: auto;
  align-items: stretch;
}

.motion-card video {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  background: #050505;
}

.motion-card div {
  align-self: end;
  padding: clamp(22px, 3vw, 38px);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-card {
  display: grid;
  grid-template-rows: minmax(340px, 42vw) auto;
  border-right: 1px solid var(--line);
}

.model-card:last-child {
  border-right: 0;
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a0a0a;
}

.model-card.pro img {
  object-position: center top;
}

.model-copy {
  padding: clamp(22px, 3vw, 38px);
}

.model-name {
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 1px;
  margin: 26px 0 0;
  background: rgba(255, 255, 255, 0.09);
}

dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 12px 0;
  background: var(--black);
}

dt {
  color: var(--dim);
  font-size: 0.78rem;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--text);
}

.fit-section {
  background: #111;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.fit-layout img,
.gallery-stage,
.controls-band img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-video {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  margin-top: clamp(34px, 5vw, 72px);
  padding-top: clamp(28px, 5vw, 62px);
  border-top: 1px solid var(--line);
}

.fit-video video {
  max-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050505;
}

.fit-copy {
  max-width: 560px;
}

.remote-section {
  background:
    radial-gradient(circle at 78% 14%, rgba(81, 30, 49, 0.28), transparent 30%),
    linear-gradient(180deg, #090909, #11100f 58%, #080808);
}

.section-float-remote {
  right: clamp(16px, 4vw, 72px);
  bottom: 7%;
  width: clamp(78px, 9vw, 150px);
  opacity: 0.28;
  animation-delay: -1.7s;
}

.remote-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.remote-copy {
  max-width: 650px;
}

.remote-subtitle,
.section-intro {
  max-width: 820px;
  color: #e5ddd2;
  font-size: 1.28rem;
}

.remote-hero video {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050505;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.remote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.remote-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.remote-controls article {
  min-height: 246px;
  padding: 24px;
  background: #0b0b0b;
}

.remote-controls span {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--warm);
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remote-controls p {
  font-size: 1rem;
}

.dream-control {
  background:
    linear-gradient(145deg, rgba(81, 30, 49, 0.34), rgba(11, 11, 11, 0.96)),
    #0b0b0b;
}

.customize-section {
  background: #100d10;
}

.section-float-wrap {
  left: clamp(16px, 4vw, 72px);
  top: 10%;
  width: clamp(72px, 8vw, 132px);
  opacity: 0.36;
  animation-delay: -3.4s;
}

.section-float-lifestyle {
  right: clamp(12px, 4vw, 70px);
  top: 12%;
  width: clamp(70px, 8vw, 130px);
  opacity: 0.26;
  animation-delay: -4.7s;
}

.section-float-cta {
  right: clamp(20px, 8vw, 130px);
  bottom: 8%;
  width: clamp(80px, 9vw, 150px);
  opacity: 0.22;
  animation-delay: -2.5s;
}

.customize-section .section-heading {
  margin-bottom: 18px;
}

.customize-video {
  margin-top: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.customize-video video {
  max-height: 760px;
  object-fit: cover;
}

.remote-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.remote-product-card {
  display: grid;
  grid-template-rows: minmax(440px, 42vw) auto;
  background: #070707;
}

.remote-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.remote-product-card div {
  padding: clamp(22px, 3vw, 38px);
}

.remote-product-card.wrapped {
  background:
    linear-gradient(180deg, rgba(54, 28, 67, 0.28), rgba(7, 7, 7, 0.96)),
    #070707;
}

.remote-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(44, 12, 25, 0.34), transparent 42%),
    #070707;
}

.remote-lifestyle video {
  max-height: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050505;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.remote-cta {
  min-height: 56vh;
  display: grid;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), #050505),
    url("assets/remote/ypod-remote-system.png") center / cover;
}

.remote-cta h2 {
  max-width: 900px;
}

ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

li {
  color: #dfd8ce;
  line-height: 1.45;
}

li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 99px;
  background: var(--olive);
  vertical-align: 0.08em;
}

.gallery {
  background: var(--paper);
  color: #101010;
}

.section-float-lite-card {
  right: clamp(16px, 5vw, 86px);
  top: 8%;
  width: clamp(78px, 9vw, 145px);
  opacity: 0.16;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
  animation-delay: -4.2s;
}

.gallery .eyebrow,
.gallery p {
  color: #59534c;
}

.gallery-shell {
  display: grid;
  gap: 18px;
}

.gallery-stage {
  overflow: hidden;
  background: #fff;
}

.gallery-stage img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-controls button {
  min-height: 40px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #141414;
}

.gallery-controls button.active,
.gallery-controls button:hover {
  background: #111;
  color: var(--paper);
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.section-float-pitch {
  right: clamp(20px, 7vw, 120px);
  top: 8%;
  width: clamp(72px, 8vw, 132px);
  opacity: 0.26;
  animation-delay: -2.1s;
}

.section-float-controls {
  right: clamp(16px, 5vw, 80px);
  top: 10%;
  width: clamp(76px, 9vw, 145px);
  opacity: 0.2;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
  animation-delay: -3.8s;
}

.section-float-models-one {
  left: clamp(16px, 5vw, 88px);
  top: 6%;
  width: clamp(72px, 8vw, 135px);
  opacity: 0.24;
  animation-delay: -2.4s;
}

.section-float-models-pro {
  right: clamp(16px, 5vw, 88px);
  bottom: 7%;
  width: clamp(72px, 8vw, 135px);
  opacity: 0.24;
  animation-delay: -4.4s;
}

.section-float-fit {
  right: clamp(16px, 5vw, 88px);
  top: 8%;
  width: clamp(74px, 8vw, 140px);
  opacity: 0.24;
  animation-delay: -3.2s;
}

.section-float-spec {
  right: clamp(20px, 7vw, 120px);
  bottom: 10%;
  width: clamp(70px, 7vw, 124px);
  opacity: 0.14;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.16));
  animation-delay: -5.2s;
}

.section-float-sources {
  right: clamp(16px, 6vw, 110px);
  top: 12%;
  width: clamp(80px, 9vw, 150px);
  opacity: 0.16;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.16));
  animation-delay: -1.6s;
}

.pitch-grid article {
  min-height: 360px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pitch-grid article:last-child {
  border-right: 0;
}

.pitch-grid span {
  display: block;
  margin-bottom: 92px;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 800;
}

.controls-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: #12130f;
}

.controls-band img {
  background: #fff;
}

.spec {
  background: var(--paper);
  color: #111;
}

.spec .eyebrow,
.spec p {
  color: #59534c;
}

.spec-table {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(140px, 0.24fr) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.spec-table strong {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-table span {
  color: #34302c;
  font-size: 1.14rem;
  line-height: 1.4;
}

.sources {
  background: #0d0d0d;
}

.sources > p {
  max-width: 900px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.source-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--warm);
  font-size: 0.88rem;
}

.source-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-float-remote {
  right: clamp(160px, 18vw, 320px);
  bottom: 8px;
  width: clamp(82px, 8vw, 140px);
  opacity: 0.38;
  animation-delay: -2.9s;
}

.footer-float-earbud {
  left: clamp(132px, 18vw, 300px);
  top: 8px;
  width: clamp(70px, 7vw, 120px);
  opacity: 0.34;
  animation-delay: -4.5s;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  nav {
    gap: 14px;
  }

  .statement,
  .section-heading,
  .fit-layout,
  .fit-video,
  .remote-hero,
  .remote-lifestyle,
  .controls-band {
    grid-template-columns: 1fr;
  }

  .model-grid,
  .vision-hero-grid,
  .ecosystem-map,
  .document-board,
  .document-board.dense-board,
  .pitch-path,
  .pitch-room-media,
  .roadmap-board,
  .finance-grid,
  .cost-scenario-grid,
  .cost-warning-grid,
  .motion-grid,
  .remote-product-grid,
  .pitch-grid {
    grid-template-columns: 1fr;
  }

  .remote-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-card.wide {
    grid-template-columns: 1fr;
  }

  .model-card,
  .pitch-grid article {
    border-right: 0;
  }

  .model-card {
    grid-template-rows: minmax(300px, 72vw) auto;
  }

  .pitch-grid article {
    min-height: auto;
  }

  .pitch-grid span {
    margin-bottom: 44px;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .tagline {
    font-size: 2.6rem;
  }

  .remote-hero video,
  .remote-lifestyle video {
    min-height: 420px;
  }

  .vision-hero-grid article,
  .document-board article,
  .pitch-path article,
  .roadmap-board article,
  .finance-grid article,
  .cost-scenario-grid article,
  .cost-warning-grid article,
  .ecosystem-map div {
    min-height: auto;
  }

  .pitch-room-page h1 {
    font-size: 4.6rem;
  }

  .pitch-room-media img {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: end;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    font-size: 4.25rem;
  }

  .pitch-room-page h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  p {
    font-size: 1rem;
  }

  .tagline {
    font-size: 2rem;
  }

  .site-float-lite {
    width: 128px;
    right: 12px;
    bottom: 7%;
  }

  .site-float-yema-one-left {
    width: 72px;
    right: 128px;
    top: 17%;
  }

  .site-float-yema-one-right {
    width: 76px;
    right: 86px;
    bottom: 20%;
  }

  .site-float-pro {
    width: 70px;
    right: 174px;
    top: 30%;
  }

  .site-float-pro-right {
    width: 68px;
    right: 12px;
    top: 22%;
  }

  .site-float-remote {
    width: 86px;
    right: 72px;
    top: 9%;
  }

  .site-float-wrap {
    width: 76px;
    right: 184px;
    bottom: 9%;
  }

  .section-float {
    opacity: 0.12;
  }

  .section-float-yema1,
  .section-float-pro,
  .section-float-remote,
  .section-float-wrap,
  .section-float-lite-card,
  .section-float-pitch,
  .section-float-lifestyle,
  .section-float-cta,
  .section-float-controls,
  .section-float-models-one,
  .section-float-models-pro,
  .section-float-fit,
  .section-float-spec,
  .section-float-sources {
    width: 68px;
  }

  .section-float-yema1,
  .section-float-lite-card,
  .section-float-controls,
  .section-float-models-one,
  .section-float-spec,
  .section-float-sources,
  .footer-float-earbud {
    display: none;
  }

  .section-float-pro,
  .section-float-wrap,
  .section-float-pitch,
  .section-float-lifestyle,
  .section-float-cta,
  .section-float-models-pro,
  .section-float-fit {
    left: auto;
    right: 10px;
    top: 18px;
  }

  .section-float-remote {
    right: 10px;
    bottom: 18px;
  }

  .footer-float-remote {
    right: 20px;
    bottom: -18px;
    width: 62px;
  }

  .pitch-room-media .pitch-float {
    width: 112px;
  }

  .tagline {
    left: 18px;
    right: auto;
  }

  dl div,
  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .remote-controls {
    grid-template-columns: 1fr;
  }

  .remote-controls article {
    min-height: auto;
  }

  .remote-product-card {
    grid-template-rows: minmax(320px, 86vw) auto;
  }

  .remote-hero video,
  .remote-lifestyle video {
    min-height: 360px;
  }
}
