/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050b1a;
  color: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #020617;
  padding: 14px;
  text-align: center;
  z-index: 999;
}

.navbar a {
  color: #00e5ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* LAYOUT */
.section {
  padding: 140px 10%;
}

.bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.bg-workflow {
  min-height: 600px;
}

.dark {
  background: #020617;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.center {
  text-align: center;
}

/* TEXT */
h1, h2, h3 {
  color: #00e5ff;
}

.lead {
  font-size: 18px;
  max-width: 720px;
}

ul {
  padding-left: 20px;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: #00e5ff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.cta.secondary {
  background: none;
  border: 2px solid #00e5ff;
  color: #00e5ff;
}

.fomo {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* CARD */
.card {
  background: #0b1430;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.highlight {
  border: 2px solid #00e5ff;
}

/* FOUNDER */
.founder {
  display: flex;
  gap: 40px;
}

.founder img {
  max-width: 280px;
  border-radius: 12px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 10%;
  background: #020617;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .founder {
    flex-direction: column;
  }

  .bg-workflow {
    min-height: 420px;
  }
}

/* =========================
   WORKFLOW PAGE FIX
========================= */
.workflow-section {
  padding: 140px 5% 80px;
}

.workflow-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
