:root {
  color-scheme: dark;
  --bg: #070b16;
  --bg2: #0c1222;
  --panel: rgba(12, 18, 34, .72);
  --panelSolid: #101827;
  --text: #f8fbff;
  --muted: #9aa8bd;
  --line: rgba(148, 163, 184, .2);
  --input: rgba(15, 23, 42, .72);
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fb;
  --bg2: #edf3ff;
  --panel: rgba(255, 255, 255, .76);
  --panelSolid: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: rgba(148, 163, 184, .36);
  --input: rgba(248, 250, 252, .92);
  --accent: #1456f0;
  --accent2: #0891b2;
  --danger: #be123c;
  --shadow: 0 24px 80px rgba(15, 23, 42, .14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input { font: inherit; }
button { cursor: pointer; }
h1, p { margin: 0; }
[hidden] { display: none !important; }

.loginShell {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, .28), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(6, 182, 212, .18), transparent 30%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

.loginShell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .44;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 18px 18px;
  color: rgba(148, 163, 184, .38);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.loginTopbar {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: 46px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.loginMark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.loginMark img {
  width: 32px;
  height: 32px;
}

:root[data-theme="dark"] .loginMark img {
  filter: brightness(0) invert(1);
}

.themeToggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.themeIcon {
  font-size: 18px;
  line-height: 1;
}

.loginFrame {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 1fr) 410px;
  gap: 22px;
  align-items: center;
}

.platformStrip {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 44px));
  margin: -11px auto 23px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  opacity: .7;
}

.platformStrip span {
  color: var(--text);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  filter: saturate(.85);
}

.platformStrip span:nth-child(1) { color: #ff9900; }
.platformStrip span:nth-child(2) { color: #ee4d2d; }
.platformStrip span:nth-child(3) { color: #1a4db3; }
.platformStrip span:nth-child(4) { color: #f8fbff; }
.platformStrip span:nth-child(5) { color: #ff4747; }
.platformStrip span:nth-child(6) { color: #f8fbff; text-shadow: 0 0 14px rgba(255, 255, 255, .2); }
.platformStrip span:nth-child(7) { color: #0f62fe; }
.platformStrip span:nth-child(8) { color: #86b817; }

:root[data-theme="light"] .platformStrip span:nth-child(4) {
  color: #111827;
}

:root[data-theme="light"] .platformStrip span:nth-child(6) {
  color: #111827;
  text-shadow: none;
}

.heroCopy {
  min-width: 0;
  padding: 28px 0;
}

.heroDemo {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  overflow: hidden;
}

.demoStage {
  width: min(680px, 100%);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  overflow: hidden;
  background: #111318;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.demoSlides {
  display: flex;
  width: 300%;
  animation: demoCarousel 18s ease-in-out infinite;
}

.demoSlide {
  width: 33.3333%;
  flex: 0 0 33.3333%;
}

.demoPreview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.demoImage {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.demoImage::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.demoImage.before {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .9), transparent 10%),
    radial-gradient(circle at 50% 58%, rgba(125, 211, 252, .32), transparent 34%),
    linear-gradient(145deg, #dff7ff, #7aa8bf 48%, #39475a);
}

.slideTwo .demoImage.before {
  background:
    radial-gradient(circle at 44% 60%, rgba(255, 255, 255, .72), transparent 16%),
    linear-gradient(145deg, #e5e7eb, #94a3b8 48%, #1f2937);
}

.slideThree .demoImage.before {
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, .88), transparent 15%),
    linear-gradient(145deg, #fff7ed, #fbcfe8 48%, #7c2d12);
}

.slideFour .demoImage.before {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, .62), transparent 18%),
    linear-gradient(145deg, #e0f2fe, #64748b 50%, #111827);
}

.slideFive .demoImage.before {
  background:
    radial-gradient(circle at 50% 38%, rgba(254, 240, 138, .86), transparent 13%),
    linear-gradient(145deg, #fef3c7, #a78bfa 48%, #1e1b4b);
}

.demoImage.after {
  border-left: 1px solid rgba(148, 163, 184, .16);
  background:
    radial-gradient(circle at 34% 36%, rgba(20, 86, 240, .42), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(6, 182, 212, .28), transparent 30%),
    linear-gradient(145deg, #1c2230, #0f1117);
  animation: revealResult 6s ease-in-out infinite;
}

.slideTwo .demoImage.after {
  background:
    radial-gradient(circle at 34% 34%, rgba(34, 197, 94, .36), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(14, 165, 233, .28), transparent 30%),
    linear-gradient(145deg, #17261f, #0f1117);
}

.slideThree .demoImage.after {
  background:
    radial-gradient(circle at 34% 36%, rgba(244, 114, 182, .34), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(251, 191, 36, .28), transparent 30%),
    linear-gradient(145deg, #2b1722, #120f12);
}

.slideFour .demoImage.after {
  background:
    radial-gradient(circle at 34% 36%, rgba(14, 165, 233, .34), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(99, 102, 241, .28), transparent 30%),
    linear-gradient(145deg, #111827, #0f1117);
}

.slideFive .demoImage.after {
  background:
    radial-gradient(circle at 34% 36%, rgba(250, 204, 21, .32), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(168, 85, 247, .3), transparent 30%),
    linear-gradient(145deg, #24180b, #111014);
}

.productMock {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 88px;
  height: 150px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.productMock.sneaker {
  width: 150px;
  height: 76px;
  top: 58%;
}

.productMock.sneaker span {
  position: absolute;
  inset: 22px 8px 8px;
  border-radius: 999px 42px 22px 999px;
  background: linear-gradient(135deg, #f8fafc, #111827 78%);
  box-shadow: inset -20px 0 0 rgba(20, 86, 240, .34), 0 18px 32px rgba(15, 23, 42, .25);
}

.productMock.sneaker::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  width: 72px;
  height: 28px;
  border-radius: 40px 40px 10px 10px;
  background: #e5e7eb;
}

.productMock.cream {
  width: 96px;
  height: 118px;
  top: 56%;
}

.productMock.cream span {
  position: absolute;
  inset: 20px 16px 0;
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(135deg, #fff7ed, #f9a8d4);
  box-shadow: 0 18px 34px rgba(124, 45, 18, .25);
}

.productMock.cream::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 40px;
  height: 24px;
  border-radius: 12px 12px 6px 6px;
  background: #f8fafc;
}

.productMock.bag {
  width: 118px;
  height: 132px;
  top: 56%;
}

.productMock.bag span {
  position: absolute;
  inset: 28px 14px 0;
  border-radius: 16px 16px 28px 28px;
  background: linear-gradient(135deg, #1f2937, #64748b);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .14), 0 22px 34px rgba(15, 23, 42, .3);
}

.productMock.bag::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 4px;
  width: 54px;
  height: 46px;
  border: 9px solid rgba(31, 41, 55, .84);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.productMock.lamp {
  width: 128px;
  height: 136px;
  top: 56%;
}

.productMock.lamp span {
  position: absolute;
  left: 52px;
  top: 38px;
  width: 20px;
  height: 74px;
  border-radius: 999px;
  background: #f8fafc;
}

.productMock.lamp::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 76px;
  height: 46px;
  border-radius: 46px 46px 14px 14px;
  background: linear-gradient(135deg, #fef08a, #f8fafc);
  box-shadow: 0 0 34px rgba(254, 240, 138, .66);
}

.productMock.lamp::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 68px;
  height: 18px;
  border-radius: 999px;
  background: #e5e7eb;
}

.productCap {
  position: absolute;
  left: 22px;
  top: 0;
  width: 44px;
  height: 18px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(135deg, #f8fafc, #b7c5d1);
}

.productBottle {
  position: absolute;
  inset: 14px 10px 0;
  border-radius: 30px 30px 18px 18px;
  background: linear-gradient(135deg, #f8fafc 0%, #c8d4df 42%, #5f7388 100%);
  box-shadow: inset -10px 0 22px rgba(15, 23, 42, .18), 0 22px 38px rgba(15, 23, 42, .26);
}

.productLabel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 38px;
  z-index: 2;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 5px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
}

.adMock {
  position: absolute;
  inset: 36px 28px;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .56) 68%),
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, .9), transparent 10%),
    linear-gradient(135deg, rgba(20, 86, 240, .8), rgba(6, 182, 212, .58));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.adMock .adTag {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #1456f0;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 900;
}

.adMock strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.adMock em {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-style: normal;
}

.demoComposer {
  position: relative;
  min-height: 206px;
  margin: 34px 40px 38px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 18px;
  background: rgba(8, 10, 15, .72);
  padding: 14px 72px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.referenceChip {
  position: relative;
  width: 96px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #dff7ff, #6f9ab0);
}

.miniThumb {
  position: absolute;
  inset: 8px 22px;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(135deg, #f8fafc, #66798e);
}

.slideTwo .miniThumb {
  inset: 23px 11px 12px;
  border-radius: 999px 38px 18px 999px;
  background: linear-gradient(135deg, #f8fafc, #111827 78%);
}

.slideThree .miniThumb {
  inset: 15px 25px 8px;
  border-radius: 14px 14px 22px 22px;
  background: linear-gradient(135deg, #fff7ed, #f9a8d4);
}

.slideFour .miniThumb {
  inset: 14px 20px 8px;
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(135deg, #1f2937, #64748b);
}

.slideFive .miniThumb {
  inset: 10px 28px 8px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(135deg, #fef08a, #f8fafc);
}

.referenceChip small {
  position: absolute;
  left: 8px;
  bottom: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
}

.typingPrompt {
  position: relative;
  max-width: 470px;
  min-height: 54px;
  color: #f8fafc;
  font-size: 17px;
  line-height: 1.55;
}

.typingPrompt::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  margin-left: 4px;
  background: #f8fafc;
  vertical-align: -3px;
  animation: caretBlink 1s steps(2, start) infinite;
}

.demoTools {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.demoTools span {
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 10px;
  color: rgba(248, 250, 252, .88);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 760;
}

.demoComposer button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(20, 86, 240, .28);
  animation: sendPulse 6s ease-in-out infinite;
}

:root[data-theme="light"] .demoStage {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, .32);
  box-shadow: 0 34px 90px rgba(15, 23, 42, .16);
}

:root[data-theme="light"] .demoComposer {
  background: rgba(255, 255, 255, .82);
}

:root[data-theme="light"] .typingPrompt {
  color: #111827;
}

:root[data-theme="light"] .typingPrompt::after {
  background: #111827;
}

:root[data-theme="light"] .demoTools span {
  color: #334155;
  background: rgba(255, 255, 255, .72);
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

@keyframes sendPulse {
  0%, 62%, 100% { transform: translateY(0); box-shadow: 0 12px 28px rgba(20, 86, 240, .28); }
  68% { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(20, 86, 240, .42); }
}

@keyframes revealResult {
  0%, 18% { filter: saturate(.55) brightness(.68); opacity: .36; }
  34%, 100% { filter: saturate(1) brightness(1); opacity: 1; }
}

@keyframes demoCarousel {
  0%, 27% { transform: translateX(0); }
  33%, 60% { transform: translateX(-33.3333%); }
  66%, 93% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); }
}

.heroDemo .demoStage {
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  clip-path: inset(0 round 24px);
  background: #111216;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.heroDemo .demoSlides {
  height: 100%;
  background: #111216;
}

.heroDemo .demoSlide {
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 128px;
  overflow: hidden;
}

.heroDemo .demoPreview {
  min-height: 0;
  height: 100%;
  background: #1e2026;
}

.heroDemo .demoImage {
  margin: 0;
  min-height: 0;
  height: 100%;
  background: #202228;
}

.heroDemo .demoImage::after {
  content: none;
}

.heroDemo .demoImage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.heroDemo .demoImage.after {
  position: relative;
  background: linear-gradient(180deg, #202228, #17191e);
  animation: none;
}

.heroDemo .demoImage.after img {
  opacity: 0;
  filter: saturate(.78) brightness(.76);
  transform: scale(1.035);
  animation: realisticReveal 5s ease-in-out infinite;
}

.heroDemo .demoImage.after::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: .55;
  pointer-events: none;
}

.heroDemo .demoComposer {
  position: relative;
  min-height: 0;
  height: calc(100% - 14px);
  margin: 0 16px 14px;
  border-radius: 12px;
  overflow: hidden;
  clip-path: inset(0 round 12px);
  background: var(--panelSolid);
  border-color: var(--line);
  padding: 8px 46px 8px 9px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.heroDemo .demoComposer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: var(--panelSolid);
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  z-index: 0;
}

.heroDemo .demoComposer > * {
  position: relative;
  z-index: 1;
}

.heroDemo .referenceChip {
  width: 48px;
  height: 32px;
  border-radius: 7px;
  margin-bottom: 6px;
  background: #202228;
}

.heroDemo .referenceChip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.heroDemo .referenceChip small {
  left: 5px;
  bottom: 5px;
  background: rgba(17, 18, 22, .78);
  backdrop-filter: blur(8px);
  padding: 2px 5px;
  font-size: 9px;
}

.heroDemo .typingPrompt {
  max-width: none;
  min-height: 24px;
  color: #f8fafc;
  font-size: 11px;
  line-height: 1.28;
  letter-spacing: 0;
}

.heroDemo .demoTools {
  margin-top: 5px;
}

.heroDemo .demoTools span {
  display: inline-flex;
  align-items: center;
  height: 25px;
  border-radius: 8px;
  background: var(--input);
  border-color: var(--line);
  color: var(--text);
  padding: 5px 8px;
  font-size: 10px;
}

.heroDemo .demoComposer button {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  right: 10px;
  bottom: 10px;
  border-radius: 9px;
  background: #5b3df5;
  animation: sendPulse 5s ease-in-out infinite;
}

:root[data-theme="light"] .heroDemo .demoStage {
  background: #f4f6fb;
  border-color: rgba(15, 23, 42, .12);
}

:root[data-theme="light"] .heroDemo .demoSlides,
:root[data-theme="light"] .heroDemo .demoSlide {
  background: #f4f6fb;
}

:root[data-theme="light"] .heroDemo .demoComposer {
  background: var(--panelSolid);
  border-color: rgba(15, 23, 42, .12);
}

:root[data-theme="light"] .heroDemo .typingPrompt {
  color: #111827;
}

:root[data-theme="light"] .heroDemo .demoTools span {
  background: #f8fafc;
  color: #334155;
  border-color: rgba(15, 23, 42, .12);
}

@keyframes realisticReveal {
  0%, 22% { opacity: 0; filter: saturate(.5) brightness(.45); transform: scale(1.045); }
  42%, 100% { opacity: 1; filter: saturate(1.05) brightness(1); transform: scale(1); }
}

.loginPanel {
  min-width: 0;
  width: 410px;
  justify-self: end;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.formHead {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.formHead span {
  color: var(--text);
  font-size: 27px;
  font-weight: 900;
}

.formHead strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.loginPanel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.loginPanel input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--input);
  color: var(--text);
  outline: none;
  padding: 0 14px;
}

.loginPanel input:focus {
  border-color: color-mix(in srgb, var(--accent) 72%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.loginPanel input::placeholder {
  color: color-mix(in srgb, var(--muted) 76%, transparent);
}

#loginBtn {
  height: 50px;
  margin-top: 2px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 15px;
  font-weight: 880;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 28%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

#loginBtn:disabled {
  cursor: wait;
  opacity: .72;
}

.btnArrow {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  line-height: 1;
  font-size: 14px;
  transform: translateY(-.5px);
}

.registerPrompt {
  display: block;
  width: 100%;
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.registerPrompt button {
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--accent2) 72%, var(--text));
  font-weight: 820;
  padding: 4px 6px;
}

.registerPrompt button:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.optionalField[hidden] {
  display: none;
}

#loginStatus {
  min-height: 20px;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

#loginStatus[data-type="success"] {
  color: #22c55e;
}

.successPanel {
  align-content: center;
  text-align: center;
}

.successBadge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: color-mix(in srgb, #22c55e 18%, transparent);
  color: #22c55e;
  font-size: 34px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #22c55e 30%, transparent);
}

.successPanel .formHead {
  margin-bottom: 0;
}

.successPanel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

#enterAppBtn {
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 15px;
  font-weight: 880;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 28%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

@media (max-width: 860px) {
  .loginShell {
    padding: 16px;
  }

  .loginFrame {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 20px;
    align-content: center;
  }

  .platformStrip {
    width: min(100%, calc(100% - 28px));
    margin-top: 16px;
    gap: 13px 18px;
  }

  .heroCopy {
    padding: 34px 0 0;
  }

  .heroDemo .demoPreview {
    min-height: 0;
  }

  .heroDemo .demoImage,
  .heroDemo .demoImage img {
    min-height: 0;
  }

  .heroDemo .demoComposer {
    min-height: 0;
    height: calc(100% - 14px);
    margin: 0 16px 14px;
    padding: 8px 46px 8px 9px;
  }

  .heroDemo .typingPrompt {
    font-size: 11px;
  }

  .loginPanel {
    width: 100%;
    justify-self: stretch;
    padding: 24px;
  }
}
