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

:root {
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --card: #111118;
  --card-light: #17171f;
  --text: #f5f5f7;
  --muted: #a4a4b0;
  --border: rgba(255,255,255,0.09);
  --accent: #8b5cf6;
  --accent-2: #c084fc;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fafafa;
  color: #111116;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, #111116, #55505f);
}

.brand strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.brand small {
  display: block;
  color: #888893;
  font-size: 10px;
  margin-top: 1px;
}

.navbar nav {
  display: flex;
  gap: 30px;
}

.navbar nav a {
  color: #666671;
  font-size: 13px;
  font-weight: 600;
  transition: .2s;
}

.navbar nav a:hover {
  color: #111116;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 17px;
}

.nav-apply {
  background: #111116;
  color: white;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
}


/* HERO */

.hero {
  min-height: 690px;
  background: var(--bg);
  color: var(--text);
  padding: 100px 8% 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 53%;
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow-one {
  width: 300px;
  height: 300px;
  background: rgba(139,92,246,.18);
  top: -120px;
  left: 20%;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: rgba(192,132,252,.11);
  bottom: -170px;
  right: 20%;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
  border-radius: 50px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 600;
  color: #c4c4ce;
  margin-bottom: 25px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #65e39a;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(101,227,154,.7);
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(48px, 6vw, 79px);
  line-height: .98;
  letter-spacing: -3px;
  max-width: 760px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(100deg, #fff, #9f8ab7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 590px;
  color: #9999a5;
  font-size: 16px;
  line-height: 1.8;
  margin: 28px 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s;
}

.primary-btn {
  background: white;
  color: #101014;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 1px solid var(--border);
  color: white;
  background: rgba(255,255,255,.04);
}

.secondary-btn:hover {
  background: rgba(255,255,255,.09);
}

.hero-note {
  color: #777782;
  margin-top: 20px;
  font-size: 11px;
}

.hero-note span {
  color: #8d70aa;
  margin-right: 5px;
}


/* HERO CARD */

.hero-card-wrapper {
  width: 390px;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.small-label {
  color: #898995;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 800;
}

.card-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  margin-top: 7px;
}

.verified {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139,92,246,.2);
  color: #d5bcff;
}

.journey {
  margin-top: 30px;
}

.journey-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journey-number {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 10px;
  color: #777783;
}

.journey-item.active .journey-number {
  background: white;
  color: #111;
}

.journey-item strong {
  display: block;
  font-size: 13px;
}

.journey-item span {
  display: block;
  color: #777783;
  font-size: 10px;
  margin-top: 3px;
}

.journey-line {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 4px 0 4px 18px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(25,25,32,.9);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  z-index: 3;
}

.card-top {
  top: -30px;
  right: -40px;
}

.card-bottom {
  bottom: -30px;
  left: -45px;
}

.mini-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border-radius: 9px;
}

.floating-card strong {
  display: block;
  font-size: 11px;
}

.floating-card small {
  display: block;
  color: #777783;
  font-size: 9px;
  margin-top: 3px;
}


/* TRUST */

.trust-strip {
  min-height: 92px;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #e9e9ed;
}

.trust-strip strong {
  font-family: "Outfit";
  font-size: 15px;
  display: block;
}

.trust-strip > div:first-child span {
  color: #9999a1;
  font-size: 10px;
}

.trust-points {
  display: flex;
  gap: 25px;
  color: #777781;
  font-size: 11px;
  font-weight: 600;
}


/* SECTIONS */

.section {
  padding: 110px 8%;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 55px;
}

.section-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #8a65a8;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-family: "Outfit";
  font-size: clamp(35px, 4vw, 53px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.section-heading p {
  color: #777780;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
}


/* OPPORTUNITIES */

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.opportunity-card {
  border: 1px solid #e8e8ec;
  border-radius: 20px;
  padding: 30px;
  transition: .25s;
}

.opportunity-card:hover {
  transform: translateY(-6px);
  border-color: #d1c5da;
  box-shadow: 0 20px 45px rgba(0,0,0,.06);
}

.opportunity-icon {
  font-size: 28px;
  margin-bottom: 30px;
}

.opportunity-card h3 {
  font-family: "Outfit";
  font-size: 21px;
}

.opportunity-card p {
  color: #777780;
  font-size: 12px;
  line-height: 1.7;
  margin: 10px 0 22px;
}

.opportunity-card > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: #9876b1;
}


/* DARK SECTION */

.dark-section {
  background: #08080b;
  color: white;
}

.light-heading h2 {
  color: white;
}

.light-heading p {
  color: #85858f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.step:first-child {
  border-left: 1px solid rgba(255,255,255,.08);
}

.step > span {
  font-size: 9px;
  color: #777783;
}

.step-icon {
  font-size: 25px;
  margin: 30px 0 20px;
}

.step h3 {
  font-family: "Outfit";
  font-size: 19px;
}

.step p {
  color: #777783;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 8px;
}


/* BENEFITS */

.benefit-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.benefit-intro h2 {
  font-family: "Outfit";
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -2px;
}

.benefit-intro h2 span {
  color: #9c78b5;
}

.benefit-intro p {
  color: #777780;
  font-size: 13px;
  line-height: 1.8;
  margin: 22px 0 28px;
  max-width: 500px;
}

.benefit-intro .primary-btn {
  background: #111116;
  color: white;
}

.benefit-list {
  display: flex;
  flex-direction: column;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid #e9e9ed;
}

.benefit-item > div {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #f2eef5;
  border-radius: 13px;
}

.benefit-item h3 {
  font-family: "Outfit";
  font-size: 18px;
}

.benefit-item p {
  color: #777780;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 6px;
}


/* RULES */

.rules-section {
  background: #f3f3f5;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #dddde2;
  border: 1px solid #dddde2;
  border-radius: 20px;
  overflow: hidden;
}

.rule {
  background: #f9f9fa;
  padding: 28px;
  display: flex;
  gap: 20px;
}

.rule > span {
  font-family: "Outfit";
  font-size: 11px;
  color: #a080b3;
  font-weight: 800;
}

.rule h3 {
  font-family: "Outfit";
  font-size: 17px;
}

.rule p {
  color: #777780;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 7px;
}

.rules-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 750px;
  margin-top: 20px;
  color: #777780;
  font-size: 10px;
}


/* CTA */

.final-cta {
  background: #08080b;
  color: white;
  text-align: center;
  padding: 130px 8%;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  width: 500px;
  height: 250px;
  background: rgba(139,92,246,.15);
  filter: blur(100px);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.final-cta > *:not(.cta-glow) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: "Outfit";
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  max-width: 800px;
  margin: auto;
}

.final-cta h2 span {
  display: block;
  color: #a783bb;
}

.final-cta p {
  max-width: 520px;
  color: #888891;
  font-size: 13px;
  line-height: 1.8;
  margin: 20px auto 30px;
}

.final-cta .hero-buttons {
  justify-content: center;
}


/* FOOTER */

footer {
  background: #050507;
  color: white;
  padding: 60px 8% 25px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand p {
  color: #707078;
  font-size: 11px;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 15px;
}

.footer-links {
  display: flex;
  gap: 75px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  color: white;
  font-size: 11px;
  margin-bottom: 5px;
}

.footer-links a {
  color: #6e6e77;
  font-size: 10px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #5e5e66;
  font-size: 9px;
}


/* MOBILE */

@media (max-width: 950px) {

  .navbar {
    padding: 0 5%;
  }

  .navbar nav,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: block;
    color: #111;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 6%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-card-wrapper {
    width: min(100%, 390px);
    align-self: center;
    margin-top: 35px;
  }

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

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

  .benefit-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .footer-main {
    flex-direction: column;
  }
}


@media (max-width: 600px) {

  .navbar {
    height: 68px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding: 65px 6% 90px;
  }

  .hero h1 {
    font-size: 47px;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .card-top {
    right: -5px;
  }

  .card-bottom {
    left: -5px;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 6%;
  }

  .trust-points {
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 80px 6%;
  }

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

  .step {
    border-left: 1px solid rgba(255,255,255,.08);
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 950px) {

  .navbar nav.mobile-open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e8e8ec;
    padding: 10px 6%;
  }

  .navbar nav.mobile-open a {
    padding: 15px 0;
    border-bottom: 1px solid #eeeeef;
  }
}
