/* Roamr Landing Page — from Figma design */

:root {
  --teal: #40e0d0;
  --teal-dark: #0d9488;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --explorer: #B6FF5C;
  --traveller: #feca57;
  --voyager: #ff6347;
  --lime: #9acd32;
  --surface-dark: #141414;
  --surface-mid: #1a1a1a;
  --surface-card: #111111;
  --surface-border: rgba(255, 255, 255, 0.12);
  --max-width: 1440px;
  --content-padding: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 23px;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--content-padding);
  }
}

/* Typography */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
}

.section-label .arrow {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}

.section-title {
  font-family: "Raleway";
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

.section-title--dark {
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn--white {
  background: var(--white);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn--explorer { background: var(--explorer); color: var(--black); }
.btn--traveller { background: var(--traveller); color: var(--black); }
.btn--voyager { background: var(--voyager); color: var(--black); }

/* ========== HEADER ========== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 100px;
}

.header__spacer {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 23px;
  justify-self: start;
}

.logo__icon {
  width: 25px;
  height: 39px;
}

.logo__text {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 28px;
  color: var(--black);
}

.nav {
  display: none;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 0 51px;
  height: 99px;
  align-items: center;
  justify-self: center;
  background: transparent;
}

.nav__list {
  display: flex;
  gap: 50px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
  position: relative;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}

@media (min-width: 992px) {
  .header .nav:not(.nav--mobile) {
    display: flex;
  }

  .nav--mobile {
    display: none !important;
  }

  .header__spacer {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 20px 0 0;
  }

  .header__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    justify-items: center;
    gap: 16px;
    padding-bottom: 20px;
  }

  .logo {
    justify-self: center;
  }

  .header .nav:not(.nav--mobile) {
    display: flex !important;
    height: 52px;
    padding: 0 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.5);
    justify-self: center;
  }

  .nav__list {
    gap: 28px;
    font-size: 14px;
  }

  .nav--mobile {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }

  .header__spacer {
    display: none;
  }
}

.nav--mobile {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  height: auto;
  min-height: 0;
  width: auto;
  background: transparent;
  align-items: stretch;
  justify-self: auto;
  pointer-events: none;
}

.nav--mobile.is-open {
  pointer-events: auto;
}

.nav--mobile__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.nav--mobile.is-open .nav--mobile__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav--mobile__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(320px, 88vw);
  background: var(--teal);
  padding: 88px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  pointer-events: none;
}

.nav--mobile.is-open .nav--mobile__panel {
  transform: translateX(0);
  pointer-events: auto;
}

.nav--mobile .nav__list {
  flex-direction: column;
  text-align: left;
  gap: 28px;
  font-size: 22px;
  width: 100%;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

/* ========== HERO + STATS (screenshot layout) ========== */
.hero {
  position: relative;
  z-index: 1;
}

.hero__teal {
  position: relative;
  background: var(--teal);
  border-radius: 0 0 100px 100px;
  padding: 186px 0 800px;
  overflow: visible;
}

.hero__curve-glow {
  position: absolute;
  left: 50%;
  bottom: 670px;
  transform: translateX(-50%);
  width: min(1840px, 132vw);
  height: clamp(130px, 18vw, 220px);
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.hero__curve-blur,
.hero__curve-ring {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  height: auto;
}

.hero__curve-blur {
  width: 110%;
  bottom: -24px;
  opacity: 0.75;
}

@media (max-width: 991px) {
  .hero__teal {
    padding: 108px 0 250px;
    border-radius: 0 0 44px 44px;
    overflow: clip;
  }

  .hero__curve-glow {
    display: none;
  }

  .hero__main > .container:first-child {
    margin-top: -96px;
    padding-inline: 16px;
    z-index: 4;
  }

  .hero__title {
    padding-inline: 20px;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.12;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .hero__teal {
    padding: 140px 0 900px;
    border-radius: 0 0 36px 36px;
  }

  .hero__main > .container:first-child {
    margin-top: -72px;
    padding-inline: 12px;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 220px;
  }

  .hero__countdown-panel {
    min-height: 210px;
    padding: 28px 20px;
    gap: 20px;
  }

  .hero__launch-title {
    font-size: clamp(38px, 12vw, 56px);
    margin-top: 6px;
  }
}

.hero__title {
  position: relative;
  z-index: 4;
  font-family: "Raleway";
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 80px);
  text-align: center;
  color: var(--black);
  line-height: 1.05;
  max-width: 967px;
  margin: 0 auto;
}

.hero__main {
  background: var(--black);
  padding-bottom: 80px;
}

.hero__main > .container:first-child {
  margin-top: -880px;
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .hero__main > .container:first-child {
    margin-top: -750px;
  }
}

.hero__card {
  max-width: 1262px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 992px) {
  .hero__card {
    grid-template-columns: 671px 1fr;
    min-height: 504px;
  }
}

.hero__image-wrap {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #111;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 280px;
}

@media (min-width: 992px) {
  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 504px;
  }
}

.hero__divider {
  display: none;
}

@media (min-width: 992px) {
  .hero__divider {
    display: block;
    position: absolute;
    left: 671px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed var(--gray-300);
    z-index: 3;
    transform: translateX(-50%);
  }
}

.hero__countdown-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  gap: 32px;
  background: var(--white);
  min-height: 280px;
}

@media (min-width: 992px) {
  .hero__countdown-panel {
    min-height: 504px;
    padding: 56px 32px;
  }
}

.hero__icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero__icons img {
  height: auto;
  width: auto;
  max-height: 24px;
  flex-shrink: 0;
}

.hero__launch-title {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 40px;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.countdown {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 392px;
}

.countdown__item {
  text-align: center;
  flex: 1;
  min-width: 0;
  max-width: 90px;
}

.countdown__value {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 12px 8px;
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  color: #1f2937;
  line-height: 32px;
}

.countdown__label {
  font-family: "Inter";
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Stats inside hero main */
.hero .stats {
  padding: 48px 0 0;
  background: transparent;
  position: relative;
  z-index: 6;
}

.stats__inner {
  position: relative;
  max-width: 1216px;
  padding: 0 72px;
  z-index: 1;
  overflow: visible;
}

.stats__carousel {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.stats__carousel::-webkit-scrollbar {
  display: none;
}

.stat-card {
  flex: 0 0 min(340px, calc(100% - 120px));
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  min-height: 333px;
  display: flex;
  flex-direction: column;
}

.stats__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1), 0 20px 12.5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: auto;
}

.stats__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stats__nav[hidden] {
  display: none;
}

@media (max-width: 1099px) {
  .stats__inner {
    padding: 0 56px;
  }

  .stats__nav {
    width: 48px;
    height: 48px;
  }
}

.stats__nav--prev { left: 0; }
.stats__nav--next { right: 0; }

.stats__nav img {
  width: 13px;
  height: 20px;
  display: block;
  filter: brightness(0);
}

.stat-card__icon {
  width: 32px;
  height: 36px;
  margin-bottom: 16px;
}

.stat-card__icon--globe {
  filter: none;
}

.stat-card__number {
  font-family: "Inter";
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.stat-card__number--lg {
  font-size: 60px;
}

.stat-card__title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 26px;
  color: #1f2937;
  letter-spacing: -0.5px;
  margin: 16px 0 8px;
  line-height: 30px;
}

.stat-card__desc {
  font-family: "Inter";
  font-size: 15px;
  color: var(--gray-500);
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-top: auto;
}

.members1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0px 10px;
}

.members1__avatars {
  display: flex;
}

.members1__avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--black);
  margin-left: -8px;
  object-fit: cover;
}

.members1__avatars img:first-child {
  margin-left: 0;
}

.members1__count {
  font-family: "Space Grotesk";
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: -0.5px;
}


.members {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.members__avatars {
  display: flex;
}

.members__avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--black);
  margin-left: -8px;
  object-fit: cover;
}

.members__avatars img:first-child {
  margin-left: 0;
}

.members__count {
  font-family: "Space Grotesk";
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: -0.5px;
}

@media (max-width: 767px) {
  .stats__inner {
    padding: 0 44px;
  }

  .stats__nav {
    width: 40px;
    height: 40px;
  }

  .stat-card {
    flex: 0 0 calc(100vw - 88px);
    padding: 32px 28px;
    min-height: unset;
  }

  .stat-card__number,
  .stat-card__number--lg {
    font-size: 40px;
  }

  .stat-card__title {
    font-size: 20px;
  }

  .stat-card__desc {
    font-size: 13px;
    line-height: 22px;
  }

  .stat-card__icon {
    width: 26px;
    height: 30px;
    margin-bottom: 12px;
  }
}

/* Legacy stats block (if used elsewhere) — keep minimal */
.stats:not(.hero .stats) {
  padding: 60px 0;
  background: var(--black);
}

/* ========== CASHBACK TIERS ========== */
.tiers {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* Bottom half: light base so Figma overlay gradient is visible */
.tiers::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  bottom: 0;
  background: linear-gradient(180deg, #2e2e2e 0%, #1c1c1c 50%, #101010 100%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom half: exact Figma overlay gradient */
.tiers::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 80%;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 42.31%,
    #000000 84.13%
  );
  pointer-events: none;
  z-index: 0;
}

.tiers > .container,
.tiers__surface {
  position: relative;
  z-index: 1;
}

.tiers__surface {
  margin-top: 32px;
  padding: 64px 0 96px;
  background: transparent;
  overflow: visible;
}

.tiers__surface::before,
.tiers__surface::after {
  display: none;
}

.tiers__surface > .container {
  position: relative;
  z-index: 1;
}

.tiers__intro {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 8px;
}

.tiers__label {
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}

.tiers__title-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  min-height: clamp(100px, 12vw, 130px);
}

.tiers__title {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.1;
}

.tiers__header-members {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.tiers__header-members.members1 {
  margin: 0;
}

.tiers__header-members .members1__count {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.tiers__subtitle {
  font-family: "Inter";
  font-size: 20px;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 28px;
}

.tiers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  max-width: 943px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 22px;
  overflow: visible;
}

@media (min-width: 992px) {
  .tiers__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

@media (max-width: 991px) {
  .tiers__title-row {
    min-height: auto;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 4px;
  }

  .tiers__header-members {
    position: static;
    transform: none;
    justify-content: center;
  }

  .tiers__subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-top: 16px;
  }
}

.tier-card {
  border-radius: 23px;
  padding: 28px;
  min-height: 436px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.tier-card--explorer {
  margin-top: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(182, 255, 92, 0.08) 0%,
      rgba(182, 255, 92, 0.02) 18%,
      transparent 38%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #121212 42%, #080808 72%, #000000 100%);
  border: 1px solid rgba(182, 255, 92, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(182, 255, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tier-card--traveller {
  margin-top: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(254, 202, 87, 0.08) 0%,
      rgba(254, 202, 87, 0.02) 18%,
      transparent 38%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #121212 42%, #080808 72%, #000000 100%);
  border: 1px solid rgba(254, 202, 87, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(254, 202, 87, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tier-card--voyager {
  margin-top: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 99, 71, 0.08) 0%,
      rgba(255, 99, 71, 0.02) 18%,
      transparent 38%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #121212 42%, #080808 72%, #000000 100%);
  border: 1px solid rgba(255, 99, 71, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 99, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tier-card__best-value {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--explorer);
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 9999px;
  white-space: nowrap;
  z-index: 12;
}

.tier-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 41px;
}

.tier-card__rate {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}

.tier-card__badge {
  padding: 8px 16px;
  border-radius: 50px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
  margin-top: 20px;
  display: inline-block;
}

.tier-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tier-card__icon-wrap img {
  width: 18px;
  height: 18px;
  display: block;
}

.tier-card__icon-wrap--explorer {
  background: var(--explorer);
}

.tier-card__icon-wrap--traveller {
  background: var(--traveller);
}

.tier-card__icon-wrap--voyager {
  background: var(--voyager);
}

.tier-card__icon-wrap--explorer img,
.tier-card__icon-wrap--traveller img,
.tier-card__icon-wrap--voyager img {
  filter: brightness(0);
}

.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 47px;
  flex: 1;
}

.tier-card__feature {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 14px;
}

.tier-card__feature img {
  width: 14px;
  height: 12px;
  flex-shrink: 0;
}

.tier-card--explorer .tier-card__feature img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(31%) saturate(746%) hue-rotate(44deg) brightness(103%) contrast(101%);
}

.tier-card--traveller .tier-card__feature img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(47%) saturate(522%) hue-rotate(358deg) brightness(103%) contrast(101%);
}

.tier-card--voyager .tier-card__feature img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(66%) saturate(1752%) hue-rotate(329deg) brightness(101%) contrast(101%);
}

.tier-card__cta {
  width: 100%;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.tier-card .members1 {
  margin: 24px 0 0;
}

.best-value {
  display: none;
}

/* ========== STEPS ========== */
.steps {
  padding: 128px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 95vw);
  height: 420px;
  background: radial-gradient(
    ellipse at center,
    rgba(35, 35, 35, 0.45) 0%,
    rgba(15, 15, 15, 0.2) 45%,
    transparent 72%
  );
  pointer-events: none;
}

.steps > .container {
  position: relative;
  z-index: 1;
}

.steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.steps__title {
  font-family: "Raleway";
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: var(--gray-200);
  margin-bottom: 24px;
}

.steps__desc {
  color: var(--gray-300);
  max-width: 672px;
  margin: 0 auto;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .steps {
    padding: 80px 0 96px;
  }

  .steps > .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .steps__header {
    margin-bottom: 40px;
  }

  .steps__title {
    font-size: clamp(28px, 7.5vw, 40px);
    line-height: 1.25;
    padding-inline: 4px;
  }

  .steps__desc {
    font-size: 16px;
    line-height: 1.5;
    padding-inline: 4px;
  }
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.step-card__icon-wrap {
  width: 128px;
  height: 128px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-card__icon-wrap--green {
  background: linear-gradient(135deg, #b6ff5c 0%, #3d5c12 42%, #101810 78%, #0a0a0a 100%);
  box-shadow:
    0 0 32px rgba(182, 255, 92, 0.45),
    0 0 64px rgba(182, 255, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-card__icon-wrap--blue {
  background: linear-gradient(135deg, #67d8ff 0%, #1a4a66 42%, #0d1520 78%, #0a0a0a 100%);
  box-shadow:
    0 0 32px rgba(103, 216, 255, 0.45),
    0 0 64px rgba(103, 216, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-card__icon-wrap--purple {
  background: linear-gradient(135deg, #c9b6ff 0%, #4a3566 42%, #181020 78%, #0a0a0a 100%);
  box-shadow:
    0 0 32px rgba(201, 182, 255, 0.45),
    0 0 64px rgba(201, 182, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-card__icon-wrap img {
  width: 36px;
  height: 36px;
}

.step-card__number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.step-card__number--green { background: #b6ff5c; }
.step-card__number--blue { background: #67d8ff; }
.step-card__number--purple { background: #c9b6ff; }

.step-card__title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.step-card__text {
  font-family: "Inter";
  font-size: 16px;
  color: #aeb0b1;
  max-width: 301px;
}
.step-card img {
  width: 128px;
  height: 128px;
  object-fit: cover;
}

/* ========== VALUE PROP ========== */
.value {
  padding: 80px 0;
  background: var(--black);
}

.value__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 992px) {
  .value__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.value__headline {
  font-family: "Inter";
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .value__headline {
    text-align: center;
  }
}

.value__text {
  font-family: "Inter";
  font-size: 20px;
  color: #d9d9d9;
  line-height: 28px;
}

.value__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-card {
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card__number {
  font-family: "Inter";
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 8px;
}

.value-card__number--coral { color: var(--voyager); }
.value-card__number--teal { color: var(--teal); }
.value-card__number--white { color: var(--white); }
.value-card__number--lime { color: var(--lime); }

.value-card__label {
  font-family: "Inter";
  font-size: 16px;
  color: var(--gray-400);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--teal);
  padding: 73px 0;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 992px) {
  .testimonials__inner {
    grid-template-columns: minmax(280px, 424px) minmax(0, 1fr);
    gap: 40px 0px;
  }
}

.early-movers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-width: 0;
  padding-top: 14px;
}

.early-movers__grid .tier-card {
  min-height: 0;
  height: 100%;
}

@media (min-width: 768px) {
  .early-movers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .early-movers__grid .tier-card {
    padding: 22px 18px;
  }

  .early-movers__grid .tier-card__rate {
    font-size: 32px;
  }

  .early-movers__grid .tier-card__badge,
  .early-movers__grid .tier-card__cta {
    font-size: 16px;
  }

  .early-movers__grid .tier-card__top {
    margin-bottom: 28px;
  }

  .early-movers__grid .tier-card__features {
    margin-bottom: 28px;
    gap: 10px;
  }

  .early-movers__grid .tier-card__feature {
    font-size: 13px;
    gap: 12px;
  }
}

/* ========== ABOUT ========== */
.about {
  padding: 80px 0;
  background: var(--black);
  overflow-x: clip;
}

.about__header {
  text-align: center;
  max-width: 844px;
  margin: 0 auto 47px;
}

.about__text {
  color: var(--white);
  font-size: 14px;
  line-height: 23px;
  margin-top: 24px;
}

.about__gallery-wrap {
  width: 100%;
  margin-top: 79px;
  overflow: hidden;
}

.about__gallery {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-gallery__viewport {
  overflow: hidden;
  width: 100%;
}

.about-gallery__track {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.about-gallery__slide {
  flex: 0 0 auto;
  width: 42vw;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-gallery__slide.is-active {
  width: 62vw;
}

.about-gallery__frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 234px;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 10px 15px rgba(0, 0, 0, 0.25);
}

.about-gallery__slide.is-active .about-gallery__frame {
  height: 321px;
  border: 12px solid var(--black);
}

.about-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.satisfaction-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.about-gallery__slide.is-active .satisfaction-badge {
  opacity: 1;
  transform: translateY(0);
}

.satisfaction-badge__rate {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
}

.satisfaction-badge__label {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  max-width: 90px;
}

.about-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-gallery__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.about-gallery__nav img {
  width: 13px;
  height: 20px;
  display: block;
  filter: brightness(0);
}

.about-gallery__nav--prev {
  left: 8px;
}

.about-gallery__nav--next {
  right: 8px;
}

@media (max-width: 767px) {
  .about-gallery__slide {
    width: 22vw;
  }

  .about-gallery__slide.is-active {
    width: 58vw;
  }

  .about-gallery__frame {
    height: 290px;
    border-radius: 60px;
  }

  .about-gallery__slide.is-active .about-gallery__frame {
    height: 290px;
    border-radius: 22px;
    border-width: 8px;
  }

  .about-gallery__nav {
    width: 52px;
    height: 52px;
  }

  .about-gallery__nav--prev {
    left: 10px;
  }

  .about-gallery__nav--next {
    right: 10px;
  }

  .satisfaction-badge {
    padding: 12px 16px;
    gap: 10px;
  }

  .satisfaction-badge__rate {
    font-size: 26px;
  }

  .satisfaction-badge__label {
    font-size: 13px;
  }
}

/* ========== CONTACT ========== */
.contact {
  padding: 80px 0;
  background: var(--black);
}

.contact__header {
  text-align: center;
  margin-bottom: 61px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 992px) {
  .contact__layout {
    grid-template-columns: 315px 1fr 315px;
    gap: 24px;
  }
}

.contact__side-image {
  border-radius: 20px;
  overflow: hidden;
  height: 438px;
  /* display: none; */
}

@media (min-width: 992px) {
  .contact__side-image {
    display: block;
  }
}

.contact__side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 20px;
  padding: 28px 29px;
  color: var(--white);
  font-family: "Open Sans";
  font-size: 14px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #bdbdbd;
}

.contact-form__textarea {
  min-height: 225px;
  resize: vertical;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.contact-form__note {
  color: var(--white);
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--teal);
  padding: 70px 0 42px;
  position: relative;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

@media (min-width: 992px) {
  .footer__inner {
    grid-template-columns: minmax(280px, 378px) minmax(0, 1fr);
    align-items: start;
    column-gap: 48px;
  }
}

.footer__brand-desc {
  color: var(--black);
  margin: 34px 0 45px;
  max-width: 378px;
}

.footer__email {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--black);
}

.footer__email img {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

@media (min-width: 992px) {
  .footer__links {
    justify-content: flex-end;
    gap: 32px 64px;
    margin-left: auto;
    width: fit-content;
    max-width: 100%;
  }

  .footer__col {
    min-width: 140px;
  }
}

.footer__col-title {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 13px;
}

.footer__col a,
.footer__col p {
  display: block;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 13px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.footer__social-icon:hover {
  opacity: 0.8;
}

.footer__social-icon svg {
  display: block;
}

/* ========== SIGNUP MODAL ========== */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.signup-modal.is-open {
  display: flex;
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.signup-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(64, 224, 208, 0.25);
  border-radius: 24px;
  padding: 40px 32px 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.signup-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.signup-modal__label {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.signup-modal__title {
  font-family: "Inter";
  font-weight: 700;
  font-size: clamp(28px, 5vw, 36px);
  color: var(--white);
  margin-bottom: 8px;
}

.signup-modal__tier {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.signup-modal__desc {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signup-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-form__label {
  font-family: "Open Sans";
  font-size: 14px;
  color: var(--gray-300);
}

.signup-form__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--white);
  font-family: "Open Sans";
  font-size: 14px;
}

.signup-form__input::placeholder {
  color: #bdbdbd;
}

.signup-form__input:focus {
  outline: none;
  border-color: var(--teal);
}

.signup-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.signup-modal__success {
  text-align: center;
}

.signup-modal__success[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .signup-modal__dialog {
    padding: 32px 24px 24px;
  }
}

/* ========== PRIVACY / TERMS PAGES ========== */
.privacy-main {
  padding-top: 140px;
}

@media (max-width: 991px) {
  .privacy-main {
    padding-top: 160px;
  }
}
