/* SnapStack Coming Soon Page
 * Simple, modern, and Cloudflare Pages–friendly.
 */

:root {
  --bg: #050608;
  --bg-secondary: #0b0c10;
  --accent: #ff8a1f;
  --accent-soft: rgba(255, 138, 31, 0.18);
  --accent-strong: rgba(255, 138, 31, 0.9);
  --text: #f7f7f8;
  --text-muted: #a1a1aa;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-soft: 0 40px 120px rgba(15, 23, 42, 0.9);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #141622 0, var(--bg) 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 32px clamp(18px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  max-width: 1120px;
  margin: 0 auto;
  isolation: isolate;
}

.background-glow {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -3;
}

.background-glow--one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--accent-strong), transparent 60%);
  top: -160px;
  left: -120px;
}

.background-glow--two {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #6366f1, transparent 60%);
  bottom: -80px;
  right: -40px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  z-index: -2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  align-self: flex-start;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 0, #fed7aa 0, var(--accent) 45%, #7c2d12 100%);
  box-shadow: 0 12px 30px rgba(255, 138, 31, 0.55);
}

.brand-logo {
  max-width: 36px;
  max-height: 36px;
  display: block;
}

.brand-logo--wide {
  max-width: 300px;
  max-height: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero {
  margin-top: clamp(42px, 7vh, 72px);
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.03;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.title-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  margin-bottom: 14px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.meta-item {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96), #050608);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.meta-value {
  font-size: 0.88rem;
  font-weight: 500;
}

.meta-value--accent {
  color: var(--accent);
}

.notify-form {
  padding: 20px 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 23, 42, 0.82)
    ),
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.07), transparent 55%);
  box-shadow: var(--shadow-soft);
}

.notify-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.notify-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.notify-input {
  flex: 1;
  padding: 11px 13px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  outline: none;
  font-size: 0.95rem;
  min-width: 0;
}

.notify-input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.notify-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.4);
}

.notify-button {
  position: relative;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  background: radial-gradient(circle at 10% 0, #fed7aa 0, var(--accent) 45%, #c05621 100%);
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
}

.notify-button-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 140ms ease-out;
}

.notify-button:hover .notify-button-glow {
  opacity: 1;
}

.notify-button:hover {
  transform: translateY(-0.5px);
  box-shadow: 0 18px 32px rgba(248, 148, 36, 0.55);
}

.notify-button:active {
  transform: translateY(0);
  box-shadow: 0 9px 18px rgba(248, 148, 36, 0.4);
}

.notify-footnote {
  margin: 9px 2px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #4ade80 0, #22c55e 40%, #14532d 100%);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
}

.footer-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
  padding-bottom: 2px;
}

.footer-link:hover {
  color: var(--text);
  border-bottom-style: solid;
}

@media (max-width: 640px) {
  .page {
    padding-inline: 18px;
  }

  .brand {
    border-radius: 20px;
  }

  .notify-form {
    padding: 18px 16px 16px;
  }

  .notify-row {
    flex-direction: column;
  }

  .notify-button {
    width: 100%;
    justify-content: center;
    padding-block: 11px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


