@font-face {
  font-family: oregular;
  src: url("assets/fonts/ObviouslyWide.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: omedium;
  src: url("assets/fonts/ObviouslyWide.otf") format("opentype");
  font-weight: 550;
  font-display: swap;
}
@font-face {
  font-family: osemibold;
  src: url("assets/fonts/ObviouslyWide.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: hregular;
  src: url("assets/fonts/HelveticaNow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: hmedium;
  src: url("assets/fonts/HelveticaNow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: hbold;
  src: url("assets/fonts/HelveticaNow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --lime: #e5fe00;
  --purple: #8559e3;
  --cyan: #12aaff;
  --mint: #99ff80;
  --vermilion: #fe5c32;
  --silver: #dad9d9;
  --muted: #9e9d9d;
  --dim: #7a7a7a;
  --ink: #111;
  --void: #0b0b0b;
  --card: #101010;
  --gain: #00c805;
  --display: "Anybody", omedium, sans-serif;
  --sans: hregular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  background: #111;
  color: var(--silver);
  font-family: var(--sans);
  font-feature-settings: "dlig" on, "salt" on;
  min-height: 100%;
  overflow-x: clip;
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.outter_layer {
  padding: 10px;
}
.wrap {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 15px;
}

.secondary-navbar {
  left: 0;
  padding: 10px;
  position: absolute;
  width: 100%;
  z-index: 999;
}
.innner-navbar {
  align-items: center;
  background: #0e0e0e80;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ffffff12;
  border-radius: 15px 15px 0 0;
  display: flex;
  gap: 65px;
  min-height: 76px;
  padding: 17px 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 28px;
  width: auto;
}
.brand-word {
  font-family: omedium, var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--silver);
  font-weight: 550;
}
.outer-side {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.inner-link {
  align-items: center;
  display: flex;
  gap: 46px;
}
.inner-link a {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: color 0.2s linear;
}
.inner-link a:hover,
.inner-link a.is-active {
  color: #dad9d9;
}
.outer-side .nav-start {
  background: #181818;
  border: 1px solid #464646;
  border-radius: 14px;
  color: #dad9d9;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s linear, border-color 0.2s linear;
}
.outer-side .nav-start:hover {
  background: #222;
  border-color: #dad9d9;
}
.btn-x {
  height: 42px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--silver);
  margin-left: 10px;
  padding: 0 12px;
  transition: border-color 0.2s linear, color 0.2s linear;
}
.btn-x:hover {
  border-color: #dad9d9;
  color: #fff;
}
.btn-x .x-handle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-cta {
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: var(--silver);
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--silver);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}
.hamburger b {
  font-size: 14px;
  font-weight: 500;
}
.phone-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #0c0c0c;
  padding: 28px 22px;
  flex-direction: column;
  gap: 28px;
}
.phone-menu.is-open {
  display: flex;
}
.phone-menu a {
  font-family: omedium, var(--display);
  font-size: 28px;
  font-weight: 550;
  color: var(--silver);
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-main {
  background: linear-gradient(180deg, #0000, #000);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  min-height: min(100vh, 920px);
}
.main-banner-video,
#stormCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  mix-blend-mode: luminosity;
  transform: scaleX(-1);
  z-index: 0;
  opacity: 0.55;
}
.banner-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, transparent, #000);
}
.inner-banner {
  align-items: center;
  display: flex;
  gap: 80px;
  padding: 200px 40px 50px;
  position: relative;
  z-index: 2;
}
.inner-banner .left-side {
  flex-shrink: 0;
  width: 600px;
  max-width: 100%;
  position: relative;
}
.inner-banner .left-side h2 {
  color: #dad9d9;
  font-family: oregular, var(--display);
  font-size: 46px;
  font-weight: 550;
  line-height: 120%;
  text-transform: uppercase;
}
.inner-banner .left-side h3 {
  color: #dad9d9;
  font-family: omedium, var(--display);
  font-size: 18px;
  font-weight: 550;
  line-height: 130%;
  padding: 16px 0 20px;
  text-transform: uppercase;
}
.inner-banner .left-side p {
  color: #9e9d9d;
  font-family: hregular, var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  max-width: 512px;
  padding-bottom: 36px;
}
.buttons-both {
  align-items: center;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.buttons-both .start {
  background: #e5fe00;
  border: none;
  color: #111;
  border-radius: 12px;
  font-family: hregular, var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  padding: 18px 24px;
  transition: transform 0.2s ease, background 0.2s linear;
}
.buttons-both .start:hover {
  background: #f3ff55;
  transform: translateY(-1px);
}
.buttons-both .explore {
  background: #191919;
  border: 1px solid #dad9d9;
  color: #dad9d9;
  border-radius: 12px;
  font-size: 14px;
  padding: 18px 24px;
  transition: background 0.2s linear;
}
.buttons-both .explore:hover {
  background: #222;
}
.right-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.right-visual img {
  width: min(517px, 100%);
  mix-blend-mode: screen;
  animation: floaty 5.5s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 68% 78% at 50% 48%, #000 46%, transparent 74%);
  mask-image: radial-gradient(ellipse 68% 78% at 50% 48%, #000 46%, transparent 74%);
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.main-tvl {
  background: #0b0b0b;
  padding: 90px 0;
}
.main-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.one-card,
.innercardone,
.innercardtwo,
.innercardthree,
.innercardfour {
  backdrop-filter: blur(10px);
  background: #101010;
  border-radius: 20px;
  padding: 24px;
  transition: background 0.3s linear;
}
.one-card:hover,
.innercardone:hover,
.innercardtwo:hover,
.innercardthree:hover,
.innercardfour:hover {
  background: #181818;
}
.one-card h2,
.four-cards h2 {
  align-items: center;
  border-bottom: 2px solid #232323;
  color: #9e9d9d;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  line-height: 100%;
  margin-bottom: 36px;
  padding-bottom: 18px;
}
.one-card h2 {
  margin-bottom: 48px;
}
.yellowcolor {
  width: 14px;
  height: 3px;
  background: #e5fe00;
  display: inline-block;
  border-radius: 40px;
  flex-shrink: 0;
}
.innercardone .yellowcolor {
  background: #8559e3;
  height: 22px;
  width: 3px;
}
.innercardtwo .yellowcolor {
  background: #12aaff;
}
.innercardthree .yellowcolor {
  background: #99ff80;
}
.innercardfour .yellowcolor {
  background: #fe5c32;
}
.one-card h3 {
  color: #dad9d9;
  font-family: hbold, var(--sans);
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  padding-bottom: 10px;
}
.one-card h3.status,
.four-cards h3.status {
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.04em;
}
.four-cards h4 a,
.ca-copy-link {
  color: #e5fe00;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.one-card h3.ca-full {
  font-size: clamp(16px, 2.1vw, 26px);
  word-break: break-all;
  letter-spacing: 0;
  line-height: 1.25;
}
.ca-chip {
  cursor: pointer;
}
.ca-break {
  word-break: break-all;
  font-size: 16px !important;
  letter-spacing: 0;
}
.one-card h4 {
  align-items: center;
  color: #e5fe00;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 8px;
}
.four-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.four-cards h2 {
  border-bottom: 1px solid #232323;
  font-size: 14px;
  margin-bottom: 26px;
}
.four-cards h3 {
  color: #dad9d9;
  font-family: hbold, var(--sans);
  font-size: 31px;
  font-weight: 700;
}
.four-cards h4 {
  align-items: center;
  color: #e5fe00;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
}
.one-card h4.flat,
.four-cards h4.flat {
  color: #7a7a7a;
}
.innercardone h4 {
  color: #8559e3;
}
.inner-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rain-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
  color: #9e9d9d;
  font-size: 18px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--silver);
}

.main-stack {
  background: #0b0b0b;
  padding: 90px 0;
}
.inner-stack {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.left-sidestack h2 {
  color: #dad9d9;
  font-family: omedium, var(--display);
  font-size: 40px;
  font-weight: 550;
  line-height: 120%;
}
.left-sidestack p {
  color: #9e9d9d;
  font-size: 18px;
  line-height: 120%;
  padding-top: 30px;
  max-width: 520px;
}
.left-sidestack img {
  margin: 69px auto 0;
  border-radius: 24px;
  max-width: 420px;
  mix-blend-mode: screen;
}
.stackcards {
  align-items: center;
  backdrop-filter: blur(10px);
  background: #101010;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  padding: 30px 24px;
  transition: background 0.3s linear, transform 0.25s ease;
}
.stackcards:hover {
  background: #181818;
  transform: translateX(4px);
}
.stackcards:last-child {
  margin-bottom: 0;
}
.stack-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #161616;
}
.stackcards h3 {
  color: #dad9d9;
  font-family: hbold, var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}
.stackcards p,
.stackcards h4 {
  color: #9e9d9d;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  padding-top: 14px;
}

.keyyinner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.keyyinner h1 {
  color: #dad9d9;
  font-family: omedium, var(--display);
  font-size: 40px;
  font-weight: 550;
  line-height: 120%;
}
.keyyinner p {
  color: #9e9d9d;
  font-size: 18px;
  line-height: 120%;
  padding-top: 30px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cardone {
  background: #181818;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  padding: 28px 22px 32px;
  transition: background 0.3s linear, transform 0.25s ease;
}
.cardone:hover {
  background: #1f1f1f;
  transform: translateY(-4px);
}
.cardone h4 {
  background: #e5fe0033;
  border-radius: 4px;
  color: #e5fe00;
  display: inline-flex;
  font-size: 12px;
  padding: 7px 10px;
  text-transform: uppercase;
}
.cardone:nth-child(2) h4 {
  background: #8559e333;
  color: #8559e3;
}
.cardone:nth-child(3) h4 {
  background: #12aaff33;
  color: #12aaff;
}
.cardone:nth-child(4) h4 {
  background: #99ff8033;
  color: #99ff80;
}
.cardone:nth-child(5) h4 {
  background: #fe5c3233;
  color: #fe5c32;
}
.cardone h5 {
  color: #dad9d9;
  font-family: hbold, var(--sans);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 0 16px;
}
.cardone h6 {
  color: #9e9d9d;
  font-size: 16px;
  line-height: 120%;
}

.Main_faqs {
  background: #0b0b0b;
  padding: 90px 0;
}
.inner_faqs .right_side {
  margin: 0 auto;
  max-width: 976px;
  width: 100%;
}
.faq-head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-head h2 {
  color: #dad9d9;
  font-family: omedium, var(--display);
  font-size: 40px;
  font-weight: 550;
  line-height: 120%;
}
.faq-head p {
  color: #9e9d9d;
  font-size: 18px;
  padding-top: 18px;
}
.faq-item {
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #101010;
}
.faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  min-height: 107px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--silver);
  font-size: 18px;
  font-family: hbold, var(--sans);
}
.faq-btn .n {
  color: var(--lime);
  margin-right: 10px;
  font-family: omedium, var(--display);
}
.faq-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-btn svg {
  transform: rotate(180deg);
}
.faq-body {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 150%;
  border-top: 1px solid #ffffff1a;
  padding-top: 16px;
}
.faq-item.is-open .faq-body {
  display: block;
}

.main-storm {
  background: #e6ff00;
  border-radius: 15px;
  overflow: hidden;
  padding: 39px 70px 0;
  position: relative;
  z-index: 9;
  margin: 0 10px 10px;
}
.storm-outter {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  align-items: center;
}
.leftsidestorm h2 {
  color: #212121;
  font-family: osemibold, var(--display);
  font-size: 54px;
  font-weight: 560;
  line-height: 120%;
}
.leftsidestorm p {
  color: #212121;
  font-size: 20px;
  line-height: 120%;
  padding: 40px 0 60px;
  max-width: 520px;
}
.bothbuttonns {
  align-items: center;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.bothbuttonns .apply {
  background: #111;
  border: none;
  border-radius: 12px;
  color: #e5fe00;
  font-size: 16px;
  padding: 18px 37px;
}
.bothbuttonns .explore {
  background: transparent;
  border: 1px solid #111;
  border-radius: 12px;
  color: #111;
  font-size: 16px;
  padding: 18px 37px;
}
.imgcards {
  transform: scale(1.15);
  width: 100%;
  mix-blend-mode: multiply;
  animation: floaty 6s ease-in-out infinite;
}

.footer {
  border-top: 1px solid #ffffff12;
  padding: 64px 0 28px;
  background: #0a0a0a;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h3.brand-line {
  font-family: omedium, var(--display);
  font-size: 18px;
  margin: 16px 0 10px;
}
.footer .tiny {
  color: var(--muted);
  font-size: 14px;
  line-height: 140%;
  max-width: 280px;
}
.built-on {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--dim);
  font-size: 13px;
  flex-wrap: wrap;
}
.footer h4 {
  color: var(--silver);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a,
.footer-col button.linkish {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dim);
  font-size: 15px;
  margin-bottom: 12px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}
.footer-col a:hover,
.footer-col button.linkish:hover {
  color: var(--silver);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid #ffffff12;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--dim);
  font-size: 13px;
  flex-wrap: wrap;
}
.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 10px 14px;
  background: #101010;
  font-size: 13px;
  margin-top: 18px;
}
.ca-chip b {
  color: var(--lime);
  letter-spacing: 0.08em;
}

.page-hero {
  padding: 160px 40px 50px;
}
.page-hero h1 {
  font-family: omedium, var(--display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 550;
  line-height: 115%;
  max-width: 820px;
}
.page-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  line-height: 145%;
}
.kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 15px 80px;
  max-width: 1370px;
  margin: 0 auto;
}
.market-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s linear, transform 0.25s ease;
}
.market-card:hover {
  background: #181818;
  transform: translateY(-3px);
}
.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  background: #161616;
  color: var(--lime);
}
.market-card h3 {
  font-size: 28px;
  font-family: omedium, var(--display);
  font-weight: 550;
  margin-top: 18px;
}
.market-card p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 145%;
}
.desk {
  background: #111;
  border-radius: 16px;
  padding: 18px;
}
.desk-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.live {
  background: #173;
  color: var(--mint);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}
.chart {
  height: 140px;
}
.chart svg {
  width: 100%;
  height: 100%;
}
.legs {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.leg {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
}
.leg.yes {
  background: var(--lime);
  color: #111;
}
.leg.mid {
  background: var(--mint);
  color: #111;
}
.leg.no {
  background: var(--purple);
  color: #fff;
}
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.j-card {
  background: var(--lime);
  color: #111;
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 220px;
}
.j-card:nth-child(2) {
  background: var(--mint);
}
.j-card:nth-child(3) {
  background: var(--silver);
}
.j-card .step {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.j-card h3 {
  margin-top: 28px;
  font-size: 24px;
  font-family: omedium, var(--display);
}
.j-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 140%;
}
.liq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.liq-card,
.panel,
.token-box {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
}
.liq-card .line {
  width: 42px;
  height: 3px;
  margin-bottom: 16px;
}
.liq-card .line.y {
  background: var(--lime);
}
.liq-card .line.g {
  background: var(--gain);
}
.liq-card .line.p {
  background: var(--purple);
}
.liq-card .val {
  font-family: omedium, var(--display);
  font-size: 32px;
  margin-top: 12px;
}
.rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.rows div {
  background: #161616;
  border-radius: 14px;
  padding: 16px;
}
.rows span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.rows b {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 0 15px 80px;
  max-width: 1370px;
  margin: 0 auto;
}
.about-copy h2 {
  font-family: omedium, var(--display);
  font-size: 36px;
  margin-bottom: 16px;
}
.about-copy p {
  color: var(--muted);
  line-height: 155%;
  margin-bottom: 14px;
}
.mascot {
  mix-blend-mode: screen;
  border-radius: 24px;
}
.fee-map {
  background: var(--card);
  border-radius: 20px;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 1370px;
  margin: 0 auto 80px;
}
.fee-map .mid {
  width: 140px;
}
.fee-item {
  margin: 18px 0;
}
.fee-item b {
  display: block;
  font-size: 28px;
  font-family: omedium, var(--display);
}
.fee-item span {
  color: var(--muted);
  font-size: 14px;
}
.token-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 160px 40px 50px;
  max-width: 1370px;
  margin: 0 auto;
}
.token-box h2 {
  font-family: omedium, var(--display);
  font-size: 36px;
}
.token-box p {
  color: var(--muted);
  margin: 14px 0 24px;
  line-height: 145%;
}
.ca-big {
  border: 1px dashed #333;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ca-big code {
  font-size: 18px;
  color: var(--lime);
  letter-spacing: 0.12em;
}
.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 15px 80px;
}
.swatch {
  border-radius: 16px;
  overflow: hidden;
  background: #151515;
}
.swatch .chip {
  height: 92px;
}
.swatch figcaption {
  padding: 12px 14px 16px;
  font-size: 13px;
}
.swatch code {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.section-pad {
  padding: 40px 15px 80px;
  max-width: 1370px;
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-lime {
  background: #e5fe00;
  color: #111;
}
.btn-ghost {
  background: #191919;
  border-color: #dad9d9;
  color: #dad9d9;
}
.btn-sm {
  padding: 14px 18px;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--lime);
  color: #111;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 90;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .inner-link {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .nav-cta .nav-start {
    display: none;
  }
  .btn-x .x-handle {
    display: none;
  }
  .innner-navbar {
    justify-content: space-between;
    gap: 12px;
  }
  .inner-banner {
    flex-direction: column;
    gap: 30px;
    padding: 140px 20px 40px;
  }
  .inner-banner .left-side {
    width: 100%;
  }
  .inner-banner .left-side h2 {
    font-size: 28px;
    text-align: center;
  }
  .inner-banner .left-side h3,
  .inner-banner .left-side p {
    text-align: center;
  }
  .buttons-both {
    justify-content: center;
  }
  .main-cards,
  .four-cards,
  .inner-stack,
  .storm-outter,
  .about-grid,
  .footer-top,
  .token-hero,
  .why-grid,
  .journey,
  .liq-grid,
  .market-grid,
  .rows,
  .palette,
  .fee-map {
    grid-template-columns: 1fr;
  }
  .one-card h2 {
    margin-bottom: 36px;
  }
  .one-card h3 {
    font-size: 40px;
  }
  .leftsidestorm h2 {
    font-size: 30px;
    text-align: center;
  }
  .leftsidestorm p {
    text-align: center;
    padding: 24px 0 28px;
  }
  .bothbuttonns {
    justify-content: center;
  }
  .main-storm {
    padding: 32px 18px 0;
  }
  .imgcards {
    transform: none;
    mix-blend-mode: multiply;
  }
}
@media (max-width: 720px) {
  .why-grid,
  .journey,
  .liq-grid {
    grid-template-columns: 1fr;
  }
}
