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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --primary:      #22b99a;
  --info:         #17a2b8;
  --secondary:    #1e2e3e;
  --bg:           #f0f2f5;
  --text:         #343a40;

  --grad: linear-gradient(135deg, var(--primary), var(--info));
}

/* ─── Base ───────────────────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero (full-screen panel) ───────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
}

/* ─── Watermark ──────────────────────────────────────────── */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(600px, 85vw);
  height: min(600px, 85vw);
  color: #fff;
  opacity: 0.03;
  transform: translate(-50%, -50%) ;
  pointer-events: none;
}

.watermark svg {
  width: 100%;
  height: 100%;
}

/* ─── Blob glow ──────────────────────────────────────────── */
.blob {
  position: absolute;
  top: -8%;
  right: -8%;
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  border-radius: 50%;
  background: var(--primary);
  mix-blend-mode: screen;
  filter: blur(80px);
  opacity: 0.08;
  animation: pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 0.08; }
  50%       { transform: scale(1.1); opacity: 0.12; }
}

/* ─── Content ────────────────────────────────────────────── */
.content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* ─── Logo row ───────────────────────────────────────────── */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 80px;
  height: 80px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  box-shadow: 0 8px 20px rgba(34, 185, 154, 0.1);
  flex-shrink: 0;
}

.logo-badge svg {
  width: 100%;
  height: 100%;
  color: #fff;
  fill: #fff;
}

.brand-name {
  font-size: 2.25rem;
  font-weight: 100;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.brand-accent, .contact-link {
  font-weight: 700;

  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Coming soon ────────────────────────────────────────── */
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #8fa8be;
  font-style: italic;
}

.coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ─── Badge ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a8d5c9;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--primary);
}

/* ─── Hero text ──────────────────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #8fa8be;
}

/* ─── Features ───────────────────────────────────────────── */
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #8fa8be;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34, 185, 154, 0.12);
  border: 1px solid rgba(34, 185, 154, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.feature-icon svg {
  width: 15px;
  height: 15px;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.contact-label {
  font-size: 0.78rem;
  color: #4d6275;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1.5rem;
    align-items: flex-start;
    padding-top: 3.5rem;
  }

  .brand-name {
    font-size: 1.9rem;
  }

  .content {
    gap: 1.6rem;
    margin: auto;
  }
}
