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

html {
  scroll-behavior: smooth;
}

/* ─── BASE ─── */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background: #1a1a2e;
  color: #e0e0ff;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.anim-1 { opacity: 0; animation: fadeSlideUp 0.6s ease forwards 0.10s; }
.anim-2 { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.25s; }
.anim-3 { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.40s; }
.anim-4 { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.55s; }
.anim-5 { opacity: 0; animation: fadeSlideUp 0.8s ease forwards 0.70s; }

.pulse {
  animation: pulseDot 2s ease-in-out infinite;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.on  { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  backdrop-filter: blur(16px);
  background: rgba(26, 26, 46, 0.7);
  border-bottom: 1px solid rgba(160, 112, 255, 0.1);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00d4ff, #a070ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  background: #00d4ff;
  color: #1a1a2e;
  border: none;
  border-radius: 100px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-btn:hover {
  background: #4fdfff;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 112, 255, 0.15) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  bottom: 10%;
  right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(160, 112, 255, 0.13);
  border: 1px solid rgba(160, 112, 255, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: #c8a0ff;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #3ce68a;
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #00d4ff, #c8a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: #9a9abf;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  background: linear-gradient(135deg, #00d4ff, #a070ff);
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.3), 0 4px 12px rgba(160, 112, 255, 0.2);
}
.btn-primary:hover::after { opacity: 1; }

.hero-cta-note {
  font-size: 0.8rem;
  color: #9a9abf;
  font-style: italic;
  font-weight: 300;
}

/* ─── MOCKUP ─── */
.hero-mockup {
  width: 100%;
  max-width: 780px;
}

.mockup-shell {
  background: #22223b;
  border-radius: 20px;
  border: 1px solid rgba(160, 112, 255, 0.2);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(160, 112, 255, 0.08);
}

.mockup-bar {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #ff5a6a; }
.mockup-dot.yellow { background: #ffe86f; }
.mockup-dot.green  { background: #3ce68a; }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding: 1.5rem;
}

.mock-card {
  background: #2c2c54;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mock-card.col2 { grid-column: span 2; }
.mock-card.col3 { grid-column: span 3; }

.mock-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a9abf;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.mock-stat {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.mock-stat.cyan   { color: #00d4ff; }
.mock-stat.purple { color: #a070ff; }
.mock-stat.green  { color: #3ce68a; }

.mock-efficiency {
  font-size: 0.7rem;
  color: #9a9abf;
  margin-top: 0.3rem;
}

.mock-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.mock-pill {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
}
.mock-pill.cyan   { background: rgba(0, 212, 255, 0.15);   color: #00d4ff; }
.mock-pill.purple { background: rgba(160, 112, 255, 0.15); color: #a070ff; }
.mock-pill.green  { background: rgba(60, 230, 138, 0.15);  color: #3ce68a; }
.mock-pill.pink   { background: rgba(255, 111, 204, 0.15); color: #ff6fcc; }

.mock-bar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-bar-item-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #9a9abf;
  margin-bottom: 0.2rem;
}

.mock-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 100px;
}
.mock-bar-fill.cyan-purple { background: linear-gradient(90deg, #00d4ff, #a070ff); }
.mock-bar-fill.purple-pink { background: linear-gradient(90deg, #a070ff, #ff6fcc); }
.mock-bar-fill.yellow-orange { background: linear-gradient(90deg, #ffe86f, #ff9f5c); }

.mock-ring-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-hint {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: #9a9abf;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.inner-sm {
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* ─── FEATURES ─── */
.features {
  background: #22223b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.feat {
  background: #2c2c54;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.feat:nth-child(1)::before { background: linear-gradient(90deg, #00d4ff, #3ce68a); }
.feat:nth-child(2)::before { background: linear-gradient(90deg, #a070ff, #ff6fcc); }
.feat:nth-child(3)::before { background: linear-gradient(90deg, #ffe86f, #ff9f5c); }
.feat:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 112, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.feat:hover::before { opacity: 1; }

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.feat-icon.cyan   { background: rgba(0, 212, 255, 0.12); }
.feat-icon.purple { background: rgba(160, 112, 255, 0.12); }
.feat-icon.yellow { background: rgba(255, 232, 111, 0.12); }

.feat h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feat p {
  color: #9a9abf;
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ─── WHO IT'S FOR ─── */
.who {
  background: #1a1a2e;
}

.who-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.who-text { flex: 1; }

.who-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.who-text p {
  color: #9a9abf;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.who-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.who-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.who-bullets li .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.who-bullets li:nth-child(1) .dot { background: #00d4ff; box-shadow: 0 0 8px #00d4ff; }
.who-bullets li:nth-child(2) .dot { background: #3ce68a; box-shadow: 0 0 8px #3ce68a; }
.who-bullets li:nth-child(3) .dot { background: #a070ff; box-shadow: 0 0 8px #a070ff; }

.who-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-row {
  display: flex;
  gap: 0.8rem;
}

.stat-card {
  flex: 1;
  background: #2c2c54;
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}
.stat-num.cyan   { color: #00d4ff; }
.stat-num.green  { color: #3ce68a; }
.stat-num.purple { color: #a070ff; }
.stat-num.yellow { color: #ffe86f; }

.stat-label {
  font-size: 0.7rem;
  color: #9a9abf;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── WAITLIST ─── */
.waitlist {
  background: #22223b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.waitlist h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.waitlist-sub {
  color: #9a9abf;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.waitlist-input {
  flex: 1;
  width: 100%;
  background: #2c2c54;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.85rem 1.4rem;
  color: #e0e0ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: #9a9abf; }
.waitlist-input:focus { border-color: rgba(0, 212, 255, 0.4); }

.btn-waitlist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  background: linear-gradient(135deg, #00d4ff, #a070ff);
  border: none;
  border-radius: 100px;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #9a9abf;
  font-style: italic;
}

.success-msg {
  display: none;
  color: #3ce68a;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9a9abf;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9a9abf;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #00d4ff; }

/* ─── RESPONSIVE ─── */
@media (min-width: 700px) {
  .who-row { flex-direction: row; align-items: center; gap: 4rem; }
}

@media (max-width: 600px) {
  .mockup-grid { grid-template-columns: 1fr 1fr; }
  .mock-card.col2,
  .mock-card.col3 { grid-column: span 2; }
}

@media (min-width: 500px) {
  .waitlist-form { flex-direction: row; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
