/* ==========================================================================
   EBLA NETWORK - GLOBAL STYLESHEET
   ========================================================================== */

/* ── 1. VARIABLES & RESET ── */
:root {
  --fire1: #ff6b00;
  --fire2: #ff3d00;
  --gold: #ffb300;
  --bg: #080a0f;
  --bg2: #0d1018;
  --card: #111520;
  --border: #1e2436;
  --text: #cbd5e1;
  --white: #f1f5f9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.page {
  position: relative;
  z-index: 1;
}

/* ── 2. GLOBAL UTILITIES & ANIMATIONS ── */
.fire-text {
  background: linear-gradient(90deg, var(--gold), var(--fire1), var(--fire2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#emberCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── 3. BUTTONS & SHARED COMPONENTS ── */
.btn-primary,
.btn-p {
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--fire1), var(--fire2));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(255, 107, 0, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover,
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.55);
}

.btn-ghost,
.btn-g {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.btn-ghost:hover,
.btn-g:hover {
  border-color: var(--fire1);
  color: var(--fire1);
  transform: translateY(-3px);
}

.section-label,
.sec-lbl {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire1);
  margin-bottom: 0.8rem;
}

.section-title,
.sec-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
}

section.wrap {
  position: relative;
  z-index: 1;
  padding: 5rem 6%;
}
.max {
  max-width: 860px;
  margin: 0 auto;
}

.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
}

.cta-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons,
.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 0.8rem;
}

.faq-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
}
.faq-item .hi {
  color: var(--fire1);
  font-weight: 700;
}

/* ── 4. NAVBAR (Standardized) ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(8, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
  transition: background 0.3s;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.logo span {
  color: var(--fire1);
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li {
  position: relative;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--fire1);
}
.arrow {
  transition: transform 0.2s;
  font-size: 0.6rem;
}
.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  z-index: 200;
  transition:
    opacity 0.15s ease 0.25s,
    visibility 0s ease 0.4s;
}

.dropdown-inner {
  background: rgba(13, 16, 24, 0.98);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0;
  min-width: 190px;
}

.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 0.12s ease 0s,
    visibility 0s ease 0s;
}

.dropdown li {
  list-style: none;
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    color 0.2s,
    background 0.2s;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown a:hover {
  color: var(--fire1);
  background: rgba(255, 107, 0, 0.06);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--fire1), var(--fire2));
  color: #fff !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  transition:
    opacity 0.2s,
    transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8, 10, 15, 0.97);
  padding: 2rem 6%;
  border-bottom: 1px solid var(--border);
  z-index: 99;
}

#mobileMenu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

#mobileMenu a:hover {
  color: var(--fire1);
}

.mob-group {
  padding: 0.6rem 6% 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #334155;
}

/* ── 5. FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 6% 2rem;
  text-align: center;
}

.footer-cols {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.fcol-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.fcol a {
  display: block;
  color: #475569;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.fcol a:hover {
  color: var(--fire1);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.footer-logo span {
  color: var(--fire1);
}
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--fire1);
}
footer p,
.footer-bottom p {
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* ── INDEX.HTML ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 8rem 6% 6rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--fire1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
  animation: fadeDown 0.9s 0.1s ease both;
}
.sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--text);
  max-width: 680px;
  line-height: 1.8;
  margin: 0 auto 1.5rem;
  animation: fadeDown 1s 0.2s ease both;
}
.tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--fire1), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  animation: fadeDown 1.1s 0.3s ease both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeDown 1.2s 0.4s ease both;
}
#stats {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 6%;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--fire1), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
section {
  position: relative;
  z-index: 1;
  padding: 7rem 6%;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-header p {
  color: var(--text);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
#tech {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
}
.tech-card:hover {
  border-color: var(--fire1);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
}
.tech-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.tech-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.tech-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}
#story {
  background: var(--bg);
}
.story-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.story-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire1);
  border-radius: 12px;
  padding: 2.2rem 2.5rem;
}
.story-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.story-box p {
  color: var(--text);
  line-height: 1.8;
  font-size: 0.97rem;
}
#community {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.community-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.social-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--fire1);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
}
.social-card .si {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.social-card .x-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
}
.social-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.social-card p {
  font-size: 0.85rem;
  color: #64748b;
}
#name-breakdown {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 6rem 6%;
  overflow: hidden;
}
#name-breakdown::before {
  content: "EBLA";
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(10rem, 28vw, 22rem);
  font-weight: 900;
  color: rgba(255, 107, 0, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.name-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.name-top-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire1);
}
.acronym-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
}
.acronym-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.acronym-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire2), var(--fire1), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.acronym-card:hover {
  border-color: var(--fire1);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.12);
}
.acronym-card:hover::after {
  transform: scaleX(1);
}
.acronym-letter {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire1), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.acronym-word {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.white-stone-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 680px;
  position: relative;
}
.white-stone-box::before {
  content: "𒅁𒆷𒆠";
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  opacity: 0.55;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.white-stone-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.white-stone-box p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}
.white-stone-box .stone-accent {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT.HTML ── */
#about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10rem 6% 5rem;
}
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--fire1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}
#about-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  animation: fadeDown 0.9s 0.1s ease both;
}
#about-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  line-height: 1.8;
  animation: fadeDown 1s 0.2s ease both;
}
#white-stone {
  padding: 5rem 6%;
  background: var(--bg);
}
.stone-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.cuneiform-display {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.75;
  text-align: center;
  line-height: 1.3;
  filter: drop-shadow(0 0 24px rgba(255, 179, 0, 0.25));
}
.stone-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.stone-card::before {
  content: "🪨";
  position: absolute;
  font-size: 9rem;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}
.stone-card blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}
.stone-card blockquote em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stone-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
}
.stone-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--fire1), var(--gold));
  border-radius: 2px;
  margin: 1.4rem 0;
}
#acronym-recap {
  padding: 5rem 6%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.acronym-row {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.acronym-line {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2.5rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.acronym-line:last-child {
  border-bottom: none;
}
.acronym-line:hover {
  background: rgba(255, 107, 0, 0.04);
}
.al-letter {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--fire1), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 52px;
}
.al-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.al-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.al-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}
#origin {
  padding: 5rem 6%;
  background: var(--bg);
}
.origin-inner {
  max-width: 860px;
  margin: 0 auto;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-item {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.5rem 0;
  position: relative;
}
.tl-dot {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s;
}
.tl-item:hover .tl-dot {
  border-color: var(--fire1);
}
.tl- .tl-body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tl-body p {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.75;
}
#vision {
  padding: 5rem 6%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.vision-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.vision-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.vision-card:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.vision-card .vc-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.vision-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.vision-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
}
#contribute {
  padding: 6rem 6%;
  background: var(--bg);
  text-align: center;
}

/* ── AIRDROP.HTML ── */
#hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
#hero .sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.ratio-display {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 179, 0, 0.05);
  border: 1px solid rgba(255, 179, 0, 0.25);
  border-radius: 20px;
  padding: 2.5rem 3.5rem;
  margin-bottom: 1.5rem;
}
.ratio-side {
  text-align: center;
}
.ratio-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}
.ratio-side.tara .ratio-num {
  color: #64748b;
}
.ratio-side.ebla .ratio-num {
  background: linear-gradient(135deg, var(--gold), var(--fire1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ratio-sym {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.ratio-side.tara .ratio-sym {
  color: #475569;
}
.ratio-side.ebla .ratio-sym {
  color: var(--gold);
}
.ratio-arrow {
  font-size: 2.5rem;
  color: var(--fire1);
}
.ratio-note {
  font-size: 0.85rem;
  color: #475569;
  text-align: center;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.hbadge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid;
}
.hb-green {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.07);
}
.hb-gold {
  color: var(--gold);
  border-color: rgba(255, 179, 0, 0.3);
  background: rgba(255, 179, 0, 0.07);
}
.hb-fire {
  color: var(--fire1);
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.07);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.step-card:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.08);
  line-height: 1;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.step-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
}
.tl-item.active .tl-dot {
  border-color: var(--fire1);
  background: rgba(255, 107, 0, 0.1);
}
.tl-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.tl-item p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── COMMUNITY.HTML ── */
#hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.channel-card {
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1px solid transparent;
  display: block;
}
.channel-card:hover {
  transform: translateY(-6px);
}
.channel-card.discord {
  background: #23272a;
  border-color: #5865f2;
}
.channel-card.discord:hover {
  box-shadow: 0 16px 48px rgba(88, 101, 242, 0.25);
}
.channel-card.telegram {
  background: #17212b;
  border-color: #229ed9;
}
.channel-card.telegram:hover {
  box-shadow: 0 16px 48px rgba(34, 158, 217, 0.25);
}
.channel-card .ci {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.channel-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.channel-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.channel-card .ch-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ch-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.discord .ch-tag {
  background: rgba(88, 101, 242, 0.15);
  color: #818cf8;
  border: 1px solid rgba(88, 101, 242, 0.2);
}
.telegram .ch-tag {
  background: rgba(34, 158, 217, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(34, 158, 217, 0.2);
}
.channel-join {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 1.2rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.discord .channel-join {
  background: #5865f2;
  color: #fff;
}
.telegram .channel-join {
  background: #229ed9;
  color: #fff;
}
.channel-join:hover {
  opacity: 0.85;
}
.contrib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}
.ccard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.ccard:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.ccard .cc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
}
.ccard h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.ccard p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.val-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--fire1);
  border-radius: 12px;
  padding: 1.4rem;
}
.val-item .vi-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.val-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.val-item p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
}
.gh-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.gh-icon {
  font-size: 4rem;
  flex-shrink: 0;
}
.gh-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.gh-info p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}
.btn-gh {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-gh:hover {
  border-color: var(--fire1);
  background: rgba(255, 107, 0, 0.05);
}

/* ── DEVELOPERS.HTML ── */
.compat-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.compat-badge {
  padding: 0.4rem 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
}
.net-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.net-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.net-row:last-child {
  border-bottom: none;
}
.net-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  min-width: 140px;
}
.net-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
  color: var(--white);
  word-break: break-all;
}
.net-value.fire {
  color: var(--fire1);
}
.copy-btn {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--fire1);
  padding: 0.25rem 0.7rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: "JetBrains Mono", monospace;
  transition: background 0.2s;
}
.copy-btn:hover {
  background: rgba(255, 107, 0, 0.15);
}
.code-block {
  background: #0a0c14;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.code-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  font-family: "JetBrains Mono", monospace;
}
.code-copy {
  background: none;
  border: none;
  color: #475569;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  transition: color 0.2s;
}
.code-copy:hover {
  color: var(--fire1);
}
pre {
  padding: 1.2rem;
  overflow-x: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #94a3b8;
}
.kw {
  color: #c084fc;
}
.str {
  color: #4ade80;
}
.num {
  color: #60a5fa;
}
.com {
  color: #334155;
}
.prop {
  color: var(--gold);
}
.fn {
  color: var(--fire1);
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.step-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
}
.step-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #c084fc;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
}
.gas-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.gas-table th {
  padding: 0.8rem 1.2rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  border-bottom: 1px solid var(--border);
}
.gas-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(30, 36, 54, 0.5);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
}
.gas-table tr:last-child td {
  border-bottom: none;
}
.gas-table td:first-child {
  font-family: "Inter", sans-serif;
  color: var(--text);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.lcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  transition:
    border-color 0.25s,
    transform 0.25s;
  display: block;
}
.lcard:hover {
  border-color: var(--fire1);
  transform: translateY(-3px);
}
.lcard .lc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: block;
}
.lcard h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.lcard p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.55;
}
.lcard .lc-url {
  font-size: 0.75rem;
  color: var(--fire1);
  margin-top: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  word-break: break-all;
}

/* ── FAQ.HTML ── */
#faq-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10rem 6% 4rem;
}
#faq-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  animation: fadeDown 0.9s 0.1s ease both;
}
#faq-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  max-width: 520px;
  line-height: 1.8;
  animation: fadeDown 1s 0.2s ease both;
}
#faq- .faq-tabs::-webkit-scrollbar {
  display: none;
}
.faq-tab {
  padding: 0.85rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.faq-tab:hover {
  color: var(--text);
}
.faq-tab.active {
  color: var(--fire1);
  border-bottom-color: var(--fire1);
}
#faq-content {
  padding: 4rem 6% 6rem;
}
.faq-section {
  max-width: 900px;
  margin: 0 auto 4rem;
}
.faq-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-section-title .cat-icon {
  font-size: 1.2rem;
}
.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.3);
}
.faq-item.open {
  border-color: rgba(255, 107, 0, 0.5);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.faq-item.open .faq-q-text {
  color: var(--fire1);
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #475569;
  transition:
    transform 0.3s,
    background 0.25s,
    border-color 0.25s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--fire1);
  color: var(--fire1);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 1.6rem 1.4rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.85;
}
.faq-a-inner strong {
  color: var(--white);
}
.faq-a-inner .highlight {
  display: inline-block;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--fire1);
  font-size: 0.9rem;
  margin: 0 0.15rem;
}
.faq-a-inner .table-sm {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}
.faq-a-inner .table-sm th {
  text-align: left;
  color: #475569;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid var(--border);
}
.faq-a-inner .table-sm td {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid rgba(30, 36, 54, 0.5);
  color: var(--text);
}
.faq-a-inner .table-sm tr:last-child td {
  border-bottom: none;
}
#faq-cta {
  padding: 5rem 6%;
  text-align: center;
}

/* ── ROADMAP.HTML ── */
#roadmap-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10rem 6% 4rem;
}
#roadmap-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  animation: fadeDown 0.9s 0.1s ease both;
}
#roadmap-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 580px;
  line-height: 1.8;
  animation: fadeDown 1s 0.2s ease both;
}
#progress-bar-section {
  padding: 3rem 6%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.progress-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.progress-label span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.progress-label .pct {
  color: var(--fire1);
}
.progress-track {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--fire2), var(--fire1), var(--gold));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-phases {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.progress-phase {
  font-size: 0.72rem;
  color: #334155;
  font-weight: 600;
  text-align: center;
}
.progress-phase.done {
  color: var(--fire1);
}
#phases {
  padding: 6rem 6%;
  background: var(--bg);
}
.phases-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.phase-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 2rem;
  margin-bottom: 0;
  position: relative;
}
.phase-item:not(:last-child) .phase-left::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 72px;
  width: 2px;
  bottom: 0;
  background: var(--border);
}
.phase-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3rem;
}
.phase-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #334155;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.3s,
    color 0.3s,
    box-shadow 0.3s;
}
.phase-item.active .phase-num {
  border-color: var(--fire1);
  color: var(--fire1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
}
.phase-item.complete .phase-num {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--fire1);
  color: var(--gold);
}
.phase-right {
  padding-bottom: 3rem;
  padding-top: 0.2rem;
}
.phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.phase-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: #64748b;
  border: 1px solid var(--border);
}
.phase-item.active .phase-tag {
  color: var(--fire1);
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.1);
}
.phase-item.complete .phase-tag {
  color: var(--gold);
  border-color: rgba(255, 179, 0, 0.3);
  background: rgba(255, 179, 0, 0.07);
}
.phase-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e2436;
  border: 2px solid #334155;
  flex-shrink: 0;
}
.phase-item.active .phase-status-dot {
  background: var(--fire1);
  border-color: var(--fire1);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
  animation: pulse 1.8s infinite;
}
.phase-item.complete .phase-status-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.status-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
}
.phase-item.active .status-label {
  color: var(--fire1);
}
.phase-item.complete .status-label {
  color: var(--gold);
}
.phase-right h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.phase-right .phase-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.phase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: #64748b;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 107, 0, 0.9);
  }
}
#tokenomics {
  padding: 6rem 6%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.token-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.token-supply {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.token-supply::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire2), var(--fire1), var(--gold));
}
.token-supply .big-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.token-supply .big-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.token-supply .supply-note {
  font-size: 0.88rem;
  color: #475569;
  margin-top: 1rem;
}
.token-dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.dist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}
.dist-card .dist-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.dist-card .dist-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.dist-card .dist-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.dist-card .dist-note {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}
.yield-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}
.yield-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.yield-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.yield-row:last-child {
  border-bottom: none;
}
.yield-era {
  font-size: 0.82rem;
  color: #475569;
  min-width: 130px;
}
.yield-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.yield-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fire2), var(--gold));
}
.yield-pct {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fire1);
  min-width: 48px;
  text-align: right;
}
#specs {
  padding: 6rem 6%;
  background: var(--bg);
}
.specs-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.spec-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.spec-card:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.spec-card .spec-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}
.spec-card .spec-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.spec-card .spec-key {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.spec-card .spec-note {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.6;
}
#airdrop {
  padding: 5rem 6%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.airdrop-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.airdrop-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
}
.airdrop-box .airdrop-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.airdrop-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.airdrop-box p {
  color: var(--text);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 1.8rem;
}
.airdrop-ratio {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 179, 0, 0.07);
  border: 1px solid rgba(255, 179, 0, 0.25);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  margin-bottom: 1.5rem;
}
.airdrop-ratio .ratio-part {
  text-align: center;
}
.airdrop-ratio .ratio-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.airdrop-ratio .ratio-sym {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.airdrop-ratio .ratio-arrow {
  font-size: 1.4rem;
  color: var(--fire1);
}
.airdrop-note {
  font-size: 0.83rem;
  color: #475569;
}
#roadmap-cta {
  padding: 6rem 6%;
  text-align: center;
}
.phase-short {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.phase-long {
  display: none;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.phase-long.open {
  display: block;
  animation: fadeIn 0.3s ease;
}
.expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fire1);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.expand-btn:hover {
  opacity: 0.75;
}
.expand-btn .arr {
  transition: transform 0.3s;
  display: inline-block;
}
.expand-btn.open .arr {
  transform: rotate(90deg);
}

/* ── STAKING.HTML ── */
.stat-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-pill {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.6rem;
}
.stat-pill .sp-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--fire1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-pill .sp-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.step-row:hover {
  border-color: rgba(255, 107, 0, 0.3);
}
.step-content .tip {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fire1);
  padding: 0.2rem 0.6rem;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 4px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.info-card:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.info-card .ic-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
}
.info-card .ic-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.info-card .ic-key {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.info-card .ic-note {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.6;
}
.flow-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.flow-box {
  text-align: center;
  padding: 1rem;
}
.flow-box .fb-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.flow-box h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.flow-box p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
}
.flow-arrow-big {
  font-size: 1.5rem;
  color: #334155;
  text-align: center;
}
.vp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vp-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  border-bottom: 1px solid var(--border);
}
.vp-table td {
  padding: 0.8rem 1rem;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid rgba(30, 36, 54, 0.5);
}
.vp-table tr:last-child td {
  border-bottom: none;
}
.good {
  color: #22c55e;
  font-weight: 700;
}
.bad {
  color: #ef4444;
}

/* ── TECHNOLOGY.HTML ── */
.explain-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.explain-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.explain-side h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.explain-side p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
}
.explain-side.better {
  border-color: rgba(255, 107, 0, 0.35);
}
.explain-side .side-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.tag-old {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.2);
}
.tag-new {
  background: rgba(255, 107, 0, 0.1);
  color: var(--fire1);
  border: 1px solid rgba(255, 107, 0, 0.3);
}
.dag-svg-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.dag-svg-wrap svg {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.finality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
}
.fc-card.ebla {
  border-color: rgba(255, 107, 0, 0.4);
}
.fc-card .fc-chain {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.fc-card .fc-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.fc-card.ebla .fc-time {
  color: var(--fire1);
}
.fc-card .fc-type {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.fc-card.ebla .fc-type {
  color: var(--gold);
}
.fc-card .fc-note {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.55;
}
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.tech-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.25s;
}
.tech-pill:hover {
  border-color: var(--fire1);
}
.tech-pill .tp-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.tech-pill h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.tech-pill p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}
.changes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.changes-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  border-bottom: 1px solid var(--border);
}
.changes-table td {
  padding: 0.8rem 1rem;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(30, 36, 54, 0.5);
  color: var(--text);
}
.changes-table tr:last-child td {
  border-bottom: none;
}
.changes-table .ebla-val {
  color: var(--fire1);
  font-weight: 700;
}
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  text-align: center;
}
.pcard .pv {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--fire1);
  margin-bottom: 0.3rem;
}
.pcard .pk {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── VALIDATORS.HTML ── */
.req-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.req-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.req-badge span {
  color: var(--fire1);
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.rcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.rcard:hover {
  border-color: var(--fire1);
  transform: translateY(-4px);
}
.rcard .ri {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  display: block;
}
.rcard .rv {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.rcard .rk {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.rcard .rn {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.6;
}
.lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.lifecycle::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--fire1), var(--gold));
  z-index: 0;
}
.lc-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lc-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: border-color 0.3s;
}
.lc-item:hover .lc-dot {
  border-color: var(--fire1);
}
.lc-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.lc-item p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  padding: 0 0.5rem;
}
.penalty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.pcard.warn {
  border-left-color: #eab308;
}
.pcard.danger {
  border-left-color: #ef4444;
}
.pcard h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pcard p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.7;
}
.pcard .trigger {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
}
.hw-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.hw-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  border-bottom: 1px solid var(--border);
}
.hw-table td {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(30, 36, 54, 0.5);
  color: var(--text);
}
.hw-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================================================== */

/* ── GLOBAL MOBILE ADJUSTMENTS ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-title,
  .sec-title {
    font-size: 2rem;
  }
}

@media (max-width: 960px) {
  /* index.html */
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* index.html */
  .acronym-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .white-stone-box {
    padding: 2rem 1.5rem;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* about.html */
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .stone-card {
    padding: 2rem 1.8rem;
  }
  .acronym-line {
    padding: 1.4rem 1.5rem;
    gap: 1.2rem;
  }
  .al-letter {
    font-size: 2.2rem;
    min-width: 38px;
  }
  /* faq.html */
  #faq-nav {
    top: 68px;
  }
  /* roadmap.html */
  .token-dist-grid {
    grid-template-columns: 1fr;
  }
  .phase-item {
    grid-template-columns: 52px 1fr;
    gap: 0 1.2rem;
  }
  .phase-num {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
  }
  .phase-item:not(:last-child) .phase-left::after {
    left: 25px;
    top: 60px;
  }
  .airdrop-ratio {
    flex-direction: column;
    gap: 0.8rem;
  }
  .yield-era {
    min-width: 100px;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  /* index.html */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  /* airdrop.html */
  .ratio-display {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
  }
  /* community.html */
  .channel-grid {
    grid-template-columns: 1fr;
  }
  /* developers.html */
  .net-row {
    flex-direction: column;
    align-items: flex-start;
  }
  /* staking.html */
  .flow-visual {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .flow-arrow-big {
    transform: rotate(90deg);
  }
  /* validators.html */
  .penalty-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  /* technology.html */
  .explain-block {
    grid-template-columns: 1fr;
  }
  .finality-grid {
    grid-template-columns: 1fr;
  }
  /* validators.html */
  .lifecycle {
    grid-template-columns: 1fr 1fr;
  }
  .lifecycle::before {
    display: none;
  }
}

@media (max-width: 480px) {
  /* validators.html */
  .lifecycle {
    grid-template-columns: 1fr;
  }
}
