/* =============================================================================
 *  GiftLink — BNB black & gold theme
 *  Base colors come from brand.js (--bg, --surface, --accent, ...); the rest
 *  of the design tokens live here.
 * ========================================================================== */
:root {
  color-scheme: dark;
  --bg: #0B0E11;
  --surface: #181A20;
  --surface2: #1E2329;
  --text: #EAECEF;
  --muted: #848E9C;
  --accent: #F0B90B;
  --accent2: #0ECB81;
  --danger: #F6465D;
  --radius: 14px;

  --gold: #F0B90B;
  --gold-hi: #FCD535;
  --gold-lo: #C99400;
  --line: rgba(240,185,11,.14);
  --line-soft: rgba(255,255,255,.07);
  --shadow: 0 24px 60px -24px rgba(0,0,0,.8);
  --glow: 0 0 0 1px rgba(240,185,11,.25), 0 18px 50px -18px rgba(240,185,11,.35);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(240,185,11,.10), transparent 60%),
    radial-gradient(800px 500px at 0% 10%, rgba(240,185,11,.05), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.hidden { display: none !important; }

/* ---- BNB diamond mark ---- */
.diamond { width: 28px; height: 28px; transform: rotate(45deg); position: relative; flex: none; }
.diamond i {
  position: absolute; background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  border-radius: 3px;
}
.diamond .c { inset: 34% ; }
.diamond .tl { top: 0; left: 0; width: 42%; height: 42%; }
.diamond .tr { top: 0; right: 0; width: 42%; height: 42%; }
.diamond .bl { bottom: 0; left: 0; width: 42%; height: 42%; }
.diamond .br { bottom: 0; right: 0; width: 42%; height: 42%; }

/* ---- Nav (floating pill) ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0 0;
  background: transparent;
}
.nav-inner {
  display: flex; align-items: center; gap: 16px; height: 58px;
  padding: 0 10px 0 18px; border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(20,22,27,.82);
  border: 1px solid var(--line-soft);
  box-shadow: 0 14px 40px -20px rgba(0,0,0,.9);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .logo { font-size: 26px; line-height: 1; }
.brand .logo img { height: 30px; width: auto; vertical-align: middle; border-radius: 8px; }
.brand .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.nav-spacer { flex: 1; }
.nav-link { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-link:hover { color: var(--text); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 12px 18px; border-radius: 11px; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #1A1300; box-shadow: var(--glow); }
.btn-gold:hover { box-shadow: 0 0 0 1px rgba(240,185,11,.5), 0 20px 46px -16px rgba(240,185,11,.6); }
.btn-gold:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; filter: grayscale(.3); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-soft); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---- Wallet dropdown ---- */
.wallet-menu { position: relative; display: inline-flex; }
.wallet-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 10px; box-shadow: 0 12px 32px -8px rgba(0,0,0,.7);
  min-width: 160px; z-index: 200; overflow: hidden;
}
.wallet-dropdown button {
  display: block; width: 100%; padding: 12px 16px;
  background: none; border: none; color: var(--danger);
  font-size: 14px; font-family: var(--font-body); font-weight: 500;
  text-align: left; cursor: pointer;
}
.wallet-dropdown button:hover { background: rgba(246,70,93,.08); }

/* ---- Hero ---- */
.hero { padding: 60px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: rgba(240,185,11,.08); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 10px var(--accent2); }
h1.headline {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; line-height: 1.02;
  font-size: clamp(38px, 5.4vw, 62px); margin: 20px 0 16px;
}
.headline .grad {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold) 45%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--muted); font-size: 18px; max-width: 30ch; margin: 0 0 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.trust { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.trust .t { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13.5px; }
.trust .t b { color: var(--text); font-weight: 600; }
.trust svg { width: 16px; height: 16px; color: var(--accent2); }

/* ---- Panel (the create-gift app) ---- */
.panel {
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--line-soft); border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.panel h2 { font-family: var(--font-display); font-size: 18px; margin: 2px 0 4px; }
.panel .sub { color: var(--muted); font-size: 13.5px; margin: 0 0 14px; }
label { display: block; font-size: 12.5px; color: var(--muted); margin: 16px 0 7px; font-weight: 500; }
input {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: var(--font-body);
  background: rgba(0,0,0,.35); color: var(--text);
  border: 1px solid var(--line-soft); border-radius: 11px; transition: border-color .15s, box-shadow .15s;
}
input::placeholder { color: #5b6472; }
input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,185,11,.15); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.helper { color: var(--muted); font-size: 12.5px; margin-top: 8px; font-family: var(--font-mono); }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pill {
  cursor: pointer; font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(240,185,11,.06); color: var(--gold);
  transition: background .15s, transform .1s;
}
.pill:hover { background: rgba(240,185,11,.16); }
.pill:active { transform: scale(.96); }
.status { margin-top: 14px; font-size: 13.5px; min-height: 18px; font-family: var(--font-mono); }
.status.ok { color: var(--accent2); }
.status.err { color: var(--danger); }

.link-out {
  margin-top: 12px; padding: 13px; border-radius: 12px; font-family: var(--font-mono);
  background: rgba(0,0,0,.4); word-break: break-all; font-size: 12.5px;
  border: 1px dashed var(--line); display: flex; gap: 10px; align-items: flex-start;
}
.link-out b { color: var(--gold); font-family: var(--font-body); }
.link-out .claimurl { flex: 1; color: var(--muted); }
.link-out .copy { cursor: pointer; color: var(--accent); font-weight: 700; white-space: nowrap; }

/* ---- Create flow: numbered step cards (Givest-style) ---- */
.create-flow { display: flex; flex-direction: column; gap: 14px; }
.step-card {
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  border: 1px solid var(--line-soft); border-radius: 18px; padding: 20px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.step-card:hover { border-color: var(--line); }
.step-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.step-num {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: #1A1300;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
}
.step-head h2 { font-family: var(--font-display); font-size: 16px; margin: 0; letter-spacing: -.01em; }
.step-card label { margin-top: 0; }
.step-card .row2 label { margin-top: 0; }

/* stock-picker grid — logo tiles */
.token-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px;
}
@media (min-width: 480px) { .token-grid { grid-template-columns: repeat(4, 1fr); } }
.token-grid .token-pill {
  flex-direction: column; gap: 6px; padding: 11px 6px; border-radius: 12px;
  justify-content: center; text-align: center; min-height: 62px;
}
.token-grid .token-pill .pill-txt { font-size: 11px; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.token-grid .pill-badge, .token-grid .pill-logo { width: 24px; height: 24px; }

/* amount quick-pick chips */
.amount-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.amount-chip {
  cursor: pointer; font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.03); color: var(--muted);
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.amount-chip:hover { border-color: var(--gold); color: var(--gold); }
.amount-chip:active { transform: scale(.96); }
.amount-chip.active { background: var(--gold); border-color: var(--gold); color: #1A1300; }

/* Share-on-X row on generated links */
.link-share { display: flex; gap: 8px; margin-top: 10px; }
.link-share .btn { flex: 1; }

/* ---- Sections ---- */
.section { padding: 64px 0; }
.section-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.section h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(26px, 3.5vw, 36px); margin: 10px 0 34px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: 24px; position: relative; }
.step .num { font-family: var(--font-mono); font-size: 13px; color: #1A1300; background: var(--gold); width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-weight: 700; }
.step h3 { font-family: var(--font-display); font-size: 17px; margin: 16px 0 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* Assets marquee */
.assets { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 22px 0; overflow: hidden; }
.assets .label { text-align: center; color: var(--muted); font-size: 12.5px; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.marquee { display: flex; gap: 12px; width: max-content; animation: scroll 26s linear infinite; }
.marquee.dup { margin-top: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }
.chip {
  font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--text);
  border: 1px solid var(--line-soft); background: var(--surface); border-radius: 10px; padding: 10px 16px; white-space: nowrap;
}
.chip .b { color: var(--gold); }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line-soft); padding: 32px 0; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .net { display: inline-flex; align-items: center; gap: 7px; }
.footer .net .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
.disclaimer { margin-top: 14px; font-size: 11.5px; color: #5b6472; max-width: 70ch; }

/* ---- Claim page: the golden ticket (signature element) ---- */
.claim-wrap { max-width: 520px; margin: 56px auto; }
.ticket {
  position: relative; border-radius: 20px; padding: 34px 30px;
  background: linear-gradient(160deg, #211B06, #14100a 60%, var(--surface));
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; text-align: center;
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; width: 26px; height: 26px; background: var(--bg);
  border-radius: 50%; top: 50%; transform: translateY(-50%);
}
.ticket::before { left: -13px; } .ticket::after { right: -13px; }
.ticket .shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 40%, rgba(252,213,53,.14) 50%, transparent 60%); animation: shine 4.5s ease-in-out infinite; }
@keyframes shine { 0%,100% { transform: translateX(-30%);} 50% { transform: translateX(30%);} }
.ticket .kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.ticket .amount { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: -.02em; margin: 12px 0 4px; }
.ticket .note { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.perf { border-top: 2px dashed var(--line); margin: 22px -30px; }
.done-box { text-align: center; }
.done-box .big { font-family: var(--font-display); font-size: 24px; color: var(--accent2); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .lede { max-width: none; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Keep the top bar uncluttered on phones: drop the in-page anchor links
     (How it works / Reclaim are still reachable by scrolling); keep Claim + Connect. */
  .nav-inner { gap: 10px; }
  .nav a.nav-link[href^="#"] { display: none; }
  .hero { padding: 40px 0 28px; }
  .section { padding: 46px 0; }
  .hero-cta .btn { flex: 1 1 auto; }   /* bigger, easier-to-tap CTAs */
}

@media (prefers-reduced-motion: reduce) {
  .marquee, .ticket .shine, .footer::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* keyboard focus visibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =============================================================================
 *  Stock picker + logo chips  (added for the tokenized-stock picker)
 * ========================================================================== */

/* small hint above the picker chips */
.presets-hint {
  margin-top: 14px; font-size: 12px; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: .04em;
}

/* picker chip = logo/badge + company name */
.token-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px 6px 6px;
}
.token-pill .pill-txt { line-height: 1; }
.pill-badge {
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  display: inline-grid; place-items: center;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: -.02em;
  color: #1A1300; background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
}
.pill-logo {
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  object-fit: contain; background: #fff; padding: 1px;
}
.token-pill.active {
  background: var(--gold); border-color: var(--gold); color: #1A1300;
}
.token-pill.active .pill-txt { color: #1A1300; }

/* logos/badges inside the scrolling ticker */
.chip { display: inline-flex; align-items: center; gap: 9px; }
.chip-logo {
  width: 18px; height: 18px; border-radius: 5px; flex: none;
  object-fit: contain; background: #fff; padding: 1px;
}
.chip-badge {
  width: 18px; height: 18px; border-radius: 5px; flex: none;
  display: inline-grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: #1A1300; background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
}

/* footer tagline (replaces the old network label) */
.foot-tag {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--text); letter-spacing: -.01em;
}

/* =============================================================================
 *  Hover effects
 * ========================================================================== */

/* stock picker chips — lift + gold glow */
.token-pill { transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease; }
.token-pill:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 10px 24px -12px rgba(240,185,11,.65); }

/* "how it works" cards — lift + gold edge */
.step { transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.step:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--glow); }

/* ticker — pause the scroll on hover, and light up whatever you point at */
.marquee:hover { animation-play-state: paused; }
.chip { transition: transform .15s ease, border-color .15s ease, background .15s ease; }
.chip:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--surface2); }

/* nav + footer brand — subtle scale */
.brand { transition: transform .15s ease; }
.brand:hover { transform: scale(1.03); }

/* trust badges brighten */
.trust .t { transition: color .15s ease; }
.trust .t:hover { color: var(--text); }

/* generated claim-link rows */
.link-out { transition: border-color .15s ease, box-shadow .2s ease; }
.link-out:hover { border-color: var(--gold); box-shadow: 0 8px 22px -14px rgba(240,185,11,.5); }

/* claim ticket — deepen the golden glow */
.ticket { transition: box-shadow .25s ease; }
.ticket:hover { box-shadow: 0 28px 72px -22px rgba(240,185,11,.4); }

/* =============================================================================
 *  Header + footer flourishes
 * ========================================================================== */

/* sweeping gold accent line on the footer */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold-hi) 50%, transparent);
  background-size: 50% 100%; background-repeat: no-repeat;
  animation: sweep 4.5s linear infinite;
}
@keyframes sweep { 0% { background-position: -50% 0; } 100% { background-position: 150% 0; } }

/* soft gold glow rising into the footer */
.footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 220px at 50% 130%, rgba(240,185,11,.12), transparent 70%);
}
.footer .container { position: relative; z-index: 1; }

/* GIVIO wordmark in gold gradient (nav + footer) */
.brand .name {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold) 50%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* animated gold underline on nav + footer links */
.nav-link { position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold-lo));
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* footer tagline — larger, gold gradient */
.foot-tag {
  font-size: 17px;
  background: linear-gradient(100deg, var(--gold-hi), var(--gold) 55%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =============================================================================
 *  Footer — full product layout (CTA band + link columns + on-chain bar)
 * ========================================================================== */
.footer { padding: 0 0 30px; }

/* --- top call-to-action band --- */
.foot-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin: 38px 0 40px; padding: 28px 30px;
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(135deg, rgba(240,185,11,.11), rgba(240,185,11,.02) 55%, transparent);
  position: relative; overflow: hidden;
}
.foot-cta::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.foot-cta .foot-tag { font-size: clamp(19px, 2.4vw, 25px); }
.foot-cta-sub { color: var(--muted); font-size: 14px; margin: 7px 0 0; }

/* --- link columns --- */
.foot-grid {
  display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr; gap: 34px;
  padding-bottom: 30px; border-bottom: 1px solid var(--line-soft);
}
.foot-col h4 {
  font-family: var(--font-mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
.foot-col a {
  display: block; color: var(--muted); font-size: 14px; padding: 5px 0;
  transition: color .15s ease, transform .15s ease;
}
.foot-col a:hover { color: var(--gold); transform: translateX(3px); }

.foot-brandcol .brand { margin-bottom: 14px; }
.foot-brandcol .brand .name { font-size: 19px; }
.foot-about {
  color: var(--muted); font-size: 13.5px; line-height: 1.65;
  margin: 0 0 16px; max-width: 44ch;
}
.foot-chain { font-size: 10.5px; }

/* --- social icons --- */
.foot-socials { display: flex; gap: 10px; margin-top: 18px; }
.foot-socials a {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.03); color: var(--muted);
  transition: color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .2s ease;
}
.foot-socials a:hover {
  color: var(--gold); border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(240,185,11,.75);
}
.foot-socials svg { width: 17px; height: 17px; }

/* --- bottom bar --- */
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: 12.5px; color: #5b6472;
}
.foot-addr {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  background: rgba(0,0,0,.35); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 6px 13px;
  transition: color .15s ease, border-color .15s ease;
}
.foot-addr:hover { color: var(--gold); border-color: var(--gold); }
.foot-addr .lbl { color: #5b6472; }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .foot-brandcol { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .foot-cta { padding: 22px 18px; margin: 28px 0 32px; }
  .foot-cta .btn { width: 100%; }
}
