:root {
  --bg: #ececec;
  --text: #081215;
  --muted: #2b3232;
  --primary: #ffcc00;
  --radius-pill: 999px;
  --radius-card: 22px;
  --font-ui: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 204, 0, 0.18) 0%, rgba(255, 204, 0, 0) 36%),
    radial-gradient(circle at 22% 18%, rgba(255, 204, 0, 0.11) 0%, rgba(255, 204, 0, 0) 28%),
    radial-gradient(circle at 80% 68%, rgba(255, 204, 0, 0.08) 0%, rgba(255, 204, 0, 0) 34%),
    linear-gradient(180deg, #ececec 0%, #ececec 100%);
}

.topbar {
  width: min(1280px, 92vw);
  margin: 0 auto;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 22%;
  object-fit: cover;
}

.brand__text {
  font-size: 48px;
  font-size: clamp(1.7rem, 2.1vw, 2.1rem);
  letter-spacing: -0.02em;
  font-weight: 300;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button--primary {
  background: var(--primary);
}

.button--primary:hover {
  transform: translateY(-1px);
  background: #ffd633;
}

.home-main {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.invite-main {
  width: min(900px, 92vw);
  margin: 0 auto;
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding: 32px 0 56px;
}

.invite-card {
  width: min(680px, 100%);
  padding: 36px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 18, 21, 0.08);
  box-shadow: 0 24px 60px rgba(8, 18, 21, 0.08);
  backdrop-filter: blur(18px);
}

.invite-eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 18, 21, 0.58);
  margin-bottom: 14px;
}

.invite-title {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  max-width: 12ch;
  margin-bottom: 18px;
}

.invite-copy {
  font-size: 1.05rem;
  color: rgba(8, 18, 21, 0.78);
  max-width: 52ch;
}

.invite-meta {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 18, 21, 0.04);
}

.invite-meta__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 18, 21, 0.52);
  margin-bottom: 8px;
}

.invite-meta__value {
  font-size: 0.98rem;
  color: rgba(8, 18, 21, 0.88);
  word-break: break-word;
}

.invite-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--secondary {
  background: rgba(8, 18, 21, 0.08);
}

.button--secondary:hover {
  transform: translateY(-1px);
  background: rgba(8, 18, 21, 0.12);
}

.legal-main {
  width: min(960px, 92vw);
  margin: 20px auto 80px;
}

.legal-document {
  width: min(720px, 100%);
  margin: 56px auto 0;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(8, 18, 21, 0.08);
  backdrop-filter: blur(3px);
}

.legal-document__header {
  margin: 0 auto 48px;
  max-width: 30rem;
  text-align: center;
}

.legal-document__eyebrow {
  margin-bottom: 12px;
  color: rgba(8, 18, 21, 0.58);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.legal-document__meta {
  color: rgba(8, 18, 21, 0.62);
  font-size: 0.92rem;
}

.legal-document h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-document h3 {
  margin: 24px 0 8px;
  font-size: 1.02rem;
  font-weight: 600;
}

.legal-document p,
.legal-document li {
  color: rgba(8, 18, 21, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-document p + p {
  margin-top: 16px;
}

.legal-document ul {
  margin: 12px 0 0 1.25rem;
}

.legal-document li + li {
  margin-top: 6px;
}

.legal-document a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-main {
    width: min(100% - 28px, 960px);
    margin-top: 8px;
  }

  .legal-document {
    margin-top: 28px;
    padding: 32px 24px 40px;
  }

  .legal-document__header {
    margin-bottom: 40px;
  }
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding-bottom: 40px;
}

.swirl-stage {
  position: relative;
  width: 860px;
  aspect-ratio: 1.45 / 1;
  display: grid;
  place-items: center;
}

.swirl-wrap {
  width: 620px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.84);
  position: relative;
  z-index: 1;
}

.swirl-wrap::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 230, 140, 0.52) 0%, rgba(255, 230, 140, 0.2) 42%, rgba(255, 230, 140, 0) 76%);
  filter: blur(26px);
  z-index: -1;
}

.swirl {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: saturate(103%);
  opacity: 0.96;
}

.avatar {
  position: absolute;
  width: 104px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(8, 18, 21, 0.14);
  z-index: 4;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.52s ease, transform 0.52s cubic-bezier(0.21, 0.77, 0.28, 1.06);
}

.avatar--one {
  left: calc(50% - 150px);
  top: 4%;
}

.avatar--two {
  left: calc(50% + 250px);
  top: 42%;
}

.avatar--three {
  left: calc(50% - 365px);
  top: 38%;
}

.avatar--four {
  left: calc(50% + 150px);
  top: 16%;
}

.avatar--five {
  left: calc(50% + 180px);
  bottom: 14%;
}

.avatar--six {
  left: calc(50% - 255px);
  bottom: 16%;
}

.hero-copy {
  position: absolute;
  inset: auto;
  text-align: center;
  max-width: 560px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  z-index: 6;
}

.hero-copy h1 {
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-weight: 500;
  white-space: nowrap;
}

.hero-copy p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 300;
  color: rgba(8, 18, 21, 0.9);
}

.page--home.stage-swirl .swirl-wrap {
  animation: swirl-enter 1.45s cubic-bezier(0.2, 0.76, 0.24, 0.99) forwards;
}

.page--home.stage-swirl .swirl {
  animation: swirl-spin 38s linear infinite;
}

.page--home.stage-avatars .avatar {
  opacity: 1;
  transform: scale(1);
}

.page--home.stage-avatars .avatar--one {
  transition-delay: 0.04s;
}

.page--home.stage-avatars .avatar--two {
  transition-delay: 0.18s;
}

.page--home.stage-avatars .avatar--three {
  transition-delay: 0.32s;
}

.page--home.stage-avatars .avatar--four {
  transition-delay: 0.46s;
}

.page--home.stage-avatars .avatar--five {
  transition-delay: 0.6s;
}

.page--home.stage-avatars .avatar--six {
  transition-delay: 0.74s;
}

.page--home.stage-copy .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.contact-main {
  width: min(960px, 92vw);
  margin: 20px auto 80px;
}

.contact-hero {
  margin: 56px 0 24px;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 500;
}

.contact-hero p {
  margin-top: 10px;
  font-size: clamp(1.05rem, 2.1vw, 1.7rem);
  color: rgba(8, 18, 21, 0.88);
}

.contact-shell {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(8, 18, 21, 0.08);
  border-radius: var(--radius-card);
  padding: 24px;
  backdrop-filter: blur(3px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 400;
  font-size: 0.97rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 18, 21, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 11px 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@keyframes swirl-enter {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  75% {
    opacity: 1;
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes swirl-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 88px;
  }

  .hero {
    min-height: calc(100vh - 96px);
  }

  .swirl-stage {
    width: min(95vw, 820px);
    aspect-ratio: 1.04 / 1;
  }

  .swirl-wrap {
    width: min(78vw, 560px);
  }

  .avatar {
    display: none;
  }
}

@media (max-width: 820px) {
  .swirl-stage {
    width: 100%;
    aspect-ratio: 1 / 1.08;
  }

  .swirl-wrap {
    width: 84vw;
  }

  .avatar {
    width: clamp(82px, 20vw, 112px);
  }

  .avatar--one {
    left: -6%;
    top: 14%;
  }

  .avatar--two {
    right: -10%;
    top: 69%;
  }

  .avatar--three {
    left: -11%;
    bottom: -8%;
  }

  .avatar--four,
  .avatar--five,
  .avatar--six {
    display: none;
  }

  .hero-copy {
    max-width: 88vw;
  }

  .hero-copy h1 {
    white-space: normal;
    font-size: clamp(1.8rem, 6.1vw, 2.4rem);
  }

  .hero-copy p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(96vw, 560px);
    min-height: 80px;
  }

  .brand__text {
    font-size: 1.9rem;
  }

  .button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .hero {
    padding-bottom: 0;
  }

  .swirl-stage {
    width: 100%;
    aspect-ratio: 1 / 1.08;
  }

  .swirl-wrap {
    width: 82vw;
  }

  .avatar {
    width: clamp(86px, 24vw, 122px);
  }

  .avatar--one {
    left: -6%;
    top: 12%;
  }

  .avatar--two {
    right: -12%;
    top: 78%;
  }

  .avatar--three {
    left: -14%;
    bottom: -18%;
  }

  .avatar--four,
  .avatar--five,
  .avatar--six {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    white-space: normal;
  }

  .hero-copy p {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .contact-main {
    margin-top: 8px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swirl-wrap,
  .hero-copy,
  .avatar {
    transition: none;
    animation: none;
  }

  .page--home .swirl-wrap,
  .page--home .avatar,
  .page--home .hero-copy {
    opacity: 1;
    transform: none;
  }
}

/* Stelli homepage */
.page--home {
  --stelli-ink: #050a1b;
  --stelli-navy: #08112b;
  --stelli-violet: #24155f;
  --stelli-paper: #f7f1e7;
  --stelli-gold: #f5bd3d;
  --stelli-amber: #f18b27;
  --stelli-muted: #c5c6d5;
  background: var(--stelli-ink);
  color: var(--stelli-paper);
}

.page--home .stelli-hero { min-height: 940px; position: relative; isolation: isolate; overflow: hidden; background: #070c20; }
.stelli-hero__scenes, .stelli-hero__scenes img, .stelli-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.stelli-hero__scenes img { object-fit: cover; opacity: 0; transition: opacity 1.3s ease; }
.stelli-hero__scenes img.is-active { opacity: 1; }
.stelli-hero__shade { background: linear-gradient(90deg, rgba(3,8,23,.96) 0%, rgba(4,9,28,.77) 39%, rgba(4,9,28,.25) 70%, rgba(3,8,23,.42) 100%), linear-gradient(0deg, rgba(3,8,20,.72), transparent 46%); }
.stelli-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; width: min(1376px, 100%); margin: 0 auto; padding: 34px 54px; }
.stelli-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--stelli-paper); font-family: var(--font-ui); font-size: 31px; font-weight: 300; letter-spacing: -.035em; }
.stelli-brand img { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; }
.stelli-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 27px; border-radius: var(--radius-pill); background: #ffc400; color: #fff; font-family: var(--font-ui); font-size: 15px; font-weight: 650; letter-spacing: -.02em; transition: background-color .2s ease, color .2s ease; }
.stelli-button:hover { background: #fff; color: #ffc400; }
.stelli-button--nav { min-height: 48px; }
.stelli-hero__copy { position: absolute; z-index: 2; top: 50%; width: min(720px, 60vw); margin: 0 0 0 max(54px, calc((100vw - 1376px) / 2 + 54px)); transform: translateY(-50%); }
.stelli-hero__copy h1, .page--home .stelli-product h2, .stelli-story-card h2, .stelli-discovery h2, .stelli-access h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.stelli-hero__copy h1 { margin: 0; max-width: 690px; font-size: clamp(72px, 7vw, 118px); line-height: .96; }
.stelli-accent-rule { display: flex; align-items: center; gap: 10px; margin: 34px 0 27px; }
.stelli-accent-rule::before { content: ""; display: block; width: 76px; height: 2px; background: var(--stelli-gold); }
.stelli-accent-rule span { width: 10px; height: 10px; background: var(--stelli-gold); transform: rotate(45deg); box-shadow: 0 0 15px var(--stelli-gold); }
.stelli-hero__copy p { margin: 0 0 34px; color: #f2d8c8; font-size: 25px; line-height: 1.35; letter-spacing: -.035em; }
.stelli-hero__caption { position: absolute; z-index: 2; right: 54px; bottom: 57px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.stelli-scene-controls { position: absolute; z-index: 2; left: 54px; bottom: 57px; display: flex; gap: 9px; }
.stelli-scene-controls button { width: 32px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; }
.stelli-scene-controls button.is-current { background: var(--stelli-gold); }

.stelli-product { position: relative; min-height: 790px; overflow: hidden; padding: 110px 54px 76px; background: radial-gradient(ellipse at 48% 15%, rgba(107,57,176,.46), transparent 47%), linear-gradient(155deg, #1a1147 0%, #090e2b 66%); }
.stelli-phone-cluster { display: flex; justify-content: center; align-items: flex-end; gap: 22px; max-width: 1040px; margin: 0 auto; }
.stelli-phone { position: relative; width: 242px; min-height: 440px; overflow: hidden; padding: 22px 17px; border: 4px solid rgba(235,212,166,.5); border-radius: 38px; background: linear-gradient(155deg,#101b3c,#080d23); box-shadow: 0 30px 55px rgba(0,0,0,.38); }
.stelli-phone--center { z-index: 1; width: 293px; min-height: 505px; transform: translateY(38px); }
img.stelli-phone { display: block; min-height: 0; height: auto; padding: 0; aspect-ratio: 1320 / 2716; object-fit: cover; background: #f7f7f7; }
.stelli-screen { position: relative; min-height: 392px; color: #fff; font-size: 14px; }
.stelli-phone--center .stelli-screen { min-height: 457px; }
.stelli-screen p { margin: 0; color: #ddd8ed; }
.stelli-screen small { position: absolute; right: 0; bottom: 0; left: 0; color: #77809f; text-align: center; font-size: 10px; letter-spacing: .04em; }
.stelli-screen--listen > p { margin-top: 38px; text-align: center; }
.stelli-avatar-row { display: flex; justify-content: center; margin: 20px 0; }
.stelli-avatar-row i { width: 31px; height: 31px; margin-left: -5px; border: 2px solid #131a38; border-radius: 50%; background: linear-gradient(135deg,#f0ad49,#543a99); }
.stelli-screen__orb { width: 150px; height: 150px; margin: 38px auto; border: 1px dotted #f6b63d; border-radius: 50%; box-shadow: inset 0 0 30px rgba(222,126,47,.25); }
.stelli-screen--moment h2 { margin: 23px 0 15px; color: #fff; font-family: var(--font-ui); font-size: 20px; font-weight: 500; letter-spacing: 0; }
.stelli-screen__art { display: grid; height: 190px; place-items: center; border: 1px solid rgba(246,181,45,.45); border-radius: 50%; background: radial-gradient(circle at 50% 40%,rgba(244,172,45,.45),transparent 45%),linear-gradient(155deg,#272362,#050917); color: #ffd26b; font-size: 44px; }
.stelli-waveform { display: flex; height: 46px; align-items: center; justify-content: center; gap: 5px; margin: 22px 0; }
.stelli-waveform i { width: 3px; height: 22px; border-radius: 9px; background: linear-gradient(#f6cd54,#e7772b); }
.stelli-waveform i:nth-child(1){height:11px}.stelli-waveform i:nth-child(2){height:26px}.stelli-waveform i:nth-child(3){height:18px}.stelli-waveform i:nth-child(4){height:38px}.stelli-waveform i:nth-child(5){height:23px}.stelli-waveform i:nth-child(6){height:42px}.stelli-waveform i:nth-child(7){height:29px}.stelli-waveform i:nth-child(8){height:15px}.stelli-waveform i:nth-child(9){height:31px}
.stelli-play { display: grid; width: 46px; height: 46px; place-items: center; margin: 0 auto; border-radius: 50%; background: #f8c74e; color: #221508; font-size: 13px; }
.stelli-screen--library > p { margin: 22px 0 15px; color: #fff; font-size: 20px; font-weight: 500; }
.stelli-library-row { display: flex; gap: 10px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.stelli-library-row i { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg,#1e2e6e,#ef9b34); }.stelli-library-row:nth-of-type(3) i{background:linear-gradient(135deg,#2e175a,#8a4b1c)}.stelli-library-row:nth-of-type(4) i{background:linear-gradient(135deg,#15285b,#e2c15a)}
.stelli-library-row b, .stelli-library-row small { display: block; }.stelli-library-row b { color: #e9e7f3; font-size: 13px; font-weight: 500; }.stelli-library-row small { position: static; margin-top: 3px; color: #8f96b6; text-align: left; font-size: 11px; }
.stelli-product__copy { max-width: 650px; margin: 82px auto 0; text-align: center; }.stelli-eyebrow { margin: 0; color: var(--stelli-gold); font-size: 12px; font-weight: 750; letter-spacing: .17em; }.stelli-product__copy h2, .stelli-discovery h2, .stelli-access h2 { margin: 12px 0 18px; font-size: clamp(38px,4.2vw,60px); line-height: 1.02; }.stelli-product__copy > p:last-child { max-width: 560px; margin: auto; color: #cac8db; font-size: 18px; line-height: 1.6; }

.stelli-story { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; padding: 94px max(54px,calc((100vw - 1280px)/2)) 120px; background: #060b20; }.stelli-story-card { min-width: 0; padding: 0 28px; }.stelli-story-card + .stelli-story-card { border-left: 1px solid rgba(234,193,86,.25); }.stelli-story-card__number { display: flex; align-items: center; gap: 13px; margin: 0 0 42px; color: var(--stelli-gold); font-family: Georgia,serif; font-size: 31px; }.stelli-story-card__number::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg,var(--stelli-gold),transparent); }.stelli-story-card h2 { margin: 0 0 14px; font-size: 40px; line-height: 1.03; }.stelli-story-card > p:not(.stelli-story-card__number) { min-height: 78px; margin: 0; color: var(--stelli-muted); font-size: 17px; line-height: 1.55; }.stelli-story-card__image { display: block; width: min(100%,410px) !important; height: auto !important; aspect-ratio: 1 / 1; margin: 36px auto 0; overflow: hidden; border: 1px solid rgba(239,180,53,.58); border-radius: 50%; background-position: center; background-size: cover; }.stelli-story-card__image--host { background-image: url("assets/story-host-performance-crop.png"); }.stelli-story-card__image--listen { background-image: url("assets/story-listen-softball-crop.png"); }.stelli-story-card__image--return { background-image: url("assets/story-return-home-crop.png"); }
.stelli-discovery { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(560px,41vw,810px); overflow: hidden; padding: 8vw max(54px,calc((100vw - 1280px)/2)); background: #11103a; }.stelli-discovery::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg,rgba(17,16,58,.98) 0%,rgba(17,16,58,.94) 28%,rgba(17,16,58,.56) 51%,rgba(10,11,40,.18) 100%); }.stelli-discovery__copy { position: relative; z-index: 1; max-width: 510px; }.stelli-discovery h2 { margin-bottom: 28px; }.stelli-discovery__copy > p:last-child { margin: 0; color: #d0cddd; font-size: 20px; line-height: 1.65; }.stelli-discovery__field { position: absolute; z-index: -2; inset: 0; margin: 0; }.stelli-discovery__field img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.stelli-access { padding: 150px 30px; background: linear-gradient(160deg,#0a0e26,#1d1049); text-align: center; }.stelli-access h2 { max-width: 780px; margin-right: auto; margin-left: auto; }.stelli-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px 54px; color: #9e9fb1; background: #050814; font-size: 13px; }.stelli-footer .stelli-brand { font-size: 23px; }.stelli-footer .stelli-brand img { width: 30px; height: 30px; border-radius: 8px; }.stelli-footer__links { display: flex; align-items: center; gap: 20px; }.stelli-footer__links a:hover { color: #fff; }

@media (max-width: 850px) { .page--home .stelli-hero { min-height: 820px; }.stelli-nav { padding: 24px; }.stelli-brand { font-size: 27px; }.stelli-button--nav { display: none; }.stelli-hero__copy { right: 26px; left: 26px; width: auto; margin: 0; }.stelli-hero__copy h1 { font-size: clamp(56px,14vw,78px); }.stelli-hero__copy p { font-size: 20px; }.stelli-hero__scenes img { object-position: 62% center; }.stelli-hero__caption { right: 24px; bottom: 25px; }.stelli-scene-controls { bottom: 25px; left: 24px; }.stelli-product { padding: 75px 22px 68px; }.stelli-phone-cluster { gap: 9px; }.stelli-phone { width: 30%; min-height: 350px; padding: 17px 10px; border-width: 3px; border-radius: 27px; }.stelli-phone--center { width: 36%; min-height: 400px; }.stelli-screen { min-height: 310px; }.stelli-phone--center .stelli-screen { min-height: 356px; }.stelli-screen--moment h2 { font-size: 15px; }.stelli-screen small { font-size: 7px; }.stelli-story { grid-template-columns: 1fr; gap: 58px; padding: 70px 28px; }.stelli-story-card, .stelli-story-card + .stelli-story-card { padding: 0; border: 0; }.stelli-story-card > p:not(.stelli-story-card__number) { min-height: 0; }.stelli-story-card__image { width: min(330px,100%); height: min(330px,calc(100vw - 56px)); }.stelli-discovery { display: flex; align-items: flex-start; min-height: 720px; padding: 90px 28px; }.stelli-discovery::before { background: linear-gradient(180deg,rgba(17,16,58,.98) 0%,rgba(17,16,58,.88) 42%,rgba(17,16,58,.28) 100%); }.stelli-discovery__field img { object-position: 62% center; }.stelli-access { padding: 100px 22px; }.stelli-footer { padding: 25px; }.stelli-product__copy h2,.stelli-discovery h2,.stelli-access h2 { font-size: 40px; } }

@media (prefers-reduced-motion: reduce) { .stelli-hero__scenes img { transition: none; } }
