@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* host grotesk font */
/* font-family: "Host Grotesk", sans-serif; */

/* inter font */
/* font-family: "Inter", sans-serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 
html, body{
    width: 100%;
    height: 100%;
} */

body{
    font-family: "Inter", sans-serif;
    /* cursor: default; */
}

::-webkit-scrollbar{
    display: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Host Grotesk", sans-serif;
}

/* ============================================
   CODENOSYS 2026 DESIGN SYSTEM
   ============================================ */

:root {
  --bg-main: #050816;
  --bg-secondary: #070b22;
  --bg-card: rgba(255, 255, 255, 0.03);

  --primary: #2e6bff;
  --secondary: #6a1fd3;
  --accent: #8b5cf6;

  --text-main: #eaf0ff;
  --text-muted: #aab4ff;

  --border: rgba(255, 255, 255, 0.08);
  --grid: rgba(255, 255, 255, 0.04);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0a0f2e, #050816 70%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
}

/* Background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  filter: blur(200px);
  opacity: 0.25;
  top: -100px;
  right: -100px;
  z-index: -1;
}

/* Header */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

/* Launch Badge */
.launch-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 rgba(46, 107, 255, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,107,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(46,107,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,107,255,0); }
}

/* Hero */
.hero {
  padding: 120px 0 80px;
}

.hero-inner {
  max-width: 1400px;
}

/* Title */
.hero-title {
  /* font-size: 64px; */
  font-size: 4rem;
  line-height: 5.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(90deg, var(--text-main), var(--text-muted));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 720px;
}

/* Divider */
.divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 48px 0;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
}

.time-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  min-width: 110px;
  text-align: center;
}

.time-box span {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary);
}

.time-box small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Waitlist */
.waitlist-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 15px;
  outline: none;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form button {
  padding: 16px 26px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46,107,255,0.35);
}

/* Stats */
.stats {
  display: flex;
  gap: 60px;
  margin-top: 80px;
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.stat p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 100px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  font-size: 14px;
  color: var(--text-muted);
}

.socials {
  display: flex;
  gap: 18px;

  a{
    text-decoration: none;
  }
}

.socials i {
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }

  .stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    /* padding: 80px 0; */
    padding: 0;
    margin: 80px 0;
  }

  .hero-title {
    font-size: 38px;
    line-height: 45px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;

    .time-box{
        width: 45%;
    }
  }

  .waitlist-form {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
}
