:root {
  --bg: #f7f7f4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #111318;
  --muted: #5d6370;
  --line: rgba(28, 35, 50, 0.1);
  --blue: #4d61ff;
  --blue-strong: #384cff;
  --mint: #42d6af;
  --amber: #f7b955;
  --warm: #f1ede8;
  --shadow: 0 24px 70px rgba(24, 30, 48, 0.12);
  --radius: 8px;
  --radius-lg: 22px;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body.is-locked {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.72);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(18, 24, 39, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.brand-mark span {
  position: absolute;
  width: 18px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(38deg);
}

.brand-mark span:last-child {
  transform: rotate(-38deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: #202633;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.locale {
  min-width: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.btn,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-submit {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(77, 97, 255, 0.24);
}

.btn-primary:hover,
.btn-submit:hover {
  background: var(--blue-strong);
}

.btn-soft {
  color: var(--blue);
  background: rgba(77, 97, 255, 0.1);
}

.btn-large {
  min-height: 48px;
  padding-inline: 22px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.section-bleed {
  min-height: calc(92vh - 72px);
  min-height: calc(92svh - 72px);
}

.hero {
  --hero-photo: url("assets/hero-bg.webp");
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(42px, 6vw, 78px) clamp(20px, 7vw, 120px);
  overflow: hidden;
  background-image:
    linear-gradient(115deg, rgba(247, 247, 244, 0.94) 0%, rgba(247, 247, 244, 0.78) 44%, rgba(247, 247, 244, 0.34) 72%, rgba(247, 247, 244, 0.16) 100%),
    radial-gradient(circle at 80% 8%, rgba(247, 185, 85, 0.28), transparent 26%),
    var(--hero-photo),
    linear-gradient(140deg, #fbfaf8 0%, #ede2d8 58%, #e1d4c7 100%);
  background-position: center, center, center, center;
  background-size: cover, auto, cover, cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 0.98;
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: #242a35;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: var(--surface);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow);
}

.security,
.borderless,
.trust,
.learn,
.audience,
.projects,
.signup {
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-heading {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 46px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.narrow {
  max-width: 660px;
}

.section-heading p {
  max-width: 780px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.token-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.token-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding-inline: clamp(24px, 6vw, 88px);
  animation: token-marquee 42s linear infinite;
  will-change: transform;
}

.token-rail:hover .token-track {
  animation-play-state: paused;
}

.token-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 clamp(136px, 13vw, 164px);
  min-height: 136px;
  margin-right: -34px;
  padding: 56px 19px 21px;
  border: 1px solid color-mix(in srgb, var(--accent, #6f7cff) 42%, rgba(255, 255, 255, 0.7));
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 24px 50px rgba(38, 45, 61, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.token-card:nth-child(2n) {
  transform: translateY(3px);
}

.token-card:nth-child(3n) {
  transform: translateY(-2px);
}

.token-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -46px;
  top: -26px;
  width: 112px;
  height: calc(100% + 52px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12)),
    var(--veil, rgba(126, 196, 226, 0.48));
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.48);
}

.token-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.88) 0 2px, transparent 3px),
    var(--coin, #5964ff);
  box-shadow:
    0 8px 18px color-mix(in srgb, var(--coin, #5964ff) 35%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.token-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 7px;
  font-size: 28px;
  font-weight: 760;
  line-height: 0.96;
}

.token-card small {
  position: relative;
  z-index: 1;
  color: rgba(17, 19, 24, 0.72);
  font-size: 15px;
  font-weight: 650;
}

.tone-silver { --accent: #a7adb1; --coin: #b9bec4; --veil: rgba(161, 189, 183, 0.4); background: linear-gradient(145deg, rgba(248, 249, 249, 0.82), rgba(220, 226, 224, 0.5)); }
.tone-lime { --accent: #c7ef12; --coin: #c9ff00; --veil: rgba(181, 225, 87, 0.42); background: linear-gradient(145deg, rgba(248, 255, 216, 0.82), rgba(205, 231, 78, 0.56)); }
.tone-sky { --accent: #7bc6ff; --coin: #4aa8ff; --veil: rgba(105, 198, 214, 0.42); background: linear-gradient(145deg, rgba(240, 249, 255, 0.82), rgba(142, 200, 255, 0.56)); }
.tone-lilac { --accent: #d6a4e1; --coin: #12131a; --veil: rgba(212, 168, 218, 0.4); background: linear-gradient(145deg, rgba(255, 243, 255, 0.82), rgba(217, 183, 223, 0.56)); }
.tone-gold { --accent: #d5b35d; --coin: #f2bd22; --veil: rgba(218, 186, 96, 0.38); background: linear-gradient(145deg, rgba(255, 247, 218, 0.84), rgba(213, 188, 114, 0.56)); }
.tone-blue { --accent: #97a9df; --coin: #7d92df; --veil: rgba(138, 157, 209, 0.4); background: linear-gradient(145deg, rgba(235, 240, 255, 0.84), rgba(142, 167, 219, 0.58)); }
.tone-yellow { --accent: #f1db22; --coin: #ffc400; --veil: rgba(245, 218, 52, 0.44); background: linear-gradient(145deg, rgba(255, 251, 197, 0.84), rgba(245, 219, 53, 0.58)); }
.tone-indigo { --accent: #a6aeda; --coin: #8d98dc; --veil: rgba(141, 152, 220, 0.38); background: linear-gradient(145deg, rgba(244, 245, 255, 0.82), rgba(170, 178, 222, 0.58)); }
.tone-orange { --accent: #ffad5f; --coin: #f49d2f; --veil: rgba(255, 174, 88, 0.42); background: linear-gradient(145deg, rgba(255, 242, 224, 0.84), rgba(255, 178, 97, 0.58)); }
.tone-gray { --accent: #9fa5a9; --coin: #b1b6bb; --veil: rgba(141, 151, 155, 0.4); background: linear-gradient(145deg, rgba(244, 246, 247, 0.82), rgba(157, 164, 168, 0.56)); }
.tone-mint { --accent: #50e1bb; --coin: #40d7b2; --veil: rgba(70, 220, 184, 0.42); background: linear-gradient(145deg, rgba(226, 255, 247, 0.84), rgba(86, 230, 187, 0.58)); }
.tone-cream { --accent: #dbd18e; --coin: #d7ca76; --veil: rgba(220, 209, 140, 0.38); background: linear-gradient(145deg, rgba(255, 253, 238, 0.84), rgba(231, 222, 170, 0.56)); }

@keyframes token-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-warm {
  background: var(--warm);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.split-compact {
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
}

.copy-block p,
.steps-list {
  color: #262d39;
  font-size: 18px;
  line-height: 1.6;
}

.steps-list {
  display: grid;
  gap: 22px;
  padding-left: 24px;
  margin: 0 0 28px;
}

.desk-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d7a878;
}

.desk-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.earning-overlays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.asset-card,
.earning-toast {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 45px rgba(27, 36, 55, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.asset-card {
  width: 108px;
  min-height: 110px;
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 15px 15px 14px;
  border-radius: 18px;
}

.asset-card strong {
  color: #101724;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}

.asset-card small {
  color: #008768;
  font-size: 15px;
  font-weight: 800;
}

.asset-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.asset-icon--atom {
  background:
    radial-gradient(circle at 54% 38%, rgba(255, 255, 255, 0.62) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 68%, rgba(255, 255, 255, 0.38) 0 2px, transparent 3px),
    #29304b;
}

.asset-icon--eth {
  background: #9aa3d7;
}

.asset-icon--eth::before,
.asset-icon--eth::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.86);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.asset-icon--eth::before {
  top: 4px;
}

.asset-icon--eth::after {
  bottom: 4px;
  opacity: 0.62;
}

.asset-icon--usdc {
  background: #3d8df5;
}

.asset-icon--usdc::before {
  content: "$";
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.asset-card--atom {
  left: 16%;
  top: 14%;
}

.asset-card--eth {
  right: 12%;
  top: 20%;
}

.asset-card--usdc {
  right: 38%;
  bottom: 7%;
}

.earning-toast {
  left: 8%;
  right: 9%;
  bottom: 24%;
  padding: 16px 18px 17px;
  border-radius: 18px;
  color: #142033;
  background:
    linear-gradient(125deg, rgb(255 255 255 / 0%), rgb(232 245 255 / 0%)),
    rgb(255 255 255 / 0%);
}

.earning-toast__top {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 7px;
  align-items: center;
  margin-bottom: 7px;
  color: rgba(20, 32, 51, 0.82);
  font-size: 14px;
}

.earning-toast__top time {
  justify-self: end;
}

.toast-logo {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #8c93ff);
}

.earning-toast strong {
  display: block;
  margin-bottom: 7px;
  color: #101724;
  font-size: 16px;
  line-height: 1.25;
}

.earning-toast p {
  margin: 0;
  color: rgba(16, 23, 36, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.borderless {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  background: #fff;
}

.floating-stamps {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.borderless .section-heading {
  position: relative;
  z-index: 2;
}

.floating-stamps img {
  position: absolute;
  width: clamp(76px, 10vw, 126px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(35, 43, 72, 0.13));
  transform: rotate(var(--rotate));
  user-select: none;
  pointer-events: none;
}

.stamp-one { --rotate: -18deg; left: 8%; top: 185px; }
.stamp-two { --rotate: 15deg; right: 20%; top: 58px; }
.stamp-three { --rotate: 18deg; right: 8%; top: 155px; }
.stamp-four { --rotate: -8deg; right: 14%; bottom: 92px; }
.stamp-five { --rotate: 10deg; left: 18%; top: 54px; }
.stamp-six { --rotate: -12deg; left: 22%; bottom: 118px; }
.stamp-seven { --rotate: 16deg; left: 7%; bottom: 66px; }
.stamp-eight { --rotate: -10deg; right: 7%; bottom: 190px; }

.feature-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9d0c4;
  box-shadow: var(--shadow);
}

.feature-banner > div:first-child {
  padding: clamp(28px, 5vw, 64px);
}

.feature-banner p {
  color: #303743;
  line-height: 1.55;
}

.portrait-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #d8cfc3;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(760px, 100%);
  margin: 36px auto 0;
}

.review-card {
  padding: 22px;
  border-radius: var(--radius);
}

.stars {
  color: var(--blue);
  font-size: 14px;
}

.review-card h3 {
  font-size: 18px;
}

.review-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.review-author {
  color: #14966d;
  font-size: 13px;
  font-weight: 800;
}

.press-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.press-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #1e2530;
  font-size: 16px;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(246, 249, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 38px rgba(35, 43, 72, 0.11);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  animation: press-float 5.8s ease-in-out infinite;
}

.press-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 5px rgba(82, 94, 255, 0.09);
}

.press-row span:nth-child(2) {
  animation-delay: -1.8s;
}

.press-row span:nth-child(3) {
  animation-delay: -3.4s;
}

@keyframes press-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
  }

  45% {
    transform: translate3d(0, -8px, 0) rotate(0.8deg);
  }
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.knowledge-copy {
  max-width: 420px;
}

.knowledge-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.82fr;
  gap: 14px;
  align-items: stretch;
}

.knowledge-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7ddd7;
  box-shadow: 0 22px 54px rgba(24, 30, 48, 0.12);
}

.knowledge-card:nth-child(2) {
  transform: translateY(24px);
}

.knowledge-card:nth-child(3) {
  transform: translateY(48px);
}

.knowledge-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.knowledge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 16, 28, 0) 32%, rgba(12, 16, 28, 0.78) 100%);
}

.knowledge-card:hover img {
  transform: scale(1.04);
}

.knowledge-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.knowledge-card h3 {
  max-width: 330px;
  margin-bottom: 14px;
  font-size: clamp(19px, 2vw, 25px);
}

.knowledge-card a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 850;
}

.audience {
  background: #fff;
}

.audience h2 {
  max-width: 360px;
}

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

.audience-card {
  padding: 30px;
  border-radius: var(--radius);
}

.audience-card p {
  color: var(--muted);
  line-height: 1.55;
}

.audience-card a {
  display: inline-flex;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.projects {
  background: #fbfbfa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.project-card {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: end;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background: #223;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 68px);
}

.project-city::before {
  background:
    linear-gradient(180deg, rgba(6, 16, 31, 0.2), rgba(6, 16, 31, 0.78)),
    linear-gradient(135deg, #7790a9, #d5c4ab 48%, #536576);
}

.project-bank::before {
  background:
    linear-gradient(180deg, rgba(6, 16, 31, 0.24), rgba(6, 16, 31, 0.78)),
    linear-gradient(135deg, #7b8089, #31343a 48%, #c7c9cd);
}

.project-energy::before {
  background:
    linear-gradient(180deg, rgba(6, 16, 31, 0.22), rgba(6, 16, 31, 0.74)),
    linear-gradient(135deg, #174475, #d9d1c1 50%, #0d2d56);
}

.project-card > div,
.project-badge {
  position: relative;
  z-index: 2;
}

.project-card h3 {
  font-size: 28px;
}

.project-card b {
  display: block;
  margin-bottom: 10px;
}

.project-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.project-badge {
  position: absolute;
  top: 24px;
  right: 0;
  padding: 12px 16px;
  background: #ff861c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payments-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 5vw, 72px);
  padding: 46px 20px 0;
  color: #a5b0bd;
  font-weight: 900;
}

.signup {
  background: #fff;
}

.signup-banner {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 29, 48, 0.78), rgba(22, 29, 48, 0.18)),
    linear-gradient(135deg, #c49575, #2e5d6e 58%, #55a8a7);
}

.signup-banner h2 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 58px);
}

.signup-banner p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.86);
}

.form-shell {
  position: relative;
  width: min(520px, 100%);
  margin: 44px auto 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(20, 25, 37, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  color: #303743;
  font-size: 14px;
  font-weight: 850;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(28, 35, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(245, 247, 251, 0.92);
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:focus {
  border-color: rgba(77, 97, 255, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(77, 97, 255, 0.12);
}

.phone-field .iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(77, 97, 255, 0.08);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #303743;
  font-size: 14px;
  line-height: 1.35;
}

.checkbox-group input {
  width: 19px;
  height: 19px;
  accent-color: var(--blue);
}

.error {
  min-height: 17px;
  color: #d33d31;
  font-size: 12px;
  line-height: 1.35;
}

.btn-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  font-size: 16px;
}

.btn-arrow {
  margin-left: 8px;
  font-size: 24px;
  line-height: 1;
}

.spinner-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  color: var(--blue);
}

.form-status {
  display: none;
  position: relative;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px 15px 48px;
  border: 1px solid rgba(211, 61, 49, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 240, 0.9)),
    rgba(211, 61, 49, 0.1);
  color: #a12820;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 16px 36px rgba(161, 40, 32, 0.11);
}

.form-status::before {
  content: "!";
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d33d31;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.form-status.is-visible {
  display: flex;
}

.consent {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.success-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(77, 97, 255, 0.22), transparent 32%),
    rgba(14, 18, 30, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.success-screen.is-visible {
  display: grid;
}

.lead-form.is-hidden {
  display: none;
}

.success-dialog {
  width: min(520px, 100%);
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
  animation: success-pop 0.35s ease both;
}

.success-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.success-dialog h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 48px);
}

.success-dialog p:not(.success-kicker) {
  max-width: 380px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.success-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(77, 97, 255, 0.24);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 214, 175, 0.28), rgba(77, 97, 255, 0.14));
  color: #15966d;
  font-size: 44px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(66, 214, 175, 0.28), 0 16px 34px rgba(21, 150, 109, 0.16);
}

@keyframes success-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  padding: 48px 20px 24px;
  background: #0d5a9a;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
}

.footer-links b {
  margin-bottom: 6px;
}

.footer-links a,
.footer-links span,
.legal {
  color: rgba(255, 255, 255, 0.78);
}

.legal {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .btn-soft {
    display: none;
  }

  .hero,
  .split,
  .split-compact,
  .knowledge-layout,
  .feature-banner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .knowledge-copy {
    max-width: 720px;
  }

  .review-grid,
  .knowledge-grid,
  .projects-grid,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
    gap: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .locale {
    display: none;
  }

  .header-actions .btn {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .section-bleed {
    min-height: calc(100svh - 66px);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    text-align: center;
    padding: clamp(62px, 9vh, 84px) 20px 322px;
    background-image:
      linear-gradient(180deg, rgba(249, 246, 243, 0.98) 0%, rgba(246, 238, 231, 0.96) 49%, rgba(241, 222, 207, 0.72) 64%, rgba(241, 222, 207, 0.08) 82%),
      var(--hero-photo),
      linear-gradient(140deg, #fbfaf8 0%, #ede2d8 58%, #e1d4c7 100%);
    background-position: center top, 54% bottom, center;
    background-size: cover, auto 60%, cover;
  }

  .hero-content {
    max-width: 360px;
    margin-inline: auto;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .hero .eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
  }

  h1 {
    max-width: 350px;
    margin-inline: auto;
    margin-bottom: 22px;
    font-size: clamp(42px, 11.6vw, 54px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 344px;
    margin-inline: auto;
    margin-bottom: 28px;
    color: #252b35;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero .btn-large {
    width: min(100%, 344px);
    min-height: 52px;
    padding-inline: 26px;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(77, 97, 255, 0.3);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .token-track {
    animation-duration: 34s;
  }

  .desk-visual {
    min-height: 360px;
  }

  .desk-visual > img {
    min-height: 360px;
  }

  .asset-card {
    width: 92px;
    min-height: 96px;
    padding: 13px;
    border-radius: 16px;
  }

  .asset-card strong {
    font-size: 17px;
  }

  .asset-card small {
    font-size: 14px;
  }

  .asset-card--atom {
    left: 9%;
    top: 14%;
  }

  .asset-card--eth {
    right: 9%;
    top: 20%;
  }

  .asset-card--usdc {
    right: 28%;
    bottom: 6%;
  }

  .earning-toast {
    left: 7%;
    right: 7%;
    bottom: 25%;
  }

  .borderless {
    min-height: 760px;
    display: block;
    padding: 0;
  }

  .borderless .section-heading {
    width: min(360px, calc(100% - 48px));
    margin: 0 auto;
    padding: 198px 0 214px;
  }

  .borderless .section-heading p {
    max-width: 330px;
  }

  .floating-stamps img {
    width: 96px;
    filter: drop-shadow(0 18px 26px rgba(35, 43, 72, 0.15));
  }

  .stamp-one {
    left: -24px;
    top: auto;
    bottom: 64px;
    width: 128px;
  }

  .stamp-two {
    right: 13%;
    top: 14px;
    width: 78px;
  }

  .stamp-three {
    right: 18%;
    top: auto;
    bottom: 18px;
    width: 92px;
  }

  .stamp-four {
    left: 39%;
    right: auto;
    bottom: 48px;
    width: 116px;
  }

  .stamp-five {
    left: 34%;
    top: 44px;
    width: 112px;
  }

  .stamp-six {
    left: -34px;
    top: 112px;
    bottom: auto;
    width: 114px;
  }

  .stamp-seven {
    right: -18px;
    left: auto;
    top: auto;
    bottom: 116px;
    width: 106px;
  }

  .stamp-eight {
    right: -10px;
    top: 82px;
    bottom: auto;
    width: 120px;
  }

  .review-grid,
  .audience-grid,
  .knowledge-grid,
  .projects-grid,
  .footer-links,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-card,
  .knowledge-card img {
    min-height: 300px;
  }

  .knowledge-card:nth-child(2),
  .knowledge-card:nth-child(3) {
    transform: none;
  }

  .project-card {
    min-height: 360px;
  }

  .signup-banner {
    border-radius: 16px;
  }
}

@media (max-width: 430px) {
  .header-actions .btn-primary {
    max-width: 118px;
  }

  .hero {
    padding: 56px 20px 286px;
    background-position: center top, 56% bottom, center;
    background-size: cover, auto 58%, cover;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(40px, 11.4vw, 48px);
  }

  .hero .btn-large {
    width: min(100%, 344px);
  }

  .hero-copy,
  .section-heading p,
  .copy-block p,
  .steps-list {
    font-size: 16px;
  }

  .footer-inner {
    gap: 28px;
  }

  .desk-visual {
    min-height: 330px;
  }

  .desk-visual > img {
    min-height: 330px;
  }

  .asset-card {
    width: 78px;
    min-height: 82px;
    gap: 3px;
    padding: 11px;
  }

  .asset-icon {
    width: 18px;
    height: 18px;
  }

  .asset-card strong {
    font-size: 15px;
  }

  .asset-card small {
    font-size: 12px;
  }

  .asset-card--atom {
    left: 7%;
    top: 13%;
  }

  .asset-card--eth {
    right: 6%;
    top: 18%;
  }

  .asset-card--usdc {
    right: 22%;
    bottom: 5%;
  }

  .earning-toast {
    left: 6%;
    right: 6%;
    bottom: 25%;
    padding: 13px 14px;
    border-radius: 15px;
  }

  .earning-toast__top {
    font-size: 12px;
  }

  .earning-toast strong {
    font-size: 14px;
  }

  .earning-toast p {
    font-size: 13px;
  }
}
