:root {
  --black-bg: #0c1119;
  --bone: #f3efe6;
  --cream: #e7dfd2;
  --blue: #1f5cff;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--black-bg); }
body {
  color: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.teaser-shell { min-height: 100svh; }
.teaser-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vh, 60px) 24px;
}
.teaser-bg,
.teaser-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.teaser-bg {
  z-index: -3;
  background: url("teaser-assets/18-background.png") center center / cover no-repeat;
  filter: brightness(.68) contrast(1.18) saturate(.92);
  transform: scale(1.015);
}
.teaser-overlay {
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(12,17,25,.10) 0%, rgba(12,17,25,.36) 55%, rgba(12,17,25,.72) 100%),
    linear-gradient(180deg, rgba(12,17,25,.22) 0%, rgba(12,17,25,.12) 44%, rgba(12,17,25,.58) 100%);
}

.teaser-inner {
  width: min(1120px, 94vw);
  min-height: min(900px, calc(100svh - 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.teaser-logo {
  width: min(740px, 94.8vw);
  margin: 0 auto clamp(18px, 3.2vh, 38px);
  transform: scaleY(1.08);
  transform-origin: center;
}

.hero-lockup {
  position: relative;
  width: min(920px, 92vw);
  margin-inline: auto;
}
.hero-make-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-make { width: 100%; }
.hero-make-spacer { visibility: hidden; }
.hero-make-piece {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-make-piece img { width: 100%; height: auto; }
.hero-make-left {
  clip-path: inset(0 66% 0 0);
  transform: translateX(-115%);
  animation: makeIn .66s cubic-bezier(.18,.78,.22,1) .28s forwards;
}
.hero-make-right {
  clip-path: inset(0 0 0 34%);
  transform: translateX(115%);
  animation: somethingIn .66s cubic-bezier(.18,.78,.22,1) .28s forwards;
}
.hero-scribble {
  position: absolute;
  width: 73%;
  left: 28.5%;
  top: 43.5%;
  transform: translateY(-50%) rotate(-1deg);
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  animation: scribbleWipe .48s cubic-bezier(.25,.7,.2,1) 1.28s forwards;
}
.hero-scribble img { width: 100%; }
.hero-anything {
  position: absolute;
  width: 66%;
  right: 0;
  bottom: -20%;
  opacity: 0;
  transform: translateY(12px) rotate(-3deg);
  pointer-events: none;
  animation: anythingReveal .38s ease-out 1.82s forwards;
}

.teaser-copy {
  max-width: 860px;
  margin-top: clamp(74px, 9vh, 112px);
  opacity: 0;
  transform: translateY(14px);
  animation: copyIn .55s ease-out 2.25s forwards;
}
.teaser-copy h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: .055em;
  font-weight: 800;
}
.teaser-status {
  margin: 22px 0 0;
  display: flex;
  justify-content: center;
  gap: 12px 22px;
  flex-wrap: wrap;
  font-size: clamp(11px, 1.15vw, 15px);
  letter-spacing: .16em;
}
.teaser-status strong { color: var(--blue); }
.teaser-status span { opacity: .78; }

.teaser-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(12px);
  animation: actionsIn .5s ease-out 2.62s forwards;
}
.teaser-button {
  min-width: 168px;
  min-height: 48px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243,239,230,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.teaser-button:hover { transform: translateY(-1px); border-color: var(--blue); color: var(--blue); }
.teaser-button-blue { border-color: var(--blue); color: var(--blue); }
.teaser-button-blue:hover { background: var(--blue); color: #fff; }

@keyframes makeIn { to { transform: translateX(0); } }
@keyframes somethingIn { to { transform: translateX(0); } }
@keyframes scribbleWipe { to { clip-path: inset(0 0 0 0); } }
@keyframes anythingReveal { to { opacity: 1; transform: translateY(0) rotate(-3deg); } }
@keyframes copyIn { to { opacity: 1; transform: translateY(0); } }
@keyframes actionsIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 700px) {
  .teaser-hero { padding-inline: 18px; }
  .teaser-inner { min-height: calc(100svh - 36px); }
  .teaser-logo { width: min(578px, 107vw); margin-bottom: 28px; }
  .hero-lockup { width: min(760px, calc(100vw - 34px)); }
  .teaser-copy { margin-top: 62px; }
  .teaser-copy h1 { font-size: clamp(21px, 7vw, 32px); letter-spacing: .035em; }
  .teaser-status { max-width: 360px; }
  .teaser-actions { width: min(390px, 100%); }
  .teaser-button { flex: 1 1 160px; }
}

@media (max-width: 430px) {
  .teaser-logo { margin-bottom: 40px; }
  .teaser-copy { margin-top: 56px; }
  .teaser-actions { flex-direction: column; }
  .teaser-button { width: 100%; flex: none; }
}


@media (max-width: 430px) {
  .hero-lockup { width: calc(100vw - 38px); }
}



/* V79 — stronger short-window vertical fit.
   Keep the NOS logo anchored near the top; pull everything below it upward
   and reduce the black gap substantially as viewport height decreases. */
@media (max-height: 950px) {
  .teaser-hero {
    place-items: start center;
    padding-top: 24px;
    padding-bottom: 14px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .teaser-inner {
    min-height: 0;
    justify-content: flex-start;
  }

  .teaser-logo {
    margin-bottom: clamp(8px, 1.8vh, 16px);
  }

  .teaser-copy {
    margin-top: clamp(58px, 7vh, 78px);
  }

  .teaser-status {
    margin-top: 4px;
  }

  .teaser-actions {
    margin-top: 7px;
  }
}

@media (max-height: 780px) {
  .teaser-hero {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .teaser-logo {
    margin-bottom: 4px;
  }

  .teaser-copy {
    margin-top: 50px;
  }

  .teaser-status {
    margin-top: 6px;
  }

  .teaser-actions {
    margin-top: 9px;
  }
}

@media (max-width: 700px) and (max-height: 950px) {
  .teaser-hero {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .teaser-logo {
    margin-bottom: 7px;
  }

  .teaser-copy {
    margin-top: 54px;
  }

  .teaser-status {
    margin-top: 7px;
  }

  .teaser-actions {
    margin-top: 11px;
  }
}

@media (max-width: 430px) and (max-height: 780px) {
  .teaser-logo {
    margin-bottom: 2px;
  }

  .teaser-copy {
    margin-top: 46px;
  }

  .teaser-status {
    margin-top: 5px;
  }

  .teaser-actions {
    margin-top: 8px;
    gap: 8px;
  }

  .teaser-button {
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-make-left,
  .hero-make-right,
  .hero-scribble,
  .hero-anything,
  .teaser-copy,
  .teaser-actions { animation: none !important; }
  .hero-make-left,
  .hero-make-right { transform: translateX(0); }
  .hero-scribble { clip-path: inset(0 0 0 0); }
  .hero-anything { opacity: 1; transform: rotate(-3deg); }
  .teaser-copy,
  .teaser-actions { opacity: 1; transform: none; }
}


/* V72 — temporary invite-only modal */
.teaser-button {
  font: inherit;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.invite-modal[hidden] {
  display: none;
}

.invite-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.invite-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 12, .78);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.invite-modal-card {
  position: relative;
  z-index: 1;
  min-width: min(420px, calc(100vw - 48px));
  padding: 38px 42px 30px;
  text-align: center;
  background: #e7dfd2;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.invite-modal-card p {
  margin: 0 0 26px;
  color: #0c1119;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: none;
}

.invite-modal-close {
  min-width: 120px;
  padding: 12px 18px;
  border: 1px solid #0c1119;
  background: transparent;
  color: #0c1119;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  cursor: pointer;
}


/* V74 — optional modal subtext */
.invite-modal-subtext {
  margin: -10px 0 24px;
  color: rgba(12,17,25,.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* V83 — NOS Alpha waitlist. Existing v82 hero/animation/layout intentionally unchanged. */
.waitlist-modal[hidden] { display: none; }
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.waitlist-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 12, .82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.waitlist-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 38px 42px 34px;
  background: #e7dfd2;
  color: #0c1119;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  text-align: left;
}
.waitlist-modal-x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0c1119;
  font: 300 28px/1 Arial, sans-serif;
  cursor: pointer;
}
.waitlist-modal-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.waitlist-modal-card h2 {
  margin: 0;
  color: #0c1119;
  font-size: clamp(32px, 5vw, 46px);
  line-height: .98;
  letter-spacing: .01em;
}
.waitlist-modal-intro {
  margin: 12px 0 28px;
  color: rgba(12,17,25,.72);
  font-size: 15px;
  line-height: 1.45;
}
.waitlist-field { margin-bottom: 15px; }
.waitlist-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.waitlist-field input {
  width: 100%;
  height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(12,17,25,.38);
  border-radius: 0;
  outline: none;
  background: rgba(255,255,255,.46);
  color: #0c1119;
  font: 500 16px/1.2 var(--body);
}
.waitlist-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(31,92,255,.12);
}
.waitlist-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}
.waitlist-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 5px;
  padding: 13px 20px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.waitlist-submit:hover:not(:disabled) { transform: translateY(-1px); }
.waitlist-submit:disabled { cursor: default; opacity: .66; }
.waitlist-consent {
  margin: 14px 0 0;
  color: rgba(12,17,25,.62);
  font-size: 10.5px;
  line-height: 1.45;
}
.waitlist-consent a {
  color: #0c1119;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.waitlist-existing {
  margin: 11px 0 0;
  text-align: center;
  color: #6f7478;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .045em;
}
.waitlist-existing a {
  color: #1469ff;
  text-decoration: none;
}
.waitlist-existing a:hover { text-decoration: underline; }

.waitlist-form-status {
  min-height: 18px;
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .08em;
}
.waitlist-form-status.is-success { color: #145a32; }
.waitlist-form-status.is-error { color: #9f2017; }

@media (max-width: 520px) {
  .waitlist-modal { padding: 16px; }
  .waitlist-modal-card {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    padding: 34px 24px 26px;
  }
}


/* V93 — v91 teaser preserved. Only the existing headline transitions into
   the campaign sequence after the ANYTHING reveal. */
.teaser-copy h1 {
  will-change: transform, opacity;
}
.teaser-copy h1.message-exit {
  opacity: 0;
  transform: translateX(-110vw);
  transition: transform 1.133s cubic-bezier(.42,0,.58,1), opacity 1.133s ease;
}
.teaser-copy h1.message-enter-prep {
  opacity: 0;
  transform: translateX(110vw);
  transition: none;
}
.teaser-copy h1.message-enter {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.133s cubic-bezier(.42,0,.58,1), opacity 1.133s ease;
}
.teaser-copy h1.message-final {
  opacity: 1;
  transform: translateX(0);
}


/* V94 — lock the campaign headline to the original two-line footprint so the
   status line below never jumps as rotating copy changes line count. */
.teaser-copy h1 {
  height: 2.12em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-message-inner {
  display: block;
  width: 100%;
}
.campaign-final-title,
.campaign-final-subline {
  display: block;
}
.campaign-final-subline {
  margin-top: .18em;
  font-size: .58em;
  line-height: 1.14;
  letter-spacing: .07em;
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  .teaser-copy h1.message-exit,
  .teaser-copy h1.message-enter-prep,
  .teaser-copy h1.message-enter,
  .teaser-copy h1.message-final {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}


/* V101 — phone-only campaign spacing. Allow a full three-line campaign
   headline without colliding with the status line, and use the available
   lower-screen space for more breathing room. Desktop/laptop is unchanged. */
@media (max-width: 700px) {
  .teaser-copy h1 {
    height: 3.35em;
  }

  .teaser-status {
    margin-top: 18px;
  }

  .teaser-actions {
    margin-top: 18px;
  }
}


/* V102 — phone only: keep the campaign/status composition exactly where it is
   and anchor only the two CTA buttons near the bottom of the viewport. */
@media (max-width: 700px) {
  .teaser-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: max(22px, env(safe-area-inset-bottom));
    width: auto;
    margin-top: 0;
    z-index: 2;
  }
}

/* V103 — keep the status copy locked to center at every width and increase it
   by roughly two points. Desktop remains a centered row; phone becomes an
   explicit centered stack so wrapping cannot shift the composition. */
.teaser-status {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(13px, 1.3vw, 17px);
}

@media (max-width: 700px) {
  .teaser-status {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
    font-size: 13px;
    text-align: center;
  }

  .teaser-status strong,
  .teaser-status span {
    width: 100%;
    text-align: center;
  }
}

/* V109 — visual skin only on the known-good V104 responsive/layout base.
   No geometry, breakpoint, spacing, or animation timing changes below. */
.teaser-bg {
  background-image: url("teaser-assets/22-wall-master.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
}

.teaser-overlay {
  background:
    radial-gradient(ellipse at center, rgba(12,17,25,0) 0%, rgba(12,17,25,.08) 58%, rgba(12,17,25,.22) 100%),
    linear-gradient(180deg, rgba(12,17,25,.02) 0%, rgba(12,17,25,.02) 48%, rgba(12,17,25,.18) 100%);
}

/* Preserve V104 button size/placement; change appearance only. */
.teaser-button {
  background: rgba(7,8,9,.18);
  color: var(--bone);
  border-color: rgba(243,239,230,.58);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.teaser-button-blue {
  background: rgba(7,8,9,.18);
  color: var(--blue);
  border-color: rgba(31,92,255,.86);
}


/* V114 — asset separation only.
   Same V113/V104 geometry and behavior; only the logo/background assets are separated. */
.teaser-bg {
  background-image: url("teaser-assets/25-wall-warm-plaster.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
}

.teaser-overlay {
  background:
    linear-gradient(90deg,
      rgba(126,79,43,.06) 0%,
      rgba(79,53,35,.025) 46%,
      rgba(8,9,9,.035) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 72%,
      rgba(0,0,0,.06) 100%);
}

.teaser-logo-composite {
  position: relative;
  width: min(900px, 96vw);
  aspect-ratio: 3 / 1;
  height: auto;
  background: none;
  isolation: isolate;
  transform: none;
  transform-origin: center;
  margin: 0 auto clamp(18px, 3.2vh, 38px);
}

.teaser-logo-composite::before,
.teaser-logo-composite::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.teaser-logo-composite::before {
  z-index: 0;
  background-image: url("teaser-assets/24-nos-shadow-artboard.png");
}

.teaser-logo-composite::after {
  z-index: 1;
  background-image: url("teaser-assets/26-nos-logo-emblem-artboard.png");
}

/* Preserve V104 short-window behavior exactly. */
@media (max-width: 700px) {
  .teaser-logo-composite {
    width: min(690px, 122vw);
    margin-bottom: 28px;
  }
}

@media (max-width: 430px) {
  .teaser-logo-composite { margin-bottom: 40px; }
}

@media (max-height: 950px) {
  .teaser-logo-composite { margin-bottom: clamp(8px, 1.8vh, 16px); }
}

@media (max-height: 780px) {
  .teaser-logo-composite { margin-bottom: 4px; }
}

@media (max-width: 700px) and (max-height: 950px) {
  .teaser-logo-composite { margin-bottom: 7px; }
}

@media (max-width: 430px) and (max-height: 780px) {
  .teaser-logo-composite { margin-bottom: 2px; }
}


/* V116 — color correction only. No geometry/layout/asset changes.
   Grade existing V115 assets toward the approved mockup. */
.teaser-bg {
  filter: none;
}

.teaser-logo-composite::after {
  filter: brightness(.96) contrast(1.12) saturate(.92) sepia(.10) hue-rotate(-4deg);
}

/* V121 — user-supplied combined logo-with-shadow asset and user-supplied 4:3 background.
   Keep layout/composition unchanged; swap only the hero background and logo asset. */
.teaser-bg {
  background-image: url("teaser-assets/27-wall-user-approved.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
}

.teaser-logo-composite::before {
  background-image: none;
}

.teaser-logo-composite::after {
  background-image: url("teaser-assets/27-nos-logo-shadow-combined-artboard.png");
  filter: none;
}

/* V122 — responsive stabilization only.
   Preserve V121 assets/content/animation. Remove abrupt height-breakpoint jumps,
   keep CTA buttons outline-only, and keep the logo centered on phones. */

/* Use one continuous vertical composition instead of switching between
   centered/start layouts at 950px and 780px. */
.teaser-hero {
  place-items: start center;
  padding-top: clamp(18px, 4vh, 48px);
  padding-bottom: clamp(12px, 2.5vh, 30px);
  overflow-x: hidden;
  overflow-y: auto;
}

.teaser-inner {
  min-height: 0;
  justify-content: flex-start;
}

/* Smoothly scale with BOTH viewport width and height. */
.teaser-logo-composite {
  width: min(900px, 94vw, 95vh);
  margin: 0 auto clamp(5px, 1.6vh, 22px);
  align-self: center;
  flex: 0 0 auto;
}

.hero-lockup {
  width: min(920px, 92vw, 110vh);
}

.teaser-copy {
  margin-top: clamp(46px, 7vh, 88px);
}

/* Desktop/laptop buttons flow normally; mobile positioning remains bottom-anchored. */
.teaser-actions {
  margin-top: clamp(8px, 1.7vh, 24px);
}

/* Outline-only at rest, hover, focus, and active — never fill. */
.teaser-button,
.teaser-button:hover,
.teaser-button:focus,
.teaser-button:active {
  background: transparent;
}

.teaser-button-blue,
.teaser-button-blue:hover,
.teaser-button-blue:focus,
.teaser-button-blue:active {
  background: transparent;
  color: var(--blue);
  border-color: rgba(31,92,255,.86);
}

@media (max-width: 700px) {
  .teaser-hero {
    padding-top: clamp(16px, 2.8vh, 24px);
    padding-bottom: 12px;
  }

  /* Never exceed the visible phone width. This is what fixes the apparent
     left/right drift caused by the old 122vw mobile logo rule. */
  .teaser-logo-composite {
    width: min(690px, 94vw);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(5px, 1.4vh, 16px);
    align-self: center;
  }

  .hero-lockup {
    width: min(760px, calc(100vw - 34px));
  }

  .teaser-copy {
    margin-top: clamp(46px, 6.5vh, 62px);
  }

  /* Preserve the phone-only bottom anchor from V102. */
  .teaser-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: max(22px, env(safe-area-inset-bottom));
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .teaser-logo-composite {
    width: 94vw;
    margin-bottom: clamp(4px, 1.2vh, 12px);
  }
}

/* V124 — use the user-supplied logo-with-shadows asset only.
   No separate shadow pass. */
.teaser-logo-composite::before {
  background-image: none;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  filter: none;
  opacity: 1;
}

/* V125 — scale/composition only.
   Restore the larger older desktop composition without changing assets,
   copy, animation, button appearance, or mobile centering behavior. */
@media (min-width: 701px) {
  .teaser-logo-composite {
    width: min(900px, 94vw);
    margin-bottom: clamp(8px, 1.8vh, 16px);
  }

  .hero-lockup {
    width: min(920px, 92vw);
  }
}

/* V126 — logo scale only. Desktop logo is exactly 10% larger visually.
   No layout, spacing, assets, buttons, animation, or mobile changes. */
@media (min-width: 701px) {
  .teaser-logo-composite {
    transform: scale(1.10);
    transform-origin: center center;
  }
}

/* V127 — lightweight invite password gate for LEARN MORE only.
   Hero/home visuals remain unchanged from V126. */
.invite-password-form {
  width: min(320px, 100%);
  margin: -4px auto 20px;
  text-align: left;
}
.invite-password-form label {
  display: block;
  margin-bottom: 6px;
  color: #0c1119;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.invite-password-form input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(12,17,25,.42);
  border-radius: 0;
  background: rgba(255,255,255,.46);
  color: #0c1119;
  font: 500 16px/1.2 var(--body);
  outline: none;
}
.invite-password-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(31,92,255,.12);
}
.invite-password-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: 1px solid #0c1119;
  background: transparent;
  color: #0c1119;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  cursor: pointer;
}
.invite-password-submit:hover,
.invite-password-submit:focus,
.invite-password-submit:active {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.invite-password-status {
  min-height: 16px;
  margin: 8px 0 0;
  color: #9f2017 !important;
  font-family: var(--body) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: .08em !important;
  text-align: center;
}

/* V132 — portrait-phone composition only.
   Enlarge the hero logo and pull the CTA stack upward. No other viewport changes. */
@media (max-width: 600px) and (orientation: portrait) {
  .teaser-logo-composite {
    transform: scale(1.14);
    transform-origin: center top;
  }

  .teaser-actions {
    bottom: max(clamp(72px, 10vh, 104px), calc(env(safe-area-inset-bottom) + 28px));
  }
}
