/* ------------------------------- */
/*  RESET & GLOBAL                 */
/* ------------------------------- */

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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #151922, #090b0f 55%, #050609 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* ------------------------------- */
/*  TYPOGRAPHY                     */
/* ------------------------------- */

.hero-title,
.section-title,
.nav-logo {
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  color: #d4d4d4;
}

.highlight {
  color: #e0c78a;
}

/* ------------------------------- */
/*  NAVIGATION                     */
/* ------------------------------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 8, 12, 0.7);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

.nav-logo {
  font-size: 14px;
  letter-spacing: 6px;
}

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

nav ul li a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  color: #f8f8f8;
  transition: color 0.25s ease;
}

nav ul li a:hover {
  color: #e0c78a;
}

/* burger for mobile */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
}

/* ------------------------------- */
/*  HERO                           */
/* ------------------------------- */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.hero-inner {
  text-align: center;
}

.hero-title {
  font-size: 60px;
  letter-spacing: 18px;
  margin-bottom: 10px;
}

.hero-underline {
  width: 420px;
  height: 2px;
  margin: 0 auto 70px;
  background: linear-gradient(to right, transparent, #e0c78a, transparent);
}

/* CLOCK */

.clock-wrapper {
  margin: 0 auto;
  margin-bottom: 40px;
}

.clock {
  position: relative;
  width: min(320px, 70vw);
  height: min(320px, 70vw);
  margin: 0 auto;
}

/* hands */

.hand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 50% 100%;
  background: #ffffff;
  border-radius: 999px;
}

/* thickness & length */
.hand.hour {
  width: 4px;
  height: 70px;
}

.hand.minute {
  width: 3px;
  height: 100px;
}

.hand.second {
  width: 2px;
  height: 120px;
}

/* quarter marks */

.clock-mark {
  position: absolute;
  background: #ffffff;
  opacity: 0.7;
  height: 2px;
  width: 28px;
}

/* 12 */
.mark-12 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* 3 */
.mark-3 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

/* 6 */
.mark-6 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* 9 */
.mark-9 {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.hero-tagline {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 4px;
  color: #e1e1e1;
}

/* ------------------------------- */
/*  SECTIONS                       */
/* ------------------------------- */

.section {
  padding: 140px 12% 120px;
}

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

.section-title {
  font-size: 40px;
  letter-spacing: 10px;
  margin-bottom: 40px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* PILLARS */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.pillar-card {
  background: rgba(16, 20, 28, 0.85);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(224, 199, 138, 0.25);
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 16px;
}

/* ROADMAP */

.roadmap-list {
  border-left: 1px solid rgba(224, 199, 138, 0.8);
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.roadmap-item {
  position: relative;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0c78a;
}

.roadmap-label {
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 8px;
}

.roadmap-text {
  font-size: 17px;
  color: #d1d1d1;
}

/* INVESTORS */

.investors-box {
  background: rgba(16, 20, 28, 0.9);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(224, 199, 138, 0.35);
}

.email-highlight {
  margin-top: 22px;
  font-size: 18px;
  letter-spacing: 4px;
}

.email-highlight a {
  text-decoration: none;
  color: #e0c78a;
}

/* WHAT'S NEXT */

.future-box {
  margin-top: 20px;
  padding: 32px;
  border-radius: 16px;
  border-left: 3px solid #e0c78a;
  background: rgba(236, 236, 236, 0.02);
}

.future-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

/* CONTACT */

.contact-email {
  margin-top: 18px;
}

/* FOOTER */

footer {
  padding: 40px 0 60px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  color: #8a8a8a;
}

/* ------------------------------- */
/*  RESPONSIVE                     */
/* ------------------------------- */

@media (max-width: 900px) {
  nav {
    padding: 16px 20px;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 60px;
    flex-direction: column;
    gap: 20px;
    background: rgba(6, 8, 12, 0.95);
    padding: 20px 24px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 10px;
  }

  .hero-underline {
    width: 260px;
    margin-bottom: 50px;
  }

  .section {
    padding: 120px 7% 100px;
  }

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

  .section-title {
    font-size: 30px;
    letter-spacing: 7px;
  }
}