@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800;900&display=swap");

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

:root {
  --coral: #e85d2f;
  --coral-dim: rgba(232, 93, 47, 0.12);
  --coral-glow: rgba(232, 93, 47, 0.08);
  --bg: #0c0c0c;
  --bg2: #111111;
  --bg3: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f0;
  --muted: #666;
  --muted2: #444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: opacity 0.2s;
}

/* ─── BLOBS ─── */
.blob-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(120px);
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  opacity: 0.07;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px;
  height: 300px;
  top: 40%;
  left: -150px;
  opacity: 0.05;
  animation-delay: -7s;
  border-radius: 40%;
}
.blob-3 {
  width: 300px;
  height: 500px;
  bottom: 10%;
  right: 5%;
  opacity: 0.06;
  animation-delay: -13s;
  border-radius: 35%;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  33% {
    transform: translateY(-40px) scale(1.05);
  }
  66% {
    transform: translateY(20px) scale(0.97);
  }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.6s ease both;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-logo span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  padding: 9px 20px;
  border-radius: 100px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ─── SITE FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.footer-logo span {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #888;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted2);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  nav {
    padding: 16px 20px;
  }
}
@media (max-width: 640px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
