/* ================================================================
   IRIS ECOSYSTEM — iris.css
   Theme: Dark / Red Accent — inspired by IrisEarn platform
   ================================================================ */

/* ── ANNOUNCE BAR ────────────────────────────────────────────── */
.announce-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(98,126,234,0.18) 0%, rgba(84,93,255,0.12) 50%, rgba(98,126,234,0.18) 100%);
  border-bottom: 1px solid rgba(98,126,234,0.3);
  padding: 9px 28px;
  position: relative;
  z-index: 101;
  backdrop-filter: blur(12px);
}
.announce-bar.hidden { display: none; }
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announce-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #627eea;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.announce-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-text strong { color: #fff; }
.announce-link {
  color: #8fa4f3;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.announce-link:hover { color: #fff; }
.announce-link i { font-size: 10px; }
.announce-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
}
.announce-close:hover { color: rgba(255,255,255,0.8); }

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --bg:        #04060d;
  --bg-alt:    rgba(10,14,29,0.9);
  --card:      rgba(255,255,255,0.045);
  --card-hov:  rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.12);
  --border-ac: rgba(232,51,74,0.35);
  --accent:    #ff375f;
  --accent-d:  #d01f3f;
  --text:      #f5f8ff;
  --muted:     #9aa3b8;
  --radius:    20px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: radial-gradient(circle at top left, rgba(255,105,145,0.08), transparent 30%),
              radial-gradient(circle at bottom right, rgba(84, 93, 255, 0.1), transparent 25%),
              linear-gradient(180deg, #02030a 0%, #060810 45%, #09131f 100%);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-iris {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}
.btn-iris.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 14px; }

.btn-iris-primary {
  background: linear-gradient(135deg, #e8334a 0%, #c4293d 100%);
  color: #fff !important;
}
.btn-iris-primary:hover {
  background: linear-gradient(135deg, #d42d40 0%, #a81830 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,51,74,0.35);
  color: #fff !important;
}

.btn-iris-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text) !important;
}
.btn-iris-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.btn-iris-ghost {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  color: var(--text) !important;
}
.btn-iris-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  color: var(--text) !important;
}

/* ── Text accent ─────────────────────────────────────────────── */
.text-accent { color: var(--accent); }

/* ── NAV ─────────────────────────────────────────────────────── */
.iris-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  transition: background 0.3s, border-bottom 0.3s, backdrop-filter 0.3s;
}
.iris-nav.scrolled {
  background: rgba(6,8,16,0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* ── HERO ────────────────────────────────────────────────────── */
.iris-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 100px;
  position: relative;
  overflow: hidden;
}

.iris-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,4,13,0.20), rgba(4,6,13,0.95));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,55,95,0.22) 0%, transparent 45%),
    radial-gradient(circle at 20% 40%, rgba(84,93,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 35%, rgba(255,255,255,0.08) 0%, transparent 42%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.75; transform: translateX(-50%) scale(1.06); }
}

.iris-hero .container { position: relative; z-index: 1; }

/* Hero product cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 24px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 190px;
}
.hero-card::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,55,95,0.55), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hero-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.hero-card:hover::before { opacity: 1; }
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hero-card-icon {
  width: 34px; height: 34px;
  background: rgba(232,51,74,0.1);
  border: 1px solid rgba(232,51,74,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-icon i { font-size: 14px; color: var(--accent); }
.hero-card-arrow {
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.hero-card:hover .hero-card-arrow {
  opacity: 1;
  color: var(--accent);
  transform: translateX(0);
}
.hero-card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.hero-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.hero-card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(232,51,74,0.1);
  border-radius: 4px;
  padding: 2px 8px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,51,74,0.07);
  border: 1px solid rgba(232,51,74,0.22);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 30px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,51,74,0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(232,51,74,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.product-pill:hover {
  border-color: var(--border-ac);
  color: var(--accent);
}
.product-pill em,
.product-pill i { color: var(--accent); font-size: 12px; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.iris-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 30px 28px;
  position: relative;
  z-index: 1;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.04em;
}
.stat-val span { color: var(--accent); font-size: 1.5rem; }
.stat-key {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.iris-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.iris-section-alt {
  background: rgba(8,9,20,0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label.centered { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.centered { text-align: center; }
.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 36px;
  overflow-wrap: break-word;
}
.section-body.centered { text-align: center; margin: 0 auto 48px; }

/* ── SPLIT LAYOUT ────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse .split-text { order: 2; }
.split-layout.reverse .split-visual { order: 1; }

/* ── FEATURE LIST ────────────────────────────────────────────── */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.22s ease;
}
.feat-list li:hover {
  background: rgba(232,51,74,0.06);
  border-color: var(--border-ac);
}
.feat-list li > em,
.feat-list li > i {
  font-size: 15px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.feat-list li > div { flex: 1; }
.feat-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.feat-list li span { font-size: 12px; color: var(--muted); }

/* ── PHONE MOCKUP ────────────────────────────────────────────── */
.mockup-wrap {
  position: relative;
  display: inline-block;
  padding: 20px 60px 20px 20px;
}
.mockup-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,51,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.mockup-main {
  width: 245px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 32px 80px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.06);
}
.mockup-float {
  width: 140px;
  border-radius: 20px;
  position: absolute;
  right: 0; bottom: 50px;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.52), 0 0 0 1px rgba(255,255,255,0.06);
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}

/* ── P2P VISUAL CARD ─────────────────────────────────────────── */
.p2p-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p2p-card::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,51,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.p2p-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.p2p-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  min-width: 80px;
}
.p2p-node em,
.p2p-node i { font-size: 22px; color: var(--muted); }
.p2p-node span { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.p2p-node.accent {
  background: rgba(232,51,74,0.09);
  border-color: rgba(232,51,74,0.26);
}
.p2p-node.accent em,
.p2p-node.accent i { color: var(--accent); }
.p2p-node.accent span { color: var(--accent); }
.p2p-arrow { color: rgba(232,51,74,0.4); font-size: 18px; }
.p2p-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.p2p-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.p2p-tag em,
.p2p-tag i { color: var(--accent); font-size: 11px; }

/* ── STEP LIST (P2P) ─────────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.22s ease;
}
.step:hover {
  background: rgba(232,51,74,0.06);
  border-color: var(--border-ac);
}
.step-n {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step > div > strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.step > div > p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── PRODUCT GRID ────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 30px 26px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "body body"
    "link link";
  gap: 20px 18px;
  align-items: center;
  text-align: left;
}
.product-card::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,55,95,0.55), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.product-card:hover {
  border-color: rgba(255,55,95,0.32);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.26);
  background: rgba(255,255,255,0.08);
}
.product-card:hover::after { opacity: 1; }
.pc-icon {
  width: 52px; height: 52px;
  background: rgba(255,55,95,0.1);
  border: 1px solid rgba(255,55,95,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  grid-area: icon;
}
.pc-icon em,
.pc-icon i { font-size: 20px; color: var(--accent); }
.pc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  grid-area: title;
}
.pc-body { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; grid-area: body; }
.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: gap 0.2s;
  grid-area: link;
  min-width: 0;
  overflow-wrap: anywhere;
}
.pc-link:hover { gap: 12px; color: var(--accent); }

/* ── TOKENOMICS ──────────────────────────────────────────────── */
.tknomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 20px;
}
.tknomics-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px 26px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.tknomics-card:hover {
  border-color: var(--border-ac);
  background: rgba(232,51,74,0.05);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.tknomics-pct {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.tknomics-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.tknomics-bar {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(232,51,74,0.15));
  width: var(--w);
  margin: 0 auto;
  transition: width 0.6s ease;
}

.token-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.ti-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.ti-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 6px; }
.ti-val { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; overflow-wrap: anywhere; }

/* ── ROADMAP ─────────────────────────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.rmap-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  opacity: 0.55;
  transition: all 0.25s ease;
}
.rmap-item:hover { opacity: 1; border-color: var(--border-ac); transform: translateY(-3px); }
.rmap-item.done { opacity: 0.78; }
.rmap-item.active {
  opacity: 1;
  border-color: var(--border-ac);
  background: rgba(232,51,74,0.05);
}
.rmap-item.active::after {
  content: 'NOW';
  position: absolute;
  top: -1px; right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.1em;
}
.rmap-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.rmap-item.done .rmap-badge { color: var(--muted); }
.rmap-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.rmap-item ul { display: flex; flex-direction: column; gap: 6px; }
.rmap-item ul li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.rmap-item ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
.rmap-item.done ul li::before { color: var(--muted); }
.rmap-eth {
  opacity: 1 !important;
  border-color: rgba(98,126,234,0.35) !important;
  background: rgba(98,126,234,0.06) !important;
}
.rmap-eth:hover { border-color: rgba(98,126,234,0.55) !important; }
.rmap-eth h4 { color: #8fa4f3; display: flex; align-items: center; gap: 8px; }
.rmap-eth h4 i { color: #627eea; }
.rmap-badge-eth { color: #8fa4f3 !important; }
.rmap-eth ul li::before { color: #627eea !important; }

/* ── NEXT GRID (Roadmap) ─────────────────────────────────────── */
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.next-card {
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.next-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.28);
}
.next-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.next-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.next-icon-eth  { background: rgba(98,126,234,0.14); border: 1px solid rgba(98,126,234,0.3); color: #8fa4f3; }
.next-icon-accent { background: rgba(232,51,74,0.12); border: 1px solid rgba(232,51,74,0.3); color: var(--accent); }
.next-icon-gold { background: rgba(245,184,0,0.12); border: 1px solid rgba(245,184,0,0.3); color: #f5b800; }

.next-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  padding: 4px 12px;
}
.next-tag-eth    { background: rgba(98,126,234,0.12); color: #8fa4f3; border: 1px solid rgba(98,126,234,0.25); }
.next-tag-accent { background: rgba(232,51,74,0.10); color: var(--accent); border: 1px solid rgba(232,51,74,0.22); }
.next-tag-gold   { background: rgba(245,184,0,0.10); color: #f5b800; border: 1px solid rgba(245,184,0,0.22); }

.next-card-eth    { border-color: rgba(98,126,234,0.2); }
.next-card-accent { border-color: rgba(232,51,74,0.2); }
.next-card-gold   { border-color: rgba(245,184,0,0.18); }
.next-card-eth:hover    { border-color: rgba(98,126,234,0.42); }
.next-card-accent:hover { border-color: rgba(232,51,74,0.38); }
.next-card-gold:hover   { border-color: rgba(245,184,0,0.35); }

.next-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}
.next-card h3 span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.next-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.next-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.next-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.next-list li i { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.next-card-eth    .next-list li i { color: rgba(98,126,234,0.45); }
.next-card-eth    .next-list li.nl-done   i { color: #8fa4f3; }
.next-card-eth    .next-list li.nl-active i { color: #8fa4f3; }
.next-card-accent .next-list li i { color: rgba(232,51,74,0.6); }
.next-card-gold   .next-list li i { color: rgba(245,184,0,0.6); }

.next-list li { justify-content: space-between; }
.next-list li > i { margin-top: 2px; }
.nl-done   { color: var(--text) !important; }
.nl-active { color: var(--text) !important; }
.nl-upcoming { opacity: 0.55; }

.nl-status {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nl-live     { background: rgba(52,199,89,0.14); color: #34c759; border: 1px solid rgba(52,199,89,0.25); }
.nl-progress { background: rgba(98,126,234,0.14); color: #8fa4f3; border: 1px solid rgba(98,126,234,0.28); }
.nl-soon     { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--border); }

.dao-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.dao-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  position: relative;
}
.dao-step:not(.dao-step-last)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: rgba(245,184,0,0.2);
}
.dao-step-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #f5b800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.dao-step-n-gold {
  background: linear-gradient(135deg, #f5b800, #d49500);
  border-color: transparent;
  color: #000;
}
.dao-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
  flex: 1;
}
.dao-step-body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.dao-step-body > span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.dao-burn-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(232,51,74,0.08);
  border: 1px solid rgba(232,51,74,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 4px;
  width: fit-content;
}
.dao-burn-tag i { font-size: 9px; }
.dao-outcomes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}
.dao-yes, .dao-no {
  font-size: 11.5px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.dao-yes { color: #34c759; }
.dao-yes i { font-size: 10px; margin-top: 2px; flex-shrink: 0; }
.dao-no { color: var(--muted); }
.dao-no i { font-size: 10px; margin-top: 2px; flex-shrink: 0; }

.next-rwa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 4px;
}
.next-rwa-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,51,74,0.08);
  border: 1px solid rgba(232,51,74,0.2);
  border-radius: 6px;
  padding: 3px 10px;
  white-space: nowrap;
}
.next-rwa-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 1024px) { .next-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 768px)  { .next-grid { grid-template-columns: 1fr; } }

/* ── COMMUNITY ───────────────────────────────────────────────── */
.community-wrap { text-align: center; }
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 28px;
  min-width: 100px;
  transition: all 0.22s ease;
}
.social-card em,
.social-card i { font-size: 22px; color: var(--muted); transition: color 0.22s; }
.social-card span { font-size: 12px; font-weight: 600; color: var(--muted); transition: color 0.22s; }
.social-card:hover {
  border-color: var(--border-ac);
  background: rgba(232,51,74,0.07);
  transform: translateY(-3px);
}
.social-card:hover em,
.social-card:hover i,
.social-card:hover span { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.iris-footer {
  border-top: 1px solid var(--border);
  padding: 24px 28px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 22px; opacity: 0.7; }
.footer-brand span { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── FADE-IN ANIMATIONS ──────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fi.in { opacity: 1; transform: none; }
.fi.d1 { transition-delay: 0.08s; }
.fi.d2 { transition-delay: 0.16s; }
.fi.d3 { transition-delay: 0.24s; }
.fi.d4 { transition-delay: 0.32s; }
.fi.d5 { transition-delay: 0.40s; }
.fi.d6 { transition-delay: 0.48s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .tknomics-grid { grid-template-columns: 1fr 1fr; }
  .token-info-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { gap: 56px; }
}
@media (max-width: 768px) {
  .announce-bar { padding: 8px 44px 8px 16px; }
  .announce-inner { justify-content: flex-start; }
  .announce-text { justify-content: flex-start; gap: 6px; line-height: 1.45; }
  .announce-close { right: 12px; }
  .container { padding: 0 20px; }
  .iris-nav {
    padding: 0 16px;
    background: rgba(4, 6, 13, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .nav-inner { height: 62px; gap: 16px; }
  .nav-logo img { height: 24px; }
  .iris-hero { padding: 104px 0 64px; min-height: auto; }
  .iris-hero .container > .iris-section {
    margin-top: 34px !important;
    padding: 28px 0 0 !important;
  }
  .hero-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-card { grid-column: span 1; }
  .hero-card:nth-child(4),
  .hero-card:nth-child(5) { grid-column: span 1; }
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-layout.reverse .split-text { order: 1; }
  .split-layout.reverse .split-visual { order: 2; }
  .split-visual { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .iris-stats { padding: 24px 20px; }
  .stat { padding: 20px 14px; }
  .stat-val { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card { grid-column: span 1; }
  .product-card:nth-child(4),
  .product-card:nth-child(5) { grid-column: span 1; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .token-info-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: 62px;
    left: 16px;
    right: 16px;
    background: rgba(4, 6, 13, 0.96);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px 20px;
    z-index: 99;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  }
  .nav-links a { width: 100%; padding: 4px 0; }
  .nav-links.active { display: flex; }
  .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .mockup-wrap { padding: 20px; }
  .mockup-main { width: 200px; }
  .mockup-float { width: 115px; right: -5px; bottom: 30px; }
  .iris-section { padding: 72px 0; }
  .p2p-card { padding: 32px 20px; }
  .p2p-diagram { gap: 8px; }
  .p2p-arrow { transform: rotate(90deg); }
  .p2p-rev-recipients { flex-direction: column; }
  .dao-node { align-items: flex-start; }
  .dao-burn-pill { align-self: flex-start; }
  .next-list li { justify-content: flex-start; }
  .footer-inner { align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .iris-hero { padding: 92px 0 56px; }
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .hero-sub { margin-bottom: 28px; font-size: 0.98rem; line-height: 1.7; }
  .hero-badge { max-width: 100%; justify-content: center; text-align: center; white-space: normal; line-height: 1.35; }
  .hero-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .tknomics-grid { grid-template-columns: 1fr; }
  .token-info-grid { grid-template-columns: 1fr; }
  .product-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "body body"
      "link link";
    text-align: left;
    align-items: center;
    gap: 18px 14px;
  }
  .pc-title { text-align: left; }
  .pc-icon { margin: 0; }
  .hero-cta { gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn-iris,
  .nav-actions .btn-iris,
  .split-text > .btn-iris,
  .community-wrap .btn-iris {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .btn-iris.btn-lg { padding: 14px 18px; }
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .section-body { line-height: 1.75; }
  .feat-list li,
  .step {
    padding: 14px 14px;
    gap: 12px;
  }
  .app-platforms {
    max-width: 100%;
    align-items: stretch;
  }
  .app-platform-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    text-align: left;
  }
  .app-platform-btn i {
    width: 44px;
    justify-self: center;
    text-align: center;
  }
  .p2p-diagram { flex-direction: column; }
  .p2p-node { width: 100%; }
  .p2p-card,
  .earn-card,
  .dao-card,
  .next-card {
    border-radius: 18px;
    padding: 24px 16px;
  }
  .earn-card-title,
  .dao-card-title {
    line-height: 1.4;
    text-align: center;
    justify-content: center;
  }
  .earn-connector-label,
  .earn-footer-tag,
  .dao-card-footer {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .earn-perks span { text-align: left; justify-content: flex-start; }
  .dao-node {
    flex-wrap: wrap;
    padding: 14px;
  }
  .dao-burn-pill { white-space: normal; }
  .dao-outcomes-row { flex-direction: column; }
  .dao-outcome-divider { justify-content: center; padding: 2px 0; }
  .next-card-header { gap: 12px; }
  .next-tag { text-align: center; }
  .next-rwa-tags span { white-space: normal; }
  .nl-status { white-space: normal; text-align: center; }
  .footer-links { gap: 14px 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-brand { align-items: flex-start; }
  .social-grid { flex-direction: column; gap: 12px; }
  .social-card { width: 100%; max-width: 100%; padding: 18px 20px; }
}

/* ── EARN TIERS CARD ─────────────────────────────────────────── */
.earn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  gap: 0;
}
.earn-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,51,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.earn-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.earn-card-title i { color: var(--accent); }
.earn-node-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}
.earn-icon-v {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--muted);
}
.earn-node-v > span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.earn-node-v.premium {
  background: rgba(232,51,74,0.07);
  border-color: rgba(232,51,74,0.28);
}
.earn-node-v.premium .earn-icon-v {
  background: rgba(232,51,74,0.14);
  color: var(--accent);
}
.earn-node-v.premium > span { color: var(--accent); }
.earn-node-v.special {
  background: rgba(245,184,0,0.06);
  border-color: rgba(245,184,0,0.25);
}
.earn-node-v.special .earn-icon-v {
  background: rgba(245,184,0,0.12);
  color: #f5b800;
}
.earn-node-v.special > span { color: #f5b800; }
.earn-perks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  width: 100%;
}
.earn-perks span {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.earn-perks span i { font-size: 9px; color: var(--accent); }
.earn-node-v.special .earn-perks span i { color: #f5b800; }
.earn-vline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.earn-vline-arrow {
  font-size: 10px;
  color: rgba(232,51,74,0.45);
}
.earn-vline-arrow.gold { color: rgba(245,184,0,0.5); }
.earn-connector-label {
  background: rgba(232,51,74,0.09);
  border: 1px solid rgba(232,51,74,0.22);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.earn-connector-label.gold {
  background: rgba(245,184,0,0.08);
  border-color: rgba(245,184,0,0.22);
  color: #f5b800;
}
.earn-footer-tag {
  margin-top: 18px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.earn-footer-tag i { color: var(--accent); font-size: 10px; }

/* ── IRISDAO VISUAL CARD ─────────────────────────────────────── */
.dao-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.dao-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.dao-card-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dao-card-title i { color: #f5b800; }
.dao-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}
.dao-node-accent {
  background: rgba(245,184,0,0.06);
  border-color: rgba(245,184,0,0.25);
}
.dao-node-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  flex-shrink: 0;
}
.dao-node-accent .dao-node-icon { background: rgba(245,184,0,0.1); color: #f5b800; }
.dao-node-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.dao-node-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.dao-node-accent .dao-node-label { color: #f5b800; }
.dao-node-sub {
  font-size: 11px;
  color: var(--muted);
}
.dao-burn-pill {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(232,51,74,0.09);
  border: 1px solid rgba(232,51,74,0.22);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dao-burn-pill i { font-size: 8px; }
.dao-vline {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  position: relative;
  z-index: 1;
}
.dao-vline-arrow { font-size: 11px; color: rgba(245,184,0,0.4); }
.dao-outcomes-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.dao-outcome {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 10px;
  border-radius: 12px;
  text-align: center;
}
.dao-outcome-yes {
  background: rgba(52,199,89,0.07);
  border: 1px solid rgba(52,199,89,0.22);
}
.dao-outcome-no {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.dao-outcome i { font-size: 18px; }
.dao-outcome-yes i { color: #34c759; }
.dao-outcome-no i { color: var(--muted); opacity: 0.5; }
.dao-outcome span {
  font-size: 12px;
  font-weight: 700;
}
.dao-outcome-yes span { color: #34c759; }
.dao-outcome-no span { color: var(--muted); }
.dao-outcome small {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}
.dao-outcome-divider {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 2px;
}
.dao-card-footer {
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.dao-card-footer i { color: #f5b800; font-size: 10px; }

/* next-list two-column item (label + description) */
.next-list li > div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.next-list li > div strong { font-size: 13px; font-weight: 700; color: var(--text); }
.next-list li > div span { font-size: 12px; color: var(--muted); }

/* ── IRISAPP FEATURE SECTION ─────────────────────────────────── */
.app-platforms {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 6px;
  width: fit-content;
}
.app-platform-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 13px;
  transition: all 0.22s ease;
  color: var(--muted);
}
.app-platform-btn:hover {
  background: rgba(232,51,74,0.09);
  color: var(--text);
}
.app-platform-btn i { font-size: 26px; }
.app-platform-btn div { display: flex; flex-direction: column; gap: 2px; }
.app-platform-btn small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.app-platform-btn strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}
.app-platform-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  margin: 0 6px;
}

.app-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.app-feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.app-feat-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.app-feat-card.highlight {
  background: rgba(232,51,74,0.055);
  border-color: rgba(232,51,74,0.22);
}
.app-feat-card.highlight:hover {
  background: rgba(232,51,74,0.095);
  border-color: rgba(232,51,74,0.36);
}
.afc-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 18px;
}
.afc-icon.accent {
  background: rgba(232,51,74,0.12);
  border-color: rgba(232,51,74,0.3);
  color: var(--accent);
}
.app-feat-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.app-feat-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.step-highlight {
  background: rgba(245,184,0,0.05) !important;
  border-color: rgba(245,184,0,0.25) !important;
}
.step-highlight:hover {
  background: rgba(245,184,0,0.09) !important;
  border-color: rgba(245,184,0,0.38) !important;
}
.step-n-gold {
  background: linear-gradient(135deg, #f5b800, #d49500) !important;
  font-size: 14px;
}
.step-highlight > div > strong { color: #f5b800; }

.p2p-revenue {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(245,184,0,0.05);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: 14px;
  text-align: left;
}
.p2p-rev-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5b800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p2p-rev-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.p2p-rev-recipients {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.p2p-rev-node {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  flex: 1;
  justify-content: center;
}
.p2p-rev-node i { font-size: 13px; color: var(--muted); }
.p2p-rev-node.gold {
  background: rgba(245,184,0,0.08);
  border-color: rgba(245,184,0,0.28);
  color: #f5b800;
}
.p2p-rev-node.gold i { color: #f5b800; }
.p2p-rev-arrow { font-size: 16px; color: rgba(245,184,0,0.5); flex-shrink: 0; }
.p2p-rev-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.feat-soon {
  border-color: rgba(245,184,0,0.22) !important;
  background: rgba(245,184,0,0.04) !important;
}
.feat-soon:hover {
  background: rgba(245,184,0,0.08) !important;
  border-color: rgba(245,184,0,0.35) !important;
}
.feat-soon > i { color: #f5b800 !important; }
.feat-badge-soon {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(245,184,0,0.15);
  border: 1px solid rgba(245,184,0,0.35);
  color: #f5b800;
  border-radius: 4px;
  padding: 2px 7px;
  vertical-align: middle;
}

.afc-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
}

.app-cta-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.app-cta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.app-cta-text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.app-cta-text span {
  font-size: 13px;
  color: var(--muted);
}
.app-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── IRISTOKEN BUY FLOW ──────────────────────────────────────── */
.buy-flow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
}
.buy-flow-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,51,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.buy-flow-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.buy-flow-title i { color: var(--accent); }
.buy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.buy-flow-step {
  min-height: 150px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.buy-flow-step.accent {
  background: rgba(232,51,74,0.08);
  border-color: rgba(232,51,74,0.3);
}
.buy-flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 20px;
}
.buy-flow-step.accent .buy-flow-icon,
.buy-flow-icon.uniswap-icon {
  background: rgba(232,51,74,0.13);
  border-color: rgba(232,51,74,0.28);
  color: var(--accent);
}
.buy-flow-step span {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.buy-flow-arrow {
  color: rgba(232,51,74,0.55);
  font-size: 16px;
}
.buy-flow-note {
  margin-top: 20px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.buy-flow-note i { color: var(--accent); }

@media (max-width: 1024px) {
  .app-feat-grid { grid-template-columns: 1fr 1fr; }
  .buy-flow {
    grid-template-columns: 1fr;
  }
  .buy-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .buy-flow-step {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .app-feat-grid { grid-template-columns: 1fr; }
  .app-platforms {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    align-items: stretch;
  }
  .app-platform-divider { width: 80%; height: 1px; margin: 4px 0; }
  .app-cta-strip { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .app-cta-btns { width: 100%; }
  .app-cta-btns .btn-iris { flex: 1; justify-content: center; }
  .buy-flow-card { padding: 28px 20px; }
}

/* ── FINAL MOBILE REFINEMENTS ────────────────────────────────── */
@media (max-width: 768px) {
  .earn-card,
  .dao-card,
  .next-card {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 28px 20px;
  }

  .earn-node-v,
  .dao-node,
  .dao-outcome,
  .p2p-rev-node {
    min-width: 0;
  }

  .dao-node {
    align-items: flex-start;
  }

  .dao-burn-pill {
    align-self: flex-start;
    white-space: normal;
  }

  .p2p-rev-recipients {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .btn-iris {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .iris-section {
    padding: 60px 0;
  }

  .iris-hero .container > .iris-section {
    margin-top: 28px !important;
    padding-top: 24px !important;
  }

  .product-grid,
  .tknomics-grid,
  .token-info-grid,
  .next-grid {
    gap: 14px;
  }

  .product-card,
  .tknomics-card,
  .next-card,
  .earn-card,
  .dao-card,
  .p2p-card,
  .buy-flow-card {
    border-radius: 18px;
    padding: 24px 16px;
  }

  .tknomics-pct {
    font-size: 2.7rem;
  }

  .next-card-header {
    align-items: flex-start;
  }

  .next-tag,
  .nl-status {
    line-height: 1.3;
  }

  .earn-card-title,
  .dao-card-title,
  .earn-connector-label,
  .earn-footer-tag,
  .dao-card-footer {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .dao-node {
    flex-wrap: wrap;
  }

  .dao-outcomes-row {
    flex-direction: column;
  }

  .dao-outcome-divider {
    justify-content: center;
    padding: 2px 0;
  }

  .app-platforms {
    max-width: 100%;
  }

  .buy-flow-title {
    line-height: 1.4;
    text-align: center;
  }

  .buy-flow-step {
    padding: 20px 14px;
  }

  .buy-flow-note {
    border-radius: 14px;
    align-items: flex-start;
  }

  .footer-brand,
  .footer-links {
    width: 100%;
  }
}
