:root {
  --void: #121214;
  --graphite: rgba(22, 22, 24, 0.92);
  --panel: #161618;
  --line: rgba(255, 255, 255, 0.12);
  --bone: #f4f4f5;
  --mist: rgba(210, 210, 220, 0.72);
  --listen: #3ecfb2;
  --think: #6ea8ff;
  --speak: #ffb454;
  --radio: #b08cff;
  --display: "SF Pro Display", "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
  --body: "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, monospace;
  --max: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #191a23;
  color: var(--bone);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
}

.wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 46% at 88% 0%, color-mix(in srgb, var(--listen) 40%, transparent), transparent 68%),
    radial-gradient(ellipse 52% 42% at 8% 88%, color-mix(in srgb, var(--think) 32%, transparent), transparent 70%),
    radial-gradient(ellipse 44% 36% at 55% 45%, color-mix(in srgb, var(--speak) 20%, transparent), transparent 72%);
  animation: wash-shift 16s ease-in-out infinite;
}
@keyframes wash-shift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  50% { transform: translate3d(-8%, 6%, 0) scale(1.14); opacity: 0.66; }
}

a { color: var(--bone); }
a:hover { color: var(--listen); }

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--bone);
  color: var(--void);
  padding: 0.4rem 0.7rem;
}
.skip:focus { top: 1rem; }

.top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(25, 26, 35, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.mark-pebble {
  --nova-dot-color: #3ecfb2;
  --nova-dot-pebble: 22px;
  --nova-dot-size: 10px;
  --nova-dot-pulse: 3.6s;
  width: var(--nova-dot-pebble);
  height: var(--nova-dot-pebble);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.3), transparent 42%),
    radial-gradient(
      circle at 50% 58%,
      color-mix(in srgb, var(--nova-dot-color) 16%, rgba(22, 22, 24, 0.58)),
      rgba(16, 16, 18, 0.68) 72%
    );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.34),
    0 0 10px color-mix(in srgb, var(--nova-dot-color) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 1px rgba(0, 0, 0, 0.22);
  animation: nova-pebble-breathe var(--nova-dot-pulse) ease-in-out infinite;
}
.mark-pebble i {
  width: var(--nova-dot-size);
  height: var(--nova-dot-size);
  border-radius: 50%;
  font-style: normal;
  background: radial-gradient(
    circle at 38% 32%,
    color-mix(in srgb, var(--nova-dot-color) 42%, white),
    var(--nova-dot-color) 64%,
    color-mix(in srgb, var(--nova-dot-color) 68%, #1a1a1c) 100%
  );
  box-shadow: 0 0 7px color-mix(in srgb, var(--nova-dot-color) 52%, transparent);
  animation: nova-dot-breathe var(--nova-dot-pulse) ease-in-out infinite;
}
@keyframes nova-pebble-breathe {
  0%, 100% {
    transform: scale(0.94);
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.34),
      0 0 7px color-mix(in srgb, var(--nova-dot-color) 18%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -1px 1px rgba(0, 0, 0, 0.22);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 2px 10px rgba(0, 0, 0, 0.28),
      0 0 16px color-mix(in srgb, var(--nova-dot-color) 42%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  }
}
@keyframes nova-dot-breathe {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.92);
    box-shadow: 0 0 5px color-mix(in srgb, var(--nova-dot-color) 34%, transparent);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 12px color-mix(in srgb, var(--nova-dot-color) 70%, transparent);
  }
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}
.nav a {
  text-decoration: none;
  color: var(--mist);
  font-size: 0.92rem;
}
.nav a[aria-current="page"],
.nav a:hover { color: var(--bone); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 0.35rem 0.6rem;
  font: inherit;
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mist);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.32rem;
  cursor: pointer;
}
.lang button[aria-current="true"] {
  color: var(--void);
  background: var(--listen);
}
.lang button:hover { color: var(--listen); }
.lang button[aria-current="true"]:hover { color: var(--void); }

.cta-mini {
  text-decoration: none;
  background: var(--listen);
  color: #121214;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}
.cta-mini:hover { background: #5fe0c4; color: #121214; }

.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }

.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.2rem;
}

.hero {
  padding: 1.2rem 0 1.5rem;
  text-align: left;
  max-width: 40rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--listen);
}
.hero p {
  margin: 0;
  color: var(--mist);
  font-size: 1.2rem;
  max-width: 34rem;
}
.hero .actions { margin-top: 1.6rem; }

.stage-avatar {
  --halo: #3ecfb2;
  --avatar-size: min(15.4rem, 40.6vw);
  position: relative;
  width: var(--avatar-size);
  height: var(--avatar-size);
  margin: 1.4rem auto;
  flex-shrink: 0;
  animation: stage-float 8s ease-in-out infinite;
}
@keyframes stage-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.avatar-halo {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.avatar-halo-glow,
.avatar-halo-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.avatar-halo-glow {
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--halo) 55%, transparent),
    0 0 18px 4px color-mix(in srgb, var(--halo) 45%, transparent),
    0 0 36px 10px color-mix(in srgb, var(--halo) 25%, transparent);
  animation: halo-breathe 1.65s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}
.avatar-halo-arc {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 245deg,
    color-mix(in srgb, var(--halo) 15%, transparent) 270deg,
    var(--halo) 310deg,
    color-mix(in srgb, var(--halo) 90%, white) 330deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  animation: halo-spin 1.35s linear infinite;
  filter: drop-shadow(0 0 6px var(--halo));
}
.avatar-frame {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #d2d2d6;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(0, 0, 0, 0.12);
}
.avatar-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

@keyframes halo-spin {
  0% { transform: rotate(0deg); }
  35% { transform: rotate(240deg); }
  100% { transform: rotate(360deg); }
}
@keyframes halo-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  28% { opacity: 1; transform: scale(1.035); }
}

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-solid { background: var(--listen); color: #121214; }
.btn-solid:hover { background: #5fe0c4; color: #121214; }
.btn-ghost { border: 1px solid var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--mist); color: var(--bone); }

.shot {
  margin: 1.6rem auto 0;
  width: min(var(--max), calc(100% - 2.5rem));
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--listen) 22%, transparent),
    0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 1s ease, transform 1s ease;
}
.shot.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.shot.is-in:not(.is-empty) {
  animation: shot-float 8s ease-in-out 1s infinite;
}
@keyframes shot-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1); }
}
.shot-wide { width: min(86rem, calc(100% - 1.6rem)); }
.shot img,
.shot video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.shot figcaption {
  font-size: 0.8rem;
  color: var(--mist);
  padding: 0.7rem 1rem 0.85rem;
  border-top: 1px solid var(--line);
}
.shot.is-empty {
  min-height: 22rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, var(--graphite), var(--panel));
}
.shot.is-empty img,
.shot.is-empty video { display: none; }
.shot.is-empty::before {
  content: attr(data-empty);
  color: var(--mist);
  font-size: 0.92rem;
  text-align: center;
  padding: 2rem;
  max-width: 28rem;
  white-space: pre-line;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.section-head,
.split h2,
.block h2,
.page-notes h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.8rem;
}
.split p, .block p { color: var(--mist); margin: 0 0 0.8rem; }
.kbd {
  font-family: var(--mono);
  font-size: 0.78rem;
  border: 1px solid var(--line);
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  color: var(--bone);
}

.block { padding: 4.5rem 0; }
.quiet {
  color: var(--mist);
  font-size: 0.95rem;
}
.price-line {
  color: var(--mist);
  font-size: 0.9rem;
}

.page-notes .notes-hero {
  padding: 4.4rem 0 3.2rem;
}
.page-notes .notes-hero .quiet {
  margin-bottom: 1.6rem;
}
.page-notes .notes-band {
  padding: 3.8rem 0;
  border-top: 1px solid var(--line);
}
.page-notes .notes-band:last-of-type {
  padding-bottom: 5.8rem;
}
.page-notes h2 {
  margin: 0 0 1.15rem;
}
.page-notes p {
  margin: 0 0 1.15rem;
  max-width: 42rem;
  color: var(--mist);
}
.page-notes p:last-child {
  margin-bottom: 0;
}
.page-notes table {
  margin-top: 0.4rem;
}

.page-product .hero {
  padding: 4.8rem 0 1.2rem;
}
.page-product .product-band {
  padding: 5.2rem 0;
  border-top: 1px solid var(--line);
}
.page-product .product-cta {
  padding-bottom: 5.8rem;
}
.page-product .section-head {
  margin: 0 0 1.55rem;
}
.page-product .quiet {
  margin-bottom: 1.6rem;
}
.page-product .look-row {
  margin: 2.1rem 0 0;
  gap: 0.55rem;
}
.page-product .split {
  padding: 4.6rem 0 0;
}

.page-download main .wrap {
  width: min(52rem, calc(100% - 2.5rem));
}
.download-hero {
  padding: 5.2rem 0 4.4rem;
  text-align: center;
}
.download-hero.hero {
  max-width: none;
}
.download-hero h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.download-hero p {
  margin-left: auto;
  margin-right: auto;
}
.download-hero .actions {
  justify-content: center;
}
.download-meta {
  margin: 1.5rem auto 0;
  max-width: 28rem;
}
.download-meta .price-line + .price-line {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  opacity: 0.82;
}
.page-download .plans-wrap {
  width: min(64rem, calc(100% - 2.5rem));
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2.4rem 0 0;
  text-align: left;
}
.plan {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.plan.is-in { opacity: 1; transform: none; }
.plan:nth-child(2) { transition-delay: 0.1s; }
.plan:nth-child(3) { transition-delay: 0.18s; }
.plan.is-featured {
  border-color: color-mix(in srgb, var(--listen) 55%, var(--line));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--listen) 26%, transparent),
    0 22px 50px rgba(0, 0, 0, 0.38);
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.plan-kicker {
  margin: 0;
  color: var(--mist);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: var(--listen);
  color: #121214;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan .amount {
  margin: 0.85rem 0 0.2rem;
  font-family: var(--display);
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}
.plan .amount small {
  margin-left: 0.15rem;
  font-size: 1rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--mist);
}
.plan .period {
  margin: 0;
  color: var(--mist);
  font-size: 0.88rem;
}
.plan ul {
  list-style: none;
  margin: 1.15rem 0 1.25rem;
  padding: 0;
  color: var(--mist);
  font-size: 0.9rem;
}
.plan li {
  padding: 0.28rem 0;
}
.plan .btn {
  justify-content: center;
  margin-top: auto;
}
.download-section {
  padding: 0;
  text-align: center;
}
.download-section .wrap {
  padding: 4.6rem 0;
  border-top: 1px solid var(--line);
}
.download-section:last-of-type .wrap {
  padding-bottom: 5.8rem;
}

.page-install .wrap {
  width: min(52rem, calc(100% - 2.5rem));
}
.page-install .plans-wrap {
  width: min(64rem, calc(100% - 2.5rem));
}
.install-hero .install-chip {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.78rem;
}
.install-steps {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  text-align: left;
}
.install-steps li {
  margin: 0;
  padding: 1.35rem 1.25rem 1.3rem;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.install-num {
  display: block;
  color: var(--listen);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 650;
}
.install-steps h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin: 0.55rem 0 0.45rem;
}
.install-steps p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}
.download-section h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto 0.7rem;
  max-width: 20ch;
}
.download-section h2 em {
  font-style: normal;
  color: var(--listen);
}
.download-lead {
  color: var(--mist);
  margin: 0 auto 2rem;
  max-width: 32rem;
}
.works-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(22, 22, 24, 0.55);
  color: var(--mist);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.works-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}
.works-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 1.2rem 0.4rem 1rem;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.2s ease;
}
.works-grid li.is-in { opacity: 1; transform: none; }
.works-grid li:nth-child(2) { transition-delay: 0.04s; }
.works-grid li:nth-child(3) { transition-delay: 0.08s; }
.works-grid li:nth-child(4) { transition-delay: 0.12s; }
.works-grid li:nth-child(5) { transition-delay: 0.16s; }
.works-grid li:nth-child(6) { transition-delay: 0.2s; }
.works-grid li:nth-child(n+7) { transition-delay: 0.1s; }
.works-grid li:hover {
  border-color: color-mix(in srgb, var(--listen) 35%, var(--line));
}
.works-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: #f4f4f5;
}
.works-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}
.works-grid span {
  font-size: 0.74rem;
  line-height: 1.2;
  color: var(--mist);
}

.faq-list {
  border-top: 1px solid var(--line);
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--listen);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--mist);
  max-width: 36rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}
.tile {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.55rem 1.5rem 1.45rem;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.tile.is-in { opacity: 1; transform: none; }
.grid-2 .tile:nth-child(2) { transition-delay: 0.08s; }
.grid-2 .tile:nth-child(3) { transition-delay: 0.04s; }
.grid-2 .tile:nth-child(4) { transition-delay: 0.12s; }
.grid-2 .tile:nth-child(5) { transition-delay: 0.08s; }
.grid-2 .tile:nth-child(6) { transition-delay: 0.16s; }
.tile h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}
.tile p { margin: 0; color: var(--mist); font-size: 0.95rem; }

.look-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  justify-content: space-between;
  margin: 1.2rem 0 0.8rem;
}
.look-row figure {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.look-row img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: #d2d2d6;
  display: block;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.look-row.is-in img {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.look-row.is-in figure:nth-child(2) img { transition-delay: 0.05s; }
.look-row.is-in figure:nth-child(3) img { transition-delay: 0.1s; }
.look-row.is-in figure:nth-child(4) img { transition-delay: 0.15s; }
.look-row.is-in figure:nth-child(5) img { transition-delay: 0.2s; }
.look-row.is-in figure:nth-child(6) img { transition-delay: 0.25s; }
.look-row.is-in figure:nth-child(7) img { transition-delay: 0.3s; }
.look-row.is-in figure:nth-child(8) img { transition-delay: 0.35s; }
.look-row.is-in figure:nth-child(9) img { transition-delay: 0.4s; }
.look-row.is-in figure:nth-child(10) img { transition-delay: 0.45s; }
.look-row.is-in figure:nth-child(11) img { transition-delay: 0.5s; }
.look-row figcaption {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--mist);
}

.soon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin: 1.8rem 0 0;
}
.soon article {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.soon article.is-in { opacity: 1; transform: none; }
.soon article:nth-child(2) { transition-delay: 0.08s; }
.soon article:nth-child(3) { transition-delay: 0.04s; }
.soon article:nth-child(4) { transition-delay: 0.12s; }
.soon h3 { font-family: var(--display); font-size: 1.15rem; margin: 0 0 0.4rem; }
.soon p { margin: 0; color: var(--mist); font-size: 0.95rem; }
.badge-soon {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121214;
  background: var(--speak);
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  vertical-align: middle;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.6rem;
  color: var(--mist);
  font-size: 0.82rem;
}
.foot a { color: var(--mist); }
.foot p { margin: 0.25rem 0; }

.note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--bone);
  color: var(--void);
  padding: 0.7rem 0.9rem;
  max-width: 22rem;
  border-radius: 10px;
  z-index: 20;
}
.note[hidden] { display: none; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th, td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--listen);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .top { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: block; }
  .cta-mini { display: none; }
  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav[data-open="true"] { display: flex; }
  .hero-row { grid-template-columns: 1fr; }
  .split, .split.reverse, .grid-2, .soon { grid-template-columns: 1fr; direction: ltr; }
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plans { grid-template-columns: 1fr; }
  .install-steps { grid-template-columns: 1fr; }
  .look-row { flex-wrap: wrap; }
  .look-row figure { flex: 0 0 calc(20% - 0.5rem); }
  .shot.is-empty { min-height: 14rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wash,
  .stage-avatar,
  .shot.is-in:not(.is-empty),
  .avatar-halo-glow,
  .avatar-halo-arc,
  .mark-pebble,
  .mark-pebble i { animation: none; }
  .shot,
  .tile,
  .soon article,
  .plan,
  .works-grid li { opacity: 1; transform: none; transition: none; }
  .look-row img { opacity: 1; transform: none; transition: none; }
}
