:root {
  --bg: #06080d;
  --surface: #0d1118;
  --line: rgba(255, 255, 255, .09);
  --text: #f6f8fb;
  --muted: #9aa4b3;
  --green: #76ff24;
  --green-dark: #48d80e;
  --purple: #9b5cff;
  --yellow: #ffc83d;
  --pink: #ff4f7b;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(118,255,36,.14), transparent 30%),
    radial-gradient(circle at 18% 30%, rgba(155,92,255,.09), transparent 25%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
}

.text-muted-custom {
  color: var(--muted);
}

.accent {
  color: var(--green);
}

.purple {
  color: var(--purple);
}

.yellow {
  color: var(--yellow);
}

.pink {
  color: var(--pink);
}

/* NAVBAR */

.navbar {
  background: rgba(6, 8, 13, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar-brand,
.nav-link {
  color: var(--text) !important;
}

.nav-link {
  opacity: .78;
}

.nav-link:hover {
  opacity: 1;
  color: var(--green) !important;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 21px;
  line-height: 1;
}

/* BUTTONS */

.btn-glyko {
  --bs-btn-border-radius: 15px;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: .9rem;
  --bs-btn-font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: 0;
  color: #071007;
  box-shadow: 0 0 32px rgba(118,255,36,.18);
}

.btn-glyko:hover {
  color: #071007;
  filter: brightness(1.05);
}

.btn-outline-glyko {
  border: 1px solid rgba(118,255,36,.45);
  color: var(--text);
  border-radius: 15px;
  padding: .85rem 1.25rem;
  font-weight: 700;
}

.btn-outline-glyko:hover {
  background: rgba(118,255,36,.1);
  color: var(--green);
}

/* HERO */

.hero {
  padding: 86px 0 72px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce5ef;
  background: rgba(17, 24, 34, .82);
  font-size: .88rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero-title {
  max-width: 650px;
  margin: 28px 0 22px;
  font-size: clamp(2.35rem, 6vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 850;
}

.hero-text {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* CARDS */

.soft-card {
  background: linear-gradient(180deg, rgba(18,24,34,.96), rgba(9,13,20,.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
}

.feature-card {
  min-height: 132px;
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(118,255,36,.32);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

/* FORM */

.waitlist-form {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 23, 32, .72);
}

.form-control {
  min-height: 55px;
  color: var(--text);
  background: var(--surface);
  border-color: rgba(255,255,255,.09);
  border-radius: 14px;
}

.form-control:focus {
  color: var(--text);
  background: var(--surface);
  border-color: rgba(118,255,36,.55);
  box-shadow: 0 0 0 .25rem rgba(118,255,36,.1);
}

.form-control::placeholder {
  color: #687386;
}

/* PHONES */

.phone-stage {
  min-height: 575px;
  position: relative;
}

.phone-img {
  position: absolute;
  width: 255px;
  border-radius: 38px;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
  background: #050705;
}

.phone-img-main {
  width: 310px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-img-left {
  left: 1%;
  top: 108px;
  z-index: 2;
}

.phone-img-right {
  right: 0;
  top: 108px;
  z-index: 1;
}

/* TRUST */

.trust-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  color: var(--muted);
  font-size: .95rem;
}

.trust-item i {
  display: block;
  color: var(--green);
  font-size: 1.65rem;
  margin-bottom: 9px;
}

.trust-item b {
  color: var(--text);
}

/* ROADMAP */

.section-space {
  padding: 72px 0 48px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 850;
  letter-spacing: -.035em;
}

.roadmap-card {
  height: 100%;
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.roadmap-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.roadmap-card small {
  color: var(--muted);
}

.roadmap-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: #abb4c2;
  flex-grow: 1;
}

.roadmap-card li {
  display: flex;
  gap: 10px;
  margin: 13px 0;
  line-height: 1.45;
}

.roadmap-card li i {
  color: var(--green);
  flex-shrink: 0;
}

/* CTA */

.cta-box {
  padding: clamp(24px, 5vw, 40px);
  margin-top: 36px;
  margin-bottom: 52px;
  border-radius: 30px;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 46px;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-brand:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green);
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  font-size: 1.25rem;
}

.social-link:hover {
  color: var(--green);
}

/* ADAPTIVE */

@media (max-width: 1199.98px) {
  .phone-img {
    width: 225px;
  }

  .phone-img-main {
    width: 280px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 54px 0 48px;
  }

  .phone-stage {
    min-height: 585px;
    margin-top: 34px;
  }

  .phone-img-left {
    left: 7%;
  }

  .phone-img-right {
    right: 7%;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    position: static !important;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .phone-stage {
    min-height: auto;
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .phone-img,
  .phone-img-main {
    position: static;
    transform: none;
    width: min(100%, 330px);
  }

  .phone-img-left,
  .phone-img-right {
    display: none;
  }

  .waitlist-form .btn {
    width: 100%;
  }

  .roadmap-card {
    min-height: auto;
  }

  .footer-links {
    justify-content: center;
  }
}

/* FEATURE CARDS */

.feature-card{
    height:100%;
    min-height:170px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* ROADMAP CARDS */

.roadmap-card{
    height:100%;
    min-height:420px;

    display:flex;
    flex-direction:column;
}

.roadmap-card ul{
    flex-grow:1;
}

/* ROW STRETCH */

#roadmap .row{
    align-items:stretch;
}