:root {
  color-scheme: dark;
  --primary: #7bff82;
  --primary-shadow: #57b55c;
  --secondary: #081011;
  --surface: #0b1618;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --focus: rgba(123, 255, 130, 0.45);
  --topbar-control-height: 44px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--secondary);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(900px 440px at 18% 0%, rgba(123, 255, 130, 0.14), rgba(0, 0, 0, 0)),
    radial-gradient(900px 440px at 82% 0%, rgba(109, 220, 255, 0.12), rgba(0, 0, 0, 0));
}

.bgConstellation {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.36;
}

main,
.footer {
  position: relative;
  z-index: 2;
}

a {
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -1px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 16, 17, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__logoWrap {
  display: grid;
  place-items: center;
  width: var(--topbar-control-height);
  height: var(--topbar-control-height);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand__logo {
  height: 26px;
  width: auto;
  display: block;
}

.brand:hover .brand__logoWrap {
  border-color: rgba(123, 255, 130, 0.3);
}

.brand__text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.menuButton {
  display: none;
  margin-left: auto;
  width: var(--topbar-control-height);
  height: var(--topbar-control-height);
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  border-radius: 18px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.menuButton:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 22px;
  margin-left: 10px;
  min-width: 0;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  padding: 8px 10px;
  white-space: nowrap;
  border-radius: 14px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.topbar__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.topbar__actions .topbar__cta {
  width: clamp(200px, 26vw, 420px);
  max-width: 100%;
  height: var(--topbar-control-height);
  padding: 0 22px;
}

.account {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    filter 160ms ease;
}

.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #5dd067 60%, #4ecda0 100%);
  color: var(--secondary);
  border-color: rgba(123, 255, 130, 0.4);
  box-shadow:
    0 14px 40px rgba(123, 255, 130, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  filter: brightness(1.05) saturate(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 20px 56px rgba(123, 255, 130, 0.28),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:active {
  transform: translateY(0px);
  filter: brightness(1);
  box-shadow:
    0 10px 30px rgba(123, 255, 130, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Topbar CTA specific styling */
.topbar__cta {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.topbar__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  transition: left 400ms ease;
}

.topbar__cta:hover::before {
  left: 100%;
}

.btn--ghost {
  background: rgba(0, 0, 0, 0);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(123, 255, 130, 0.45);
}

.btn--discord {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn--full {
  width: 100%;
}

.hero {
  padding: 54px 0 18px;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.hero__title {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -2px;
}

.hero__titleEm {
  color: var(--primary);
}

.hero__subtitle {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist li::before {
  content: "";
  width: 17px;
  height: 16px;
  flex: 0 0 17px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2217%22%20height%3D%2216%22%20viewBox%3D%220%200%2017%2016%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.4987%2015.1668C4.54066%2015.1668%201.33203%2011.9582%201.33203%208.00016C1.33203%204.04212%204.54066%200.833496%208.4987%200.833496C12.4568%200.833496%2015.6654%204.04212%2015.6654%208.00016C15.6654%2011.9582%2012.4568%2015.1668%208.4987%2015.1668ZM11.4854%206.25187C11.8084%206.07521%2011.927%205.67012%2011.7504%205.34708C11.5737%205.02404%2011.1686%204.90538%2010.8456%205.08204C9.6265%205.74874%208.61843%207.03543%207.94063%208.07323C7.69016%208.45683%207.47616%208.81996%207.30496%209.12756C7.14526%208.97263%206.98708%208.83816%206.84562%208.7263C6.6605%208.57996%206.49391%208.4645%206.37245%208.38496L6.16242%208.2545C5.8426%208.0721%205.43545%208.1835%205.25304%208.50336C5.07068%208.8231%205.18198%209.2301%205.50164%209.41263L5.64184%209.5003C5.73704%209.56263%205.87046%209.65503%206.01868%209.77223C6.32372%2010.0134%206.65287%2010.3295%206.86002%2010.6758C6.98714%2010.8884%207.22163%2011.0129%207.4689%2010.9993C7.7161%2010.9856%207.93543%2010.8359%208.03843%2010.6108L8.10396%2010.4738C8.1491%2010.3816%208.2167%2010.2466%208.3047%2010.0804C8.48103%209.7473%208.73743%209.29163%209.05696%208.8023C9.71256%207.7985%2010.5711%206.75183%2011.4854%206.25187Z%22%20fill%3D%22%237BFF82%22/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero__media {
  display: grid;
  justify-items: center;
}

.heroCarousel {
  --hero-carousel-transition-ms: 850ms;
  --hero-carousel-ease: cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 520px;
  position: relative;
}

.heroCarousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 701 / 399;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.55);
}

.heroCarousel__track {
  display: flex;
  height: 100%;
  transition: transform var(--hero-carousel-transition-ms) var(--hero-carousel-ease);
  will-change: transform;
}

.heroCarousel__slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
}

.heroCarousel__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.heroCarousel__wipe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 36%,
    rgba(123, 255, 130, 0.12) 50%,
    rgba(255, 255, 255, 0) 64%,
    rgba(255, 255, 255, 0) 100%
  );
}

.heroCarousel--isAnimating[data-wipe="next"] .heroCarousel__wipe {
  animation: heroCarouselWipeNext var(--hero-carousel-transition-ms) var(--hero-carousel-ease) both;
}

.heroCarousel--isAnimating[data-wipe="prev"] .heroCarousel__wipe {
  animation: heroCarouselWipePrev var(--hero-carousel-transition-ms) var(--hero-carousel-ease) both;
}

@keyframes heroCarouselWipeNext {
  from {
    opacity: 0;
    transform: translateX(60%) skewX(-18deg);
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(-60%) skewX(-18deg);
  }
}

@keyframes heroCarouselWipePrev {
  from {
    opacity: 0;
    transform: translateX(-60%) skewX(18deg);
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(60%) skewX(18deg);
  }
}

.heroCarousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 16, 17, 0.55);
  backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.heroCarousel:hover .heroCarousel__nav,
.heroCarousel:focus-within .heroCarousel__nav {
  opacity: 1;
}

.heroCarousel__nav:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.heroCarousel__nav:active {
  transform: translateY(-50%) scale(0.98);
}

.heroCarousel__nav--prev {
  left: 12px;
}

.heroCarousel__nav--next {
  right: 12px;
}

@media (hover: none), (pointer: coarse) {
  .heroCarousel__nav {
    opacity: 1;
  }
}

.marquee {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 22, 24, 0.65);
}

.marquee__inner {
  overflow: hidden;
  display: flex;
  gap: 16px;
}

.marquee__track {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 0 0 auto;
  animation: marquee-scroll 22s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  height: 34px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section {
  padding: 54px 0;
  position: relative;
  z-index: 1;
}

#whyitworks {
  padding-bottom: 36px;
}

#pricing {
  padding-top: 36px;
}

.section__title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 48px;
  letter-spacing: -2px;
}

#features .section__title {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 10px;
}

#features::before {
  content: "";
  position: absolute;
  inset: -60px 0;
  pointer-events: none;
  background: radial-gradient(980px 360px at 12% 35%, rgba(123, 255, 130, 0.08), rgba(0, 0, 0, 0)),
    radial-gradient(980px 360px at 88% 55%, rgba(109, 220, 255, 0.06), rgba(0, 0, 0, 0));
  z-index: 0;
}

#features .container {
  position: relative;
  z-index: 1;
}

#features .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 255, 130, 0.95), rgba(109, 220, 255, 0.6));
  box-shadow: 0 18px 52px rgba(123, 255, 130, 0.14);
}

#howitwork .section__title {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 10px;
}

#howitwork .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 255, 130, 0.95), rgba(109, 220, 255, 0.6));
  box-shadow: 0 18px 52px rgba(123, 255, 130, 0.14);
}

#whyitworks .section__title {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 10px;
}

#whyitworks .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 255, 130, 0.95), rgba(109, 220, 255, 0.6));
  box-shadow: 0 18px 52px rgba(123, 255, 130, 0.14);
}

#pricing::before {
  content: "";
  position: absolute;
  inset: -60px 0;
  pointer-events: none;
  background: radial-gradient(980px 360px at 18% 20%, rgba(123, 255, 130, 0.08), rgba(0, 0, 0, 0)),
    radial-gradient(980px 360px at 88% 80%, rgba(109, 220, 255, 0.06), rgba(0, 0, 0, 0));
  z-index: 0;
}

#pricing .container {
  position: relative;
  z-index: 1;
}

#pricing .section__title {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 10px;
}

#pricing .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 255, 130, 0.95), rgba(109, 220, 255, 0.6));
  box-shadow: 0 18px 52px rgba(123, 255, 130, 0.14);
}

#pricing .section__subtitle {
  max-width: 720px;
  margin-bottom: 22px;
}

#pricing .pricing {
  max-width: 980px;
  margin: 0 auto;
}

#comingsoon .section__title {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 10px;
}

#comingsoon .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 255, 130, 0.95), rgba(109, 220, 255, 0.6));
  box-shadow: 0 18px 52px rgba(123, 255, 130, 0.14);
}

.section__subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 820px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
}

.featureCard {
  --feature-accent: rgba(123, 255, 130, 0.28);
  --feature-accent-strong: rgba(123, 255, 130, 0.62);
  --feature-glow: rgba(123, 255, 130, 0.12);

  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(640px 260px at 20% 0%, var(--feature-glow), rgba(0, 0, 0, 0)),
    radial-gradient(700px 280px at 100% 110%, rgba(109, 220, 255, 0.08), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.22);
  padding: 22px 22px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#features .featureCard:nth-child(1) {
  --feature-accent: rgba(123, 255, 130, 0.3);
  --feature-accent-strong: rgba(123, 255, 130, 0.68);
  --feature-glow: rgba(123, 255, 130, 0.14);
}

#features .featureCard:nth-child(2) {
  --feature-accent: rgba(109, 220, 255, 0.28);
  --feature-accent-strong: rgba(109, 220, 255, 0.62);
  --feature-glow: rgba(109, 220, 255, 0.12);
}

#features .featureCard:nth-child(3) {
  --feature-accent: rgba(194, 123, 255, 0.24);
  --feature-accent-strong: rgba(194, 123, 255, 0.56);
  --feature-glow: rgba(194, 123, 255, 0.12);
}

.featureCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--feature-accent-strong), rgba(0, 0, 0, 0));
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.featureCard::after {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.06em;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  content: "";
}

#features .featureCard:nth-child(1)::after {
  content: "01";
}

#features .featureCard:nth-child(2)::after {
  content: "02";
}

#features .featureCard:nth-child(3)::after {
  content: "03";
}

.featureCard > * {
  position: relative;
  z-index: 1;
}

.featureCard:hover {
  transform: translateY(-4px);
  border-color: var(--feature-accent);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(0, 0, 0, 0.6) inset,
    0 0 0 1px var(--feature-accent) inset;
}

.featureCard .card__title {
  font-size: 22px;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.featureCard .card__copy {
  font-size: 16px;
  line-height: 26px;
  max-width: 34ch;
}

.card__img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.card__title {
  margin: 0 0 6px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -1px;
}

.card__copy {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.steps__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  align-items: center;
}

.steps__img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.steps__body strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -1px;
  font-size: 18px;
}

.steps__body p {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.priceCard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 20px;
  background: radial-gradient(720px 260px at 20% 0%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.priceCard:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.6);
}

.priceCard--featured {
  border-color: rgba(123, 255, 130, 0.35);
  background: radial-gradient(700px 280px at 30% 0%, rgba(123, 255, 130, 0.12), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.22);
}

.priceCard--featured:hover {
  border-color: rgba(123, 255, 130, 0.5);
  box-shadow: 0 32px 98px rgba(0, 0, 0, 0.6), 0 18px 72px rgba(123, 255, 130, 0.1);
}

.priceCard__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(123, 255, 130, 0.2), rgba(100, 220, 180, 0.15));
  border: 1px solid rgba(123, 255, 130, 0.35);
  color: var(--primary);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(123, 255, 130, 0.15);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(123, 255, 130, 0.15);
  }
  50% {
    box-shadow: 0 4px 24px rgba(123, 255, 130, 0.3);
  }
}

.priceCard__title {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -1px;
}

.priceCard__price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.priceCard__price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

/* Pro card inline pricing row */
.priceCard__priceRow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.priceCard__priceMain {
  display: flex;
  align-items: baseline;
}

.priceCard__priceNow {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--text);
}

.priceCard__pricePer {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}

.priceCard__priceWas {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.priceCard__wasLabel {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 150, 150, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.priceCard__wasAmount {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 150, 150, 0.8);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 100, 100, 0.5);
}

.priceCard__urgency {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0;
}

.priceCard__note {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.priceCard .btn {
  margin-top: auto;
}

.planList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  font-size: 14px;
}

.planList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.planList li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2017%2016%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.4987%2015.1668C4.54066%2015.1668%201.33203%2011.9582%201.33203%208.00016C1.33203%204.04212%204.54066%200.833496%208.4987%200.833496C12.4568%200.833496%2015.6654%204.04212%2015.6654%208.00016C15.6654%2011.9582%2012.4568%2015.1668%208.4987%2015.1668ZM11.4854%206.25187C11.8084%206.07521%2011.927%205.67012%2011.7504%205.34708C11.5737%205.02404%2011.1686%204.90538%2010.8456%205.08204C9.6265%205.74874%208.61843%207.03543%207.94063%208.07323C7.69016%208.45683%207.47616%208.81996%207.30496%209.12756C7.14526%208.97263%206.98708%208.83816%206.84562%208.7263C6.6605%208.57996%206.49391%208.4645%206.37245%208.38496L6.16242%208.2545C5.8426%208.0721%205.43545%208.1835%205.25304%208.50336C5.07068%208.8231%205.18198%209.2301%205.50164%209.41263L5.64184%209.5003C5.73704%209.56263%205.87046%209.65503%206.01868%209.77223C6.32372%2010.0134%206.65287%2010.3295%206.86002%2010.6758C6.98714%2010.8884%207.22163%2011.0129%207.4689%2010.9993C7.7161%2010.9856%207.93543%2010.8359%208.03843%2010.6108L8.10396%2010.4738C8.1491%2010.3816%208.2167%2010.2466%208.3047%2010.0804C8.48103%209.7473%208.73743%209.29163%209.05696%208.8023C9.71256%207.7985%2010.5711%206.75183%2011.4854%206.25187Z%22%20fill%3D%22%237BFF82%22/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.card--glow {
  background: radial-gradient(700px 280px at 30% 0%, rgba(123, 255, 130, 0.12), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.22);
}

.compactList {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

/* Coming Soon Section - Story-driven layout */
#comingsoon .section__title {
  line-height: 1.15;
  margin-bottom: 20px;
}

.comingSoon__story {
  max-width: 820px;
  margin-bottom: 40px;
}

.comingSoon__lead {
  margin: 0 0 16px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.2px;
}

.comingSoon__text {
  margin: 0 0 14px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: 0;
}

.comingSoon__text:last-of-type {
  margin-bottom: 0;
}

.comingSoon__text strong {
  color: var(--primary);
  font-weight: 600;
}

.comingSoon__roadmap {
  margin-top: 36px;
}

.comingSoon__roadmapTitle {
  margin: 0 0 22px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
}

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

.comingSoon__card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.comingSoon__card:hover {
  border-color: rgba(123, 255, 130, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.comingSoon__cardIcon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(123, 255, 130, 0.1);
  border: 1px solid rgba(123, 255, 130, 0.18);
  color: var(--primary);
  margin-bottom: 14px;
}

.comingSoon__cardIcon svg {
  width: 20px;
  height: 20px;
}

.comingSoon__cardTitle {
  margin: 0 0 8px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text);
}

.comingSoon__cardText {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0;
}

.metrics.comingSoon__metrics {
  margin-top: 36px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.metric__num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.metric__label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.testimonials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.quote__text {
  margin: 0;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.quote__by {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

/* Why It Works Section */
.whyItWorks__points {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.whyItWorks__point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
}

.whyItWorks__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10%2018C5.58172%2018%202%2014.4183%202%2010C2%205.58172%205.58172%202%2010%202C14.4183%202%2018%205.58172%2018%2010C18%2014.4183%2014.4183%2018%2010%2018ZM13.7071%207.29289C14.0976%207.68342%2014.0976%208.31658%2013.7071%208.70711L9.70711%2012.7071C9.31658%2013.0976%208.68342%2013.0976%208.29289%2012.7071L6.29289%2010.7071C5.90237%2010.3166%205.90237%209.68342%206.29289%209.29289C6.68342%208.90237%207.31658%208.90237%207.70711%209.29289L9%2010.5858L12.2929%207.29289C12.6834%206.90237%2013.3166%206.90237%2013.7071%207.29289Z%22%20fill%3D%22%237BFF82%22/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* Expert Quotes */
.expertQuotes {
  display: grid;
  gap: 14px;
}

.expertQuote {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px 22px;
  background: radial-gradient(600px 200px at 10% 0%, rgba(123, 255, 130, 0.08), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, transform 180ms ease;
}

.expertQuote::before {
  content: """;
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 48px;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(123, 255, 130, 0.25);
  line-height: 1;
  pointer-events: none;
}

.expertQuote:hover {
  border-color: rgba(123, 255, 130, 0.28);
  transform: translateY(-2px);
}

.expertQuote--subtle {
  background: rgba(0, 0, 0, 0.22);
}

.expertQuote--subtle::before {
  color: rgba(109, 220, 255, 0.2);
}

.expertQuote__text {
  margin: 0;
  padding-left: 24px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  letter-spacing: 0;
}

.expertQuote__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 14px;
  padding-left: 24px;
  font-style: normal;
}

.expertQuote__cite strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.expertQuote__cite span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
}

/* Expert Say Section */
#expertsay {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section__title--center {
  text-align: center;
}

.section__subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.expertGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.expertCard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.expertCard::before {
  content: """;
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 42px;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(123, 255, 130, 0.12);
  line-height: 1;
  pointer-events: none;
}

.expertCard:hover {
  border-color: rgba(123, 255, 130, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.expertCard__text {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  letter-spacing: 0;
}

.expertCard__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.expertCard__cite strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.expertCard__cite span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0;
}

.payments {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.payments img {
  max-width: 420px;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.trustBadges {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trustBadge {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.section--guarantee {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(800px 300px at 50% 0%, rgba(123, 255, 130, 0.06), rgba(0, 0, 0, 0)),
    rgba(11, 22, 24, 0.5);
}

.guarantee {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(123, 255, 130, 0.2), rgba(123, 255, 130, 0.05));
  border: 1px solid rgba(123, 255, 130, 0.25);
  color: var(--primary);
  box-shadow: 0 12px 40px rgba(123, 255, 130, 0.15);
}

.guarantee__title {
  margin: 0 0 14px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
}

.guarantee__subtitle {
  margin: 0 0 32px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: 0;
}

.trustFeatures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.trustFeature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 180ms ease, transform 180ms ease;
}

.trustFeature:hover {
  border-color: rgba(123, 255, 130, 0.18);
  transform: translateY(-2px);
}

.trustFeature__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(123, 255, 130, 0.08);
  border: 1px solid rgba(123, 255, 130, 0.15);
  color: var(--primary);
}

.trustFeature__icon svg {
  width: 20px;
  height: 20px;
}

.trustFeature__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trustFeature__content strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}

.trustFeature__content span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0;
}

.guarantee__note {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
}

/* Footnote / Personal Touch Section */
.section--footnote {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.footnote__item {
  max-width: 480px;
  text-align: center;
}

.footnote__title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.7);
}

.footnote__text {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0;
}

/* Giving Back Section */
.section--givingBack {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(900px 350px at 50% 20%, rgba(255, 180, 120, 0.06), rgba(0, 0, 0, 0)),
    radial-gradient(700px 300px at 30% 80%, rgba(255, 140, 180, 0.04), rgba(0, 0, 0, 0));
}

.givingBack {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.givingBack__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 140, 140, 0.18), rgba(255, 100, 100, 0.06));
  border: 1px solid rgba(255, 140, 140, 0.25);
  color: #ff9090;
  box-shadow: 0 14px 44px rgba(255, 100, 100, 0.12);
  animation: heartPulse 2.5s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 44px rgba(255, 100, 100, 0.12);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 18px 52px rgba(255, 100, 100, 0.2);
  }
}

.givingBack__title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
}

.givingBack__subtitle {
  margin: 0 0 28px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0;
}

.givingBack__causes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.givingBack__cause {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 140, 0.2);
  background: rgba(255, 100, 100, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.givingBack__cause:hover {
  border-color: rgba(255, 140, 140, 0.35);
  background: rgba(255, 100, 100, 0.1);
  transform: translateY(-2px);
}

.givingBack__causeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 140, 140, 0.12);
  color: #ff9090;
}

.givingBack__causeIcon svg {
  width: 16px;
  height: 16px;
}

.givingBack__cause span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
}

.givingBack__note {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0;
}

/* Final CTA / Load App Section */
.section--finalCta {
  padding: 56px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.finalCta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.finalCta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(123, 255, 130, 0.12), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 0;
}

.finalCta__tagline {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--muted);
}

.finalCta__note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0;
}

/* Enhanced Launch Button */
.btn--launch {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  min-width: 220px;
  border-radius: 60px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--secondary);
  background: linear-gradient(135deg, var(--primary) 0%, #57e05d 50%, #4fd6a3 100%);
  border: 1px solid rgba(123, 255, 130, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 2px 0 rgba(255, 255, 255, 0.25) inset,
    0 20px 50px rgba(123, 255, 130, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.btn--launch:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 2px 0 rgba(255, 255, 255, 0.3) inset,
    0 28px 70px rgba(123, 255, 130, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn--launch:active {
  transform: translateY(-1px) scale(1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 2px 0 rgba(255, 255, 255, 0.2) inset,
    0 16px 40px rgba(123, 255, 130, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn--launch:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn--launch .btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.btn--launch .btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.btn--launch .btn__icon svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn--launch .btn__text {
  position: relative;
}

.btn--launch .btn__arrow {
  font-size: 20px;
  transition: transform 200ms ease;
}

.btn--launch:hover .btn__arrow {
  transform: translateX(4px);
}

.footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer__copy {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.footer__nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__nav a:hover {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .bgConstellation {
    display: none;
  }

  .marquee__track {
    animation: none;
  }

  .heroCarousel__track {
    transition: none;
  }

  .heroCarousel__wipe {
    animation: none !important;
  }

  .featureCard {
    transition: none;
  }

  .featureCard:hover {
    transform: none;
  }

  .priceCard {
    transition: none;
  }

  .priceCard:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 44px;
  }

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

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

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

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

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

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

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

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

  .expertQuotes {
    margin-top: 24px;
  }

  .comingSoon__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comingSoon__lead {
    font-size: 18px;
  }

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

  .guarantee__title {
    font-size: 28px;
  }

  .guarantee__subtitle {
    font-size: 15px;
  }

  .givingBack__title {
    font-size: 28px;
  }

  .givingBack__subtitle {
    font-size: 15px;
  }

  .givingBack__causes {
    flex-direction: column;
    align-items: center;
  }

  .givingBack__cause {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .comingSoon__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .brand__text {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    margin: 0;
    padding: 12px;
    background: rgba(8, 16, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .menuButton {
    display: inline-flex;
    margin-left: 0;
    order: 2;
  }

  .topbar__actions {
    display: flex;
    flex: 1;
    order: 1;
    margin-left: 0;
    min-width: 0;
  }

  .topbar__actions .topbar__cta {
    width: clamp(240px, 68vw, 520px);
    padding: 0 16px;
  }
}
