:root {
  --spm-cs-text: #172033;
  --spm-cs-muted: #5d6678;
  --spm-cs-accent: #1f5f89;
  --spm-cs-accent-dark: #134669;
  --spm-cs-magenta: #9c2763;
  --spm-cs-border: #d9dee8;
}

body.spm-coming-soon {
  margin: 0;
  overflow-x: hidden;
  color: var(--spm-cs-text);
  background: linear-gradient(103deg, #ffffff 0%, #f0f6fb 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.spm-coming-soon.admin-bar .coming-soon-page {
  min-height: calc(100vh - 32px);
}

.coming-soon-page,
.coming-soon-page *,
.coming-soon-page *::before,
.coming-soon-page *::after {
  box-sizing: border-box;
}

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(103deg, #ffffff 0%, #f0f6fb 100%);
}

.coming-soon-canvas {
  position: relative;
  width: min(100%, 1440px);
  min-height: max(100vh, 900px);
  margin: 0 auto;
  overflow: hidden;
}

.coming-soon-blue-glow,
.coming-soon-magenta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.coming-soon-blue-glow {
  left: 1000px;
  top: -150px;
  width: 560px;
  height: 560px;
  background: rgba(194, 221, 240, 0.34);
  filter: blur(50px);
}

.coming-soon-magenta-glow {
  left: 1160px;
  top: 680px;
  width: 340px;
  height: 340px;
  background: rgba(229, 194, 213, 0.26);
  filter: blur(45px);
}

.coming-soon-grid {
  position: absolute;
  left: 1070px;
  top: 250px;
  display: grid;
  grid-template-columns: 138px 138px;
  grid-template-rows: 138px 138px;
  gap: 26px;
  width: 302px;
  height: 302px;
  opacity: 0.23;
  pointer-events: none;
}

.coming-soon-grid i {
  display: block;
  border: 1px solid rgba(31, 95, 137, 0.32);
  border-radius: 28px;
}

.coming-soon-content {
  position: absolute;
  left: 120px;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 850px;
}

.coming-soon-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 54px;
}

.coming-soon-brand__icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.coming-soon-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 54px;
}

.coming-soon-brand__name {
  color: var(--spm-cs-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
}

.coming-soon-brand__descriptor {
  color: var(--spm-cs-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 28px;
  white-space: nowrap;
}

.coming-soon-hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 840px;
}

.coming-soon-eyebrow {
  width: max-content;
  height: 46px;
  padding: 9px 14px;
  border: 1px solid var(--spm-cs-border);
  border-radius: 999px;
  color: var(--spm-cs-accent-dark);
  background: rgba(244, 246, 249, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 28px;
}

.coming-soon-hero h1 {
  width: 840px;
  margin: 0;
  color: var(--spm-cs-text);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 72px;
}

.coming-soon-intro {
  width: 700px;
  margin: 0;
  color: var(--spm-cs-muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 33px;
}

.coming-soon-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
}

.coming-soon-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 15px 22px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--spm-cs-accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}

.coming-soon-cta:hover {
  background: var(--spm-cs-accent-dark);
  transform: translateY(-1px);
}

.coming-soon-cta:focus-visible,
.coming-soon-email:focus-visible {
  outline: 3px solid var(--spm-cs-magenta);
  outline-offset: 4px;
}

.coming-soon-email {
  color: var(--spm-cs-accent-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.coming-soon-status {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 222, 232, 0.9);
  border-radius: 12px;
  color: var(--spm-cs-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.coming-soon-status__dot {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--spm-cs-magenta);
}

.coming-soon-footer {
  position: absolute;
  left: 120px;
  top: 820px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  min-height: 40px;
  color: var(--spm-cs-muted);
  font-size: 13px;
  line-height: 18px;
}

.coming-soon-footer__location {
  font-weight: 500;
}

.coming-soon-mobile {
  display: none;
}

@media (max-width: 699px) {
  body.spm-coming-soon.admin-bar .coming-soon-page {
    min-height: calc(100vh - 46px);
  }

  .coming-soon-canvas {
    width: 100%;
    min-height: max(100vh, 844px);
    margin: 0;
  }

  .coming-soon-blue-glow {
    left: 218px;
    top: -86px;
    width: 300px;
    height: 300px;
    background: rgba(194, 221, 240, 0.30);
    filter: blur(36px);
  }

  .coming-soon-magenta-glow {
    display: none;
  }

  .coming-soon-grid {
    left: 272px;
    top: 250px;
    grid-template-columns: 67px 67px;
    grid-template-rows: 67px 67px;
    gap: 15px;
    width: 149px;
    height: 149px;
    opacity: 0.18;
  }

  .coming-soon-grid i {
    border-radius: 15px;
  }

  .coming-soon-content {
    left: 28px;
    top: 32px;
    gap: 28px;
    width: calc(100% - 56px);
    max-width: 334px;
  }

  .coming-soon-brand {
    gap: 10px;
    height: 45px;
  }

  .coming-soon-brand__icon {
    width: 42px;
    height: 42px;
  }

  .coming-soon-brand__text {
    gap: 1px;
    height: 45px;
  }

  .coming-soon-brand__name {
    font-size: 16px;
    line-height: 20px;
  }

  .coming-soon-brand__descriptor {
    font-size: 9px;
    line-height: 24px;
  }

  .coming-soon-hero {
    gap: 20px;
    width: 100%;
  }

  .coming-soon-eyebrow {
    height: 42px;
    padding: 8px 12px;
    font-size: 10px;
    line-height: 26px;
  }

  .coming-soon-hero h1 {
    width: 100%;
    font-size: 40px;
    line-height: 47px;
  }

  .coming-soon-intro {
    width: 100%;
    font-size: 17px;
    line-height: 27px;
  }

  .coming-soon-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    min-height: 82px;
  }

  .coming-soon-cta {
    height: 50px;
    padding: 15px 22px;
  }

  .coming-soon-email {
    font-size: 15px;
    line-height: 18px;
  }

  .coming-soon-status {
    align-items: flex-start;
    width: 100%;
    min-height: 56px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 16px;
  }

  .coming-soon-status__dot {
    margin-top: 4px;
  }

  .coming-soon-footer {
    left: 28px;
    top: auto;
    bottom: 26px;
    display: block;
    width: calc(100% - 56px);
    max-width: 334px;
    min-height: 40px;
    font-size: 11px;
    line-height: 17px;
  }

  .coming-soon-footer__location {
    margin-top: 4px;
  }

  .coming-soon-desktop {
    display: none;
  }

  .coming-soon-mobile {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-cta {
    transition: none;
  }

  .coming-soon-cta:hover {
    transform: none;
  }
}
