@charset "UTF-8";
/* ===========================================
   COMING SOON PAGE
   =========================================== */

/* ── Hero ── */
.cs-hero {
  padding: calc(var(--nav-height) + 80px) 0 var(--space-section);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.cs-hero__glow {
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cs-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  background: var(--accent-emerald-bg);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-pill);
}

.cs-hero__title {
  margin-top: 24px;
  font-size: var(--text-hero);
  color: var(--text-on-dark);
}

.cs-hero__sub {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: var(--text-lg);
  color: var(--text-on-dark-muted);
}

.cs-hero .btn {
  margin-top: 36px;
}

/* ── Product Cards ── */
.cs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-grid);
  max-width: 960px;
  margin: 0 auto;
}

.cs-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease-out);
}

.cs-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.cs-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs-card__logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.cs-card__icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-blue-bg);
  flex-shrink: 0;
}

.cs-card__icon {
  width: 32px;
  height: 32px;
  color: var(--accent-blue);
}

.cs-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
}

.cs-card__tagline {
  font-size: var(--text-small);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2px;
}

.cs-card__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.cs-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cs-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

.cs-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-emerald);
  margin-top: 2px;
}

.cs-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: var(--border-light);
  margin-top: auto;
}

/* Status pills */
.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.cs-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
}

.cs-pill--dev {
  background: var(--accent-amber-bg);
  color: var(--accent-amber);
}
.cs-pill--dev::before { background: var(--accent-amber); }

.cs-pill--pilot {
  background: var(--accent-emerald-bg);
  color: var(--accent-emerald);
}
.cs-pill--pilot::before { background: var(--accent-emerald); }

.cs-notify {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--accent-emerald);
  transition: color var(--duration-fast);
}
.cs-notify:hover {
  color: var(--accent-teal);
}

/* ── Why Now ── */
.cs-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
  text-align: center;
}

.cs-why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cs-why__icon {
  width: 40px;
  height: 40px;
  color: var(--accent-emerald);
}

.cs-why__item h3 {
  font-size: var(--text-subtitle);
  color: var(--text-primary);
}

.cs-why__item p {
  font-size: var(--text-small);
  color: var(--text-secondary);
  max-width: 32ch;
  margin: 0 auto;
}

/* ── Waitlist Form ── */
.cs-form-wrap {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.cs-form__header h2 {
  color: var(--text-on-dark);
}

.cs-form__header p {
  margin: 12px auto 0;
  color: var(--text-on-dark-muted);
}

.cs-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.cs-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-form__label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-on-dark);
}

.cs-form__label span[aria-hidden] {
  color: var(--accent-emerald);
}

.cs-form__optional {
  font-weight: 400;
  color: var(--text-on-dark-muted);
}

.cs-form__input {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.cs-form__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.cs-form__input:focus {
  outline: none;
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.cs-form__input:invalid:not(:placeholder-shown) {
  border-color: var(--accent-red);
}

.cs-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-form__radios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-small);
  color: var(--text-on-dark-muted);
  cursor: pointer;
  transition: color var(--duration-fast);
}

.cs-radio:hover {
  color: var(--text-on-dark);
}

.cs-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cs-radio__indicator {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  flex-shrink: 0;
}

.cs-radio__indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  transform: scale(0);
  transition: transform var(--duration-fast) var(--ease-bounce);
}

.cs-radio input:checked + .cs-radio__indicator {
  border-color: var(--accent-emerald);
}

.cs-radio input:checked + .cs-radio__indicator::after {
  transform: scale(1);
}

.cs-radio input:focus-visible + .cs-radio__indicator {
  outline: 2px solid var(--accent-emerald);
  outline-offset: 2px;
}

/* Honeypot — visually hidden */
.cs-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cs-form__submit {
  width: 100%;
  margin-top: 4px;
}

.cs-form__privacy {
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
  text-align: center;
  max-width: none;
}

.cs-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
}

.cs-form__success h3 {
  color: var(--text-on-dark);
  font-size: var(--text-lg);
}

.cs-form__success p {
  color: var(--text-on-dark-muted);
  text-align: center;
}

/* ── Homepage Banner ── */
.cs-banner {
  position: relative;
  z-index: calc(var(--z-nav) + 1);
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 24px;
  font-size: var(--text-small);
  font-weight: 500;
}

.cs-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.cs-banner a:hover {
  text-decoration-thickness: 2px;
}

.cs-banner__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background var(--duration-fast);
}

.cs-banner__close:hover {
  background: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cs-cards {
    grid-template-columns: 1fr;
  }

  .cs-card {
    padding: 28px 24px;
  }

  .cs-why__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-form__radios {
    flex-direction: column;
    gap: 14px;
  }

  .cs-hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 480px) {
  .cs-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
