:root {
  --bg: #050b13;
  --bg-2: #07111d;
  --surface: #0b1624;
  --surface-2: #101d2d;
  --surface-3: #132336;

  --text: #f7f9fc;
  --muted: #8fa3ba;
  --muted-2: #66798f;

  --blue: #0b7cff;
  --blue-2: #1da1ff;
  --cyan: #27d7ff;

  --border: rgba(116, 167, 219, 0.18);
  --border-strong: rgba(60, 155, 255, 0.34);

  --shadow-blue:
    0 0 25px rgba(11, 124, 255, 0.18),
    0 0 60px rgba(11, 124, 255, 0.08);

  --max-width: 1380px;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(11, 124, 255, 0.11),
      transparent 32%
    ),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  padding: 18px 0;

  background:
    linear-gradient(
      to bottom,
      rgba(4, 11, 20, 0.94),
      rgba(4, 11, 20, 0.84)
    );

  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(96%, 1500px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 22px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(11, 26, 43, 0.94),
      rgba(7, 17, 30, 0.91)
    );

  box-shadow: var(--shadow-blue);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 245px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.nav a {
  position: relative;

  color: #b5c3d3;

  font-size: 0.92rem;
  font-weight: 650;

  transition: color 0.2s ease;
}

.nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--cyan)
    );

  transition: width 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button {
  min-height: 44px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-strong);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.025);

  color: #ffffff;

  font-size: 0.86rem;
  font-weight: 750;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.05);

  border-color: rgba(59, 161, 255, 0.7);
}

.nav-button.primary {
  background:
    linear-gradient(
      120deg,
      #056cff,
      #0d8cff
    );

  border-color: rgba(50, 166, 255, 0.8);

  box-shadow:
    0 0 18px rgba(0, 124, 255, 0.35);
}

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);
}

.menu-button span {
  display: block;

  width: 18px;
  height: 2px;

  margin: 4px auto;

  background: #ffffff;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;

  padding:
    clamp(85px, 10vw, 145px)
    0
    40px;

  background:
    linear-gradient(
      180deg,
      rgba(7, 18, 31, 0.96),
      rgba(5, 11, 19, 0.98)
    );
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(52, 124, 195, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(52, 124, 195, 0.035) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 75%,
      transparent
    );
}

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;
}

.hero-glow-one {
  width: 460px;
  height: 460px;

  right: 5%;
  top: 12%;

  background: rgba(0, 115, 255, 0.13);
}

.hero-glow-two {
  width: 300px;
  height: 300px;

  left: 10%;
  bottom: 0;

  background: rgba(0, 195, 255, 0.06);
}

.hero-layout {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, 0.93fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.network-badge {
  width: max-content;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 8px 13px;

  border: 1px solid rgba(80, 154, 232, 0.35);
  border-radius: 999px;

  background: rgba(6, 18, 31, 0.74);

  color: #c6d6e7;

  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.network-badge strong {
  color: #48a5ff;
}

.network-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #f3ba2f;

  box-shadow: 0 0 14px rgba(243, 186, 47, 0.7);
}

.hero-brand {
  margin-top: 24px;

  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.hero-brand h1 {
  font-size:
    clamp(
      4rem,
      8vw,
      8.6rem
    );

  line-height: 0.9;

  letter-spacing: -0.065em;
}

.hero-f {
  position: relative;

  width: clamp(76px, 9vw, 124px);
  height: clamp(116px, 13vw, 170px);

  flex: 0 0 auto;
}

.hero-f span {
  position: absolute;
  left: 0;

  display: block;

  background:
    linear-gradient(
      135deg,
      #075cff,
      #0d83ff 55%,
      #28d7ff
    );

  box-shadow:
    0 0 25px rgba(0, 126, 255, 0.24);
}

.f-top {
  top: 0;

  width: 100%;
  height: 27%;

  clip-path:
    polygon(
      20% 0,
      100% 0,
      81% 100%,
      0 100%
    );
}

.f-mid {
  top: 36%;

  width: 82%;
  height: 25%;

  clip-path:
    polygon(
      17% 0,
      100% 0,
      78% 100%,
      0 100%
    );
}

.f-bottom {
  top: 58%;

  width: 34%;
  height: 42%;

  clip-path:
    polygon(
      0 0,
      100% 18%,
      44% 100%,
      0 100%
    );

  background:
    linear-gradient(
      145deg,
      #0075ff,
      #16cdff
    ) !important;
}

.hero-tagline {
  margin-top: 30px;

  font-size:
    clamp(
      1.65rem,
      3.2vw,
      3.3rem
    );

  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-tagline span {
  color: #28baff;
  display: inline-block;
  white-space: nowrap;
}

.hero-description {
  max-width: 730px;

  margin-top: 26px;

  color: #9db0c5;

  font-size:
    clamp(
      1rem,
      1.35vw,
      1.2rem
    );

  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  font-weight: 750;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;

  background:
    linear-gradient(
      120deg,
      #076cff,
      #079dff
    );

  border: 1px solid rgba(89, 192, 255, 0.64);

  box-shadow:
    0 0 28px rgba(0, 123, 255, 0.25);
}

.button.primary:hover {
  box-shadow:
    0 0 38px rgba(0, 143, 255, 0.4);
}

.button.secondary {
  color: #ffffff;

  border: 1px solid var(--border-strong);

  background: rgba(255, 255, 255, 0.025);
}

.contract-box {
  max-width: 790px;

  margin-top: 32px;
  padding: 17px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  border: 1px solid var(--border-strong);
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(10, 25, 42, 0.88),
      rgba(5, 16, 29, 0.88)
    );
}

.contract-label {
  display: block;

  margin-bottom: 5px;

  color: #7890a9;

  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contract-box code {
  color: #dce9f7;

  font-size:
    clamp(
      0.72rem,
      1.1vw,
      0.94rem
    );

  overflow-wrap: anywhere;
}

.copy-button {
  flex: 0 0 auto;

  min-width: 68px;
  min-height: 38px;

  border: 1px solid var(--border-strong);
  border-radius: 8px;

  background: rgba(12, 121, 255, 0.08);

  color: #8ecbff;

  cursor: pointer;

  font-size: 0.78rem;
  font-weight: 750;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 560px;

  display: grid;
  place-items: center;
}

.visual-grid {
  position: absolute;
  inset: 40% -20% -30% -20%;

  opacity: 0.34;

  transform:
    perspective(700px)
    rotateX(66deg);

  transform-origin: center bottom;

  background-image:
    linear-gradient(
      rgba(30, 121, 221, 0.19) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(30, 121, 221, 0.19) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    radial-gradient(
      ellipse,
      black,
      transparent 70%
    );
}

.coin-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 150, 255, 0.24),
      rgba(0, 103, 255, 0.07) 46%,
      transparent 72%
    );

  filter: blur(18px);
}

.fid-coin {
  position: relative;
  z-index: 5;

  width:
    clamp(
      260px,
      32vw,
      430px
    );

  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 37% 28%,
      #193a62,
      #0b1d35 42%,
      #061326 70%
    );

  border:
    clamp(10px, 1.25vw, 17px)
    solid
    #092f5c;

  box-shadow:
    0 0 0 3px rgba(47, 169, 255, 0.74),
    0 0 0 9px rgba(2, 30, 59, 0.94),
    0 0 35px rgba(0, 120, 255, 0.55),
    0 0 95px rgba(0, 116, 255, 0.28),
    inset 0 0 45px rgba(0, 109, 255, 0.2);

  transform:
    rotate(-8deg)
    perspective(900px)
    rotateY(-8deg);
}

.coin-inner {
  width: 77%;
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 2px solid rgba(46, 177, 255, 0.5);

  background:
    radial-gradient(
      circle,
      rgba(9, 39, 70, 0.92),
      rgba(5, 18, 36, 0.96)
    );

  box-shadow:
    inset 0 0 28px rgba(0, 142, 255, 0.16);
}

.coin-f {
  position: relative;

  width: 47%;
  height: 62%;
}

.coin-f span {
  position: absolute;
  left: 0;

  display: block;

  background:
    linear-gradient(
      135deg,
      #0874ff,
      #19d8ff
    );

  filter:
    drop-shadow(
      0 0 10px rgba(0, 166, 255, 0.5)
    );
}

.coin-f span:nth-child(1) {
  top: 0;

  width: 100%;
  height: 27%;

  clip-path:
    polygon(
      20% 0,
      100% 0,
      80% 100%,
      0 100%
    );
}

.coin-f span:nth-child(2) {
  top: 35%;

  width: 82%;
  height: 25%;

  clip-path:
    polygon(
      18% 0,
      100% 0,
      76% 100%,
      0 100%
    );
}

.coin-f span:nth-child(3) {
  top: 57%;

  width: 35%;
  height: 43%;

  clip-path:
    polygon(
      0 0,
      100% 20%,
      42% 100%,
      0 100%
    );
}

.orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(39, 147, 255, 0.13);
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 620px;
  height: 620px;
}


/* STATS */

.stats-bar {
  position: relative;
  z-index: 10;

  margin-top: 80px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border: 1px solid var(--border);
  border-radius: 18px;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      rgba(8, 23, 39, 0.96),
      rgba(6, 17, 30, 0.96)
    );

  box-shadow: var(--shadow-blue);
}

.stat {
  min-height: 115px;

  padding: 22px;

  display: flex;
  align-items: center;
  gap: 15px;

  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  width: 45px;
  height: 45px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1px solid rgba(36, 151, 255, 0.4);

  background: rgba(0, 119, 255, 0.08);

  color: #25adff;

  font-weight: 800;
}

.stat span {
  display: block;

  color: #7489a0;

  font-size: 0.73rem;
}

.stat strong {
  display: block;

  margin-top: 3px;

  font-size: 0.95rem;
}

.stat small {
  display: block;

  margin-top: 2px;

  color: #72869c;

  font-size: 0.71rem;
}


/* GLOBAL SECTIONS */

.section {
  padding:
    clamp(
      85px,
      10vw,
      135px
    )
    0;

  border-top: 1px solid rgba(119, 169, 218, 0.1);
}

.section-dark {
  background:
    linear-gradient(
      180deg,
      rgba(9, 20, 33, 0.88),
      rgba(6, 13, 22, 0.96)
    );
}

.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  align-items: start;

  margin-bottom: 55px;
}

.section-number {
  color: #1f9cff;

  font-size: 0.85rem;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.section-kicker {
  color: #258ee8;

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.section-heading h2 {
  max-width: 950px;

  margin-top: 8px;

  font-size:
    clamp(
      2.1rem,
      4.5vw,
      4.25rem
    );

  line-height: 1.05;

  letter-spacing: -0.045em;
}


/* ABOUT */

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.lead-copy {
  color: #9cb0c6;

  font-size: 1.08rem;

  line-height: 1.9;
}

.lead-copy p + p {
  margin-top: 24px;
}

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

.info-card,
.allocation-card,
.vesting-card,
.verify-card,
.document-card {
  position: relative;

  border: 1px solid var(--border);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(16, 32, 51, 0.86),
      rgba(8, 21, 36, 0.9)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.info-card:hover,
.allocation-card:hover,
.vesting-card:hover,
.verify-card:hover,
.document-card:hover {
  transform: translateY(-3px);

  border-color: var(--border-strong);

  box-shadow:
    0 12px 38px rgba(0, 0, 0, 0.2);
}

.info-card {
  min-height: 175px;

  padding: 26px;
}

.card-number {
  color: #1d8cea;

  font-size: 0.72rem;
  font-weight: 800;
}

.info-card h3 {
  margin-top: 24px;

  font-size: 1.1rem;
}

.info-card p {
  margin-top: 9px;

  color: #8297ad;

  font-size: 0.9rem;
}


/* TOKENOMICS */

.supply-banner {
  margin-bottom: 30px;
  padding: 28px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;

  border: 1px solid var(--border-strong);
  border-radius: 16px;

  background:
    linear-gradient(
      120deg,
      rgba(6, 37, 69, 0.82),
      rgba(7, 20, 37, 0.91)
    );
}

.supply-banner span {
  display: block;

  color: #8297ad;

  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.supply-banner strong {
  display: inline-block;

  margin-top: 6px;

  font-size:
    clamp(
      2.4rem,
      5vw,
      4.4rem
    );

  line-height: 1;
}

.supply-banner small {
  margin-left: 8px;

  color: #23a8ff;

  font-weight: 800;
}

.supply-rule {
  display: flex;
  align-items: center;
  gap: 15px;

  color: #8ea1b6;

  font-size: 0.85rem;
}

.supply-rule span {
  width: 46px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #1b95ff,
      transparent
    );
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.allocation-card {
  min-height: 230px;

  padding: 24px;
}

.percentage {
  display: block;

  color: #1ea8ff;

  font-size: 2rem;
  font-weight: 850;
}

.allocation-card h3 {
  margin-top: 24px;

  font-size: 1rem;
}

.allocation-card strong {
  display: block;

  margin-top: 7px;

  color: #9cb0c6;

  font-size: 0.9rem;
}

.allocation-bar {
  width: 100%;
  height: 5px;

  margin-top: 30px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
}

.allocation-bar span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #086eff,
      #22d7ff
    );

  box-shadow:
    0 0 12px rgba(0, 155, 255, 0.55);
}

.notice {
  margin-top: 28px;
  padding: 20px 22px;

  border-left: 3px solid #158eff;

  background: rgba(8, 106, 216, 0.07);

  color: #8fa3b8;
}

.notice strong {
  color: #ffffff;
}


/* VESTING */

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

.vesting-card {
  padding: 28px;
}

.vesting-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.vesting-top span {
  color: #7d92a9;

  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.vesting-top h3 {
  margin-top: 7px;

  font-size: 1.4rem;
}

.vesting-top > strong {
  color: #20aaff;

  font-size: 2rem;
}

.vesting-data {
  margin-top: 28px;
  padding: 15px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vesting-data p {
  padding: 7px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.vesting-data span {
  color: #75899f;

  font-size: 0.82rem;
}

.vesting-data strong {
  color: #c9d8e7;

  font-size: 0.84rem;
}

.vesting-card > a {
  display: inline-block;

  margin-top: 22px;

  color: #3bbaff;

  font-size: 0.85rem;
  font-weight: 750;
}

.policy-box {
  margin-top: 24px;
  padding: 30px;

  border: 1px solid rgba(39, 143, 239, 0.22);
  border-radius: 14px;

  background: rgba(5, 100, 201, 0.055);
}

.policy-box h3 {
  font-size: 1.25rem;
}

.policy-box p {
  max-width: 950px;

  margin-top: 10px;

  color: #8297ad;
}


/* LIQUIDITY */

.liquidity-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.liquidity-main {
  padding: 34px;

  border: 1px solid var(--border-strong);
  border-radius: 18px;

  background:
    radial-gradient(
      circle at top right,
      rgba(0, 121, 255, 0.13),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(11, 30, 51, 0.95),
      rgba(7, 19, 33, 0.94)
    );
}

.pair-badge {
  width: max-content;

  padding: 8px 12px;

  display: flex;
  gap: 8px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  color: #8ea2b7;

  font-size: 0.78rem;
}

.pair-badge strong {
  color: #2db7ff;
}

.liquidity-main h3 {
  margin-top: 28px;

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.8rem
    );
}

.liquidity-main p {
  max-width: 600px;

  margin-top: 18px;

  color: #8fa4ba;

  line-height: 1.8;
}

.liquidity-links {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.liquidity-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.liquidity-data article {
  padding: 23px;

  border: 1px solid var(--border);
  border-radius: 14px;

  background:
    rgba(11, 27, 45, 0.7);
}

.liquidity-data article.wide {
  grid-column: 1 / -1;
}

.liquidity-data span {
  display: block;

  color: #73879d;

  font-size: 0.75rem;
}

.liquidity-data strong {
  display: block;

  margin-top: 8px;

  font-size: 1rem;
}

.liquidity-note {
  margin-top: 22px;

  color: #74899f;

  font-size: 0.86rem;
}


/* VERIFY */

.verify-section {
  position: relative;
}

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

.verify-card {
  min-height: 180px;

  padding: 24px;

  display: flex;
  flex-direction: column;
}

.verify-card > span {
  color: #2baeff;

  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.verify-card strong {
  margin-top: 25px;

  font-size: 1.05rem;
}

.verify-card small {
  margin-top: auto;
  padding-top: 24px;

  color: #758aa0;
}


/* DOCUMENTS */

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

.document-card {
  min-height: 180px;

  padding: 27px;

  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: start;
  gap: 18px;
}

.document-card > span {
  color: #178de9;

  font-size: 0.74rem;
  font-weight: 800;
}

.document-card h3 {
  font-size: 1.15rem;
}

.document-card p {
  margin-top: 8px;

  color: #7f94aa;

  font-size: 0.87rem;
}

.document-card > strong {
  color: #35b4ff;

  font-size: 1.3rem;
}


/* PRINCIPLE */

.principle-section {
  padding:
    clamp(
      90px,
      11vw,
      150px
    )
    0;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(0, 121, 255, 0.13),
      transparent 30%
    ),
    #050c15;
}

.principle-layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  align-items: center;
  gap: 70px;
}

.principle-mark {
  display: grid;
  place-items: center;
}

.large-f {
  width: 150px;
  height: 210px;
}

.principle-layout h2 {
  margin-top: 10px;

  font-size:
    clamp(
      2.4rem,
      5vw,
      5rem
    );

  line-height: 1.03;

  letter-spacing: -0.05em;
}

.principle-layout h2 span {
  display: block;

  color: #28b6ff;
}

.principle-layout p:last-child {
  max-width: 750px;

  margin-top: 24px;

  color: #8da1b7;

  font-size: 1rem;
  line-height: 1.85;
}


/* DISCLAIMER */

.disclaimer-section {
  padding: 80px 0;

  background: #040a11;
}

.disclaimer-box {
  padding: 35px;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.02);
}

.disclaimer-box span {
  color: #ffb73b;

  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.disclaimer-box h2 {
  margin-top: 8px;

  font-size: 1.6rem;
}

.disclaimer-box p {
  color: #8295aa;

  font-size: 0.88rem;
}

.disclaimer-box p + p {
  margin-top: 16px;
}


/* FOOTER */

.site-footer {
  padding: 60px 0 25px;

  background: #030810;

  border-top: 1px solid var(--border);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 50px;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  margin-top: 13px;

  color: #6e8298;

  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
}

.footer-links a {
  color: #889caf;

  font-size: 0.84rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contract {
  text-align: right;
}

.footer-contract span {
  display: block;

  color: #60748a;

  font-size: 0.72rem;
}

.footer-contract code {
  display: block;

  max-width: 430px;

  margin-top: 7px;
  margin-left: auto;

  color: #889db3;

  font-size: 0.75rem;

  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  color: #51677e;

  font-size: 0.72rem;
}


/* RESPONSIVE */

@media (max-width: 1220px) {

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    gap: 17px;
  }

  .nav-actions .nav-button:not(.primary) {
    display: none;
  }

  .tokenomics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(3) {
    border-right: 0;
  }

  .stat:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

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

}


@media (max-width: 980px) {

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 68px;

    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 200px;
    height: 48px;
  }

  .menu-button {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav {
    position: absolute;
    left: 2%;
    right: 2%;
    top: calc(100% + 4px);

    padding: 18px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: rgba(6, 17, 30, 0.98);

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 4px;
  }

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

  .hero-visual {
    min-height: 440px;
  }

  .about-layout,
  .liquidity-layout,
  .principle-layout,
  .disclaimer-box {
    grid-template-columns: 1fr;
  }

  .principle-mark {
    justify-content: start;
  }

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

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

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

  .footer-contract {
    text-align: left;
  }

  .footer-contract code {
    margin-left: 0;
  }

}


@media (max-width: 700px) {

  .hero {
    padding-top: 80px;
  }

  .hero-brand {
    gap: 14px;
  }

  .hero-f {
    width: 64px;
    height: 92px;
  }

  .hero-brand h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contract-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 350px;
  }

  .fid-coin {
    width: 270px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

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

  .stat:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-grid,
  .vesting-grid,
  .tokenomics-grid,
  .verify-grid,
  .liquidity-data {
    grid-template-columns: 1fr;
  }

  .supply-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .supply-rule {
    flex-wrap: wrap;
  }

  .liquidity-data article.wide {
    grid-column: auto;
  }

  .document-card {
    grid-template-columns: 30px 1fr;
  }

  .document-card > strong {
    display: none;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }

}


@media (max-width: 420px) {

  .brand img {
    width: 165px;
  }

  .nav-shell {
    padding: 0 14px;
  }

  .hero-brand h1 {
    font-size: 3.3rem;
  }

  .hero-f {
    width: 52px;
    height: 78px;
  }

}.hero-f-image {
  display: block;
  width: clamp(76px, 9vw, 124px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.coin-f-image {
  display: block;
  width: 47%;
  height: auto;
  object-fit: contain;
}