/* TEMPORARY PUBLIC HOLDING PAGE — REPLACE WHEN FINAL LANDING PAGE IS APPROVED.
   Isolated styles for public/coming-soon/ only. Do not reuse as final Landing CSS. */

:root {
  --bg: #050814;
  --bg-elev: rgba(12, 18, 36, 0.55);
  --text: #eef3ff;
  --text-2: #b7c2dc;
  --text-3: #8b97b5;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #2dd4bf;
  --accent-2: #5b8cff;
  --pill-bg: rgba(45, 212, 191, 0.12);
  --pill-border: rgba(45, 212, 191, 0.35);
  --focus: #7dd3fc;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

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

html {
  color-scheme: dark;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

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

a:focus-visible,
.cs-pill:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.cs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(91, 140, 255, 0.18), transparent 60%),
    radial-gradient(700px 480px at 78% 62%, rgba(99, 102, 241, 0.16), transparent 55%),
    linear-gradient(180deg, #050814 0%, #070b18 55%, #050814 100%);
}

.cs-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cs-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 55%;
  opacity: 0.72;
}

.cs-bg__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.88) 0%, rgba(5, 8, 20, 0.55) 42%, rgba(5, 8, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 8, 20, 0.35) 0%, rgba(5, 8, 20, 0.55) 100%);
}

.cs-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px);
}

.cs-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cs-brand {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cs-brand img {
  width: min(220px, 70vw);
  height: auto;
}

.cs-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 5.6vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 14ch;
  text-wrap: balance;
}

.cs-hero h1 span {
  display: block;
  background: linear-gradient(115deg, #f4f7ff 10%, #9ec5ff 45%, #5eead4 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-support {
  margin: 0 0 clamp(28px, 4vw, 40px);
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-2);
  font-weight: 400;
}

.cs-support p { margin: 0 0 0.35em; }
.cs-support p:last-child { margin-bottom: 0; }

.cs-caps {
  list-style: none;
  margin: 0 0 clamp(28px, 4vw, 36px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cs-cap {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 100%;
}

.cs-cap__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.cs-cap__icon img {
  width: 40px;
  height: 40px;
}

.cs-cap h2 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.cs-cap p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.45;
}

.cs-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.cs-timeline {
  margin: 0;
  max-width: 34rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.cs-timeline p { margin: 0 0 0.25em; }
.cs-timeline p:last-child { margin-bottom: 0; }

/* Non-interactive status pill — not a button, no href, no fake waitlist. */
.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

.cs-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}

@media (prefers-reduced-motion: no-preference) {
  .cs-page {
    animation: cs-fade 0.7s ease both;
  }
  .cs-pill__dot {
    animation: cs-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes cs-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes cs-pulse {
  0%, 100% { opacity: 0.65; box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .cs-page,
  .cs-pill__dot {
    animation: none !important;
  }
}

/* Tablet: 2×2 capability band */
@media (max-width: 960px) {
  .cs-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cs-bg__media img {
    object-position: 82% 50%;
  }
}

/* Phone: stacked composition, purpose-built — not a scaled desktop */
@media (max-width: 640px) {
  .cs-page {
    justify-content: flex-start;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .cs-brand {
    margin-bottom: 24px;
  }

  .cs-brand img {
    width: min(180px, 64vw);
  }

  .cs-hero h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 2.75rem);
    margin-bottom: 14px;
  }

  .cs-support {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .cs-caps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .cs-cap {
    padding: 14px 12px 15px;
    border-radius: 14px;
  }

  .cs-cap__icon,
  .cs-cap__icon img {
    width: 34px;
    height: 34px;
  }

  .cs-cap h2 { font-size: 0.88rem; }
  .cs-cap p { font-size: 0.8rem; }

  .cs-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cs-bg__media img {
    object-position: 88% 42%;
    opacity: 0.55;
  }

  .cs-bg__veil {
    background:
      linear-gradient(180deg, rgba(5, 8, 20, 0.55) 0%, rgba(5, 8, 20, 0.82) 48%, rgba(5, 8, 20, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 8, 20, 0.75) 0%, rgba(5, 8, 20, 0.35) 100%);
  }
}

@media (max-width: 380px) {
  .cs-caps {
    grid-template-columns: 1fr;
  }
}

/* 200% zoom / narrow reflow safety */
@media (max-width: 320px) {
  .cs-page { padding-inline: 14px; }
  .cs-hero h1 { font-size: 1.85rem; }
}
