:root {
  --ink: #17211f;
  --muted: #5c6965;
  --line: #d7dfdb;
  --paper: #f7faf8;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --mint: #d9f4e8;
  --gold: #b98526;
  --coral: #c45642;
  --cream: #fff6e6;
  --rose: #faece9;
  --shadow: 0 22px 70px rgba(18, 33, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 80px;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid #cae4df;
  backdrop-filter: blur(20px);
}

.ulend-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  min-height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(16px, 2.5vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 760;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(18, 33, 30, 0.16);
}

.ulend-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: #17243a;
}

.ulend-header-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.ulend-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ulend-header-word {
  color: #17243a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-wordmark-frame {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 48px;
  overflow: hidden;
}

.footer-wordmark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-context {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  flex: 1 1 auto;
  color: #17243a;
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: #008873;
}

.nav a:first-child {
  color: #008873;
}

.nav a:hover,
.nav-action:hover {
  color: #008873;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.ulend-network-pill {
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
  border-color: #d5e7e1;
  color: #5d6e89;
  box-shadow: 0 8px 20px rgba(0, 50, 42, 0.05);
}

.ulend-network-pill svg {
  width: 17px;
  height: 17px;
  color: #009b82;
}

.ulend-network-pill .network-spark {
  width: 15px;
  height: 15px;
}

.ulend-network-pill .chain-id {
  color: #007e6c;
  background: #d9f4e8;
}

.header-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d5e7e1;
  border-radius: 9px;
  color: #5d6e89;
  background: #fff;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-icon:hover {
  color: var(--teal-dark);
  background: #effaf7;
  transform: translateY(-1px);
}

.header-icon svg {
  width: 18px;
  height: 18px;
}

.header-theme {
  border-color: #12233b;
  color: #d9f4e8;
  background: #10223a;
}

.header-theme:hover {
  color: #fff;
  background: #173552;
}

.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #cae4df;
  border-radius: 8px;
  background: #fff;
  color: #5d6e89;
  box-shadow: 0 8px 20px rgba(0, 50, 42, 0.05);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.network-pill svg {
  color: #009b82;
}

.chain-id {
  padding: 3px 7px;
  border-radius: 999px;
  background: #eee7ff;
  color: #4f32a8;
  font-size: 10px;
  font-weight: 900;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cae4df;
  border-radius: 8px;
  background: #fff;
  color: #667894;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.icon-button:hover {
  border-color: #9bd8cf;
  background: #effaf7;
  color: var(--ink);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 20px;
  color: #fff;
  background: #009b82;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(0, 155, 130, 0.16);
  white-space: nowrap;
}

.nav-action:hover {
  color: #fff;
  background: #008873;
}

.campaign-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.98), rgba(7, 45, 40, 0.96) 58%, rgba(11, 95, 89, 0.94)),
    linear-gradient(135deg, rgba(185, 133, 38, 0.18), rgba(196, 86, 66, 0.16));
  border-bottom: 1px solid rgba(217, 244, 232, 0.24);
  box-shadow: 0 18px 48px rgba(18, 33, 30, 0.18);
}

.campaign-copy {
  display: block;
  max-width: 850px;
  min-width: 0;
}

.campaign-copy span {
  display: block;
  margin-bottom: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.campaign-copy strong {
  display: block;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.12;
}

.campaign-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.campaign-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.campaign-button.primary {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.campaign-button.primary:hover {
  background: #fff;
  border-color: #fff;
}

.campaign-button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.campaign-button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: clamp(470px, 56svh, 620px);
  display: grid;
  align-items: center;
  padding: clamp(30px, 4.8vw, 64px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.99) 0%, rgba(247, 250, 248, 0.92) 43%, rgba(247, 250, 248, 0.24) 100%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(185, 133, 38, 0.16) 52%, rgba(196, 86, 66, 0.13));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: clamp(18px, 4vw, 56px) clamp(16px, 4vw, 64px) clamp(18px, 4vw, 56px) auto;
  width: min(58vw, 780px);
  max-width: 100%;
  min-width: 0;
  opacity: 0.94;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: inline;
  color: #008873;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text,
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.hero-sprint {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-sprint span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #24443d;
  box-shadow: 0 10px 22px rgba(18, 33, 30, 0.07);
  font-size: 13px;
  font-weight: 850;
}

.hero-sprint span:nth-child(2) {
  border-color: rgba(185, 133, 38, 0.28);
}

.hero-sprint span:nth-child(3) {
  border-color: rgba(196, 86, 66, 0.28);
}

.hero-sprint span:nth-child(4) {
  border-color: rgba(23, 33, 31, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 760;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button.primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.button.secondary:hover {
  border-color: var(--teal);
}

.microcopy {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.band {
  margin: 0 clamp(18px, 5vw, 72px) clamp(38px, 6vw, 72px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(18, 33, 30, 0.08);
}

.metrics div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.metrics div:nth-child(1) strong {
  color: var(--teal-dark);
}

.metrics div:nth-child(2) strong {
  color: var(--coral);
}

.metrics div:nth-child(3) strong {
  color: var(--gold);
}

.metrics div:nth-child(4) strong {
  color: var(--ink);
}

.metrics span {
  color: var(--muted);
}

.section {
  padding: clamp(52px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

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

.steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.steps article span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  font-size: 15px;
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: #eef5f1;
  border-block: 1px solid var(--line);
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.signal-list strong {
  color: var(--teal-dark);
}

.signal-list span {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.proof-section {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
  border-block: 1px solid var(--line);
}

.proof-heading {
  max-width: 820px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(18, 33, 30, 0.08);
}

.proof-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #e6f7f1 100%);
  border-color: rgba(15, 118, 110, 0.26);
}

.proof-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #faece9 100%);
  border-color: rgba(196, 86, 66, 0.28);
}

.proof-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #fff1cc 100%);
  border-color: rgba(185, 133, 38, 0.34);
}

.proof-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #e8f0ed 100%);
  border-color: rgba(23, 33, 31, 0.2);
}

.proof-card span {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card:nth-child(2) span {
  background: var(--coral);
}

.proof-card:nth-child(3) span {
  background: var(--gold);
}

.proof-card:nth-child(4) span {
  background: var(--teal);
}

.proof-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.proof-card p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.follower-system {
  background: #fffdf8;
  border-block: 1px solid var(--line);
}

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

.follower-card {
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 33, 30, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.follower-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #e7f8f2 100%);
  border-color: rgba(15, 118, 110, 0.24);
}

.follower-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #fff3d8 100%);
  border-color: rgba(185, 133, 38, 0.28);
}

.follower-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #faece9 100%);
  border-color: rgba(196, 86, 66, 0.25);
}

.follower-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgba(18, 33, 30, 0.11);
}

.follower-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.follower-card:nth-child(2) span {
  background: var(--teal);
}

.follower-card:nth-child(3) span {
  background: var(--gold);
}

.follower-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.follower-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
}

.customer-intake {
  background: #eef5f1;
  border-block: 1px solid var(--line);
}

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

.customer-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 33, 30, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.customer-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #e8f0ed 100%);
  border-color: rgba(23, 33, 31, 0.18);
}

.customer-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #e6f7f1 100%);
  border-color: rgba(15, 118, 110, 0.24);
}

.customer-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #faece9 100%);
  border-color: rgba(196, 86, 66, 0.28);
}

.customer-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgba(18, 33, 30, 0.11);
}

.customer-card span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.customer-card:nth-child(2) span {
  background: var(--teal);
}

.customer-card:nth-child(3) span {
  background: var(--coral);
}

.customer-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.customer-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
}

.rewards-system {
  background: #fffdf8;
  border-block: 1px solid var(--line);
}

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

.reward-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 33, 30, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.reward-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #e6f7f1 100%);
  border-color: rgba(15, 118, 110, 0.28);
}

.reward-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #e8f0ed 100%);
  border-color: rgba(23, 33, 31, 0.2);
}

.reward-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #fff0c7 100%);
  border-color: rgba(185, 133, 38, 0.38);
}

.reward-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(18, 33, 30, 0.11);
}

.reward-card span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 10px;
  color: #fff;
  background: var(--gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.reward-card:nth-child(1) span {
  background: var(--teal);
}

.reward-card:nth-child(2) span {
  background: var(--ink);
}

.reward-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.reward-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
}

.section-note {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.business-flow {
  background: var(--ink);
  color: #fff;
}

.business-flow .eyebrow {
  color: var(--mint);
}

.business-flow .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.loop-grid div {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(217, 244, 232, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.loop-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
}

.loop-grid h3 {
  color: #fff;
}

.loop-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(18, 33, 30, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgba(18, 33, 30, 0.11);
}

.product-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 850;
}

.product-card.lend .product-mark {
  background: var(--teal);
}

.product-card.bridge .product-mark {
  background: var(--coral);
}

.product-card.end .product-mark {
  background: var(--gold);
}

.product-card.lend {
  background: linear-gradient(180deg, #ffffff 0%, #eef9f4 100%);
}

.product-card.bridge {
  background: linear-gradient(180deg, #ffffff 0%, var(--rose) 100%);
}

.product-card.end {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.product-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.product-card .card-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 760;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.community {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.community > div:first-child {
  max-width: 720px;
}

.footer {
  color: #061022;
  background: rgba(255, 255, 255, 0.84);
  border-top: 1px solid #cae4df;
  backdrop-filter: blur(16px);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(28px, 5vw, 54px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 72px);
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(18, 33, 30, 0.16);
}

.footer-brand p {
  max-width: 380px;
  margin: 16px 0 0;
  color: #5d6e89;
  font-size: 14px;
  line-height: 1.7;
}

.footer-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 9px 12px;
  border: 1px solid #9bd8cf;
  border-radius: 8px;
  background: #effaf7;
  color: #008873;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #667894;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a {
  color: #061022;
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-logo:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  border-top: 1px solid #cae4df;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 72px);
  color: #667894;
  font-size: 12px;
  font-weight: 700;
}

.marketing-campaign {
  background: #f7faf8;
}

.campaign-main {
  background: #f7faf8;
}

.campaign-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: clamp(620px, 72svh, 780px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.campaign-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.9) 48%, rgba(247, 250, 248, 0.48) 100%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(185, 133, 38, 0.12), rgba(196, 86, 66, 0.1));
  z-index: 0;
}

.campaign-hero-lend::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.88) 48%, rgba(247, 250, 248, 0.44) 100%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.22), rgba(217, 244, 232, 0.18));
}

.campaign-hero-stake::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.88) 48%, rgba(247, 250, 248, 0.44) 100%),
    linear-gradient(135deg, rgba(23, 33, 31, 0.18), rgba(217, 244, 232, 0.18));
}

.campaign-hero-share::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.88) 48%, rgba(247, 250, 248, 0.44) 100%),
    linear-gradient(135deg, rgba(196, 86, 66, 0.18), rgba(15, 118, 110, 0.14));
}

.campaign-hero-reward::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.88) 48%, rgba(247, 250, 248, 0.44) 100%),
    linear-gradient(135deg, rgba(185, 133, 38, 0.24), rgba(15, 118, 110, 0.12));
}

.campaign-hero-feedback::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.88) 48%, rgba(247, 250, 248, 0.44) 100%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(196, 86, 66, 0.14), rgba(185, 133, 38, 0.12));
}

.campaign-hero-copy,
.campaign-banner {
  position: relative;
  z-index: 1;
}

.campaign-hero h1 {
  max-width: 13.6ch;
  margin-bottom: 22px;
}

.campaign-banner {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(18, 33, 30, 0.16);
  backdrop-filter: blur(10px);
}

.campaign-banner img {
  display: block;
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 8px;
}

.campaign-banner div {
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.lend-campaign .campaign-banner div {
  background: #0b5f59;
}

.stake-campaign .campaign-banner div {
  background: #17211f;
}

.share-campaign .campaign-banner div {
  background: #8f3d2f;
}

.reward-campaign .campaign-banner div {
  background: #7c5816;
}

.feedback-campaign .campaign-banner div {
  background:
    linear-gradient(135deg, #0b5f59 0%, #17211f 56%, #8f3d2f 100%);
}

.campaign-banner span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-banner strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
}

.campaign-info-section {
  background: #fffdf8;
}

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

.campaign-info-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf7f2 100%);
  box-shadow: 0 14px 36px rgba(18, 33, 30, 0.07);
}

.campaign-info-card:nth-child(2) {
  border-color: rgba(196, 86, 66, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #faece9 100%);
}

.campaign-info-card:nth-child(3) {
  border-color: rgba(185, 133, 38, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #fff1cc 100%);
}

.campaign-info-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.campaign-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.campaign-feedback-section {
  background: #eef5f1;
  border-block: 1px solid var(--line);
}

.campaign-feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.campaign-feedback-panel > div:first-child {
  max-width: 760px;
}

.campaign-feedback-panel .button {
  margin-top: 12px;
}

.campaign-question-list {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 33, 30, 0.08);
}

.campaign-question-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-question-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-question-list li {
  padding: 14px 14px 14px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--muted);
  position: relative;
}

.campaign-question-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.campaign-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: #fff;
}

.campaign-final-cta .eyebrow {
  color: var(--mint);
}

.campaign-final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.campaign-final-cta .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.seo-main {
  background: var(--paper);
}

.seo-hero {
  position: relative;
  min-height: clamp(520px, 66svh, 680px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.9) 48%, rgba(247, 250, 248, 0.42) 100%),
    url("assets/uend-ecosystem-panel.svg") right center / min(52vw, 740px) auto no-repeat,
    linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(185, 133, 38, 0.12), rgba(196, 86, 66, 0.12));
  border-bottom: 1px solid var(--line);
}

.seo-hero-bridge {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.9) 48%, rgba(247, 250, 248, 0.42) 100%),
    url("assets/uend-channel-banner.svg") right center / min(58vw, 820px) auto no-repeat,
    linear-gradient(135deg, rgba(196, 86, 66, 0.12), rgba(15, 118, 110, 0.12));
}

.seo-hero-rewards {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.9) 48%, rgba(247, 250, 248, 0.42) 100%),
    url("assets/uend-social-card.svg") right center / min(54vw, 760px) auto no-repeat,
    linear-gradient(135deg, rgba(185, 133, 38, 0.16), rgba(15, 118, 110, 0.1));
}

.seo-hero-telegram {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.88) 50%, rgba(247, 250, 248, 0.36) 100%),
    url("assets/uend-channel-banner.svg") right center / min(58vw, 820px) auto no-repeat,
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(185, 133, 38, 0.12));
}

.seo-hero-copy {
  width: min(680px, 100%);
  max-width: 100%;
  min-width: 0;
}

.seo-hero h1 {
  max-width: 13ch;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.seo-content {
  display: grid;
  gap: 18px;
  max-width: 860px;
  min-width: 0;
}

.seo-main h1,
.seo-main h2,
.seo-main h3,
.seo-main p,
.seo-main li,
.seo-main summary {
  overflow-wrap: break-word;
}

.seo-content h2 {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.seo-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.seo-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(18, 33, 30, 0.08);
}

.seo-panel h2 {
  margin: 0;
  font-size: 24px;
}

.seo-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  padding: 12px 12px 12px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--muted);
  position: relative;
}

.seo-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.faq-section {
  background: #eef5f1;
  border-block: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.page-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: #fffdf8;
  min-width: 0;
}

.page-cta > div:first-child {
  max-width: 720px;
}

/* Token economics */
.token-econ-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 132px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(15, 118, 110, 0.18), transparent 28rem),
    radial-gradient(circle at 94% 68%, rgba(185, 133, 38, 0.13), transparent 24rem),
    linear-gradient(180deg, #fdfefd 0%, #edf7f2 100%);
}

.token-econ-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.token-econ-hero h1 {
  max-width: 12ch;
  margin-bottom: 22px;
}

.token-econ-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.token-econ-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin-top: 38px;
  border: 1px solid rgba(23, 33, 31, 0.14);
  background: rgba(23, 33, 31, 0.14);
  box-shadow: 0 16px 40px rgba(18, 33, 30, 0.1);
}

.token-econ-meta div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.token-econ-meta strong,
.token-econ-meta span {
  display: block;
}

.token-econ-meta strong {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.token-econ-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.token-econ-nav {
  position: sticky;
  top: 80px;
  z-index: 8;
  display: flex;
  gap: 8px 18px;
  overflow-x: auto;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.token-econ-nav a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.token-econ-nav a:hover {
  color: var(--coral);
}

.token-econ-section {
  scroll-margin-top: 132px;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.token-econ-section.alt {
  border-block: 1px solid var(--line);
  background: #eef5f1;
}

.token-econ-section.ink {
  color: #fff;
  background: var(--ink);
}

.token-econ-section.ink .eyebrow {
  color: var(--mint);
}

.token-econ-section.ink .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.token-econ-section .section-heading {
  max-width: 820px;
}

.token-econ-section .section-heading > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.token-econ-prose {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  max-width: 1240px;
}

.token-econ-prose > div {
  display: grid;
  gap: 18px;
}

.token-econ-prose p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.token-econ-section.ink .token-econ-prose p {
  color: rgba(255, 255, 255, 0.75);
}

.token-econ-note {
  padding: 24px;
  border: 1px solid rgba(185, 133, 38, 0.28);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.token-econ-note strong {
  color: var(--ink);
}

.allocation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.allocation-total {
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background: var(--ink);
}

.allocation-total .eyebrow {
  color: var(--mint);
}

.allocation-total strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(50px, 8vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.allocation-total p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.allocation-ledger {
  display: grid;
  border-top: 1px solid var(--line);
}

.allocation-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 82px minmax(130px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.allocation-row strong {
  display: block;
  font-size: 16px;
}

.allocation-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.allocation-row .percent,
.allocation-row .amount {
  font-size: 16px;
  font-weight: 850;
  text-align: right;
}

.allocation-row .amount {
  color: var(--teal-dark);
}

.release-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.release-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.release-table th,
.release-table td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.release-table th {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.release-table td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.release-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 244, 232, 0.26);
}

.utility-grid article {
  min-height: 248px;
  padding: 24px;
  border-right: 1px solid rgba(217, 244, 232, 0.26);
  border-bottom: 1px solid rgba(217, 244, 232, 0.26);
}

.utility-grid article:last-child {
  border-right: 0;
}

.utility-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.utility-grid h3 {
  color: #fff;
}

.utility-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.62;
}

.reward-formula {
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 800;
  line-height: 1.45;
}

.reward-factors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.reward-factors div {
  padding: 21px;
  background: #fff;
}

.reward-factors strong,
.reward-factors span {
  display: block;
}

.reward-factors strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.reward-factors span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contract-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contract-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contract-row strong,
.contract-row span {
  display: block;
}

.contract-row strong {
  font-size: 15px;
}

.contract-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contract-row a,
.contract-row code {
  align-self: center;
  color: var(--teal-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contract-row a:hover {
  color: var(--coral);
}

.token-econ-source-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.token-econ-source-list li {
  padding: 16px 16px 16px 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  position: relative;
}

.token-econ-source-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.token-econ-source-list strong {
  color: var(--ink);
}

/* Public roadmap */
.roadmap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: end;
  min-height: min(780px, 82svh);
  padding: clamp(78px, 11vw, 156px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 104px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(76, 214, 186, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(185, 133, 38, 0.2), transparent 24rem),
    linear-gradient(142deg, #071613 0%, #0a352f 52%, #0b5f59 100%);
}

.roadmap-hero-copy {
  max-width: 860px;
}

.roadmap-hero .eyebrow {
  color: var(--mint);
}

.roadmap-hero h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(56px, 8.4vw, 112px);
}

.roadmap-hero h1 span {
  color: #76ddc6;
}

.roadmap-lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.62;
}

.roadmap-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-pill.live { color: #75dcc3; }
.status-pill.progress { color: #f0c86e; }
.status-pill.planned { color: #9cc8ff; }
.status-pill.conditional { color: #d5b7ff; }

.roadmap-hero .button.primary {
  color: var(--ink);
  background: #fff;
}

.roadmap-hero .button.primary:hover {
  background: var(--mint);
}

.roadmap-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.roadmap-hero .microcopy {
  color: rgba(255, 255, 255, 0.58);
}

.roadmap-hero-note {
  padding: 28px;
  border: 1px solid rgba(217, 244, 232, 0.28);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.roadmap-hero-note span,
.roadmap-hero-note strong,
.roadmap-hero-note p {
  display: block;
}

.roadmap-hero-note span {
  margin-bottom: 28px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roadmap-hero-note strong {
  font-size: clamp(24px, 3vw, 37px);
  line-height: 1.08;
}

.roadmap-hero-note p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.roadmap-section {
  padding: clamp(58px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.roadmap-section .section-heading {
  max-width: 820px;
}

.roadmap-section .section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.roadmap-architecture-section {
  background: #f6faf8;
}

.roadmap-architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-architecture article {
  min-height: 214px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.roadmap-architecture span {
  display: block;
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-architecture h3 {
  margin-bottom: 8px;
}

.roadmap-architecture p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.roadmap-timeline-section {
  background: #fff;
}

.roadmap-timeline {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.roadmap-step {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.roadmap-step-meta span,
.roadmap-step-meta p {
  display: block;
}

.roadmap-step-meta span {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.roadmap-step-meta p {
  margin: 7px 0 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.is-progress .roadmap-step-meta p { color: #986c13; }
.is-planned .roadmap-step-meta p { color: #356eae; }
.is-conditional .roadmap-step-meta p { color: #7651a6; }

.roadmap-kicker {
  margin: 0 0 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.roadmap-step h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 37px);
  line-height: 1.1;
}

.roadmap-step > div:last-child > p:not(.roadmap-kicker) {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.roadmap-step ul {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-step li {
  position: relative;
  padding-left: 20px;
  color: #42534e;
  font-size: 15px;
  line-height: 1.55;
}

.roadmap-step li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.roadmap-collaboration-section {
  color: #fff;
  background: var(--ink);
}

.roadmap-collaboration-section .eyebrow { color: var(--mint); }
.roadmap-collaboration-section .section-heading > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.7); }

.roadmap-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(217, 244, 232, 0.25);
  background: rgba(217, 244, 232, 0.25);
}

.roadmap-collaboration-grid article {
  min-height: 310px;
  padding: 28px;
  background: #102723;
}

.roadmap-collaboration-grid h3 {
  margin: 30px 0 6px;
  color: #fff;
  font-size: 30px;
}

.roadmap-card-label {
  margin: 0 0 20px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.roadmap-collaboration-grid article > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.roadmap-disclosure-section {
  background: #edf6f1;
}

.roadmap-disclosure {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 7vw, 120px);
  max-width: 1180px;
}

.roadmap-disclosure h2 {
  max-width: 530px;
  margin-bottom: 0;
}

.roadmap-disclosure > div:last-child {
  display: grid;
  gap: 18px;
}

.roadmap-disclosure > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.roadmap-disclosure a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.roadmap-closing {
  padding: clamp(62px, 10vw, 144px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(145deg, #0b5f59, #17211f);
}

.roadmap-closing h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(40px, 6vw, 74px);
}

.roadmap-closing .eyebrow { color: var(--mint); }
.roadmap-closing .button.primary { color: var(--ink); background: #fff; }
.roadmap-closing .button.secondary { color: #fff; border-color: rgba(255, 255, 255, 0.45); }

.legal-main {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.legal-hero {
  max-width: 920px;
  margin-bottom: 32px;
}

.legal-hero h1 {
  max-width: 14ch;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-nav a {
  color: var(--muted);
  font-size: 14px;
}

.legal-nav a:hover {
  color: var(--teal-dark);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.dashboard-page {
  background: #f5f8f6;
}

.dashboard-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.dashboard-hero {
  display: grid;
  gap: 22px;
  margin-bottom: 26px;
}

.dashboard-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.token-form {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 10px;
  align-items: end;
  max-width: 560px;
}

.token-form label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #426257;
}

.token-form input {
  min-height: 48px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.metric-strip div,
.ops-panel {
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(23, 33, 31, 0.07);
}

.metric-strip div {
  padding: 18px;
}

.metric-strip span {
  display: block;
  margin-bottom: 8px;
  color: #587168;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-strip strong {
  font-size: 2rem;
}

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

.ops-panel {
  padding: 22px;
}

.ops-panel h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.ops-panel p {
  margin: 0;
  color: #4c635d;
}

.ops-panel dl {
  display: grid;
  grid-template-columns: minmax(100px, 0.45fr) 1fr;
  gap: 10px 16px;
  margin: 0;
}

.ops-panel dt {
  color: #587168;
  font-weight: 800;
}

.ops-panel dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.lead-panel {
  grid-column: 1 / -1;
}

.signal-feed {
  display: grid;
  gap: 10px;
}

.signal-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 33, 31, 0.09);
}

.signal-item:first-child {
  border-top: 0;
}

.signal-item strong {
  text-transform: capitalize;
}

.signal-item span {
  color: #698077;
  font-size: 0.88rem;
}

.signal-item p {
  color: #263632;
}

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

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .campaign-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .campaign-copy {
    grid-template-columns: 1fr;
  }

  .campaign-copy span {
    grid-row: auto;
  }

  .campaign-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.92) 55%, rgba(247, 250, 248, 0.74) 100%),
      linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(185, 133, 38, 0.14) 50%, rgba(196, 86, 66, 0.12));
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 500px;
    justify-self: center;
    margin: 34px auto 0;
    order: 2;
    z-index: 2;
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1;
  }

  h1 span {
    display: block;
  }

  .metrics,
  .two-column,
  .ecosystem-grid,
  .follower-grid,
  .proof-grid,
  .campaign-hero,
  .campaign-info-grid,
  .campaign-feedback-panel,
  .customer-grid,
  .reward-grid,
  .loop-grid,
  .principles,
  .signal-layout {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .community,
  .page-cta,
  .campaign-final-cta,
  .legal-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .campaign-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .campaign-banner {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.8fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.94) 100%),
      linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(185, 133, 38, 0.12));
  }

  .seo-layout {
    grid-template-columns: 1fr;
  }

  .seo-panel {
    position: static;
  }

  .token-econ-meta,
  .utility-grid,
  .reward-factors {
    grid-template-columns: 1fr 1fr;
  }

  .roadmap-hero,
  .roadmap-disclosure {
    grid-template-columns: 1fr;
  }

  .roadmap-architecture,
  .roadmap-collaboration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .token-econ-prose,
  .allocation-layout {
    grid-template-columns: 1fr;
  }

  .utility-grid article:nth-child(2) {
    border-right: 0;
  }

  .utility-grid article:nth-child(3) {
    border-right: 1px solid rgba(217, 244, 232, 0.26);
  }

  .legal-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 0;
  }

  .ulend-header-inner {
    padding: 14px 16px;
  }

  .network-pill,
  .icon-button,
  .header-icon {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero,
  .campaign-hero,
  .seo-hero,
  .seo-layout,
  .section {
    padding-inline: 16px;
  }

  .campaign-header {
    padding-inline: 16px;
  }

  .token-econ-hero,
  .token-econ-section {
    padding-inline: 16px;
  }

  .token-econ-nav {
    top: 68px;
    padding-inline: 16px;
  }

  .token-econ-meta,
  .utility-grid,
  .reward-factors {
    grid-template-columns: 1fr;
  }

  .utility-grid article,
  .utility-grid article:nth-child(2),
  .utility-grid article:nth-child(3) {
    min-height: 0;
    border-right: 0;
  }

  .allocation-row,
  .contract-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .allocation-row .percent,
  .allocation-row .amount {
    text-align: left;
  }

  .campaign-actions,
  .campaign-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 36px 16px;
  }

  .footer-bottom-inner {
    padding-inline: 16px;
  }

  .band {
    margin-inline: 16px;
  }

  .button {
    width: 100%;
  }

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

  .steps article span {
    grid-row: auto;
  }

  .brand-context {
    display: none;
  }

  .roadmap-hero {
    min-height: 0;
    padding-block: 72px 50px;
  }

  .roadmap-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .roadmap-hero-note {
    padding: 22px;
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .roadmap-step-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .roadmap-step-meta p {
    margin: 0;
  }

  .roadmap-architecture,
  .roadmap-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-architecture article,
  .roadmap-collaboration-grid article {
    min-height: 0;
  }
}

.launch-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 118, 110, 0.16), transparent 32rem),
    linear-gradient(180deg, #f7faf8 0%, #eef6f2 100%);
}

.launch-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px) clamp(70px, 10vw, 128px);
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.launch-hero h1 {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.launch-hero h1 span {
  color: var(--teal-dark);
}

.launch-hero .hero-text {
  max-width: 61ch;
  margin: 0;
  color: #41534d;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.48;
}

.launch-presale-cta {
  min-height: 54px;
  margin-top: 30px;
  padding-inline: 22px;
  font-size: 15px;
}

.launch-hero-proof {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.launch-panel,
.launch-contract-grid article {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 48px rgba(18, 33, 30, 0.08);
}

.launch-presale-hero {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #102a25 0%, #0f766e 100%);
  box-shadow: 0 24px 58px rgba(18, 33, 30, 0.2);
}

.launch-presale-hero h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.launch-presale-hero > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.launch-hero-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.launch-hero-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 740;
}

.launch-hero-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(217, 244, 232, 0.55);
  border-radius: 50%;
  color: #d9f4e8;
  font-size: 11px;
}

.launch-hero-status {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 244, 232, 0.3);
}

.launch-hero-status strong {
  font-size: 15px;
  line-height: 1.35;
}

.launch-hero-status strong[data-tone="error"] {
  color: #ffd8ce;
}

.launch-hero-status span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.4;
}

.launch-status-label,
.launch-contract-grid span,
.launch-balance-grid dt,
.launch-reward-grid dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
}

.launch-panel {
  padding: clamp(24px, 3.4vw, 38px);
  border-radius: 18px;
}

.launch-panel-primary {
  background: linear-gradient(145deg, #17352f 0%, #0f766e 100%);
  border-color: #17352f;
  color: #fff;
}

.launch-panel-primary .eyebrow,
.launch-panel-primary p,
.launch-panel-primary .launch-balance-grid dt,
.launch-panel-primary .launch-text-link {
  color: rgba(255, 255, 255, 0.74);
}

.launch-panel-wide {
  grid-column: 1 / -1;
}

.launch-panel-presale {
  order: -1;
  background: #fbfefc;
}

.launch-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.launch-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.launch-panel > p {
  max-width: 700px;
  margin: 24px 0;
  line-height: 1.65;
}

.launch-chip {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.launch-panel-primary .launch-chip {
  color: #d9f4e8;
}

.launch-balance-grid,
.launch-reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 25px;
}

.launch-balance-grid div,
.launch-reward-grid div {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.launch-panel-primary .launch-balance-grid div {
  border-color: rgba(217, 244, 232, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.launch-balance-grid dd,
.launch-reward-grid dd {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.launch-reward-grid small {
  color: var(--muted);
  line-height: 1.35;
}

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

.launch-form label {
  font-size: 13px;
  font-weight: 800;
}

.launch-form-row {
  display: flex;
  gap: 10px;
}

.launch-form input {
  min-width: 0;
  flex: 1 1 auto;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 244, 232, 0.38);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.launch-form .button {
  flex: 0 0 auto;
}

.launch-panel-primary .button.primary {
  color: var(--ink);
  border-color: #d9f4e8;
  background: #d9f4e8;
}

.launch-text-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.launch-safety-note {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(185, 133, 38, 0.42);
  border-radius: 10px;
  background: var(--cream);
  line-height: 1.55;
}

.launch-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.launch-journey li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 15px 10px 0 0;
  border-top: 2px solid #d9e8e1;
}

.launch-journey li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--teal-dark);
  background: transparent;
  font-size: 10px;
  font-weight: 850;
}

.launch-journey li > div,
.launch-presale-account {
  display: grid;
  gap: 5px;
}

.launch-journey strong,
.launch-presale-account strong {
  font-size: 14px;
}

.launch-journey small,
.launch-form-note,
.launch-presale-account span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.launch-journey li[data-state="active"] {
  border-color: var(--teal);
}

.launch-journey li[data-state="active"] > span {
  color: var(--teal);
}

.launch-journey li[data-state="complete"] > span {
  color: var(--teal-dark);
}

.launch-presale-form {
  margin: 0 0 20px;
  padding: 18px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 12px;
  background: #f4fbf7;
}

.launch-presale-form[hidden] {
  display: none;
}

.launch-presale-account {
  margin-bottom: 10px;
}

.launch-presale-form input:disabled {
  color: var(--muted);
  border-color: rgba(15, 118, 110, 0.16);
  background: #edf2ef;
}

.launch-page .button:focus-visible,
.launch-page input:focus-visible,
.launch-page a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: 3px;
}

.launch-contracts {
  margin-top: clamp(54px, 8vw, 96px);
}

.launch-contract-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.launch-contract-grid article {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 18px;
  border-radius: 12px;
}

.launch-contract-grid code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .launch-hero,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .launch-journey {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .launch-contract-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .launch-main {
    padding-inline: 16px;
  }

  .launch-form-row,
  .launch-balance-grid,
  .launch-reward-grid,
  .launch-contract-grid {
    grid-template-columns: 1fr;
  }

  .launch-form-row {
    display: grid;
  }

  .launch-form .button {
    width: 100%;
  }
}

/* ULEND presale: buyer-facing launch experience */
.launch-page {
  background: #f4f9f6;
}

.launch-main {
  max-width: 1280px;
  padding-top: clamp(56px, 8vw, 112px);
}

.launch-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 106px);
  margin-bottom: clamp(76px, 11vw, 156px);
}

.launch-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.1vw, 96px);
  line-height: 0.91;
  letter-spacing: -0.052em;
}

.launch-hero h1 span {
  color: #008d7d;
}

.launch-hero .hero-text {
  max-width: 57ch;
  color: #3f504a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.launch-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.launch-presale-cta {
  margin: 0;
  border-radius: 10px;
  background: #008d7d;
  box-shadow: 0 14px 26px rgba(0, 111, 97, 0.2);
}

.launch-presale-cta:hover {
  background: #006f61;
  transform: translateY(-1px);
}

.launch-inline-link {
  color: #005f55;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.launch-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  color: #63736d;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.launch-presale-hero {
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 16px;
  background: #0b211d;
  box-shadow: 0 28px 62px rgba(8, 35, 30, 0.2);
}

.launch-presale-hero h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 0.98;
}

.launch-hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.launch-hero-facts div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(217, 244, 232, 0.22);
}

.launch-hero-facts dt {
  color: rgba(217, 244, 232, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.launch-hero-facts dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  text-align: right;
}

.launch-hero-status {
  padding-top: 4px;
  border-top: 0;
}

.launch-thesis,
.launch-presale,
.launch-tokenomics,
.launch-contracts {
  padding-top: clamp(72px, 10vw, 140px);
  border-top: 1px solid rgba(8, 91, 80, 0.16);
}

.launch-thesis {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 8vw, 144px);
}

.launch-thesis h2,
.launch-section-intro h2,
.launch-contracts h2 {
  max-width: 15ch;
  margin: 0;
  color: #14211e;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.launch-thesis-copy > p,
.launch-section-intro > p {
  max-width: 64ch;
  margin: 0;
  color: #42534c;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.launch-thesis-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 32px 0 28px;
  list-style: none;
}

.launch-thesis-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.62fr) minmax(0, 1.38fr);
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 91, 80, 0.2);
}

.launch-thesis-list strong {
  color: #075d51;
  font-size: 15px;
}

.launch-thesis-list span {
  color: #52635c;
  font-size: 14px;
  line-height: 1.55;
}

.launch-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 8vw, 144px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.launch-presale-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(290px, 0.84fr);
  overflow: hidden;
  border: 1px solid rgba(8, 91, 80, 0.22);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(16, 40, 34, 0.08);
}

.launch-checkout,
.launch-presale-explainer {
  padding: clamp(26px, 4vw, 48px);
}

.launch-checkout {
  background: #0d2823;
  color: #fff;
}

.launch-checkout-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.launch-checkout h3,
.launch-presale-explainer h3,
.launch-tokenomics-meaning h3 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.launch-checkout-heading > span {
  flex: 0 0 auto;
  color: #bef0df;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.launch-checkout > p {
  max-width: 60ch;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.launch-presale-entry {
  width: 100%;
  min-height: 54px;
  margin: 0 0 26px;
  color: #08221e;
  background: #bff2e1;
  border-color: #bff2e1;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.launch-presale-entry:hover {
  background: #d7f6e9;
  border-color: #d7f6e9;
}

.launch-presale-entry[hidden] {
  display: none;
}

.launch-checkout .launch-journey {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 26px;
}

.launch-checkout .launch-journey li {
  padding: 14px 0;
  border-top: 1px solid rgba(217, 244, 232, 0.22);
}

.launch-checkout .launch-journey li:last-child {
  border-bottom: 1px solid rgba(217, 244, 232, 0.22);
}

.launch-checkout .launch-journey li > span {
  width: 28px;
  height: 28px;
  color: #bff2e1;
  font-size: 12px;
}

.launch-checkout .launch-journey strong {
  color: #fff;
}

.launch-checkout .launch-journey small,
.launch-checkout .launch-presale-account span,
.launch-checkout .launch-form-note {
  color: rgba(217, 244, 232, 0.68);
}

.launch-checkout .launch-presale-form {
  border-color: rgba(217, 244, 232, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.launch-checkout .launch-form input {
  border-color: rgba(217, 244, 232, 0.32);
}

.launch-checkout .launch-form input:disabled {
  color: rgba(217, 244, 232, 0.5);
  border-color: rgba(217, 244, 232, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.launch-checkout .launch-form .button.primary {
  color: #08221e;
  background: #bff2e1;
}

.launch-settlement-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 244, 232, 0.2);
}

.launch-settlement-note strong {
  color: #bff2e1;
  font-size: 13px;
}

.launch-settlement-note span {
  color: rgba(217, 244, 232, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.launch-presale-explainer {
  display: flex;
  flex-direction: column;
  background: #e8f4ee;
}

.launch-presale-explainer > p {
  margin: 20px 0 24px;
  color: #42564e;
  line-height: 1.58;
}

.launch-purchase-rules {
  display: grid;
  gap: 16px;
  margin: 0 0 30px;
}

.launch-purchase-rules div {
  display: grid;
  gap: 5px;
  padding-top: 15px;
  border-top: 1px solid rgba(8, 91, 80, 0.18);
}

.launch-purchase-rules dt {
  color: #075d51;
  font-size: 12px;
  font-weight: 820;
}

.launch-purchase-rules dd {
  margin: 0;
  color: #4d6058;
  font-size: 13px;
  line-height: 1.5;
}

.launch-tokenomics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(38px, 8vw, 128px);
  align-items: start;
}

.launch-allocation {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid #115e52;
}

.launch-allocation li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 74px;
  gap: 12px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid rgba(8, 91, 80, 0.17);
}

.launch-allocation .allocation-name {
  color: #20322c;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 740;
}

.launch-allocation strong {
  color: #008d7d;
  font-size: 18px;
  text-align: right;
}

.launch-allocation li > span:last-child {
  color: #6c7d75;
  font-size: 13px;
  font-weight: 720;
  text-align: right;
}

.launch-tokenomics-meaning {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 14px;
  background: #ddeee6;
}

.launch-tokenomics-meaning > p {
  margin: 18px 0;
  color: #40554c;
  line-height: 1.56;
}

.launch-tokenomics-meaning ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.launch-tokenomics-meaning li {
  position: relative;
  padding-left: 15px;
  color: #4d6258;
  font-size: 13px;
  line-height: 1.5;
}

.launch-tokenomics-meaning li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #008d7d;
  content: "";
}

.launch-tokenomics-disclosure {
  max-width: 72ch;
  margin: 28px 0 0;
  color: #697a72;
  font-size: 12px;
  line-height: 1.55;
}

.launch-grid {
  margin-top: clamp(72px, 10vw, 140px);
}

.launch-panel {
  border-radius: 14px;
}

.launch-panel-primary {
  background: #0d2823;
}

.launch-panel h2 {
  font-size: clamp(25px, 2.8vw, 36px);
}

.launch-contracts {
  margin-top: clamp(72px, 10vw, 140px);
}

.launch-contracts .section-heading {
  margin-bottom: 28px;
}

.launch-contracts .section-heading h2 {
  max-width: 20ch;
}

.launch-contract-grid article {
  border-radius: 12px;
}

@media (max-width: 800px) {
  .launch-hero,
  .launch-thesis,
  .launch-section-intro,
  .launch-presale-layout,
  .launch-tokenomics-layout {
    grid-template-columns: 1fr;
  }

  .launch-hero {
    gap: 36px;
  }

  .launch-thesis,
  .launch-section-intro {
    gap: 22px;
  }

  .launch-thesis h2,
  .launch-section-intro h2 {
    max-width: 17ch;
  }

  .launch-presale-explainer {
    border-top: 1px solid rgba(8, 91, 80, 0.18);
  }
}

@media (max-width: 520px) {
  .launch-main {
    padding-top: 44px;
  }

  .launch-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .launch-hero-actions,
  .launch-checkout-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-checkout-heading > span {
    text-align: left;
  }

  .launch-thesis-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .launch-allocation li {
    grid-template-columns: minmax(0, 1fr) 54px 52px;
    gap: 7px;
  }

  .launch-allocation .allocation-name {
    font-size: 14px;
  }

  .launch-allocation strong {
    font-size: 16px;
  }

  .launch-allocation li > span:last-child {
    font-size: 12px;
  }
}

/* ULEND presale: simplified conversion page */
.launch-main-simple {
  max-width: 1180px;
  padding-top: clamp(42px, 6vw, 84px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.launch-main-simple .launch-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-bottom: clamp(46px, 8vw, 92px);
  align-items: start;
}

.launch-main-simple .launch-hero-copy {
  max-width: 920px;
}

.launch-main-simple .launch-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.94;
}

.launch-main-simple .launch-hero .hero-text {
  max-width: 58ch;
  font-size: clamp(17px, 1.7vw, 21px);
}

.launch-page .ulend-global-header .ulend-header-inner {
  max-width: 1180px;
}

.launch-page .ulend-global-header .nav {
  gap: clamp(14px, 2vw, 24px);
}

.launch-page .ulend-global-header .nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #344640;
}

.launch-page .ulend-global-header .nav a[aria-current="page"],
.launch-page .ulend-global-header .nav a:hover {
  color: #008d7d;
}

.launch-page .ulend-global-header .nav-action {
  min-height: 42px;
  padding-inline: 18px;
  background: #008d7d;
}

.launch-utility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.launch-utility-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 91, 80, 0.18);
  border-radius: 8px;
  color: #0a5f55;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 820;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-utility-strip a:hover {
  border-color: rgba(8, 91, 80, 0.34);
  background: #fff;
  transform: translateY(-1px);
}

.launch-status-card {
  align-self: start;
  min-height: 100%;
}

.launch-main-simple .launch-presale,
.launch-main-simple .launch-tokenomics,
.launch-main-simple .launch-stake,
.launch-main-simple .launch-refer,
.launch-main-simple .launch-claim {
  padding-top: clamp(46px, 8vw, 88px);
  border-top: 1px solid rgba(8, 91, 80, 0.16);
}

.launch-main-simple .launch-section-intro {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.9fr);
  gap: clamp(20px, 5vw, 82px);
  margin-bottom: clamp(24px, 4vw, 42px);
}

.launch-main-simple .launch-section-intro h2 {
  max-width: 12ch;
  font-size: clamp(32px, 4.4vw, 56px);
}

.launch-main-simple .launch-section-intro > p {
  max-width: 56ch;
}

.launch-presale-layout-simple {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  border-radius: 14px;
}

.launch-presale-layout-simple .launch-checkout {
  padding: clamp(24px, 4vw, 44px);
}

.launch-checkout-status {
  display: grid;
  gap: 5px;
  max-width: 520px;
  padding: 16px 0 18px;
  margin: 22px 0;
  border-top: 1px solid rgba(217, 244, 232, 0.22);
  border-bottom: 1px solid rgba(217, 244, 232, 0.22);
}

.launch-checkout-status strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.launch-checkout-status strong[data-tone="error"] {
  color: #ffc2b5;
}

.launch-checkout-status strong[data-tone="success"] {
  color: #bff2e1;
}

.launch-checkout-status span {
  color: rgba(217, 244, 232, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.launch-readiness {
  display: grid;
  gap: 16px;
  max-width: 650px;
  padding: 18px;
  margin: 0 0 26px;
  border: 1px solid rgba(217, 244, 232, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.launch-readiness:focus-visible {
  outline: 2px solid #bff2e1;
  outline-offset: 3px;
}

.launch-readiness[data-state="ready"] {
  border-color: rgba(191, 242, 225, 0.56);
  background: rgba(191, 242, 225, 0.12);
}

.launch-readiness[data-state="closed"] {
  border-color: rgba(255, 255, 255, 0.18);
}

.launch-readiness-copy {
  display: grid;
  gap: 5px;
}

.launch-readiness-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.launch-readiness-copy span {
  max-width: 56ch;
  color: rgba(217, 244, 232, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.launch-readiness-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
}

.launch-readiness-terms[hidden] {
  display: none;
}

.launch-readiness-terms div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(217, 244, 232, 0.2);
}

.launch-readiness-terms dt {
  color: rgba(217, 244, 232, 0.62);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-readiness-terms dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.launch-presale-layout-simple .launch-presale-explainer {
  padding: clamp(24px, 4vw, 38px);
  background: #eef7f2;
}

.launch-driver-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.launch-driver-list li {
  display: grid;
  gap: 5px;
  padding-top: 15px;
  border-top: 1px solid rgba(8, 91, 80, 0.18);
}

.launch-driver-list strong {
  color: #075d51;
  font-size: 14px;
}

.launch-driver-list span {
  color: #4d6058;
  font-size: 13px;
  line-height: 1.5;
}

.launch-driver-list-compact {
  margin: 4px 0 24px;
}

.launch-action-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.launch-action-loop li,
.launch-flow-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(8, 91, 80, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.launch-action-loop strong,
.launch-flow-list strong {
  color: #075d51;
  font-size: 13px;
}

.launch-action-loop span,
.launch-flow-list span {
  color: #4d6058;
  font-size: 12px;
  line-height: 1.35;
}

.launch-main-simple .launch-tokenomics {
  margin-top: clamp(46px, 8vw, 88px);
}

.launch-main-simple .launch-tokenomics-layout {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: clamp(26px, 6vw, 72px);
}

.launch-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.launch-utility-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 91, 80, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.launch-utility-grid h3,
.launch-grid-simple .launch-panel h3 {
  margin: 0;
  color: #14211e;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.launch-utility-grid p {
  margin: 0;
  color: #4a5e55;
  line-height: 1.58;
}

.launch-function-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 14px;
  align-items: stretch;
}

.launch-function-panel-reverse {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
}

.launch-grid-simple {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 14px;
  margin-top: 0;
}

.launch-panel-flat {
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 40, 34, 0.07);
}

.launch-panel-flat h3 {
  margin: 0;
  color: #14211e;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.launch-panel-primary.launch-panel-flat h3,
.launch-panel-primary.launch-panel-flat label {
  color: #fff;
}

.launch-flow-list,
.launch-claim-grid {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.launch-claim-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-claim-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 91, 80, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.launch-claim-grid h3 {
  margin: 0;
  color: #14211e;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.launch-claim-grid p {
  margin: 0;
  color: #4a5e55;
  line-height: 1.58;
}

.launch-grid-simple .launch-panel {
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 40, 34, 0.07);
}

.launch-grid-simple .launch-panel > p {
  margin: 18px 0 22px;
}

.launch-grid-simple .launch-panel-primary .launch-panel-heading h3 {
  color: #fff;
}

.launch-grid-simple .launch-driver-list strong {
  color: #075d51;
}

.launch-grid-simple .launch-driver-list span {
  color: #51635b;
}

@media (max-width: 900px) {
  .launch-page .ulend-global-header .ulend-header-inner {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .launch-page .ulend-global-header .nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .launch-page .ulend-global-header .nav::-webkit-scrollbar {
    display: none;
  }

  .launch-main-simple .launch-hero,
  .launch-main-simple .launch-section-intro,
  .launch-presale-layout-simple,
  .launch-main-simple .launch-tokenomics-layout,
  .launch-utility-grid,
  .launch-function-panel,
  .launch-function-panel-reverse,
  .launch-claim-grid,
  .launch-grid-simple {
    grid-template-columns: 1fr;
  }

  .launch-status-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .launch-main-simple {
    padding-inline: 16px;
  }

  .launch-main-simple .launch-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .launch-action-loop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-readiness-terms {
    grid-template-columns: 1fr;
  }

  .launch-utility-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-utility-strip a,
  .launch-presale-cta {
    transition: none;
  }
}

/* ULEND presale home: buyer-first narrative and conversion path */
.presale-home-page {
  background: #f5faf7;
}

.presale-home-main {
  max-width: 1440px;
  margin: 0 auto;
}

.presale-home-main h1,
.presale-home-main h2,
.presale-home-main h3,
.presale-home-main p,
.presale-home-main li,
.presale-home-main dd {
  overflow-wrap: break-word;
}

.presale-home-main [id] {
  scroll-margin-top: 72px;
}

.presale-home-hero,
.presale-home-section,
.presale-home-final {
  padding-inline: clamp(20px, 6vw, 92px);
}

.presale-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.74fr);
  gap: clamp(36px, 7vw, 122px);
  align-items: stretch;
  min-height: min(640px, calc(100svh - 136px));
  padding-top: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(245, 250, 247, 0) 0 95%, rgba(0, 141, 125, 0.08) 95% 100%),
    radial-gradient(circle at 58% 7%, rgba(0, 141, 125, 0.12), transparent 25rem),
    radial-gradient(circle at 100% 95%, rgba(185, 133, 38, 0.1), transparent 24rem);
}

.presale-home-context {
  margin: 0 0 18px;
  color: #006f61;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.presale-home-hero h1 {
  max-width: 10.5ch;
  margin: 0;
  color: #10231f;
  font-size: clamp(56px, 6.4vw, 94px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.presale-home-hero h1 span {
  display: block;
  color: #008d7d;
}

.presale-home-lead {
  max-width: 60ch;
  margin: 26px 0 0;
  color: #3e514a;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

.presale-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
}

.presale-home-primary {
  min-height: 52px;
  padding: 15px 22px;
  border-color: #008d7d;
  border-radius: 9px;
  background: #008d7d;
  box-shadow: 0 15px 28px rgba(0, 111, 97, 0.2);
}

.presale-home-primary:hover {
  border-color: #006f61;
  background: #006f61;
  transform: translateY(-1px);
}

.presale-home-inline-link,
.presale-home-card-link {
  color: #075d51;
  font-size: 14px;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.presale-home-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 710px;
  margin-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(8, 91, 80, 0.22);
  border-bottom: 1px solid rgba(8, 91, 80, 0.22);
}

.presale-home-hero-facts div {
  min-width: 0;
  padding: 18px 18px 17px 0;
}

.presale-home-hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(8, 91, 80, 0.18);
}

.presale-home-hero-facts strong,
.presale-home-hero-facts span {
  display: block;
}

.presale-home-hero-facts strong {
  margin-bottom: 7px;
  color: #075d51;
  font-size: clamp(22px, 2.7vw, 34px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.presale-home-hero-facts span {
  color: #5d6d67;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.38;
}

.presale-home-thesis {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.3vw, 42px);
  color: #d9f4e8;
  background: radial-gradient(circle at 100% 0, rgba(0, 141, 125, 0.32), transparent 24rem), #08221e;
  box-shadow: 0 28px 68px rgba(6, 38, 31, 0.2);
}

.presale-home-thesis .presale-home-context {
  color: #a2edda;
}

.presale-home-thesis h2 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.presale-home-thesis > p:not(.presale-home-context):not(.presale-home-quote) {
  max-width: 39ch;
  margin: 20px 0 0;
  color: rgba(217, 244, 232, 0.78);
  font-size: 16px;
  line-height: 1.56;
}

.presale-home-quote {
  margin: 22px 0 0;
  color: #bff2e1;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.presale-home-thesis-list {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
}

.presale-home-thesis-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(191, 242, 225, 0.2);
}

.presale-home-thesis-list dt {
  color: #a2edda;
  font-size: 11px;
  font-weight: 840;
}

.presale-home-thesis-list dd {
  margin: 0;
  color: rgba(217, 244, 232, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.presale-home-thesis .presale-home-card-link {
  margin-top: auto;
  padding-top: 26px;
  color: #d9f4e8;
}

.presale-home-card-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.presale-home-card-link:hover span {
  transform: translateX(3px);
}

.presale-home-section {
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
  border-top: 1px solid rgba(8, 91, 80, 0.18);
}

.presale-home-section-intro,
.presale-home-product-heading,
.presale-home-tokenomics-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 8vw, 142px);
  align-items: end;
}

.presale-home-section-intro .presale-home-context,
.presale-home-product-heading .presale-home-context,
.presale-home-tokenomics-heading .presale-home-context {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.presale-home-section h2,
.presale-home-final h2 {
  max-width: 13ch;
  margin: 0;
  color: #14221e;
  font-size: clamp(38px, 4.9vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.93;
  text-wrap: balance;
}

.presale-home-section-intro > p:last-child,
.presale-home-product-heading > p:last-child,
.presale-home-tokenomics-heading > p:last-child {
  max-width: 58ch;
  margin: 0;
  color: #44554e;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.presale-home-why {
  background: #eaf5ef;
}

.presale-home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 54px);
  margin-top: clamp(42px, 6vw, 74px);
}

.presale-home-why-grid article {
  min-width: 0;
  padding-top: 18px;
  border-top: 2px solid #0b5f59;
}

.presale-home-why-grid span,
.presale-home-product-path > article > span,
.presale-home-roadmap-list > li > span {
  color: #008d7d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.presale-home-why-grid h3,
.presale-home-product-path h3,
.presale-home-drivers-grid h3 {
  max-width: 14ch;
  margin: 34px 0 12px;
  color: #172821;
  font-size: clamp(23px, 2.4vw, 32px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.presale-home-why-grid p,
.presale-home-product-path p,
.presale-home-drivers-grid p {
  max-width: 33ch;
  margin: 0;
  color: #52635c;
  font-size: 15px;
  line-height: 1.58;
}

.presale-home-product {
  background: #f5faf7;
}

.presale-home-product-heading .presale-home-context {
  margin-bottom: -6px;
}

.presale-home-product-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 74px);
  border: 1px solid rgba(8, 91, 80, 0.2);
  background: rgba(8, 91, 80, 0.2);
}

.presale-home-product-path article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  padding: clamp(24px, 3.2vw, 42px);
  background: #f5faf7;
}

.presale-home-product-path article:nth-child(2) {
  background: #dff0e7;
}

.presale-home-product-path article:nth-child(3) {
  color: #fff;
  background: #0b2b25;
}

.presale-home-product-path h3 {
  margin-top: 40px;
}

.presale-home-product-path article:nth-child(3) h3 {
  color: #fff;
}

.presale-home-product-path article:nth-child(3) p {
  color: rgba(217, 244, 232, 0.74);
}

.presale-home-product-path a {
  margin-top: auto;
  padding-top: 28px;
  color: #075d51;
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.presale-home-product-path article:nth-child(3) a {
  color: #bff2e1;
}

.presale-home-purchase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 8vw, 154px);
  color: #fff;
  background: #0b231f;
}

.presale-home-purchase .presale-home-context {
  color: #a2edda;
}

.presale-home-purchase h2 {
  max-width: 10ch;
  color: #fff;
}

.presale-home-purchase-copy > p:not(.presale-home-context):not(.presale-home-purchase-note) {
  max-width: 55ch;
  margin: 25px 0 0;
  color: rgba(217, 244, 232, 0.76);
  font-size: 17px;
  line-height: 1.58;
}

.presale-home-purchase .presale-home-primary {
  margin-top: 32px;
  color: #0b2722;
  border-color: #bff2e1;
  background: #bff2e1;
  box-shadow: none;
}

.presale-home-purchase .presale-home-primary:hover {
  background: #d9f4e8;
}

.presale-home-purchase-note {
  max-width: 57ch;
  margin: 16px 0 0;
  color: rgba(217, 244, 232, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.presale-home-purchase-steps {
  display: grid;
  align-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.presale-home-purchase-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(191, 242, 225, 0.22);
}

.presale-home-purchase-steps li:last-child {
  border-bottom: 1px solid rgba(191, 242, 225, 0.22);
}

.presale-home-purchase-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #bff2e1;
  border: 1px solid rgba(191, 242, 225, 0.45);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 820;
}

.presale-home-purchase-steps strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.03em;
}

.presale-home-purchase-steps p {
  max-width: 47ch;
  margin: 0;
  color: rgba(217, 244, 232, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.presale-home-tokenomics {
  background: #f5faf7;
}

.presale-home-tokenomics-heading {
  margin-bottom: clamp(42px, 6vw, 74px);
}

.presale-home-tokenomics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(38px, 7vw, 122px);
  align-items: start;
}

.presale-home-allocation {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid #0b5f59;
}

.presale-home-allocation li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 70px;
  grid-template-areas: "name percent amount" "note note note";
  column-gap: 12px;
  padding: 17px 0 16px;
  border-bottom: 1px solid rgba(8, 91, 80, 0.18);
}

.presale-home-allocation li > span {
  grid-area: name;
  color: #20322c;
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 760;
}

.presale-home-allocation strong {
  grid-area: percent;
  color: #008d7d;
  font-size: 17px;
  text-align: right;
}

.presale-home-allocation em {
  grid-area: amount;
  color: #60716a;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  text-align: right;
}

.presale-home-allocation small {
  grid-area: note;
  margin-top: 6px;
  color: #687971;
  font-size: 12px;
  line-height: 1.42;
}

.presale-home-tokenomics-summary {
  padding: clamp(25px, 3.5vw, 40px);
  background: #dceee5;
}

.presale-home-tokenomics-summary h3 {
  max-width: 10ch;
  margin: 0;
  color: #14352d;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.presale-home-tokenomics-summary > p {
  max-width: 39ch;
  margin: 20px 0 25px;
  color: #41574d;
  font-size: 15px;
  line-height: 1.55;
}

.presale-home-tokenomics-summary dl {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
}

.presale-home-tokenomics-summary dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(8, 91, 80, 0.2);
}

.presale-home-tokenomics-summary dt {
  color: #075d51;
  font-size: 12px;
  font-weight: 820;
}

.presale-home-tokenomics-summary dd {
  margin: 5px 0 0;
  color: #4c6258;
  font-size: 13px;
  line-height: 1.48;
}

.presale-home-disclosure {
  max-width: 76ch;
  margin: 28px 0 0;
  color: #6c7d75;
  font-size: 12px;
  line-height: 1.55;
}

.presale-home-drivers {
  background: #eaf5ef;
}

.presale-home-drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 54px);
  margin-top: clamp(42px, 6vw, 74px);
}

.presale-home-drivers-grid article {
  min-width: 0;
  padding-top: 18px;
  border-top: 2px solid #0b5f59;
}

.presale-home-drivers-grid span {
  color: #075d51;
  font-size: 12px;
  font-weight: 850;
}

.presale-home-drivers-grid h3 {
  margin-top: 30px;
}

.presale-home-roadmap {
  color: #fff;
  background: #0a211d;
}

.presale-home-roadmap .presale-home-context {
  color: #a2edda;
}

.presale-home-roadmap h2 {
  max-width: 12ch;
  color: #fff;
}

.presale-home-roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: clamp(44px, 6vw, 76px) 0 0;
  list-style: none;
  background: rgba(191, 242, 225, 0.2);
}

.presale-home-roadmap-list li {
  min-width: 0;
  min-height: 310px;
  padding: clamp(22px, 3vw, 36px);
  background: #0a211d;
}

.presale-home-roadmap-list li:nth-child(2) {
  background: #0e302a;
}

.presale-home-roadmap-list li:nth-child(3) {
  background: #124239;
}

.presale-home-roadmap-list li:nth-child(4) {
  background: #176053;
}

.presale-home-roadmap-list > li > span {
  color: #bff2e1;
}

.presale-home-roadmap-list strong {
  display: block;
  max-width: 12ch;
  margin-top: 74px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.presale-home-roadmap-list p {
  margin: 13px 0 0;
  color: rgba(217, 244, 232, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.presale-home-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 8vw, 142px);
  background: #e2f1e9;
}

.presale-home-proof-content > p {
  max-width: 48ch;
  margin: 0;
  color: #40564b;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.58;
}

.presale-home-proof-contract {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(8, 91, 80, 0.22);
  border-bottom: 1px solid rgba(8, 91, 80, 0.22);
}

.presale-home-proof-contract span {
  color: #075d51;
  font-size: 12px;
  font-weight: 840;
}

.presale-home-proof-contract code {
  color: #253932;
  font-size: clamp(12px, 1.3vw, 14px);
  overflow-wrap: anywhere;
}

.presale-home-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
  padding-top: clamp(48px, 5vw, 68px);
  padding-bottom: clamp(48px, 5vw, 68px);
  background:
    radial-gradient(circle at 50% 0, rgba(0, 141, 125, 0.18), transparent 28rem),
    #f5faf7;
}

.presale-home-final-copy {
  max-width: 640px;
}

.presale-home-final h2 {
  max-width: 13ch;
}

.presale-home-final-copy > p:not(.presale-home-context) {
  max-width: 54ch;
  margin: 20px 0 0;
  color: #44564e;
  font-size: 16px;
  line-height: 1.58;
}

.presale-home-final-actions {
  display: grid;
  justify-items: start;
  gap: 17px;
  min-width: max-content;
}

.presale-home-final-actions .presale-home-primary {
  margin: 0;
}

.presale-home-page .button:focus-visible,
.presale-home-page a:focus-visible {
  outline: 3px solid rgba(0, 141, 125, 0.54);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .presale-home-hero,
  .presale-home-section-intro,
  .presale-home-product-heading,
  .presale-home-tokenomics-heading,
  .presale-home-purchase,
  .presale-home-tokenomics-layout,
  .presale-home-proof {
    grid-template-columns: 1fr;
  }

  .presale-home-final {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .presale-home-hero {
    min-height: auto;
  }

  .presale-home-thesis {
    min-height: 520px;
  }

  .presale-home-section-intro .presale-home-context,
  .presale-home-product-heading .presale-home-context,
  .presale-home-tokenomics-heading .presale-home-context {
    grid-column: auto;
    margin-bottom: 0;
  }

  .presale-home-section-intro,
  .presale-home-product-heading,
  .presale-home-tokenomics-heading {
    gap: 22px;
  }

  .presale-home-why-grid,
  .presale-home-drivers-grid {
    gap: 28px;
  }

  .presale-home-roadmap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .presale-home-hero,
  .presale-home-section,
  .presale-home-final {
    padding-inline: 18px;
  }

  .presale-home-hero {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .presale-home-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .presale-home-lead {
    margin-top: 23px;
    font-size: 17px;
  }

  .presale-home-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .presale-home-final-actions {
    min-width: 0;
  }

  .presale-home-final-actions .button {
    width: 100%;
  }

  .presale-home-actions .button {
    width: 100%;
  }

  .presale-home-inline-link {
    align-self: flex-start;
  }

  .presale-home-hero-facts,
  .presale-home-why-grid,
  .presale-home-product-path,
  .presale-home-drivers-grid,
  .presale-home-roadmap-list {
    grid-template-columns: 1fr;
  }

  .presale-home-hero-facts div,
  .presale-home-hero-facts div + div {
    padding: 15px 0;
    border-left: 0;
  }

  .presale-home-hero-facts div + div {
    border-top: 1px solid rgba(8, 91, 80, 0.16);
  }

  .presale-home-thesis {
    min-height: 0;
    padding: 28px 24px;
  }

  .presale-home-section h2,
  .presale-home-final h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .presale-home-product-path article,
  .presale-home-roadmap-list li {
    min-height: 248px;
  }

  .presale-home-product-path h3 {
    margin-top: 28px;
  }

  .presale-home-purchase-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .presale-home-allocation li {
    grid-template-columns: minmax(0, 1fr) 48px 54px;
    gap: 7px;
  }

  .presale-home-allocation li > span {
    font-size: 14px;
  }

  .presale-home-allocation strong {
    font-size: 15px;
  }

  .presale-home-allocation em {
    font-size: 12px;
  }

  .presale-home-roadmap-list strong {
    margin-top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .presale-home-card-link span,
  .presale-home-primary {
    transition: none;
  }
}
