/* Color Craziness — Coming soon (standalone) */
/* Restored: pre–mobile-image-fix layout (+ bigger art, copy, spacing, wrap fixes) */

:root {
  --magenta: #E6006E;
  --ink: #0B0B12;
  --ink-soft: #1C1C28;
  --paper: #FFF9F2;
  --citron: #F5E000;
  --violet: #6B2CFF;
  --white: #FFFFFF;
  --radius-pill: 999px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
}

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

html {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 19px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--magenta);
  color: var(--white);
  border: 2px solid var(--ink);
}

.kicker {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0;
  line-height: 1.5;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--ink);
  background: var(--magenta);
  color: var(--white);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #B80058;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.coming-soon__teasers {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.coming-soon__teasers li {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 1.35rem;
  position: relative;
}

.coming-soon__teasers li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 800;
}

/*
  .coming-soon__cta width = button width only (fit-content).
  Button stays left in the column, natural size — never stretched.
  Note is position:absolute across that same width → text-align:center
  is relative to the CTA button, not the page.
*/
.coming-soon__cta {
  position: relative;
  display: block;
  width: fit-content; /* exactly the button’s width */
  max-width: 100%;
  margin-top: 1.85rem;
  padding-bottom: 2.35rem; /* space for the note under the button */
}

.coming-soon__cta-btn {
  display: inline-flex;
  width: auto !important;
  max-width: 100%;
  box-sizing: border-box;
}

.coming-soon__cta-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
  text-align: center; /* centered within button width */
  white-space: nowrap;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo__type {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.logo__type span {
  display: block;
  color: var(--magenta);
  font-size: 1.3rem;
}

.logo__type small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.1rem;
}

/* Entire page = one screen (100vh), no page scroll */
.coming-soon {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: stretch;
  padding: 1rem;
  box-sizing: border-box;
}

.coming-soon__stage {
  flex: 1;
  width: min(100%, 1200px);
  margin: 0 auto;
  min-height: 0;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--magenta);
  padding: clamp(1rem, 2.5vh, 2rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  overflow: hidden;
}

.coming-soon__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.coming-soon__brand-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Quiet utility — not competing with Amazon CTA */
.coming-soon__login {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.coming-soon__login:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.coming-soon__login[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--magenta);
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 1.25rem 1.5rem;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}

.coming-soon__copy {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Full desktop: same inset left and right */
@media (min-width: 901px) {
  .coming-soon__stage {
    padding-left: clamp(2rem, 4vw, 3.25rem);
    padding-right: clamp(2rem, 4vw, 3.25rem);
  }
}

.coming-soon__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 4.6vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1.05rem;
  max-width: none;
}

.coming-soon__title em {
  font-style: normal;
  color: var(--magenta);
}

/* Image fills remaining row height inside the 100vh stage */
.coming-soon__visual {
  position: relative;
  width: 100%;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  border: 3px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--violet);
  background: #f3ebe0;
}

.coming-soon__art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: 50% 28%;
}

.coming-soon__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0.65rem 0 0;
  border-top: 2px solid rgba(11, 11, 18, 0.12);
  flex-shrink: 0;
}

.coming-soon__proof li {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.coming-soon__proof strong {
  color: var(--ink);
  font-weight: 700;
}

/* —— Login / signup —— */
body.login-page {
  overflow: auto;
  overscroll-behavior: auto;
}

body.login-page .coming-soon {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 1rem;
  overflow: visible;
}

body.login-page .coming-soon__stage--login {
  max-width: 28rem;
  width: 100%;
  flex: 0 1 auto;
  min-height: min(36rem, calc(100dvh - 2rem));
  margin: 0 auto;
  justify-content: flex-start;
  gap: 1.5rem;
  overflow: visible;
  /* even inset all around */
  padding: 1.5rem 1.5rem 1.75rem;
  box-sizing: border-box;
}

.coming-soon__login--plain {
  font-weight: 500;
  opacity: 0.85;
}

.login-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  justify-content: flex-start;
  gap: 0;
}

.login-panel .kicker {
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

.login-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.65rem;
}

.login-panel__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  max-width: none;
}

/* One gap system for the whole form — no extra margin-tops on buttons */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.login-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.login-form input {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.2rem;
  background: var(--paper);
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.login-form input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.login-form .btn {
  font-size: 1rem;
  padding: 0.95rem 1.35rem;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.login-form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: 3px 3px 0 var(--ink);
  transform: none;
}

.login-form__actions {
  margin: 0;
  padding: 0;
}

.login-form__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.15rem 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.login-form__divider::before,
.login-form__divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(11, 11, 18, 0.12);
}

/* Same chrome as other buttons; keeps real multicolor Google mark */
.btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--google:hover:not(:disabled) {
  background: var(--citron);
  color: var(--ink);
  border-color: var(--ink);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn--google:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: 3px 3px 0 var(--ink);
  transform: none;
}

.btn--google__logo {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.btn--ghost-login {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
  justify-content: center;
}

.btn--ghost-login:hover {
  background: var(--citron);
  color: var(--ink);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.login-form__note {
  margin: 0.25rem 0 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.login-form__note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.login-form__note a:hover {
  color: var(--magenta);
}

@media (max-width: 900px) {
  body.login-page .coming-soon {
    padding: 0.75rem;
  }
  body.login-page .coming-soon__stage--login {
    min-height: 0;
    padding: 1.25rem 1.15rem 1.5rem;
    gap: 1.25rem;
  }
  .login-panel__title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .login-panel__lead {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }
  .login-form {
    gap: 0.9rem;
  }
}

.logo {
  text-decoration: none;
  color: inherit;
}

/*
  MOBILE: natural vertical stack + scroll.
  Desktop keeps 100vh no-scroll; phones were crushed/clipped by that.
*/
@media (max-width: 900px) {
  html {
    height: auto;
    overflow: auto;
  }
  body {
    height: auto;
    min-height: 100%;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: auto;
  }

  .coming-soon {
    height: auto;
    min-height: 100dvh;
    padding: 0.65rem;
    overflow: visible;
  }

  .coming-soon__stage {
    flex: none;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 1rem 1rem 1.15rem;
    gap: 1rem;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--magenta);
  }

  .coming-soon__brand {
    gap: 0.5rem 0.75rem;
    align-items: center;
  }

  .coming-soon__brand-actions {
    gap: 0.55rem;
    flex-shrink: 0;
  }

  .logo__type span {
    font-size: 1.05rem;
  }
  .logo__type small {
    font-size: 0.62rem;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .coming-soon__login {
    font-size: 0.8rem;
  }

  /* Stack: image on top, then copy */
  .coming-soon__grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    flex: none;
    min-height: 0;
  }

  .coming-soon__visual {
    order: -1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 12rem;
    max-height: 15.5rem;
    /* Real height so absolute img fills the frame */
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    box-shadow: 4px 4px 0 var(--violet);
    align-self: stretch;
  }

  .coming-soon__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .coming-soon__copy {
    overflow: visible;
    justify-content: flex-start;
    min-height: 0;
  }

  .kicker {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }

  .coming-soon__title {
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    margin: 0 0 0.65rem;
    line-height: 1.06;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.45;
    max-width: none;
  }

  .coming-soon__teasers {
    margin-top: 0.9rem;
    gap: 0.4rem;
  }

  .coming-soon__teasers li {
    font-size: 0.92rem;
    padding-left: 1.2rem;
  }

  .coming-soon__cta {
    margin-top: 1.15rem;
    width: 100%;
    max-width: 100%;
    padding-bottom: 2.1rem;
  }

  .coming-soon__cta-btn {
    width: 100% !important;
    max-width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .coming-soon__cta-note {
    font-size: 0.85rem;
    white-space: normal;
  }

  .coming-soon__proof {
    padding-top: 0.75rem;
    gap: 0.4rem 1rem;
    flex-wrap: wrap;
  }

  .coming-soon__proof li {
    font-size: 0.8rem;
  }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .coming-soon {
    padding: 0.45rem;
  }
  .coming-soon__stage {
    padding: 0.85rem 0.8rem 1rem;
  }
  .coming-soon__title {
    font-size: 1.7rem;
  }
  .coming-soon__visual {
    min-height: 10rem;
    max-height: 13rem;
  }
  .coming-soon__cta-btn {
    font-size: 0.88rem;
    padding: 0.85rem 0.75rem;
  }
}
