:root {
  --bg: #0b0e14;
  --bg-alt: #0e1118;
  --surface: #12151d;
  --surface-2: #171b25;
  --border: #232838;
  --text: #e1e2e6;
  --text-muted: #9aa0ad;
  --text-dim: #6b7280;
  --accent: #6e53f0;
  --accent-2: #7253ff;
  --accent-soft: #8b6ff5;
  --lavender: #d9c7fc;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --maxw: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-soft); text-decoration: none; }
a:hover { color: var(--lavender); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(11, 14, 20, 0.94); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: 0.04em; color: var(--white); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }

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

.lang-toggle { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--text-muted); }
.lang-divider { color: var(--text-dim); }
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font: inherit; font-weight: 700;
  padding: 6px 8px; border-radius: 6px; transition: color 0.2s ease, background 0.2s ease;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.is-active { color: var(--lavender); background: rgba(110, 83, 240, 0.16); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--white); box-shadow: 0 10px 30px rgba(110, 83, 240, 0.35); }
.btn-primary:hover { color: var(--white); box-shadow: 0 14px 36px rgba(110, 83, 240, 0.5); transform: translateY(-1px); }

.btn-outline { border-color: rgba(217, 199, 252, 0.4); color: var(--lavender); background: rgba(217, 199, 252, 0.04); }
.btn-outline:hover { border-color: var(--lavender); color: var(--white); background: rgba(217, 199, 252, 0.1); }

.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }

/* ============ HERO ============ */
.hero { position: relative; display: flex; align-items: center; min-height: 92vh; padding: 120px 0 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.55) 0%, rgba(11, 14, 20, 0.85) 55%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-badge {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--lavender);
  background: rgba(110, 83, 240, 0.14);
  border: 1px solid rgba(110, 83, 240, 0.4);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 24px;
}

.hero-sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--text-muted); max-width: 720px; margin: 0 auto 14px; }
.hero-tagline { font-size: clamp(15px, 2vw, 17px); color: var(--lavender); font-weight: 600; margin-bottom: 36px; }

.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.token-info {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; max-width: 880px; margin: 0 auto;
  backdrop-filter: blur(8px);
}
.token-info-item { background: rgba(18, 21, 29, 0.82); padding: 22px 16px; }
.token-info-item dt { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.token-info-item dd { font-size: 16px; font-weight: 700; color: var(--white); }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-label { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; color: var(--white); margin-bottom: 18px; }
.section-desc { color: var(--text-muted); font-size: 16.5px; }
.section-desc + .section-desc { margin-top: 10px; }

.center { text-align: center; }
.link-addr { margin-top: 12px; font-size: 14px; color: var(--text-dim); }

/* ============ VALUE GRID ============ */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 44px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(110, 83, 240, 0.55); box-shadow: var(--shadow); }
.value-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; font-size: 22px; color: var(--lavender); background: rgba(110, 83, 240, 0.14); margin-bottom: 18px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--text-muted); }

/* ============ KEY MESSAGE ============ */
.key-message {
  text-align: center; font-size: clamp(18px, 2.6vw, 24px); font-weight: 800;
  color: var(--white);
  background: linear-gradient(120deg, rgba(110, 83, 240, 0.2), rgba(110, 83, 240, 0.05));
  border: 1px solid rgba(110, 83, 240, 0.4);
  padding: 28px 24px; border-radius: var(--radius);
}
.key-message-sm { font-size: clamp(16px, 2vw, 19px); padding: 22px 20px; margin-top: 40px; }

/* ============ ECOSYSTEM ============ */
.eco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-bottom: 48px; }
.eco-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease;
}
.eco-card:hover { transform: translateY(-4px); border-color: rgba(110, 83, 240, 0.55); }
.eco-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; color: var(--lavender); background: rgba(110, 83, 240, 0.14); margin-bottom: 16px; }
.eco-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.eco-card p { font-size: 14.5px; color: var(--text-muted); }

.flow { text-align: center; margin-bottom: 24px; }
.flow-title { font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.flow-steps { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; counter-reset: flow; }
.flow-steps li {
  counter-increment: flow; position: relative;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 22px 10px 46px; font-size: 14.5px; font-weight: 600; color: var(--text);
}
.flow-steps li::before {
  content: counter(flow); position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--white); background: var(--accent);
}

/* ============ NOTICE ============ */
.notice {
  text-align: center; font-size: 13.5px; color: var(--text-dim);
  max-width: 820px; margin: 24px auto 0;
}
.notice-strong { color: var(--text-muted); border: 1px dashed var(--border); background: rgba(255, 255, 255, 0.02); border-radius: var(--radius-sm); padding: 16px 20px; }

/* ============ DUAL STRUCTURE ============ */
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 44px; }
.dual-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); padding: 36px 32px; position: relative; overflow: hidden; }
.dual-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.dual-credit::before { background: linear-gradient(90deg, var(--accent-soft), var(--lavender)); }
.dual-brand { display: flex; justify-content: center; margin-bottom: 20px; }
.dual-logo { width: 84px; height: 84px; border-radius: 20px; box-shadow: var(--shadow); }
.dual-credit-mark {
  display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; margin: 0 auto 20px;
  border-radius: 20px; font-size: 44px; font-weight: 800; color: var(--bg);
  background: linear-gradient(135deg, var(--lavender), var(--accent-soft));
}
.dual-card h3 { text-align: center; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.dual-card p { text-align: center; font-size: 15px; color: var(--text-muted); }

.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 15px; }
.compare-table thead th { background: var(--surface-2); color: var(--lavender); font-size: 15.5px; font-weight: 800; }
.compare-table thead th:first-child { width: 32%; }
.compare-table tbody th { color: var(--text); font-weight: 600; }
.compare-table tbody td { color: var(--text-muted); }
.compare-table tbody tr { border-top: 1px solid var(--border); }

/* ============ FEATURE LIST ============ */
.feature-list { max-width: 720px; margin: 0 auto 40px; display: grid; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.feature-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--white); background: var(--accent); }
.feature-item p { font-size: 15px; color: var(--text); }

/* ============ INFO TABLE ============ */
.info-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); max-width: 820px; margin: 0 auto; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 16px 22px; text-align: left; font-size: 15px; }
.info-table thead th { background: var(--surface-2); color: var(--lavender); font-weight: 800; }
.info-table tbody th { color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.info-table tbody td { color: var(--white); font-weight: 600; }
.info-table tbody tr { border-top: 1px solid var(--border); }

.info-card { max-width: 820px; margin: 22px auto 0; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; background: rgba(110, 83, 240, 0.1); border: 1px solid rgba(110, 83, 240, 0.4); border-radius: var(--radius-sm); padding: 16px 22px; flex-wrap: wrap; }
.info-card-label { color: var(--text-muted); font-size: 14.5px; font-weight: 600; }
.info-card-value { color: var(--lavender); font-size: 20px; font-weight: 800; }

/* ============ TOKENOMICS ============ */
.tokenomics-wrap { display: grid; grid-template-columns: minmax(300px, 420px) 1fr; gap: 44px; align-items: center; margin-bottom: 34px; }
.donut-wrap { display: flex; justify-content: center; }
.donut { width: 100%; max-width: 340px; height: auto; }
.donut-seg { opacity: 0; transition: opacity 0.8s ease, stroke-dasharray 1.4s ease; }
.donut-center-big { fill: var(--white); font-size: 20px; font-weight: 800; }
.donut-center-small { fill: var(--text-muted); font-size: 9px; letter-spacing: 0.1em; }

.tokenomics-list { overflow-x: auto; }
.tokenomics-table { width: 100%; border-collapse: collapse; min-width: 440px; }
.tokenomics-table th, .tokenomics-table td { padding: 12px 16px; text-align: left; font-size: 14.5px; }
.tokenomics-table thead th { background: var(--surface-2); color: var(--lavender); font-weight: 800; border-bottom: 1px solid var(--border); }
.tokenomics-table tbody tr { border-bottom: 1px solid var(--border); }
.tokenomics-table tbody tr:last-child { border-bottom: none; }
.tokenomics-table tbody td:first-child { color: var(--text); font-weight: 600; }
.tokenomics-table tbody td:nth-child(2) { color: var(--lavender); font-weight: 800; }
.tokenomics-table tbody td:nth-child(3) { color: var(--text-muted); }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 3px; background: var(--c, var(--accent)); margin-right: 10px; vertical-align: middle; }

.tok-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; max-width: 820px; margin: 0 auto 8px; }
.tok-notes p { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; color: var(--text-muted); }

/* ============ PAYMENT STEPS ============ */
.pay-steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; counter-reset: pay; max-width: 980px; margin: 0 auto 44px; }
.pay-steps li {
  counter-increment: pay; position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 56px 18px 22px; text-align: center; font-size: 14.5px; font-weight: 600; color: var(--text);
}
.pay-steps li::before {
  content: counter(pay); position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--white); background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ============ MEMBERSHIP ============ */
.mem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 920px; margin: 0 auto 40px; }
.mem-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease; }
.mem-card:hover { transform: translateY(-4px); border-color: rgba(110, 83, 240, 0.55); }
.mem-card-featured { border-color: rgba(110, 83, 240, 0.6); box-shadow: var(--shadow); }
.mem-card-black { background: linear-gradient(160deg, #17171d, #0e0e14); border-color: #2b2b36; }
.mem-card h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 22px; letter-spacing: 0.02em; }
.mem-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.mem-card li { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; }
.mem-label { font-size: 14px; color: var(--text-muted); }
.mem-card li strong { font-size: 17px; color: var(--lavender); font-weight: 800; }
.mem-dir { font-size: 14px; font-weight: 700; color: var(--text-dim); }

/* ============ APPM ============ */
.appm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 920px; margin: 0 auto 40px; }
.appm-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease; }
.appm-item:hover { transform: translateY(-4px); border-color: rgba(110, 83, 240, 0.55); }
.appm-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; font-size: 22px; color: var(--lavender); background: rgba(110, 83, 240, 0.14); margin-bottom: 16px; }
.appm-item h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.appm-item p { font-size: 14.5px; color: var(--text-muted); }

/* ============ TIMELINE ============ */
.timeline { max-width: 720px; margin: 0 auto 32px; position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), rgba(110, 83, 240, 0.15)); }
.tl-item { position: relative; padding: 0 0 44px 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.tl-dot { position: absolute; left: 6px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-alt); box-shadow: 0 0 0 3px rgba(110, 83, 240, 0.35); }
.tl-phase { font-size: 17px; font-weight: 800; color: var(--lavender); }
.tl-item p { font-size: 15px; color: var(--text-muted); }

/* ============ WHITEPAPER ============ */
.wp-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.coming-soon { margin-top: 18px; font-weight: 700; color: var(--accent-soft); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item[open] { border-color: rgba(110, 83, 240, 0.55); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-size: 16px; font-weight: 700; color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 500; color: var(--accent-soft); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; font-size: 15px; color: var(--text-muted); }

/* ============ FOOTER ============ */
.site-footer { background: #080a10; border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 0.8fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .footer-logo { width: 60px; height: 60px; border-radius: 14px; margin-bottom: 16px; }
.footer-tagline { color: var(--text-muted); font-size: 15px; max-width: 300px; }
.footer-col h4 { font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-info { display: grid; gap: 8px; }
.footer-info div { display: flex; gap: 10px; font-size: 14px; }
.footer-info dt { color: var(--text-dim); }
.footer-info dd { color: var(--text-muted); }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { color: var(--text-muted); font-size: 14.5px; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--lavender); }
.footer-legal { border-top: 1px solid var(--border); padding-top: 28px; }
.footer-legal p { font-size: 12.5px; color: var(--text-dim); max-width: 900px; }
.copyright { margin-top: 18px; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .tokenomics-wrap { grid-template-columns: 1fr; gap: 32px; }
  .donut { max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 14, 20, 0.98); border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px; transform: translateY(-120%); transition: transform 0.3s ease;
  }
  .main-nav.is-open { transform: none; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
  .main-nav a:last-child { border-bottom: none; }
  .header-actions { gap: 8px; }
  .token-info { grid-template-columns: repeat(2, 1fr); }
  .dual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .hero { padding: 110px 0 56px; }
  .hero-title { font-size: 32px; }
  .token-info { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 22px; font-size: 15px; width: 100%; }
  .wp-actions, .hero-actions { flex-direction: column; }
  .hero-actions .btn, .wp-actions .btn { width: 100%; }
  .brand-name { display: none; }
}
