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

:root {
  --ink:          #071225;
  --ink-muted:    #64748b;
  --brand-blue:   #2563FF;
  --brand-violet: #6C4DFF;
  --brand-cyan:   #00CFFF;
  --bg-light:     #EEF5FF;
  --border-light: rgba(37, 99, 255, 0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #EEF5FF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ─────────────────────────────────────── */
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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── RADIAL GLOW ───────────────────────────────────────────────── */
.glow-top {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(37,99,255,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ───────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(37,99,255,0.06);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
}

.nav-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* ── HERO ──────────────────────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 4rem 1.5rem 3rem;
  }
  .hero-visual { order: -1; }
}

/* ── HERO LEFT ─────────────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,255,0.10), rgba(108,77,255,0.10));
  border: 1px solid rgba(37,99,255,0.18);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  animation: fade-up 0.6s ease both;
}

@media (max-width: 768px) {
  .coming-soon-badge { margin: 0 auto; }
}

.coming-soon-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  animation: fade-up 0.6s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(to right, var(--brand-blue), var(--brand-violet), var(--brand-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 480px;
  animation: fade-up 0.6s 0.2s ease both;
}

@media (max-width: 768px) {
  .hero-tagline { margin: 0 auto; }
}

/* ── EMAIL FORM ────────────────────────────────────────────────── */
.email-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  animation: fade-up 0.6s 0.3s ease both;
}

@media (max-width: 768px) {
  .email-form {
    flex-direction: column;
    max-width: 100%;
  }
}

.email-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  background: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder { color: var(--ink-muted); opacity: 0.7; }

.email-input:focus {
  border-color: rgba(37,99,255,0.5);
  box-shadow: 0 0 0 4px rgba(37,99,255,0.08), 0 4px 16px rgba(37,99,255,0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37,99,255,0.30);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,99,255,0.38);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary svg {
  width: 15px; height: 15px;
  fill: none; stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── SUCCESS MESSAGE ───────────────────────────────────────────── */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(37,99,255,0.06);
  border: 1px solid rgba(37,99,255,0.18);
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 600;
  animation: fade-up 0.3s ease both;
}

.form-success.visible { display: flex; }

.form-success svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--brand-blue);
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── SOCIAL LINKS ──────────────────────────────────────────────── */
.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fade-up 0.6s 0.4s ease both;
}

@media (max-width: 768px) {
  .social-row { justify-content: center; }
}

.social-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.7);
  color: var(--ink-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}

.social-link:hover {
  border-color: rgba(37,99,255,0.35);
  color: var(--brand-blue);
  background: rgba(37,99,255,0.06);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* ── HERO RIGHT / VISUAL ───────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.8s 0.2s ease both;
}

.visual-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.10) 0%, rgba(108,77,255,0.08) 40%, transparent 70%);
  filter: blur(32px);
  animation: blob-float 6s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.04); }
}

.comy-img {
  position: relative;
  z-index: 1;
  width: 340px;
  max-width: 90%;
  filter: drop-shadow(0 30px 60px rgba(37,99,255,0.18));
  animation: comy-float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .comy-img { width: 240px; }
  .visual-blob { width: 280px; height: 280px; }
}

@keyframes comy-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── FEATURES STRIP ────────────────────────────────────────────── */
.features-strip {
  position: relative;
  z-index: 1;
  padding: 0 2rem 5rem;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.feature-card {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: fade-up 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.15s; }
.feature-card:nth-child(2) { animation-delay: 0.25s; }
.feature-card:nth-child(3) { animation-delay: 0.35s; }

.feature-card:hover {
  border-color: rgba(37,99,255,0.25);
  box-shadow: 0 8px 32px rgba(37,99,255,0.08);
  transform: translateY(-3px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,255,0.10), rgba(108,77,255,0.10));
  border: 1px solid rgba(37,99,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  footer { flex-direction: column; text-align: center; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-brand img {
  width: 24px; height: 24px; object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.footer-copy a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover { text-decoration: underline; }

/* ── NAV RIGHT ─────────────────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── LANG TOGGLE ───────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s;
}

.lang-toggle:hover {
  border-color: rgba(37,99,255,0.3);
  background: rgba(37,99,255,0.04);
}

.lang-opt {
  color: var(--ink-muted);
  transition: color 0.2s;
}

.lang-opt.active {
  color: var(--brand-blue);
}

.lang-sep {
  color: var(--border-light);
  user-select: none;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(37,99,255,0.18);
  border-radius: 99px;
}
