/* Basic reset and variables */
:root {
  --bg: #0b1020;
  --panel: #131a2b;
  --text: #e5e7eb;
  --muted: #a6adbb;
  --primary: #0ea5e9;
  --primary-600: #0284c7;
  --card: #101728;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 80% -20%, rgba(14, 165, 233, 0.16), transparent),
              radial-gradient(1000px 600px at 10% 0%, rgba(99, 102, 241, 0.12), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header removed for minimal landing */

/* Hero */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.hero .container { position: relative; }
.stack { position: relative; z-index: 1; }

/* Big brand title */
.hero-title {
  position: relative;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 0.95;
  font-size: clamp(3.2rem, 13vw, 9rem);
  background: linear-gradient(135deg, #86efac, #22d3ee 35%, #60a5fa 50%, #a78bfa 70%, #f472b6 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 30px rgba(14, 165, 233, 0.18));
}

/* Soft glow behind the title */
.hero-title .glow {
  position: absolute;
  inset: -10% -8% -15%;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 40%, rgba(14,165,233,0.25), transparent 60%),
              radial-gradient(40% 40% at 60% 60%, rgba(99,102,241,0.22), transparent 60%);
  filter: blur(30px);
  border-radius: 50%;
}

.tagline {
  color: var(--muted);
  margin: 0 auto;
  max-width: 800px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

/* Email notify form */
/* Removed subscribe card and brand pill for minimal look */

/* Form styles removed */

/* Animations removed for calmer look */
.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: #0b1020;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.cta:hover {
  filter: brightness(1.05);
}

/* Sections */
.section {
  padding: 3rem 0;
}
.section h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.section p {
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 0;
}
.card p {
  color: var(--muted);
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.timeline .time {
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}
.site-footer p {
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .timeline li {
    grid-template-columns: 1fr;
  }
  .email-form { grid-template-columns: 1fr; }
}


