/* getstake.css - extracted from getstake-hero.html */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f6f7f9;
  color: #121c30;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.announcement-bar {
  background: #121c30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

.announcement-bar .invest-link {
  color: #41ce8e;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.announcement-bar .invest-link:hover {
  text-decoration: underline;
}

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(18, 28, 48, 0.08);
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-wrapper.scrolled {
  box-shadow: 0 2px 16px rgba(18, 28, 48, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo svg {
  width: 69px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: left;
}

.nav-links li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #121c30;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(18, 28, 48, 0.05);
}

.nav-link .chevron {
  width: 16px;
  height: 16px;
  color: #80858f;
  flex-shrink: 0;
}

.nav-link.is-link {
  text-decoration: none;
}

.nav-new-badge {
  background: #41ce8e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.5;
  margin-left: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #121c30;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-lang:hover {
  background: rgba(18, 28, 48, 0.05);
}

.nav-lang .chevron {
  width: 14px;
  height: 14px;
  color: #80858f;
}

.btn-login {
  padding: 9px 18px;
  border: 1.5px solid rgba(18, 28, 48, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #121c30;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-login:hover {
  border-color: #121c30;
  background: rgba(18, 28, 48, 0.04);
}

.btn-signup {
  padding: 9px 18px;
  border: 1.5px solid #121c30;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #121c30;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.btn-signup:hover {
  background: #1e2f52;
  border-color: #1e2f52;
}

.hero-section {
  position: relative;
  overflow: visible;
  background: #f6f7f9;
  padding: 60px 32px 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: visible;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid rgba(32, 148, 118, 0.25);
  border-radius: 100px;
  background: rgba(32, 148, 118, 0.06);
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-metric svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-metric-text {
  font-size: 14px;
  font-weight: 600;
  color: #209476;
  line-height: 1.43;
}

.hero-h1 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 118%;
  color: #121c30;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.65s ease 0.2s forwards;
}

.hero-h1 .green {
  color: #41ce8e;
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  color: #121c30;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.65s ease 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.65s ease 0.4s forwards;
}

.hero-buttons a {
  display: inline-block;
  flex-shrink: 0;
}

.app-badge {
  height: 40px;
  display: block;
}

.hero-image-wrap {
  position: relative;
  height: 645px;
  overflow: visible;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -432px;
  left: -76px;
  right: -496px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  aspect-ratio: 1.00981;
}

.hero-glow img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-glow-yellow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 220, 100, 0.45) 0%, rgba(255, 220, 100, 0) 70%);
  top: 70%;
  left: 0%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.phones-group {
  position: absolute;
  width: 602px;
  top: -290px;
  bottom: -290px;
  right: -88px;
  transform: rotate(-20deg);
  overflow: visible;
  z-index: 1;
}

.phone-img-1 {
  position: absolute;
  width: 316px;
  height: 623px;
  top: 49%;
  left: 78%;
  transform: translate(-50%, -50%) perspective(1200px) translateY(100px);
  opacity: 0;
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(18, 28, 48, 0.28);
  animation:
    phoneRise1 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards,
    phoneBob 4s ease-in-out infinite alternate 1.3s;
}

.phone-img-2 {
  position: absolute;
  width: 311px;
  height: 612px;
  top: 75%;
  left: 26%;
  transform: translate(-50%, -50%) perspective(1200px) translateY(100px);
  opacity: 0;
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(18, 28, 48, 0.28);
  animation:
    phoneRise2 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards,
    phoneBob 5s ease-in-out infinite alternate-reverse 1.1s;
}

.phone-img-3 {
  position: absolute;
  width: 311px;
  height: 612px;
  top: 0;
  left: 0;
  transform: perspective(1200px) translateY(100px);
  opacity: 0;
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(18, 28, 48, 0.28);
  animation:
    phoneRise3 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s forwards,
    phoneBob 6s ease-in-out infinite alternate 1.4s;
}

.featured-section {
  background: #fff;
  padding: 48px 0 52px;
  position: relative;
  z-index: 1000;
}

.featured-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #a3aab9;
  line-height: 24px;
  margin-bottom: 28px;
}

.marquee-outer {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item img {
  height: 28px;
  width: auto;
  display: block;
}

.marquee-item svg {
  height: 28px;
  width: auto;
  display: block;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneRise1 {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) perspective(1200px) translateY(0);
  }
}

@keyframes phoneRise2 {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) perspective(1200px) translateY(0);
  }
}

@keyframes phoneRise3 {
  to {
    opacity: 1;
    transform: perspective(1200px) translateY(0);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes phoneBob {
  from {
    margin-top: 0;
  }

  to {
    margin-top: -15px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-image-wrap {
    height: 500px;
  }

  .phones-group {
    width: 400px;
    right: -40px;
  }

  .phone-img-1 {
    width: 210px;
    height: 415px;
  }

  .phone-img-2 {
    width: 207px;
    height: 408px;
  }

  .phone-img-3 {
    width: 207px;
    height: 408px;
  }

  .nav-links,
  .nav-lang {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 48px 20px 0;
  }

  .nav-inner {
    padding: 0 20px;
  }
}

.hiw-section {
  background: #f6f7f9;
  padding: 160px 56px 80px;
  overflow: clip;
  position: relative;
  z-index: 1000;
}

.hiw-heading {
  text-align: center;
  max-width: 592px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hiw-heading--visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-tag {
  font-size: 14px;
  font-weight: 600;
  color: rgb(32, 148, 118);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hiw-h3 {
  font-size: 48px;
  font-weight: 800;
  color: #121c30;
  line-height: 118%;
  letter-spacing: -0.6px;
}

.hiw-body {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.hiw-steps-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hiw-buffer {
  width: 100%;
  height: 210px;
  flex-shrink: 0;
}

.hiw-step {
  width: 100%;
  min-height: 420px;
  padding: 56px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  opacity: 0.1;
  transform: perspective(1200px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, transform;
}

.hiw-step--active {
  opacity: 1;
  transform: perspective(1200px) translateZ(0);
}

.step-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(32, 148, 118);
  margin: 0;
}

.step-title {
  font-size: 36px;
  font-weight: 700;
  color: #121c30;
  line-height: 128%;
  letter-spacing: -0.3px;
  margin: 0;
}

.step-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 162%;
  color: rgb(90, 97, 110);
  margin: 0;
  max-width: 440px;
}

.step-app-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.step-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid rgba(18, 28, 48, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #121c30;
  text-decoration: none;
  font-family: inherit;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.step-app-btn:hover {
  border-color: #121c30;
  background: rgba(18, 28, 48, 0.03);
}

.step-payments {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(18, 28, 48, 0.12);
  border-radius: 8px;
  height: 40px;
  box-sizing: border-box;
}

.payment-badge--dark {
  background: #000;
  border-color: #000;
}

.step-earn-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  margin-top: 4px;
}

.hiw-visual-col {
  flex: none;
  width: 600px;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px 0 0;
  box-sizing: border-box;
  overflow: visible;
  z-index: 1;
}

.hiw-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 32px;
  background: #41ce8e;
  overflow: hidden;
}

.hiw-card-photo {
  position: absolute;
  width: 180px;
  height: 187px;
  bottom: 94px;
  left: 21px;
  object-fit: cover;
  transform: rotate(-10deg);
  transform-origin: center center;
  border-radius: 8px;
}

.hiw-phone {
  position: absolute;
  width: 332px;
  height: 655px;
  bottom: -307px;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
}

.hiw-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.hiw-screen--active {
  opacity: 1;
}

@media (max-width: 1100px) {
  .hiw-visual-col {
    width: 480px;
  }

  .hiw-phone {
    width: 270px;
    height: 533px;
    bottom: -250px;
  }
}

@media (max-width: 900px) {
  .hiw-section {
    padding: 100px 24px 80px;
  }

  .hiw-body {
    flex-direction: column;
  }

  .hiw-visual-col {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    top: auto;
  }

  .hiw-card {
    height: 340px;
    max-width: 480px;
    margin: 0 auto;
  }

  .hiw-phone {
    width: 220px;
    height: 434px;
    bottom: -200px;
  }

  .hiw-buffer {
    height: 60px;
  }

  .hiw-step {
    min-height: 320px;
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .hiw-section {
    padding: 80px 20px 60px;
  }

  .hiw-step {
    min-height: 280px;
    padding: 32px 12px;
    gap: 16px;
  }
}