:root {
  --presence-cyan: #69e6ff;
  --cognition-violet: #9b8dff;
  --insight-magenta: #e68dff;
  --orb-plum: #6a597f;
  --midnight-ink: #0b1222;
  --deep-space-navy: #101a33;
  --graphite-slate: #34425e;
  --cloud-silver: #c8d4e8;
  --pearl-mist: #eef4ff;
  --clean-white: #ffffff;
  --orb-core-gradient: linear-gradient(135deg, #6a597f 0%, #9b8dff 50%, #69e6ff 100%);
  --sparkfield-glow-gradient: linear-gradient(90deg, #69e6ff 0%, #9b8dff 50%, #e68dff 100%);
  --light-surface-aura: linear-gradient(90deg, #ffffff 0%, #eef4ff 50%, #c8d4e8 100%);
  --hero-stack: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --body-stack: 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:has(body[data-bia-page='teaser']),
html:has(body[data-bia-page='teaser-status']),
body[data-bia-page='teaser'],
body[data-bia-page='teaser-status'] {
  -ms-overflow-style: none;
}

html:has(body[data-bia-page='teaser'])::-webkit-scrollbar,
html:has(body[data-bia-page='teaser-status'])::-webkit-scrollbar,
body[data-bia-page='teaser']::-webkit-scrollbar,
body[data-bia-page='teaser-status']::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #11192f 0%, #0b1222 45%, #070b16 100%);
  color: var(--pearl-mist);
  font-family: var(--body-stack);
}

a {
  color: inherit;
}

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

body[data-bia-page='teaser'],
body[data-bia-page='teaser-status'] {
  position: relative;
  overflow-x: hidden;
}

html,
body[data-bia-page='teaser'],
body[data-bia-page='teaser-status'] {
  background: radial-gradient(circle at top, #11192f 0%, #0b1222 45%, #070b16 100%) !important;
  background-color: #070b16 !important;
}

.teaser-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at top, #11192f 0%, #0b1222 45%, #070b16 100%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.teaser-aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.52;
}

.teaser-aurora--violet {
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(155, 141, 255, 0.88), transparent 68%);
}

.teaser-aurora--cyan {
  top: 18%;
  right: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(105, 230, 255, 0.86), transparent 66%);
}

.teaser-aurora--magenta {
  bottom: -200px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230, 141, 255, 0.6), transparent 68%);
}

.teaser-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 140px 140px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 86%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 86%);
}

.teaser-sparkfield {
  position: absolute;
  inset: 0;
}

.teaser-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sparkfield-glow-gradient);
  box-shadow: 0 0 18px rgba(105, 230, 255, 0.7);
  opacity: 0.66;
  animation: teaser-spark-drift 14s ease-in-out infinite;
}

.teaser-spark:nth-child(1) {
  top: 14%;
  left: 18%;
  animation-delay: -2s;
}
.teaser-spark:nth-child(2) {
  top: 20%;
  left: 72%;
  animation-delay: -7s;
}
.teaser-spark:nth-child(3) {
  top: 32%;
  left: 28%;
  animation-delay: -4s;
}
.teaser-spark:nth-child(4) {
  top: 38%;
  left: 82%;
  animation-delay: -9s;
}
.teaser-spark:nth-child(5) {
  top: 58%;
  left: 18%;
  animation-delay: -5s;
}
.teaser-spark:nth-child(6) {
  top: 62%;
  left: 76%;
  animation-delay: -11s;
}
.teaser-spark:nth-child(7) {
  top: 76%;
  left: 42%;
  animation-delay: -6s;
}
.teaser-spark:nth-child(8) {
  top: 84%;
  left: 64%;
  animation-delay: -13s;
}
.teaser-spark:nth-child(9) {
  top: 48%;
  left: 54%;
  animation-delay: -8s;
}

.teaser-shell,
.teaser-status-shell {
  position: relative;
  z-index: 1;
}

.teaser-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px;
}

.teaser-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 212, 232, 0.18);
  background: rgba(11, 18, 34, 0.4);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
}

.teaser-brand:focus-visible,
.teaser-action:focus-visible,
.capture-field input:focus-visible,
.capture-field textarea:focus-visible,
.capture-field select:focus-visible,
.teaser-submit:focus-visible {
  outline: 2px solid rgba(105, 230, 255, 0.86);
  outline-offset: 3px;
}

.teaser-brand-mark {
  --bia-orb-size: 34px;
  background: transparent;
  flex: 0 0 auto;
}

.teaser-brand-text {
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 244, 255, 0.86);
}

.teaser-main {
  display: grid;
  gap: 110px;
  padding-top: 28px;
}

.teaser-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(56px, 7vw, 84px);
  align-items: center;
  min-height: calc(100vh - 180px);
}

.teaser-hero-copy {
  padding-bottom: 18px;
}

.teaser-kicker,
.teaser-section-label,
.capture-eyebrow {
  margin: 0 0 14px;
  color: var(--presence-cyan);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.teaser-hero h1,
.teaser-thesis h2,
.teaser-boundary h2,
.teaser-capture-intro h2,
.capture-card h3,
.teaser-status-card h1 {
  font-family: var(--hero-stack);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.teaser-hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  max-width: 10ch;
}

.teaser-subtitle,
.teaser-footnote,
.teaser-thesis p,
.teaser-capture-intro p,
.capture-copy,
.capture-note,
.capture-preview-note,
.teaser-status-card p,
.teaser-noscript {
  line-height: 1.65;
  color: rgba(238, 244, 255, 0.8);
}

.teaser-subtitle {
  margin: 22px 0 0;
  font-size: 1.12rem;
  max-width: none;
  white-space: nowrap;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.teaser-actions--status {
  justify-content: center;
}

.teaser-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(200, 212, 232, 0.22);
  background: rgba(11, 18, 34, 0.44);
  color: var(--pearl-mist);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.teaser-action:hover,
.teaser-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(105, 230, 255, 0.42);
  background: rgba(13, 22, 42, 0.58);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

.teaser-action--primary {
  color: var(--midnight-ink);
  background: var(--light-surface-aura);
  border-color: rgba(255, 255, 255, 0.45);
}

.teaser-action--primary:hover,
.teaser-action--primary:focus-visible {
  background: linear-gradient(90deg, #ffffff 0%, #d8f7ff 50%, #c8d4e8 100%);
}

.teaser-footnote {
  margin: 18px 0 0;
  font-size: 0.96rem;
  color: rgba(200, 212, 232, 0.68);
}

.teaser-hero-presence {
  display: grid;
  justify-items: center;
  gap: 24px;
  align-self: start;
}

.teaser-orb-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(500px, 88vw);
  aspect-ratio: 1;
  transform: translateY(-14px);
}

.teaser-orb-halo,
.teaser-orb-ring,
.teaser-orb-signal {
  position: absolute;
  border-radius: 999px;
}

.teaser-orb-halo {
  inset: 16%;
  background:
    radial-gradient(circle, rgba(155, 141, 255, 0.18) 0%, rgba(11, 18, 34, 0) 68%),
    radial-gradient(circle, rgba(105, 230, 255, 0.16) 0%, rgba(11, 18, 34, 0) 58%);
  filter: blur(16px);
}

.teaser-orb-ring--outer {
  inset: 1%;
  border: 1px solid rgba(154, 226, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(124, 207, 255, 0.03),
    0 0 22px rgba(79, 164, 255, 0.09);
  opacity: 0.36;
  filter: blur(1.2px);
  animation: teaser-ring-drift 18s linear infinite;
}

.teaser-orb-ring--inner {
  inset: 14.5%;
  border: 1px solid rgba(187, 229, 255, 0.095);
  box-shadow: inset 0 0 16px rgba(151, 225, 255, 0.06);
  opacity: 0.24;
  filter: blur(0.9px);
  animation: teaser-ring-drift 14s linear infinite reverse;
}

.teaser-orb-signal {
  width: 10px;
  height: 10px;
  background: var(--sparkfield-glow-gradient);
  box-shadow: 0 0 12px rgba(105, 230, 255, 0.18);
  opacity: 0.44;
  filter: blur(0.6px);
}

.teaser-orb-signal--a {
  top: 9%;
  right: 11%;
}
.teaser-orb-signal--b {
  left: 5%;
  bottom: 24%;
}
.teaser-orb-signal--c {
  right: 8%;
  bottom: 6%;
}

.teaser-orb-canonical {
  --bia-logo-size: clamp(109px, 22vw, 137px);
  background:
    radial-gradient(circle at 35% 30%, rgba(235, 245, 255, 0.62) 0%, transparent 28%),
    radial-gradient(circle at 60% 68%, rgba(93, 169, 255, 0.2) 0%, transparent 40%),
    radial-gradient(
      circle at 50% 50%,
      rgba(15, 23, 42, 0.98) 0%,
      rgba(15, 23, 42, 0.94) 56%,
      rgba(15, 23, 42, 0.26) 78%,
      rgba(15, 23, 42, 0) 100%
    ) !important;
  filter: saturate(1.15) brightness(1.08);
  z-index: 2;
}

.teaser-orb-canonical.bia-orb.bia-orb-logo::after {
  inset: calc(var(--orb-halo-spread) + 4px);
  filter: blur(var(--orb-halo-blur)) drop-shadow(0 0 2px rgba(22, 226, 255, 0.5));
  opacity: 0.7;
  animation-duration: calc(7.6s * var(--bia-orb-speed-mult));
}

.teaser-orb-canonical.bia-orb.bia-orb-logo::before {
  opacity: 0.78;
  animation-duration: calc(22s * var(--bia-orb-speed-mult));
}

.teaser-orb-canonical.bia-orb.bia-orb-logo > .bia-orb-flares {
  opacity: 0.65 !important;
  filter: blur(9px) !important;
  animation-duration: calc(18s * var(--bia-orb-speed-mult)) !important;
}

.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-back,
.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-front,
.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-ccw {
  width: 6px !important;
  height: 6px !important;
  filter: blur(0.8px) brightness(1.03) !important;
}

.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-back {
  animation:
    teaser-mini-orbit-1 10.5s linear infinite,
    bia-mini-pulse 4.2s ease-in-out infinite !important;
}

.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-front {
  animation:
    teaser-mini-orbit-2 8.8s linear infinite,
    bia-mini-pulse 3.6s ease-in-out infinite !important;
}

.teaser-orb-canonical.bia-orb.bia-orb-shell > .bia-orb-spark-ccw {
  animation:
    teaser-mini-orbit-3 9.6s linear infinite reverse,
    bia-mini-pulse 4.4s ease-in-out infinite !important;
}

@keyframes teaser-mini-orbit-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(15px) translateY(0px) rotate(0deg);
    opacity: 0;
  }

  12% {
    opacity: 0.72;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(13px) translateY(0px) rotate(0deg);
    opacity: 0.35;
  }

  88% {
    opacity: 0.56;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(15px) translateY(0px) rotate(0deg);
    opacity: 0;
  }
}

@keyframes teaser-mini-orbit-2 {
  0% {
    transform: translate(-50%, -50%) rotate(210deg) translateX(13px) translateY(0px) rotate(0deg);
    opacity: 0;
  }

  14% {
    opacity: 0.78;
  }

  55% {
    transform: translate(-50%, -50%) rotate(420deg) translateX(12px) translateY(0px) rotate(0deg);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) rotate(570deg) translateX(13px) translateY(0px) rotate(0deg);
    opacity: 0;
  }
}

@keyframes teaser-mini-orbit-3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(-14px) translateY(0px) rotate(0deg);
    opacity: 0;
  }

  16% {
    opacity: 0.7;
  }

  60% {
    transform: translate(-50%, -50%) rotate(-240deg) translateX(-12px) translateY(0px) rotate(0deg);
    opacity: 0.34;
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg) translateX(-14px) translateY(0px) rotate(0deg);
    opacity: 0;
  }
}

.teaser-signal-copy {
  margin: 4px 0 0;
  font-size: 1.1rem;
  color: rgba(238, 244, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.teaser-signal-list {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.teaser-signal-list li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 212, 232, 0.14);
  background: rgba(11, 18, 34, 0.4);
  color: rgba(238, 244, 255, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.teaser-thesis,
.teaser-boundary,
.teaser-capture {
  display: grid;
  gap: 20px;
}

.teaser-thesis {
  justify-items: center;
  text-align: center;
  padding: 0 18px;
}

.teaser-thesis h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.teaser-thesis p {
  margin: 0;
  max-width: 42rem;
  font-size: 1.04rem;
}

.teaser-thesis-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.teaser-thesis-lines span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 26, 51, 0.54);
  border: 1px solid rgba(200, 212, 232, 0.12);
  color: rgba(238, 244, 255, 0.78);
}

.teaser-boundary {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: start;
  gap: 28px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(11, 18, 34, 0.18));
  border: 1px solid rgba(200, 212, 232, 0.12);
}

.teaser-boundary h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
}

.teaser-boundary-copy p:last-child {
  margin: 14px 0 0;
  max-width: 34rem;
}

.teaser-boundary-rail {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.teaser-boundary-rail span {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11, 18, 34, 0.52);
  border: 1px solid rgba(105, 230, 255, 0.12);
  color: rgba(238, 244, 255, 0.82);
}

.teaser-capture {
  gap: 28px;
}

.teaser-capture-intro {
  max-width: 48rem;
}

.teaser-capture-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.teaser-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.capture-card,
.teaser-status-card {
  border-radius: 30px;
  border: 1px solid rgba(200, 212, 232, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(11, 18, 34, 0.28));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.capture-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.capture-card--partner {
  background: linear-gradient(180deg, rgba(105, 230, 255, 0.06), rgba(11, 18, 34, 0.28));
}

.capture-card h3 {
  font-size: 2rem;
}

.capture-copy,
.capture-note,
.capture-preview-note,
.capture-status {
  margin: 0;
}

.capture-form {
  display: grid;
  gap: 14px;
}

.capture-field {
  display: grid;
  gap: 8px;
}

.capture-field span {
  color: rgba(238, 244, 255, 0.88);
  font-size: 0.95rem;
}

.capture-field input,
.capture-field select,
.capture-field textarea {
  width: 100%;
  border: 1px solid rgba(200, 212, 232, 0.16);
  border-radius: 16px;
  background: rgba(5, 10, 22, 0.78);
  color: var(--pearl-mist);
  padding: 13px 14px;
}

.capture-field textarea {
  resize: vertical;
  min-height: 132px;
}

.capture-field select {
  appearance: none;
}

.capture-note,
.capture-preview-note,
.capture-status,
.teaser-noscript {
  font-size: 0.92rem;
}

.capture-status {
  min-height: 1.4em;
  color: var(--presence-cyan);
}

.capture-status[data-state='preview'] {
  color: rgba(230, 141, 255, 0.9);
}

.capture-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.teaser-submit {
  cursor: pointer;
  width: 100%;
}

.teaser-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.teaser-footer {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(200, 212, 232, 0.08);
}

.teaser-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  color: rgba(200, 212, 232, 0.72);
  font-size: 0.84rem;
}

.teaser-status-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.teaser-status-card {
  width: min(680px, 100%);
  padding: 36px;
  text-align: center;
}

.teaser-status-card h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
}

.teaser-status-card p {
  margin: 16px auto 0;
  max-width: 34rem;
}

@keyframes teaser-spark-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.18);
    opacity: 0.9;
  }
}

@keyframes teaser-orb-breathe {
  0%,
  100% {
    transform: scale(0.985);
    filter: saturate(0.96) brightness(0.98);
  }
  50% {
    transform: scale(1.012);
    filter: saturate(1.04) brightness(1.03);
  }
}

@keyframes teaser-orbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(6px);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}

@keyframes teaser-ring-drift {
  0% {
    transform: rotate(0deg) scale(0.998);
  }
  50% {
    transform: rotate(180deg) scale(1.006);
  }
  100% {
    transform: rotate(360deg) scale(0.998);
  }
}

@keyframes teaser-spark-soft-pulse {
  0%,
  100% {
    opacity: 0.34;
    filter: blur(1.5px) brightness(0.96);
  }
  50% {
    opacity: 0.58;
    filter: blur(2.2px) brightness(1.04);
  }
}

.teaser-aurora,
.teaser-orb-halo {
  animation: teaser-orb-breathe 14s ease-in-out infinite;
}

.teaser-orb-ring--outer {
  animation-duration: 22s;
}

.teaser-orb-ring--inner {
  animation-duration: 18s;
}

.teaser-orb-signal--a,
.teaser-orb-signal--b,
.teaser-orb-signal--c {
  animation: none;
}

@media (max-width: 980px) {
  .teaser-boundary,
  .teaser-capture-grid {
    grid-template-columns: 1fr;
  }

  .teaser-main {
    gap: 88px;
  }

  .teaser-subtitle {
    max-width: 26rem;
    white-space: normal;
  }

  .teaser-hero h1,
  .teaser-boundary h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .teaser-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 18px;
  }

  .teaser-orb-wrap {
    transform: translateY(0);
  }

  .teaser-hero-presence {
    gap: 18px;
  }

  .teaser-signal-list {
    display: none;
  }
}

@media (max-width: 720px) {
  .teaser-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

  .teaser-subtitle {
    font-size: 1rem;
  }

  .teaser-main {
    gap: 64px;
  }

  .teaser-header {
    padding-bottom: 12px;
  }

  .teaser-hero-presence {
    gap: 14px;
  }

  .teaser-signal-copy {
    font-size: 0.98rem;
  }

  .capture-card,
  .teaser-boundary,
  .teaser-status-card {
    padding: 20px;
    border-radius: 24px;
  }

  .capture-card h3 {
    font-size: 1.72rem;
  }

  .capture-form {
    gap: 12px;
  }

  .teaser-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .teaser-brand-text {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .teaser-aurora,
  .teaser-spark,
  .teaser-orb-canonical,
  .teaser-orb-ring,
  .teaser-orb-signal {
    animation: none !important;
    transition: none !important;
  }
}
