:root {
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-dim: rgba(13, 148, 136, 0.12);
  --teal-glow: rgba(13, 148, 136, 0.25);
  --slate: #0f172a;
  --slate-card: #162032;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --red-dim: rgba(244, 63, 94, 0.12);
  --border: rgba(148, 163, 184, 0.1);
  --border-hover: rgba(13, 148, 136, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--slate);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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.4;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-1 {
  width: 600px;
  height: 600px;
  background: rgba(13, 148, 136, 0.08);
  top: -200px;
  right: -100px;
}

.ambient-2 {
  width: 400px;
  height: 400px;
  background: rgba(244, 63, 94, 0.05);
  bottom: 20%;
  left: -100px;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--teal-light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .line-teal {
  color: var(--teal-light);
}

.hero h1 .line-dim {
  color: var(--text-dim);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: "DM Sans", sans-serif;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--teal-light);
  transform: translateY(-1px);
}

.hero-scroll {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s 0.5s ease both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

.scroll-text {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 100px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-label-center {
  justify-content: center;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 56px;
}

.section-sub-no-margin {
  margin-bottom: 0;
}

.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
}

.products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.card-glow-teal {
  background: rgba(13, 148, 136, 0.12);
}

.card-glow-red {
  background: rgba(244, 63, 94, 0.08);
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.icon-teal {
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.icon-red {
  background: var(--red-dim);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.product-meta {
  flex: 1;
}

.product-name {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.product-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-live {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.status-building {
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: var(--teal-light);
}

.status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.status-live::before {
  animation: pulse 2s infinite;
}

.product-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--border);
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.p-stat {
  font-size: 13px;
  color: var(--text-dim);
}

.p-stat strong {
  color: var(--text);
  font-weight: 500;
}

.product-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
}

.link-btn-primary {
  background: var(--teal);
  color: #fff;
}

.link-btn-primary:hover {
  background: var(--teal-light);
  box-shadow: 0 4px 16px var(--teal-glow);
}

.link-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.link-btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--teal-light);
}

.link-btn-red {
  background: rgba(244, 63, 94, 0.1);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.link-btn-red:hover {
  background: rgba(244, 63, 94, 0.18);
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.15);
}

.waitlist-section {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.waitlist-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: var(--teal-glow);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.waitlist-section .section-title {
  margin-bottom: 12px;
}

.waitlist-section .section-sub {
  margin: 0 auto 36px;
}

.waitlist-cta {
  display: flex;
  justify-content: center;
  margin: 0 auto 16px;
}

.waitlist-note {
  font-size: 12px;
  color: var(--text-dim);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.about-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.about-card-title {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.about-card-body {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.about-card-icon {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.contact-email {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-email a {
  color: var(--teal-light);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-left strong {
  color: var(--teal-light);
  font-weight: 500;
}

.footer-right {
  font-size: 12px;
  color: var(--text-dim);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 40px;
  }

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

  .waitlist-section {
    padding: 40px 24px;
  }

  .nav-links {
    display: none;
  }

  .stats-row {
    gap: 28px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }
}
