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

:root {
  --gold:       #c8a227;
  --gold-d:     #a8841a;
  --gold-l:     #f0c040;
  --gold-bg:    #fffbf0;
  --gold-tint:  rgba(200,162,39,.12);
  --text:       #111827;
  --text-2:     #4b5563;
  --text-3:     #9ca3af;
  --border:     #e5e7eb;
  --bg:         #ffffff;
  --bg-alt:     #f9fafb;

  
  --dark:       #0d1117;
  --dark-2:     #161b22;
  --dark-3:     #21262d;
  --dark-border:#30363d;
  --dark-text:  #e6edf3;
  --dark-text-2:#8b949e;

  
  --slate:      #0f172a;
  --slate-2:    #1e293b;
  --slate-3:    #263347;
  --slate-border:#334155;
  --slate-text: #e2e8f0;
  --slate-text-2:#64748b;

  
  --win:  #0078d4;
  --mac:  #1d1d1f;
  --linux:#ea580c;

  
  --amber:  #f59e0b;
  --amber-d:#d97706;
  --amber-bg:#fffbeb;

  --r:    10px;
  --r-lg: 16px;
  --t:    .18s ease;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Space Grotesk', var(--font);
  --brand: 'Outfit', var(--display);
  --mono: 'Consolas', 'Fira Code', monospace;
  --max:  1160px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }


.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(17,24,39,.08);
  box-shadow: 0 8px 24px rgba(17,24,39,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; height: 76px; }

.logo-link { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-img  {
  width: 40px; height: 40px; object-fit: contain; border-radius: 9px;
}
.logo-text {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0;
}
.logo-doge {
  color: var(--gold-d);
  font-weight: 700;
}

.main-nav {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex: 1;
}
.main-nav a {
  font-size: .82rem; font-weight: 700; color: #525866;
  padding: 26px 0 24px; position: relative;
  transition: color var(--t);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: center; transition: transform var(--t);
}
.main-nav a:hover,
.main-nav a.active-nav { color: var(--text); }
.main-nav a:hover::after,
.main-nav a.active-nav::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-faq {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 38px; padding: 0 18px;
  border: 1px solid rgba(17,24,39,.22);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: .82rem; font-weight: 800;
  transition: border-color var(--t), color var(--t);
  white-space: nowrap;
}
.header-faq svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-faq:hover { border-color: var(--gold); color: var(--gold-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }


.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.40) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.08) 100%),
    url('90669.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  padding-top: 76px;
}

.hero-grid {
  display: none;
}
.hero-orb { display: none; }

.hero-doge-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.doge-coin {
  --coin-size: 74px;
  position: absolute;
  width: var(--coin-size);
  height: var(--coin-size);
  border-radius: 50%;
  background-image: url('images/dogecoin-logo.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  filter: drop-shadow(0 12px 18px rgba(117,80,12,.16));
  opacity: .56;
}
.doge-coin--left {
  --coin-size: clamp(58px, 6vw, 86px);
  left: clamp(22px, 7vw, 118px);
  bottom: clamp(108px, 16vh, 188px);
  transform: rotate(-18deg);
}
.doge-coin--right-mid {
  --coin-size: clamp(42px, 3.8vw, 58px);
  right: clamp(308px, 27vw, 438px);
  top: clamp(390px, 47vh, 485px);
  transform: rotate(14deg);
  opacity: .46;
}
.doge-coin--right-top {
  --coin-size: clamp(58px, 5.6vw, 82px);
  right: clamp(72px, 9vw, 142px);
  top: clamp(240px, 29vh, 330px);
  transform: rotate(20deg);
}
.doge-coin--right-low {
  --coin-size: clamp(42px, 4.5vw, 62px);
  right: clamp(244px, 24vw, 360px);
  bottom: clamp(84px, 12vh, 145px);
  transform: rotate(-12deg);
  opacity: .44;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 700px;
  padding: 58px 0 74px;
  position: relative; z-index: 2;
}

.hero-copy {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  max-width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
  flex-wrap: wrap;
  color: #131722;
  font-family: var(--brand);
  font-size: clamp(4.35rem, 7vw, 6.8rem);
  line-height: .88;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 22px;
}
.hero-title-main,
.hero-title-doge {
  display: inline-block;
}
.hero-title-doge {
  color: #a77d16;
}
.hero-lead {
  max-width: 720px;
  color: var(--text-2);
  font-size: clamp(1.04rem, 1.16vw, 1.12rem);
  font-weight: 600;
  line-height: 1.62;
  margin: 0;
  padding-top: 0;
}
.hero-lead::before {
  content: none;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 58px;
  padding: 10px 18px; border-radius: 8px;
  font-size: .95rem; font-weight: 800; border: 1px solid transparent;
  cursor: pointer; transition: all var(--t); line-height: 1; text-decoration: none;
}
.btn svg { flex-shrink: 0; }
.btn span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.btn strong {
  display: block;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
}
.btn small {
  display: block;
  color: currentColor;
  font-size: .72rem;
  font-weight: 650;
  line-height: 1;
  opacity: .68;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: #fff; border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(200,162,39,.22);
}
.btn-primary:hover {
  background: var(--gold-d); border-color: var(--gold-d);
  transform: translateY(-1px); box-shadow: 0 12px 26px rgba(200,162,39,.28);
}
.btn-hero-outline {
  background: rgba(255,255,255,.62); color: var(--text-2); border-color: rgba(17,24,39,.20);
  box-shadow: none;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.38);
  border-color: rgba(17,24,39,.34);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: none;
  margin-top: 20px;
}
.hero-cta .btn {
  min-width: 218px;
}


.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; min-height: 420px; width: 100%;
  min-width: 0;
  margin-top: 12px;
}

.wm-wrap {
  --wm-scale: 1.16;
  position: relative;
  z-index: 1;
  width: calc(510px * var(--wm-scale));
  height: calc(320px * var(--wm-scale));
}

.accent { color: var(--gold); }

.wallet-mockup {
  width: 510px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid #8a8a8a;
  font-size: 11.5px;
  font-family: 'Segoe UI', Ubuntu, system-ui, sans-serif;
  background: #ececec;
  line-height: 1.3;
  transform: scale(var(--wm-scale));
  transform-origin: top center;
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.6),
    0 4px 8px   rgba(0,0,0,.10),
    0 12px 28px rgba(0,0,0,.16),
    0 32px 56px rgba(0,0,0,.20),
    0 64px 96px rgba(0,0,0,.12);
}


.wm-titlebar {
  display: flex; align-items: center;
  height: 28px; padding: 0 12px;
  background: linear-gradient(to bottom, #e6e6e6, #cecece);
  border-bottom: 1px solid #a8a8a8;
}
.wm-tl { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.tl { display: inline-block; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tl-r { background: #ff5f57; border: .5px solid rgba(0,0,0,.2); }
.tl-y { background: #febc2e; border: .5px solid rgba(0,0,0,.2); }
.tl-g { background: #28c840; border: .5px solid rgba(0,0,0,.2); }
.wm-wtitle {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .72rem; font-weight: 600; color: #3a3a3a; user-select: none;
}
.wm-wicon { width: 14px; height: 14px; object-fit: contain; border-radius: 2px; }
.wm-wend { flex-shrink: 0; width: 52px; }


.wm-menubar {
  display: flex; height: 22px; align-items: center;
  background: #f0f0f0;
  border-bottom: 1px solid #cacaca;
  padding: 0 4px;
}
.wm-menubar span {
  padding: 0 9px; height: 100%;
  display: flex; align-items: center;
  font-size: .72rem; color: #1a1a1a;
  cursor: default; user-select: none;
}
.wm-menubar span:hover { background: #0078d4; color: #fff; }


.wm-tabs {
  display: flex; align-items: flex-end;
  background: #dedede;
  border-bottom: 1px solid #b0b0b0;
  padding: 3px 5px 0; gap: 1px;
}
.wm-tab {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 10px 3px;
  font-size: .69rem; color: #555;
  background: #d0d0d0;
  border: 1px solid #b4b4b4; border-bottom: none;
  border-radius: 3px 3px 0 0;
  cursor: default; user-select: none;
  margin-bottom: -1px; position: relative; z-index: 0;
  white-space: nowrap;
}
.tab-ico { width: 14px; height: 14px; object-fit: contain; display: block; flex-shrink: 0; }
.wm-tab.wm-active {
  background: #fff; color: #111; font-weight: 600;
  border-color: #b0b0b0; border-bottom-color: #fff;
  z-index: 2; padding-bottom: 4px;
}


.wm-history { background: #fff; }


.wm-subtitle {
  display: flex; align-items: center; justify-content: space-between;
  height: 22px; padding: 0 8px;
  background: #f0f0f0; border-bottom: 1px solid #d8d8d8;
}
.wm-txcount { font-size: .65rem; color: #666; }
.wm-toolsbtn {
  display: inline-flex; align-items: center; gap: 4px;
  height: 17px; padding: 0 7px;
  background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
  border: 1px solid #b8b8b8; border-radius: 2px;
  font-size: .64rem; color: #333;
  cursor: default; user-select: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}


.wm-hdr {
  display: flex; align-items: center;
  height: 20px; padding: 0 6px;
  background: linear-gradient(to bottom, #f0f0f0, #e4e4e4);
  border-bottom: 1px solid #c8c8c8;
  font-size: .63rem; font-weight: 700; color: #555;
  user-select: none;
}
.wm-hdr .wc-dt { display: flex; align-items: center; gap: 3px; }
.wc-ic { width: 20px; flex-shrink: 0; }
.wc-dt { width: 116px; flex-shrink: 0; }
.wc-lb { flex: 1; min-width: 0; }
.wc-am { width: 82px; text-align: right; flex-shrink: 0; }
.wc-bl { width: 82px; text-align: right; flex-shrink: 0; padding-right: 2px; }


.wm-row {
  display: flex; align-items: center;
  height: 20px; padding: 0 6px;
  border-bottom: 1px solid #efefef;
  font-size: .68rem; color: #222;
  cursor: default;
}
.wm-row.wm-alt { background: #f6f6f6; }
.wm-row:hover  { background: #cde; }


.txi-ok { display: block; width: 14px; height: 14px; object-fit: contain; }

.wm-row .wc-dt { font-size: .66rem; color: #333; }
.wm-row .wc-lb { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #555; font-size: .66rem; }
.wm-row .wc-am { font-weight: 400; }
.wm-row .wc-bl { color: #222; }
.wm-row .pos   { color: #166534; }
.wm-row .neg   { color: #b91c1c; }


.wm-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  height: 22px; padding: 0 6px;
  background: linear-gradient(to bottom, #dcdcdc, #c8c8c8);
  border-top: 1px solid #aaa;
  font-size: .65rem; color: #555; user-select: none;
}
.wm-stat-left { display: flex; align-items: center; gap: 6px; }
.wm-statusbal { color: #333; font-size: .66rem; }
.wm-statusbal b { color: #166534; font-weight: 600; }


.wm-lamp {
  display: inline-block; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  cursor: default;
}
.wm-lamp-green {
  background: radial-gradient(circle at 38% 35%, #6ef27a 0%, #22c55e 45%, #15803d 100%);
  box-shadow: 0 0 4px rgba(34,197,94,.55), inset 0 -1px 2px rgba(0,0,0,.2), inset 0 1px 1px rgba(255,255,255,.4);
}


.wm-status-icons { display: flex; align-items: center; gap: 2px; }
.wm-si-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 20px; border-radius: 2px;
  cursor: default; color: #555;
  transition: background .1s;
}
.wm-si-btn:hover { background: rgba(0,0,0,.1); }
.si-ico { width: 18px; height: 18px; object-fit: contain; display: block; }



.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold-l); background: var(--gold-tint);
  border: 1px solid rgba(200,162,39,.25);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.section-label.light    { color: var(--gold-d); background: rgba(200,162,39,.1); border-color: rgba(200,162,39,.2); }
.section-label.amber-label { color: #92400e; background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.3); }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: 0; line-height: 1.12;
  margin-bottom: 12px; color: var(--dark-text);
}
.section-title.dark-title { color: var(--text); }
.section-sub { color: var(--dark-text-2); margin-bottom: 52px; font-size: 1rem; }
.section-sub.dark-sub { color: var(--text-2); }


.features {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #f2f5f8 100%);
}
.features .section-label {
  color: var(--gold-d);
  background: rgba(200,162,39,.10);
  border-color: rgba(200,162,39,.20);
}
.features .section-title { color: var(--text); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: rgba(17,24,39,.10); border: 1px solid rgba(17,24,39,.10); border-radius: var(--r-lg); overflow: hidden; }

.feature-card {
  position: relative; overflow: hidden;
  padding: 32px 28px;
  background: rgba(255,255,255,.88);
  transition: background var(--t);
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t);
}
.feature-card:hover { background: #fff; }
.feature-card:hover::after { opacity: 1; }

.feature-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.8rem; font-weight: 900; color: rgba(17,24,39,.045);
  line-height: 1; user-select: none; pointer-events: none;
}
.feature-icon-wrap {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(200,162,39,.1); border: 1px solid rgba(200,162,39,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--gold-l);
  transition: background var(--t), border-color var(--t);
}
.feature-card:hover .feature-icon-wrap { background: rgba(200,162,39,.18); border-color: rgba(200,162,39,.4); }
.feature-icon-wrap svg { width: 22px; height: 22px; }

.feature-card h3 { font-family: var(--display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }


.download {
  padding: 86px 0 92px;
  background:
    linear-gradient(135deg, #111722 0%, #0d1117 58%, #14171d 100%);
  color: #fff;
}
.download-shell {
  display: block;
}
.download-copy {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}
.download-copy .section-label {
  color: var(--gold-l);
  background: rgba(240,192,64,.12);
  border-color: rgba(240,192,64,.28);
}
.download-copy .section-title {
  color: #fff;
  max-width: 620px;
  margin-bottom: 14px;
}
.download-copy .section-sub {
  color: rgba(230,237,243,.72);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.download-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.download-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.download-row:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(240,192,64,.42);
  transform: translateY(-4px);
}
.download-os {
  width: 56px; height: 56px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.download-row--win .download-os { background: #0078d4; }
.download-row--mac .download-os { background: #1f2937; }
.download-row--linux .download-os { background: #ea580c; }
.download-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.download-name {
  font-family: var(--display);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.download-meta {
  margin-top: 4px;
  color: rgba(230,237,243,.62);
  font-size: .82rem;
  line-height: 1.35;
}
.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  width: 100%;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font-size: .84rem;
  font-weight: 850;
  white-space: nowrap;
}
.download-row:hover .download-action { background: var(--gold-d); }


.docs {
  padding: 96px 0;
  background:
    linear-gradient(135deg, #111722 0%, #0d1117 62%, #14171d 100%);
}
.docs-grid { display: flex; flex-direction: column; gap: 2px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.10); }

.doc-card {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,.055);
  border: none;
  transition: background var(--t);
}
.doc-card:hover { background: rgba(255,255,255,.085); }
.doc-card:hover .doc-arrow { color: var(--gold-l); transform: translateX(5px); }

.doc-icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,162,39,.1);
  border: 1px solid rgba(200,162,39,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-l);
}
.doc-icon-wrap svg { width: 21px; height: 21px; }
.doc-body { flex: 1; }
.doc-card h3 { font-family: var(--display); font-size: .95rem; font-weight: 700; color: var(--dark-text); margin-bottom: 3px; }
.doc-card p  { font-size: .825rem; color: rgba(230,237,243,.58); }
.doc-arrow   { flex-shrink: 0; width: 18px; height: 18px; color: rgba(230,237,243,.28); transition: all var(--t); }

.faq {
  padding: 96px 0;
  background: #fff;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 750;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold-d);
  font-weight: 800;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.65;
}
.faq-item a { color: var(--gold-d); font-weight: 700; }

.community {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #f2f5f8 100%);
  border-top: 1px solid rgba(17,24,39,.08);
}
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.community-card {
  display: flex; flex-direction: column; gap: 0;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: all var(--t);
}
.community-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }

.cc-top {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 22px 16px;
}
.cc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-github  .cc-icon { background: #24292e; color: #fff; }
.cc-discord .cc-icon { background: #5865f2; color: #fff; }
.cc-reddit .cc-icon { background: #ff4500; color: #fff; }
.cc-twitter .cc-icon { background: #000; color: #fff; }

.cc-name { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--text); }
.cc-desc { padding: 0 22px 14px; font-size: .835rem; color: var(--text-2); flex: 1; line-height: 1.55; }
.cc-action {
  display: block; padding: 12px 22px;
  border-top: 1px solid var(--border);
  font-size: .8rem; font-weight: 700; color: var(--text-3);
  transition: all var(--t);
}
.cc-github:hover   .cc-action { color: #24292e; background: #f6f8fa; }
.cc-discord:hover  .cc-action { color: #5865f2; background: #f0f0ff; }
.cc-reddit:hover .cc-action { color: #ff4500; background: #fff5f2; }
.cc-twitter:hover  .cc-action { color: #000; background: #f9f9f9; }


.site-footer { background: #0d1117; color: #8b949e; padding: 56px 0 32px; }
.footer-top {
  display: flex; justify-content: space-between; gap: 48px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo  { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; opacity: .85; }
.footer-brand-name { display: block; font-size: 1.1rem; font-weight: 800; color: var(--dark-text); }
.footer-brand-sub  { display: block; font-size: .775rem; color: var(--dark-text-2); margin-top: 2px; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col  { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: .76rem; font-weight: 800; color: var(--dark-text); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.footer-col a  { font-size: .85rem; color: var(--dark-text-2); transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-border); padding-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.footer-note { font-size: .78rem; color: #4b5563; max-width: 600px; line-height: 1.65; }
.footer-copy { font-size: .78rem; color: #374151; }


.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1100px) {
  .hero-inner {
    min-height: 650px;
  }
  .wm-wrap { --wm-scale: 1.06; }
  .download-shell {
    max-width: 100%;
  }
  .main-nav { gap: 20px; }
}

@media (max-width: 1000px) {
  .hero-inner {
    min-height: 0;
    padding: 54px 0 64px;
  }
  .wm-wrap { --wm-scale: 1; }
  .hero h1 {
    max-width: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
  }
  .hero-lead {
    max-width: 520px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  .hero-cta {
    width: 100%;
    max-width: 520px;
    flex-direction: row;
    justify-content: center;
    margin: 20px auto 0;
  }
  .hero-cta .btn { width: auto; min-width: 220px; }
  .download-shell {
    max-width: 720px;
    margin: 0 auto;
  }
  .download-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .download-row {
    min-height: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }
  .download-action {
    grid-column: 1 / -1;
  }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .8rem; }
}

@media (max-width: 860px) {
  .header-inner { height: 64px; }
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,.22) 46%, rgba(255,255,255,.06) 100%),
      url('90669.jpg');
    background-size: cover;
    background-position: 64% bottom;
    background-repeat: no-repeat;
    padding-top: 64px;
  }
  .hero-grid {
    mask-image: radial-gradient(ellipse 92% 60% at 50% 62%, black 0%, transparent 78%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 42px 18px 46px;
    gap: 0;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    min-width: 0;
    text-align: center;
    margin: 0 auto;
  }
  .hero h1 { max-width: none; margin-left: auto; margin-right: auto; margin-bottom: 16px; }
  .hero-lead { margin-left: auto; margin-right: auto; margin-bottom: 0; padding-top: 0; }
  .hero-cta { justify-content: center; margin: 22px auto 0; }
  .hero-visual { min-height: 340px; margin-top: 8px; }

  .wallet-mockup {
    width: 510px; max-width: none;
  }

  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 24px; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 28px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .logo-text { font-size: .78rem; }
  .hero-inner { padding-top: 34px; }
  .hero h1 {
    max-width: 100%;
    flex-direction: column;
    gap: .04em;
    font-size: min(2.7rem, 11.4vw);
    line-height: .96;
  }
  .hero-lead { max-width: 330px; font-size: .98rem; line-height: 1.62; }
  .hero-copy { width: 100%; }
  .hero-cta {
    width: 100%;
    max-width: min(280px, 100%);
    flex-direction: column;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-visual {
    height: 250px;
    min-height: 0;
    max-width: 100%;
    overflow: visible;
  }
  .wm-wrap {
    --wm-scale: .70;
    position: relative;
    width: calc(510px * var(--wm-scale));
    height: calc(320px * var(--wm-scale));
    overflow: hidden;
    transform: none;
    transform-origin: top center;
  }
  .wallet-mockup { transform-origin: top left; }
  .wallet-mockup { font-size: 11px; }
  .wm-tab:nth-child(4) { display: none; } 

  .features-grid  { grid-template-columns: 1fr; gap: 1px; }
  .download {
    width: 100vw;
    max-width: 100vw;
    padding: 64px 0 70px;
    overflow: hidden;
  }
  .download-shell {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .download-copy .section-title {
    max-width: 300px;
    font-size: 1.85rem;
  }
  .download-copy .section-sub {
    max-width: 300px;
  }
  .download-row {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .download-os {
    width: 46px;
    height: 46px;
  }
  .download-action {
    grid-column: 1 / -1;
    width: 100%;
  }
  .community-grid { grid-template-columns: 1fr; }
  .docs-grid      { border-radius: var(--r); }

  .btn            { padding: 11px 20px; font-size: .9rem; }
  .hero-cta .btn  { width: 100%; justify-content: center; }

  .footer-cols    { gap: 20px; }
}

@media (max-width: 470px) {
  .hero-visual { height: 235px; }
  .wm-wrap { --wm-scale: .70; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: min(2.42rem, 11.2vw); }
  .hero-lead { max-width: 280px; }
  .hero-cta { max-width: 280px; }
  .nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
  }
  .hero-visual { height: 218px; }
  .wm-wrap { --wm-scale: .56; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 12vw; }
  .hero-visual { height: 202px; }
  .wm-wrap { --wm-scale: .52; }
}
