/* ============================================================
   $HORMUZ — The Flow That Cannot Be Stopped
   styles.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A192F;
  --navy-light: #112240;
  --navy-card:  #0D2137;
  --oil:        #111827;
  --gold:       #F0B429;
  --gold-light: #FFD166;
  --gold-dim:   #B8872A;
  --red:        #E53E3E;
  --green:      #38A169;
  --text:       #CCD6F6;
  --text-dim:   #8892B0;
  --white:      #F0F4FF;
  --border:     rgba(240,180,41,0.18);
  --glow:       0 0 24px rgba(240,180,41,0.35);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--oil); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .3rem 1rem;
  margin-bottom: 1rem;
  background: rgba(240,180,41,0.07);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 6rem 0; }

.text-center { text-align: center; }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #FF9500 100%);
  color: var(--oil);
  box-shadow: 0 4px 20px rgba(240,180,41,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,0.6); color: var(--oil); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(240,180,41,0.12); transform: translateY(-2px); color: var(--gold-light); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(10,25,47,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), #FF9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

#menuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#menuToggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
#menuToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menuToggle.open span:nth-child(2) { opacity: 0; }
#menuToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
}
#mobileMenu.open { display: flex; }
#mobileMenu a { color: var(--text); font-size: 1rem; padding: .4rem 0; }
#mobileMenu a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: radial-gradient(ellipse at 60% 40%, rgba(240,180,41,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(229,62,62,0.06) 0%, transparent 50%),
              var(--navy);
}

/* Particle canvas */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .55;
}

/* Animated oil wave */
.wave-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23111827' fill-opacity='0.9' d='M0,64 C360,120 720,0 1080,64 C1260,96 1350,80 1440,64 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 720px 100%;
}

.wave-1 { animation: wave 8s linear infinite; opacity: .8; }
.wave-2 { animation: wave 12s linear infinite reverse; opacity: .5; bottom: -8px; }

@keyframes wave {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,180,41,0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.live-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .lbl {
  font-size: .78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Presale Widget ---------- */
.presale-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow);
  position: relative;
  overflow: hidden;
}

.presale-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #FF9500, var(--gold));
  background-size: 200%;
  animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
  from { background-position: 0%; }
  to   { background-position: 200%; }
}

.presale-stage-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: .4rem;
}

.presale-stage-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.price-box .label { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; }
.price-box .amount { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.price-box .next   { font-size: 1.1rem; font-weight: 700; color: var(--text-dim); }
.price-box .next span { color: var(--red); font-size: .7rem; }

/* Stage progress */
.stage-progress { margin-bottom: 1.25rem; }
.stage-progress .prog-header {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-dim);
  margin-bottom: .4rem;
}

.prog-bar {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold), #FF9500);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.prog-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(240,180,41,0.8);
}

/* Countdown */
.countdown-wrap {
  margin-bottom: 1.25rem;
  text-align: center;
}
.countdown-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: .4rem .5rem;
}
.cd-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-unit { font-size: .62rem; color: var(--text-dim); text-transform: uppercase; margin-top: .15rem; }

/* Buy toggle */
.buy-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 1rem;
}
.toggle-btn {
  flex: 1;
  padding: .45rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition);
  color: var(--text-dim);
  background: transparent;
  border: none;
}
.toggle-btn.active {
  background: linear-gradient(135deg, var(--gold), #FF9500);
  color: var(--oil);
}

/* Input group */
.input-group { margin-bottom: .85rem; }
.input-group label { display: block; font-size: .78rem; color: var(--text-dim); margin-bottom: .35rem; }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  padding: .7rem 3.5rem .7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition);
}

.input-wrap input:focus { border-color: var(--gold); }
.input-wrap input::placeholder { color: var(--text-dim); font-weight: 400; }

.input-token {
  position: absolute;
  right: .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  pointer-events: none;
}

.receive-box {
  background: rgba(240,180,41,0.06);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 8px;
  padding: .65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.receive-box .recv-label { font-size: .78rem; color: var(--text-dim); }
.receive-box .recv-amount { font-size: 1.05rem; font-weight: 800; color: var(--gold); }

.btn-buy-full {
  width: 100%;
  justify-content: center;
  padding: .9rem;
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}

.wallet-info {
  display: none;
  font-size: .75rem;
  color: var(--text-dim);
  text-align: center;
  word-break: break-all;
}

.wallet-info.visible { display: block; }

.referral-wrap {
  display: none;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.referral-wrap.visible { display: block; }
.referral-wrap .ref-label { font-size: .72rem; color: var(--text-dim); margin-bottom: .4rem; }
.ref-link-row {
  display: flex;
  gap: .4rem;
}
.ref-link-row input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: .4rem .7rem;
  color: var(--text-dim);
  font-size: .75rem;
  outline: none;
}

/* ---------- Why $HORMUZ ---------- */
#why { background: var(--oil); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--glow); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: .6rem; }
.why-card p  { font-size: .9rem; color: var(--text-dim); line-height: 1.7; }

.stat-highlight {
  margin-top: 1rem;
  padding: .6rem .85rem;
  background: rgba(240,180,41,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
}

.oil-counter { font-size: 1.5rem; font-weight: 900; color: var(--gold); display: inline; }

/* ---------- Tokenomics ---------- */
#tokenomics {}

.token-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.chart-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tokenChart {
  max-width: 320px;
}

.chart-center {
  position: absolute;
  text-align: center;
  pointer-events: none;
}
.chart-center .total-val { font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.chart-center .total-lbl { font-size: .72rem; color: var(--text-dim); }

.token-legend { display: flex; flex-direction: column; gap: .85rem; }

.legend-item {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.legend-color {
  width: 14px; height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.legend-text { flex: 1; }
.legend-text .leg-name { font-size: .9rem; color: var(--text); font-weight: 500; }
.legend-text .leg-pct  { font-size: .8rem; color: var(--text-dim); }

.legend-bar {
  width: 100px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  overflow: hidden;
}
.legend-bar-fill {
  height: 100%;
  border-radius: 50px;
}

/* ---------- Stages Table ---------- */
#stages { background: var(--oil); }

.stages-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

thead th {
  background: rgba(240,180,41,0.08);
  padding: .85rem 1.1rem;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody tr.active-stage { background: rgba(240,180,41,0.07) !important; }

tbody td {
  padding: .8rem 1.1rem;
  font-size: .88rem;
  color: var(--text);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.status-active   { background: rgba(34,197,94,0.15);  color: #22C55E; }
.status-upcoming { background: rgba(240,180,41,0.12); color: var(--gold); }
.status-sold     { background: rgba(255,255,255,0.06); color: var(--text-dim); }

.status-active::before {
  content: '';
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

/* ---------- Roadmap ---------- */
#roadmap { background: var(--navy-light); }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  position: relative;
}

.roadmap-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 0;
}

.phase-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.phase-card.active-phase {
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.phase-card:hover { transform: translateY(-4px); }

.phase-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #FF9500);
  color: var(--oil);
  font-weight: 900;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.phase-card.upcoming .phase-num {
  background: rgba(255,255,255,0.08);
  color: var(--text-dim);
}

.phase-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .4rem;
}

.phase-card.upcoming .phase-tag { color: var(--text-dim); }

.phase-card h3 { font-size: 1rem; color: var(--white); margin-bottom: .75rem; }

.phase-items { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.phase-items li {
  font-size: .82rem;
  color: var(--text-dim);
  padding-left: 1rem;
  position: relative;
}
.phase-items li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- How To Buy ---------- */
#howtobuy {}

.htb-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.htb-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.htb-card:hover { transform: translateY(-5px); box-shadow: var(--glow); }

.htb-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,180,41,0.2), rgba(255,149,0,0.15));
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.htb-icon { font-size: 2rem; margin-bottom: .75rem; }
.htb-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .6rem; }
.htb-card p  { font-size: .88rem; color: var(--text-dim); line-height: 1.6; }

/* ---------- Footer ---------- */
#footer {
  background: var(--oil);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--text-dim); max-width: 320px; line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-link-group h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.footer-link-group ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-link-group a { font-size: .85rem; color: var(--text-dim); transition: color var(--transition); }
.footer-link-group a:hover { color: var(--gold); }

.social-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.social-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,180,41,0.08); }

.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .75rem;
  color: #22C55E;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p { font-size: .78rem; color: var(--text-dim); }

.disclaimer {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(229,62,62,0.05);
  border: 1px solid rgba(229,62,62,0.15);
  border-radius: 8px;
  font-size: .72rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ---------- Notification Toast ---------- */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.toast-msg {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1.25rem;
  font-size: .88rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: slideUp .3s ease;
  max-width: 300px;
}

.toast-msg.success { border-color: rgba(34,197,94,0.4); }
.toast-msg.error   { border-color: rgba(229,62,62,0.4); }
.toast-msg.info    { border-color: var(--border); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .presale-card { max-width: 460px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .token-inner { grid-template-columns: 1fr; }
  .chart-wrap { justify-content: flex-start; }
  .roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .roadmap-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  #menuToggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .htb-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .presale-card { padding: 1.25rem; }
  .countdown { gap: .3rem; }
  .cd-block { min-width: 44px; }
  .cd-num { font-size: 1.1rem; }
}
