/* =========================================================
   GIGARAT — PREMIUM MAIN STYLE
   HTML + CSS + VANILLA JS
========================================================= */

:root {
  --bg: #050706;
  --bg-2: #070b08;
  --bg-3: #0a100c;

  --green: #b8ff16;
  --green-bright: #d5ff3d;
  --green-dark: #7cad08;

  --white: #f6f8f5;
  --muted: #929b94;
  --muted-light: #bcc5be;

  --border: rgba(184, 255, 22, 0.14);
  --border-strong: rgba(184, 255, 22, 0.28);
  --border-white: rgba(255, 255, 255, 0.08);

  --card: rgba(12, 18, 14, 0.72);
  --card-solid: #0b110d;

  --radius: 24px;
  --radius-small: 14px;

  --font-main: "DM Sans", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --nav-height: 88px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.5;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

::selection {
  background: var(--green);
  color: #050706;
}


/* =========================================================
   PAGE BACKGROUND
========================================================= */

.page-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(93, 145, 12, 0.10),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(93, 145, 12, 0.06),
      transparent 25%
    ),
    #050706;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.ambient-1 {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 100px;
  background: rgba(140, 200, 20, 0.08);
}

.ambient-2 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 520px;
  background: rgba(120, 180, 20, 0.045);
}

.ambient-3 {
  width: 300px;
  height: 300px;
  right: 20%;
  bottom: -150px;
  background: rgba(120, 200, 20, 0.04);
}

.grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-image:
    linear-gradient(
      rgba(184, 255, 22, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(184, 255, 22, 0.035) 1px,
      transparent 1px
    );
  background-size: 70px 70px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 85%
  );
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.section-container,
.nav-container,
.hero-container {
  width: min(1240px, calc(100% - 60px));
  margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;

  border-bottom: 1px solid transparent;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 7, 6, 0.78);
  border-bottom-color: rgba(184, 255, 22, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  overflow: hidden;
  flex-shrink: 0;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(184, 255, 22, 0.12),
      rgba(5, 7, 6, 0.95)
    );

  border: 1px solid rgba(184, 255, 22, 0.35);

  box-shadow:
    0 0 25px rgba(184, 255, 22, 0.08),
    inset 0 0 18px rgba(184, 255, 22, 0.04);
}

.rat-logo {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--green);
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  position: relative;

  color: #9da69f;

  font-size: 15px;
  font-weight: 600;

  padding: 31px 0;

  transition:
    color 0.25s ease;
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;

  height: 2px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  transform: scaleX(1);
}


/* =========================================================
   NAV BUY BUTTON
========================================================= */

.nav-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 142px;
  height: 56px;

  padding: 0 25px;

  border-radius: 16px;

  background: var(--green);
  color: #070906;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    0 10px 35px rgba(184, 255, 22, 0.10);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-buy:hover {
  transform: translateY(-2px);
  background: var(--green-bright);

  box-shadow:
    0 14px 40px rgba(184, 255, 22, 0.20);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-white);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  border-radius: 5px;

  background: var(--white);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: var(--nav-height);

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-container {
  min-height: calc(100vh - var(--nav-height));

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(480px, 0.95fr);

  align-items: center;

  gap: 40px;

  padding: 55px 0 85px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 690px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 26px;

  color: #c4ccc5;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1.8px;
}

.status-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 12px rgba(184, 255, 22, 0.65);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
  display: flex;
  flex-direction: column;

  margin: 0 0 20px;

  font-family: var(--font-display);

  line-height: 0.84;

  letter-spacing: -5px;
}

.title-white {
  color: var(--white);

  font-size: clamp(
    74px,
    9vw,
    128px
  );

  font-weight: 700;
}

.title-green {
  margin-top: 8px;

  color: var(--green);

  font-size: clamp(
    42px,
    5vw,
    68px
  );

  font-weight: 700;

  letter-spacing: -3px;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-heading {
  max-width: 670px;

  margin-bottom: 22px;

  font-family: var(--font-display);

  font-size: clamp(
    32px,
    4vw,
    54px
  );

  line-height: 1.05;

  letter-spacing: -2.5px;

  font-weight: 600;

  color: var(--white);
}

.hero-heading span {
  color: var(--green);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
  max-width: 590px;

  margin-bottom: 32px;

  color: var(--muted-light);

  font-size: 17px;

  line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 42px;
}

.btn {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 25px;

  border-radius: 16px;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: #060805;

  box-shadow:
    0 14px 38px rgba(184, 255, 22, 0.10);
}

.btn-primary:hover {
  transform: translateY(-3px);

  background: var(--green-bright);

  box-shadow:
    0 18px 48px rgba(184, 255, 22, 0.20);
}

.btn-secondary {
  color: var(--white);

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-3px);

  border-color: rgba(184, 255, 22, 0.30);

  background: rgba(184, 255, 22, 0.05);
}


/* =========================================================
   HERO META
========================================================= */

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;

  max-width: 680px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  color: #69736b;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.6px;
}

.meta-value {
  color: #c5cdc7;

  font-size: 13px;
  font-weight: 600;
}

.meta-divider {
  width: 1px;
  height: 30px;

  background: rgba(255, 255, 255, 0.10);
}

.status-online {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-online span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 9px rgba(184, 255, 22, 0.7);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;

  width: 100%;
  min-height: 650px;

  display: grid;
  place-items: center;

  isolation: isolate;
}


/* =========================================================
   MASCOT GLOW
========================================================= */

.mascot-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(184, 255, 22, 0.18) 0%,
      rgba(116, 170, 10, 0.08) 35%,
      transparent 70%
    );

  filter: blur(35px);

  z-index: -2;
}


/* =========================================================
   MASCOT RINGS
========================================================= */

.mascot-ring {
  position: absolute;

  border: 1px solid rgba(184, 255, 22, 0.10);

  border-radius: 50%;

  pointer-events: none;
}

.ring-1 {
  width: 590px;
  height: 590px;

  transform: rotate(-15deg);
}

.ring-2 {
  width: 690px;
  height: 690px;

  border-style: dashed;
  border-color: rgba(184, 255, 22, 0.055);

  transform: rotate(20deg);
}


/* =========================================================
   MASCOT CONTAINER
========================================================= */

.mascot-container {
  position: relative;

  width: min(570px, 100%);
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  z-index: 2;
}

.mascot-backdrop {
  position: absolute;

  width: 80%;
  height: 80%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(184, 255, 22, 0.10),
      rgba(6, 10, 7, 0.05) 55%,
      transparent 72%
    );

  box-shadow:
    inset 0 0 100px rgba(184, 255, 22, 0.035);
}

.hero-mascot {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  overflow: visible;

  filter:
    drop-shadow(
      0 0 24px rgba(184, 255, 22, 0.12)
    )
    drop-shadow(
      0 35px 65px rgba(0, 0, 0, 0.65)
    );
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 13px 16px;

  min-width: 145px;

  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(18, 27, 21, 0.92),
      rgba(7, 11, 8, 0.88)
    );

  border: 1px solid rgba(184, 255, 22, 0.16);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(14px);
}

.floating-card small {
  display: block;

  margin-bottom: 2px;

  color: #687169;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.4px;
}

.floating-card strong {
  display: block;

  color: var(--white);

  font-family: var(--font-display);

  font-size: 14px;
  font-weight: 700;
}

.floating-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 10px;

  background: rgba(184, 255, 22, 0.10);

  color: var(--green);

  font-family: var(--font-display);
  font-weight: 700;
}

.floating-card-top {
  top: 95px;
  right: -5px;
}

.floating-card-bottom {
  left: -12px;
  bottom: 110px;
}


/* =========================================================
   PULSE
========================================================= */

.pulse-indicator {
  width: 9px;
  height: 9px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 13px rgba(184, 255, 22, 0.7);
}


/* =========================================================
   ORBITS
========================================================= */

.orbit {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  border: 1px solid rgba(184, 255, 22, 0.07);
}

.orbit-one {
  width: 420px;
  height: 420px;
  border-top-color: rgba(184, 255, 22, 0.28);

  transform: rotate(-25deg);
}

.orbit-two {
  width: 500px;
  height: 500px;
  border-right-color: rgba(184, 255, 22, 0.18);

  transform: rotate(35deg);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
  position: absolute;

  bottom: 28px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 13px;

  color: #697269;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.6px;
}

.scroll-line {
  width: 45px;
  height: 1px;

  background: rgba(184, 255, 22, 0.35);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  position: relative;

  padding: 130px 0;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin: 0 auto 55px;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 16px;

  color: var(--green);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.section-heading h2 {
  margin-bottom: 18px;

  font-family: var(--font-display);

  font-size: clamp(
    38px,
    5vw,
    62px
  );

  line-height: 1.02;

  letter-spacing: -2.5px;
}

.section-heading h2 span {
  color: var(--green);
}

.section-heading p {
  color: var(--muted);

  font-size: 16px;

  line-height: 1.75;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin-top: 60px;
}

.feature-card {
  position: relative;

  min-height: 290px;

  padding: 30px;

  overflow: hidden;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(15, 22, 17, 0.85),
      rgba(8, 12, 9, 0.72)
    );

  border: 1px solid var(--border-white);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.feature-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -90px;
  right: -90px;

  border-radius: 50%;

  background: rgba(184, 255, 22, 0.05);

  filter: blur(25px);
}

.feature-card:hover {
  transform: translateY(-7px);

  border-color: rgba(184, 255, 22, 0.20);

  background:
    linear-gradient(
      145deg,
      rgba(17, 27, 19, 0.92),
      rgba(8, 13, 10, 0.80)
    );
}

.card-number {
  position: absolute;

  top: 26px;
  right: 28px;

  color: rgba(184, 255, 22, 0.35);

  font-family: var(--font-display);

  font-size: 12px;
  font-weight: 700;
}

.feature-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 35px;

  border-radius: 15px;

  color: var(--green);

  background: rgba(184, 255, 22, 0.07);

  border: 1px solid rgba(184, 255, 22, 0.12);
}

.feature-card h3 {
  margin-bottom: 12px;

  font-family: var(--font-display);

  font-size: 23px;
}

.feature-card p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   TOKEN
========================================================= */

.token-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.token-layout {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  align-items: center;

  gap: 80px;
}

.token-panel {
  overflow: hidden;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(14, 21, 17, 0.94),
      rgba(7, 11, 8, 0.90)
    );

  border: 1px solid var(--border-white);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.20);
}

.token-row {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 0 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.token-row span {
  color: #778078;

  font-size: 13px;
}

.token-row strong {
  color: var(--white);

  font-family: var(--font-display);

  font-size: 14px;
}

.green-text {
  color: var(--green) !important;
}

.token-contract {
  padding: 23px 25px;

  background: rgba(184, 255, 22, 0.025);
}

.contract-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 12px;
}

.contract-top > span:first-child {
  color: #707970;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.contract-status {
  color: var(--green);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1px;
}

.contract-value {
  display: flex;
  align-items: center;

  gap: 12px;

  min-height: 50px;

  padding: 6px 7px 6px 14px;

  border-radius: 12px;

  background: #060906;

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contract-value code {
  flex: 1;

  min-width: 0;

  overflow: hidden;

  color: #aeb7b0;

  font-family: monospace;

  font-size: 12px;

  text-overflow: ellipsis;
}

.contract-value button {
  flex-shrink: 0;

  padding: 10px 15px;

  border-radius: 9px;

  background: var(--green);

  color: #060805;

  font-size: 12px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.contract-value button:hover {
  transform: translateY(-1px);

  background: var(--green-bright);
}


/* =========================================================
   HOW TO BUY
========================================================= */

.buy-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.steps-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.step-card {
  padding: 32px;

  min-height: 250px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(14, 20, 16, 0.80),
      rgba(8, 12, 9, 0.70)
    );

  border: 1px solid var(--border-white);
}

.step-number {
  margin-bottom: 55px;

  color: var(--green);

  font-family: var(--font-display);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

.step-card h3 {
  margin-bottom: 10px;

  font-family: var(--font-display);

  font-size: 23px;
}

.step-card p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}

.center-button {
  display: flex;
  justify-content: center;

  margin-top: 45px;
}


/* =========================================================
   COMMUNITY
========================================================= */

.community-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.community-box {
  position: relative;

  min-height: 470px;

  display: flex;
  align-items: center;

  padding: 70px;

  overflow: hidden;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(184, 255, 22, 0.09),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 17, 0.95),
      rgba(7, 11, 8, 0.94)
    );

  border: 1px solid rgba(184, 255, 22, 0.14);
}

.community-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  right: 50px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background: rgba(184, 255, 22, 0.08);

  filter: blur(80px);
}

.community-content {
  position: relative;

  z-index: 3;

  max-width: 620px;
}

.community-content h2 {
  margin-bottom: 18px;

  font-family: var(--font-display);

  font-size: clamp(
    45px,
    6vw,
    72px
  );

  line-height: 1;

  letter-spacing: -3px;
}

.community-content h2 span {
  color: var(--green);
}

.community-content p {
  max-width: 550px;

  margin-bottom: 30px;

  color: var(--muted-light);

  font-size: 16px;

  line-height: 1.7;
}

.social-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.social-button {
  min-width: 145px;

  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 0 16px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.09);

  color: #d7ddd8;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.social-button:hover {
  transform: translateY(-3px);

  border-color: rgba(184, 255, 22, 0.25);

  background: rgba(184, 255, 22, 0.05);
}

.social-arrow {
  color: var(--green);

  font-size: 16px;
}

.community-mascot {
  position: absolute;

  right: 60px;
  bottom: -20px;

  width: 330px;

  opacity: 0.95;

  filter:
    drop-shadow(
      0 0 30px rgba(184, 255, 22, 0.13)
    );
}

.community-mascot svg {
  display: block;

  width: 100%;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  position: relative;

  padding: 145px 0;

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.final-cta-glow {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 500px;
  height: 500px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(184, 255, 22, 0.06);

  filter: blur(100px);

  pointer-events: none;
}

.final-content {
  position: relative;

  z-index: 2;

  text-align: center;
}

.final-content .section-eyebrow {
  margin-bottom: 20px;
}

.final-content h2 {
  margin-bottom: 18px;

  font-family: var(--font-display);

  font-size: clamp(
    48px,
    7vw,
    88px
  );

  line-height: 0.98;

  letter-spacing: -4px;
}

.final-content h2 span {
  color: var(--green);
}

.final-content p {
  margin-bottom: 32px;

  color: var(--muted);

  font-size: 17px;
}

.btn-large {
  min-width: 170px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  padding: 35px 0 25px;

  background: rgba(3, 5, 4, 0.60);
}

.footer-main {
  display: grid;

  grid-template-columns:
    1fr
    auto
    auto;

  align-items: center;

  gap: 45px;

  padding-bottom: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 12px;
}

.footer-logo {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  border-radius: 50%;

  overflow: hidden;
}

.footer-logo svg {
  display: block;

  width: 100%;
  height: 100%;
}

.footer-brand-name {
  font-family: var(--font-display);

  font-size: 18px;
  font-weight: 700;
}

.footer-brand-name span {
  color: var(--green);
}

.footer-tagline {
  color: #697169;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  align-items: center;

  gap: 25px;
}

.footer-links a {
  color: #7e887f;

  font-size: 12px;
  font-weight: 600;

  transition:
    color 0.2s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-social {
  display: flex;

  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.07);

  color: #9da59f;

  font-size: 10px;
  font-weight: 800;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--green);

  border-color: rgba(184, 255, 22, 0.25);

  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  color: #59615b;

  font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .section-container,
  .nav-container,
  .hero-container {
    width: min(100% - 40px, 900px);
  }

  .nav-links {
    gap: 24px;
  }

  .nav-buy {
    min-width: 125px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(380px, 0.8fr);

    gap: 10px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .mascot-container {
    width: 500px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

  .mascot-ring.ring-1 {
    width: 520px;
    height: 520px;
  }

  .mascot-ring.ring-2 {
    width: 590px;
    height: 590px;
  }

  .community-mascot {
    right: 15px;
    width: 290px;
  }

  .community-box {
    padding: 55px;
  }
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 760px) {

  :root {
    --nav-height: 76px;
  }

  .section-container,
  .nav-container,
  .hero-container {
    width: calc(100% - 32px);
  }

  .navbar {
    height: var(--nav-height);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;

    top: var(--nav-height);
    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 10px;

    border-radius: 18px;

    background:
      rgba(7, 11, 8, 0.97);

    border: 1px solid rgba(184, 255, 22, 0.12);

    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav-link {
    width: 100%;

    padding: 15px;

    border-radius: 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--green);

    background: rgba(184, 255, 22, 0.05);
  }

  .nav-buy {
    margin-top: 7px;

    width: 100%;
    height: 50px;
  }


  /* HERO */

  .hero {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;

    display: flex;
    flex-direction: column;

    padding: 70px 0 70px;

    gap: 20px;
  }

  .hero-content {
    width: 100%;

    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;

    margin-bottom: 22px;

    font-size: 10px;
  }

  .hero-title {
    align-items: center;

    letter-spacing: -3px;
  }

  .title-white {
    font-size: clamp(
      64px,
      18vw,
      100px
    );
  }

  .title-green {
    font-size: clamp(
      38px,
      11vw,
      55px
    );

    letter-spacing: -2px;
  }

  .hero-heading {
    margin: 0 auto 18px;

    font-size: clamp(
      29px,
      8vw,
      42px
    );

    letter-spacing: -1.8px;
  }

  .hero-description {
    margin: 0 auto 27px;

    font-size: 15px;
  }

  .hero-actions {
    justify-content: center;

    margin-bottom: 35px;
  }

  .btn {
    min-height: 53px;

    padding: 0 19px;

    font-size: 13px;
  }

  .hero-meta {
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
  }

  .meta-divider {
    height: 25px;
  }


  /* HERO MASCOT */

  .hero-visual {
    width: 100%;

    min-height: 470px;

    margin-top: 10px;
  }

  .mascot-container {
    width: min(
      500px,
      110vw
    );
  }

  .mascot-glow {
    width: 390px;
    height: 390px;
  }

  .mascot-ring.ring-1 {
    width: 420px;
    height: 420px;
  }

  .mascot-ring.ring-2 {
    width: 480px;
    height: 480px;
  }

  .orbit-one {
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .floating-card-top {
    top: 30px;
    right: 4px;
  }

  .floating-card-bottom {
    left: 4px;
    bottom: 40px;
  }

  .floating-card {
    min-width: 125px;

    padding: 10px 12px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
  }

  .scroll-indicator {
    display: none;
  }


  /* SECTIONS */

  .section {
    padding: 90px 0;
  }

  .section-heading h2 {
    font-size: 39px;

    letter-spacing: -1.8px;
  }


  /* ABOUT */

  .feature-grid {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .feature-card {
    min-height: auto;

    padding: 27px;
  }


  /* TOKEN */

  .token-layout {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .token-panel {
    width: 100%;
  }

  .token-row {
    min-height: 65px;

    padding: 0 17px;
  }

  .token-row span {
    font-size: 12px;
  }

  .token-row strong {
    font-size: 12px;

    text-align: right;
  }

  .token-contract {
    padding: 18px 15px;
  }

  .contract-value code {
    font-size: 10px;
  }


  /* STEPS */

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;

    padding: 27px;
  }

  .step-number {
    margin-bottom: 30px;
  }


  /* COMMUNITY */

  .community-box {
    min-height: 620px;

    display: block;

    padding: 40px 25px;

    border-radius: 25px;
  }

  .community-content {
    max-width: 100%;
  }

  .community-content h2 {
    font-size: 48px;

    letter-spacing: -2.5px;
  }

  .community-mascot {
    width: 260px;

    right: 50%;

    bottom: -30px;

    transform: translateX(50%);
  }

  .social-buttons {
    flex-direction: column;
  }

  .social-button {
    width: 100%;
  }


  /* FINAL CTA */

  .final-cta {
    padding: 100px 0;
  }

  .final-content h2 {
    font-size: 53px;

    letter-spacing: -2.5px;
  }


  /* FOOTER */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;

    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 8px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .section-container,
  .nav-container,
  .hero-container {
    width: calc(100% - 24px);
  }

  .hero-container {
    padding-top: 55px;
  }

  .hero-eyebrow {
    font-size: 8px;

    letter-spacing: 1.2px;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 10px;
  }

  .meta-value {
    font-size: 11px;
  }

  .meta-divider {
    height: 20px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .mascot-container {
    width: 105vw;
  }

  .mascot-ring.ring-1 {
    width: 350px;
    height: 350px;
  }

  .mascot-ring.ring-2 {
    width: 400px;
    height: 400px;
  }

  .floating-card {
    transform: scale(0.82);
  }

  .floating-card-top {
    right: -15px;
    top: 15px;
  }

  .floating-card-bottom {
    left: -15px;
    bottom: 20px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .community-box {
    min-height: 570px;

    padding: 32px 20px;
  }

  .community-content h2 {
    font-size: 42px;
  }

  .community-mascot {
    width: 230px;
  }

  .final-content h2 {
    font-size: 45px;
  }

  .contract-value {
    gap: 6px;
  }

  .contract-value button {
    padding: 9px 11px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}