:root {
  color-scheme: light;

  color-scheme: only light;

  --sphere-panel-width: 552px;

  --sphere-info-width: 440px;

  --ink: #111214;
  --ink-soft: #55585e;
  --ink-faint: #9a9da3;
  --line: #e9e9ec;
  --paper: #ffffff;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --font-display: 'Times New Roman', Times, 'Liberation Serif', Tinos,
                  'Noto Serif', serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--paper);
}

body {
  font-family: var(--font-ui);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.feat-lockscroll,
html.feat-lockscroll body {
  overflow: hidden;
  overscroll-behavior: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;

  touch-action: none;

  cursor: grab;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  transition: padding-right 0.55s var(--ease-out),
              padding-top 0.55s var(--ease-out),
              padding-left 0.55s var(--ease-out),
              padding-bottom 0.55s var(--ease-out);
}

body.sphere-panel-open .hero {
  padding-right: var(--sphere-panel-width);
}

body.sphere-info-open .hero {
  padding-left: var(--sphere-info-width);
}

.feat-groundshadow .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 46%, #f7f7f8 0%, #ffffff 58%);
  pointer-events: none;
  z-index: 0;
}

.hero-sphere-wrap {
  position: relative;
  z-index: 1;
  width: min(97%, 97svh, 1200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-groundshadow .hero-sphere-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--sphere-shadow-w, 34%);
  height: var(--sphere-shadow-h, 12px);
  transform: translate(-50%, -50%)
             translate(var(--sphere-shadow-x, 0px), var(--sphere-shadow-y, 34%));
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
              rgba(17, 18, 20, var(--sphere-shadow-alpha, 0.18)) 0%,
              rgba(17, 18, 20, 0) 70%);
  filter: blur(var(--sphere-shadow-blur, 6px));
  pointer-events: none;
  z-index: 0;
}

.sphere-root {
  position: relative;

  z-index: 1;
  user-select: none;
  touch-action: none;
}

.hero:active {
  cursor: grabbing;
}

.sphere-stage {
  position: relative;
  flex-shrink: 0;
  transform-style: preserve-3d;
}

.sphere-item {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
  cursor: pointer;
}

.sphere-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(0, 0, 0, 0.06);
  background: #f3f3f3;
  transition: transform 0.2s ease-out;
}

.feat-tilepolish .sphere-item-inner {
  border: none;
  box-shadow: 0 8px 22px rgba(17, 18, 20, 0.14);
}

.feat-tilepolish .sphere-item-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55),
              inset 0 0 0 2.5px rgba(17, 18, 20, 0.08),
              inset 0 -10px 22px rgba(17, 18, 20, 0.10);
  pointer-events: none;
}

.sphere-item:hover .sphere-item-inner {
  transform: scale(1.12);
}

.sphere-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.sphere-item.is-hinting .sphere-item-inner {
  animation: sphere-hint 1.4s var(--ease-out);
}

@keyframes sphere-hint {
  0%   { transform: scale(1);    box-shadow: 0 8px 22px rgba(17, 18, 20, 0.14); }
  35%  { transform: scale(1.16); box-shadow: 0 14px 34px rgba(17, 18, 20, 0.24); }
  100% { transform: scale(1);    box-shadow: 0 8px 22px rgba(17, 18, 20, 0.14); }
}

@media (prefers-reduced-motion: reduce) {
  .sphere-item.is-hinting .sphere-item-inner { animation: none; }
  .hero { transition: none; }
}

.sphere-item--section .sphere-item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.9),
              0 6px 16px rgba(17, 18, 20, 0.10);
}

.sphere-item--section svg {
  width: 44%;
  height: 44%;
  pointer-events: none;
}

.sphere-item--section:hover .sphere-item-inner {
  box-shadow: inset 0 0 0 1.5px rgba(17, 18, 20, 1),
              0 10px 24px rgba(17, 18, 20, 0.16);
}

.sphere-zoom {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.34;
  transition: opacity 0.3s ease;
}

.sphere-zoom:hover,
.sphere-zoom:focus-within,
.sphere-zoom.is-active {
  opacity: 1;
}

.sphere-zoom.is-hinting {
  animation: sphere-zoom-hint 2s var(--ease-out);
}

@keyframes sphere-zoom-hint {
  0%, 100% { opacity: 0.34; }
  22%, 68% { opacity: 1; }
}

body.sphere-panel-open .sphere-zoom {
  opacity: 0;
  pointer-events: none;
}

.sphere-zoom-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.16);
  color: var(--ink);
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.sphere-zoom-btn:hover {
  box-shadow: inset 0 0 0 1.5px rgba(17, 18, 20, 0.5);
  transform: scale(1.08);
}

.sphere-zoom-track {
  position: relative;
  width: 2px;
  height: 116px;
  border-radius: 2px;
  background: var(--line);
}

.sphere-zoom-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 2px;
  background: rgba(17, 18, 20, 0.34);
}

.sphere-zoom-knob {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  margin-bottom: -4.5px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--paper);
}

.sphere-zoom-tick {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 1px;
  margin-left: -4px;
  background: rgba(17, 18, 20, 0.3);
}

.sphere-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.sphere-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sphere-modal-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(var(--sphere-panel-width), 100vw);
  height: 100dvh;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(17, 18, 20, 0.16);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}

.sphere-modal-overlay.is-open .sphere-modal-panel {
  transform: translateX(0);
}

.sphere-modal-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f4f5;
  transition: aspect-ratio 0.35s var(--ease-out);
}

.sphere-modal-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feat-minimalpanel .sphere-modal-shot {
  object-fit: cover;
  object-position: top center;
}

.sphere-modal-gesture {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.sphere-modal-close,
.sphere-modal-arrow {
  position: absolute;
  z-index: 4;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(17, 18, 20, 0.14);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.2s ease;
}

.sphere-modal-close:hover,
.sphere-modal-arrow:hover {
  background: #ffffff;
  transform: scale(1.06);
}

.sphere-modal-close {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
}

.sphere-modal-arrow {
  top: 50%;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  opacity: 0;
}

.sphere-modal-arrow.is-prev { left: 12px; }
.sphere-modal-arrow.is-next { right: 12px; }

.sphere-modal-media:hover .sphere-modal-arrow,
.sphere-modal-arrow:focus-visible {
  opacity: 1;
}

@media (hover: none) {
  .sphere-modal-arrow { opacity: 1; }
}

.sphere-modal-content {
  flex: 1 1 auto;
  overflow-y: auto;
}

.sphere-modal-body {
  padding: 1.6rem 1.6rem 2rem;
}

.sphere-modal-description {
  margin: 0 0 1.3rem;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.sphere-modal-rich > :first-child {
  margin-top: 0;
}

.sphere-modal-rich > :last-child {
  margin-bottom: 1.5rem;
}

.sphere-modal-rich .info-sub {
  text-align: left;
}

.sphere-modal-actions {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}

.sphere-modal-visit,
.sphere-modal-contact {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease,
              box-shadow 0.15s ease, transform 0.15s ease;
}

.sphere-modal-visit span,
.sphere-modal-contact span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sphere-modal-visit svg,
.sphere-modal-contact svg {
  flex: 0 0 auto;
}

.sphere-modal-visit {
  background: var(--ink);
  color: #fff;
}

.sphere-modal-visit:hover {
  background: #000;
  transform: translateY(-1px);
}

.sphere-modal-contact {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.85);
}

.sphere-modal-contact svg {
  width: 19px;
  height: 19px;
}

.sphere-modal-contact:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--ink);
  transform: translateY(-1px);
}

.sphere-info-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.sphere-info-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sphere-info-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(var(--sphere-info-width), 100vw);
  height: 100dvh;
  background: var(--paper);
  box-shadow: 20px 0 60px rgba(17, 18, 20, 0.16);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease-out);
}

.sphere-info-overlay.is-open .sphere-info-panel {
  transform: translateX(0);
}

.sphere-info-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.sphere-info-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.9);
}

.sphere-info-icon svg {
  width: 17px;
  height: 17px;
}

.sphere-info-title {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.sphere-info-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.sphere-info-close:hover {
  background: #f2f2f4;
  color: var(--ink);
}

.sphere-info-content {
  flex: 1 1 auto;
  overflow-y: auto;

  overscroll-behavior: contain;
  padding: 1.5rem;
}

.sphere-info-content > :first-child {
  margin-top: 0;
}

.sphere-info-content > :last-child {
  margin-bottom: 0;
}

.info-lede {
  margin: 0 0 1.3rem;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.info-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

.info-stat b {
  flex: 0 0 auto;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.info-stat span {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.info-h {
  margin: 1.9rem 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-faint);
}

.info-p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.info-list,
.info-facts {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.info-list li,
.info-facts li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.6rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.info-list li::before,
.info-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--ink-faint);
}

.info-facts li b {
  color: var(--ink);
  font-weight: 600;
}

.info-steps {
  margin: 0 0 0.4rem;
  padding: 0;
  list-style: none;
  counter-reset: phase;
}

.info-steps li {
  counter-increment: phase;
  position: relative;
  padding-left: 2.1rem;
  padding-bottom: 1.2rem;
}

.info-steps li::before {
  content: counter(phase);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.85);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
}

.info-steps li::after {
  content: '';
  position: absolute;
  left: 11.5px;
  top: 30px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.info-steps li:last-child {
  padding-bottom: 0;
}

.info-steps li:last-child::after {
  display: none;
}

.info-steps b {
  display: block;
  margin: 0.2rem 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.info-steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.info-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  margin: 1.4rem 0 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.info-cta svg {
  flex: 0 0 auto;
}

.info-cta:hover {
  background: #000;
  transform: translateY(-1px);
}

.info-sub {
  margin: 0 0 0.4rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-faint);
}

.info-sub a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.info-sub a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.info-quote {
  margin: 1.2rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
}

.info-faq {
  margin-bottom: 0.4rem;
  border-top: 1px solid var(--line);
}

.info-faq details {
  border-bottom: 1px solid var(--line);
}

.info-faq summary {
  position: relative;
  list-style: none;
  padding: 0.85rem 1.6rem 0.85rem 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}

.info-faq summary::-webkit-details-marker {
  display: none;
}

.info-faq summary::before,
.info-faq summary::after {
  content: '';
  position: absolute;
  right: 2px;
  top: calc(0.85rem + 0.7em);
  width: 11px;
  height: 1px;
  background: var(--ink-soft);
  transition: transform 0.2s var(--ease-out);
}

.info-faq summary::after {
  transform: rotate(90deg);
}

.info-faq details[open] summary::after {
  transform: rotate(180deg);
}

.info-faq summary:hover {
  color: #000;
}

.info-faq p {
  margin: 0 0 0.95rem;
  padding-right: 1.6rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 640px) {

  .sphere-modal-panel {
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    max-height: 68dvh;
    box-shadow: 0 20px 60px rgba(17, 18, 20, 0.18);
    transform: translateY(-100%);
  }

  .sphere-modal-overlay.is-open .sphere-modal-panel {
    transform: translateY(0);
  }

  .sphere-modal-media {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 40dvh;
    transition: none;
  }

  .sphere-modal-gesture {
    display: block;
  }

  .sphere-modal-body {
    padding: 1rem 1.1rem 1.2rem;
  }

  .sphere-modal-description {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .sphere-modal-rich .info-h {
    margin: 1.2rem 0 0.45rem;
  }

  .sphere-modal-rich .info-p {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .sphere-modal-rich > :last-child {
    margin-bottom: 1rem;
  }

  .sphere-modal-actions {
    position: sticky;
    bottom: 0;
    z-index: 1;
    padding: 0.75rem 0 0.2rem;
    background: var(--paper);
  }

  .sphere-modal-actions::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1.5rem;
    background: linear-gradient(to top, var(--paper), transparent);
    pointer-events: none;
  }

  .sphere-modal-visit,
  .sphere-modal-contact {
    min-height: 50px;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    gap: 0.4rem;
  }

  @media (max-width: 360px) {
    .sphere-modal-visit,
    .sphere-modal-contact {
      padding-left: 0.45rem;
      padding-right: 0.45rem;
      gap: 0.3rem;
      font-size: 0.92rem;
    }
  }

  body.sphere-panel-open .hero {
    padding-right: 0;
    padding-top: var(--sphere-panel-height, 46dvh);
  }

  .sphere-info-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    max-height: 68dvh;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 60px rgba(17, 18, 20, 0.18);
    transform: translateY(100%);
  }

  .sphere-info-overlay.is-open .sphere-info-panel {
    transform: translateY(0);
  }

  .sphere-info-head {
    padding: 1.1rem 1.1rem 0.9rem;
  }

  .sphere-info-content {
    padding: 1.1rem;

    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
  }

  .info-lede {
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
  }

  .info-p,
  .info-list li,
  .info-facts li,
  .info-steps p,
  .info-faq p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .info-quote {
    font-size: 0.96rem;
  }

  .info-faq summary {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  body.sphere-info-open .hero {
    padding-left: 0;
    padding-bottom: var(--sphere-info-height, 40dvh);
  }

  .sphere-zoom {
    right: 10px;
    gap: 8px;
  }

  .sphere-zoom-btn {
    width: 34px;
    height: 34px;
  }

  .sphere-zoom-track {
    height: 78px;
  }

  body.sphere-info-open .sphere-zoom {
    top: auto;
    bottom: calc(var(--sphere-info-height, 40dvh) + 14px);
    transform: none;
  }
}

html.intro-skip .intro {
  display: none !important;
}

.feat-intro .intro {

  --intro-col: min(760px, 100%);

  --intro-foot: calc(var(--intro-legal-reserve, 3.4rem) + 1.4rem +
                     env(safe-area-inset-bottom, 0px) + 1.6rem);

  position: fixed;
  inset: 0;

  height: 100dvh;
  z-index: 3000;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 2rem 1.5rem var(--intro-foot);
  cursor: pointer;
  outline: none;

  clip-path: inset(0 0 0 0);
  transition: clip-path 760ms var(--ease-out), opacity 320ms var(--ease-out);
}

.feat-intro .intro.is-rolling {
  clip-path: inset(0 0 100% 0);
}

.feat-intro .intro.is-returning {
  opacity: 0;
}

body.intro-active .hero {
  pointer-events: none;
}

.feat-intro .intro-stage {
  position: relative;
  width: 100%;

  height: min(50vh, 580px);
  flex: 0 0 auto;
  margin-bottom: 2.4rem;
  pointer-events: none;
}

.feat-intro .intro-clip {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: min(1000px, 92vw);
  max-height: 100%;
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.feat-intro .intro-clip.is-current {
  opacity: 1;
  transform: translateY(0);
}

.feat-intro .intro-clip[data-lift] {
  filter: brightness(1.024);
}

.feat-intro .intro-bar-wrap {
  width: 100%;
  max-width: var(--intro-col);
  flex: 0 0 auto;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.3;

  min-height: var(--intro-bar-reserve, 2.6em);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.feat-intro .intro-typebar {
  position: relative;
  width: 100%;
  min-height: 1.5em;

  text-align: center;
  transition: height 300ms var(--ease-out);
}

.feat-intro .intro-text,
.feat-intro .intro-ghost {
  margin: 0;
  font: inherit;

  font-family: var(--font-display);

  font-weight: 400;

  letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: balance;
}

.feat-intro .intro-ghost {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  pointer-events: none;
}

.feat-intro .intro-ghost.is-leaving {
  opacity: 0;
  transform: translateY(-0.9em);
}

.feat-intro .intro-rest {
  visibility: hidden;
}

.feat-intro .intro-caret {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 2px;
  height: 1.2em;
  background: var(--ink);
  pointer-events: none;
  will-change: transform;
}

.feat-intro .intro-caret:not(.is-typing) {
  transition: transform 260ms var(--ease-out);
}

.feat-intro .intro-caret.is-waiting {
  animation: intro-blink 1.06s steps(1, end) infinite;
}

@keyframes intro-blink {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.feat-intro .intro-actions {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex: 0 0 auto;
  width: 100%;
  max-width: var(--intro-col);
}

.feat-intro .intro-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--line);
  background: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.feat-intro .intro-prev:hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--ink-faint);
  transform: translateY(-1px);
}

.feat-intro .intro-prev:disabled {
  display: none;
}

.feat-intro .intro-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: var(--intro-cta-reserve, auto);
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  border: none;
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.feat-intro .intro-cta:hover {
  background: #000;
  transform: translateY(-1px);
}

.feat-intro .intro-legal {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;

  bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  gap: 0.15rem 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-faint);
  text-align: center;
}

.feat-intro .intro-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;

  cursor: pointer;
}

.feat-intro .intro-legal a:hover {
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .feat-intro .intro-legal {
    flex-direction: column;
    gap: 0.15rem;
  }
}

.feat-intro .intro.is-leaving .intro-typebar,
.feat-intro .intro.is-leaving .intro-actions {
  opacity: 0;
  transform: translateY(-0.6em);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.feat-intro .intro-steps {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);

  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
}

body.intro-active .intro-steps {
  display: none;
}

.feat-intro .intro-live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .feat-intro .intro,
  .feat-intro .intro-stage,
  .feat-intro .intro-clip,
  .feat-intro .intro-typebar,
  .feat-intro .intro-caret,
  .feat-intro .intro-ghost,
  .feat-intro .intro.is-leaving .intro-typebar,
  .feat-intro .intro.is-leaving .intro-actions {
    transition: none;
  }

  .feat-intro .intro-caret.is-waiting {
    animation: none;
  }

  .feat-intro .intro.is-rolling {
    display: none;
  }
}

@media (max-width: 640px) {

  .feat-intro .intro {
    padding: 1.5rem 1.25rem var(--intro-foot);
  }

  .feat-intro .intro-stage {
    height: min(38dvh, 340px);
    margin-bottom: 2rem;
  }

  .feat-intro .intro-clip {
    max-width: 94vw;
  }

  .feat-intro .intro-bar-wrap {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .feat-intro .intro-actions {
    margin-top: 2rem;
  }

  .feat-intro .intro-cta {
    min-height: 50px;
    padding: 0.85rem 1.5rem;
  }

  .feat-intro .intro-prev {
    min-height: 50px;
  }
}
