:root {
  --peach: #ffd7c2;
  --peach-deep: #ffb089;
  --salmon: #ff8f6b;
  --ginger: #f06a2f;
  --ginger-deep: #d14f18;
  --cream: #fff6ef;
  --foam: #fffaf6;
  --charcoal: #2a2421;
  --ink: #3b2f2a;
  --muted: #7a6258;
  --leaf: #6f9b4c;
  --shadow: rgba(58, 32, 18, 0.18);
  --glow: rgba(240, 106, 47, 0.35);
  --radius: 1.35rem;
  --font-display: "Bagel", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(255, 176, 137, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(255, 143, 107, 0.35), transparent 50%),
    linear-gradient(165deg, #ffe8d8 0%, #ffd2b8 38%, #ffc4a8 70%, #f7b892 100%);
  overflow-x: hidden;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.aurora-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 143, 107, 0.7), transparent 70%);
}

.aurora-b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  top: 35%;
  background: radial-gradient(circle, rgba(240, 106, 47, 0.45), transparent 70%);
  animation-delay: -6s;
}

.aurora-c {
  width: 50vw;
  height: 30vw;
  left: 25%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(255, 246, 239, 0.8), transparent 70%);
  animation-delay: -12s;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -3%) scale(1.08); }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: linear-gradient(90deg, var(--ginger-deep), var(--ginger), var(--salmon));
  color: var(--foam);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  padding: 0.45rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
  text-transform: uppercase;
}

.ticker-track span {
  white-space: nowrap;
  opacity: 0.95;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 246, 239, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 106, 47, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ginger-deep);
}

.nav-logo {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--foam);
  box-shadow: 0 4px 14px var(--shadow);
  animation: softPulse 3.6s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-weight: 800;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ginger), var(--salmon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--ginger-deep);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.9);
  border: 1px solid rgba(209, 79, 24, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.icon-btn img {
  width: 1.1rem;
  height: 1.1rem;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--foam);
  box-shadow: 0 8px 18px var(--shadow);
  border-color: rgba(209, 79, 24, 0.45);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: var(--ginger-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-primary {
  color: var(--foam);
  background: linear-gradient(135deg, var(--ginger) 0%, var(--salmon) 55%, #ffb089 100%);
  background-size: 180% 180%;
  box-shadow: 0 10px 28px var(--glow);
  animation: gradientShift 5s ease infinite;
}

.btn-primary img {
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.btn-ghost img {
  filter: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px var(--glow);
}

.btn-ghost {
  color: var(--ginger-deep);
  background: rgba(255, 250, 246, 0.72);
  border: 2px solid rgba(240, 106, 47, 0.28);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--foam);
  box-shadow: 0 10px 24px var(--shadow);
}

.btn-nav {
  color: var(--foam);
  background: var(--ginger);
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--glow);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Layout */
main,
.footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2.5rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ginger);
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45);
}

.section-lead {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 2rem);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 176, 137, 0.25) 45%, transparent 70%);
  animation: glowBreathe 6s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  width: min(78vw, 720px);
  height: min(78vw, 720px);
  border: 1px dashed rgba(240, 106, 47, 0.22);
  border-radius: 50%;
  animation: spinSlow 40s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ginger);
  box-shadow: 0 0 16px var(--glow);
}

.orbit-dot:nth-child(1) { top: 8%; left: 50%; }
.orbit-dot:nth-child(2) { bottom: 18%; left: 12%; background: var(--salmon); }
.orbit-dot:nth-child(3) { top: 40%; right: 8%; background: var(--leaf); }

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.mascot-wrap {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease-out;
}

.mascot {
  width: 78%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 250, 246, 0.92);
  box-shadow:
    0 20px 50px rgba(58, 32, 18, 0.28),
    0 0 0 12px rgba(240, 106, 47, 0.08);
  animation: floatBob 5.5s ease-in-out infinite;
  z-index: 2;
}

.mascot-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--peach), var(--peach)) padding-box,
    linear-gradient(135deg, var(--ginger), transparent 40%, var(--salmon), transparent 75%, var(--ginger-deep)) border-box;
  opacity: 0.7;
  animation: ringPulse 4s ease-out infinite;
}

.ring-delay {
  inset: 0%;
  animation-delay: 1.4s;
  opacity: 0.4;
}

.mascot-shine {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.35), transparent 45%);
  pointer-events: none;
  z-index: 3;
  animation: shineSweep 7s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-symbol {
  display: inline-block;
  font-weight: 800;
  color: var(--ginger-deep);
  background: rgba(255, 250, 246, 0.7);
  border: 1px solid rgba(240, 106, 47, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.9rem;
  animation: popIn 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  color: var(--charcoal);
  text-shadow:
    3px 3px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px rgba(209, 79, 24, 0.18);
  animation: titleRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.title-accent {
  background: linear-gradient(105deg, var(--ginger-deep), var(--salmon) 55%, #ffb089);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0.12s;
}

.hero-tagline {
  max-width: 28rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.6rem;
  animation: titleRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  animation: titleRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s both;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(42, 36, 33, 0.08);
  border: 1px solid rgba(42, 36, 33, 0.08);
  animation: titleRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.36s both;
}

.ca-label {
  font-weight: 800;
  color: var(--ginger-deep);
  font-size: 0.85rem;
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--charcoal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--ginger);
  color: var(--foam);
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ca-copy:hover {
  transform: scale(1.04);
  background: var(--ginger-deep);
}

.ca-copy.copied {
  background: var(--leaf);
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: cueBounce 2s ease-in-out infinite;
}

.scroll-cue i {
  width: 2px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(var(--ginger), transparent);
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes ringPulse {
  0% { transform: scale(0.92); opacity: 0.75; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes glowBreathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes shineSweep {
  0%, 100% { opacity: 0.25; transform: rotate(0deg); }
  50% { opacity: 0.55; transform: rotate(8deg); }
}

@keyframes titleRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes cueBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 250, 246, 0.55) 20%, rgba(255, 250, 246, 0.7) 80%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.about-panel {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.55);
  border: 1px solid rgba(240, 106, 47, 0.14);
  box-shadow: 0 12px 30px rgba(58, 32, 18, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(58, 32, 18, 0.12);
}

.about-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ginger-deep);
  margin-bottom: 0.55rem;
}

.about-panel p {
  color: var(--muted);
  font-weight: 700;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trait {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 208, 184, 0.65));
  border: 1px solid rgba(240, 106, 47, 0.16);
  font-weight: 800;
  color: var(--charcoal);
  animation: traitFloat 4.5s ease-in-out infinite;
}

.trait:nth-child(2) { animation-delay: 0.4s; }
.trait:nth-child(3) { animation-delay: 0.8s; }
.trait:nth-child(4) { animation-delay: 1.2s; }

.trait img {
  width: 1.2rem;
  height: 1.2rem;
}

.trait-mark {
  color: var(--ginger-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

@keyframes traitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* How to buy */
.howtobuy .buy-steps {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
  counter-reset: none;
}

.buy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.62);
  border: 1px solid rgba(240, 106, 47, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.buy-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ginger), var(--salmon));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}

.buy-step:hover {
  transform: translateX(6px);
}

.buy-step:hover::before,
.buy-step.in::before {
  transform: scaleY(1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ginger);
  line-height: 1;
}

.buy-step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.buy-step p {
  color: var(--muted);
  font-weight: 700;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Chart */
.chart-frame {
  position: relative;
  border-radius: calc(var(--radius) + 0.2rem);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 20px 50px rgba(58, 32, 18, 0.16),
    0 0 0 1px rgba(240, 106, 47, 0.15);
  background: #0f1218;
  margin-bottom: 1.25rem;
}

.chart-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(240, 106, 47, 0.08);
}

.chart-frame iframe {
  width: 100%;
  height: min(70vh, 620px);
  border: 0;
  display: block;
}

.chart-link {
  margin-top: 0.25rem;
}

/* Join Us — banner only here */
.joinus {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.join-banner-wrap {
  position: relative;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(58, 32, 18, 0.22);
  border: 4px solid rgba(255, 250, 246, 0.85);
}

.join-banner {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(255, 214, 190, 0.35)),
    radial-gradient(circle at 70% 40%, transparent 30%, rgba(240, 106, 47, 0.12));
  pointer-events: none;
  animation: veilPulse 5s ease-in-out infinite;
}

@keyframes veilPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.join-content {
  text-align: center;
}

.join-content .section-lead {
  margin-inline: auto;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.9);
  border: 2px solid rgba(209, 79, 24, 0.22);
  font-weight: 800;
  color: var(--charcoal);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.social-link img {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.03);
  background: var(--foam);
  border-color: rgba(209, 79, 24, 0.4);
  box-shadow: 0 14px 30px var(--shadow);
}

/* Footer */
.footer {
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid rgba(240, 106, 47, 0.14);
  background: rgba(42, 36, 33, 0.92);
  color: #f7e8de;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.footer-brand span,
.footer-inner > p {
  color: rgba(247, 232, 222, 0.72);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 0.65rem;
}

.footer-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 246, 239, 0.1);
  border: 1px solid rgba(255, 208, 184, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  color: #fff;
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: rgba(240, 106, 47, 0.45);
  border-color: rgba(255, 208, 184, 0.5);
}

.footer-links img {
  width: 1.15rem;
  height: 1.15rem;
  filter: brightness(0) invert(1) sepia(0.18) saturate(1.2) hue-rotate(330deg);
}

.footer-note {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247, 232, 222, 0.5);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .ca-row {
    justify-content: center;
    width: min(100%, 420px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    inset: calc(var(--nav-h) + 1.8rem) 1rem auto;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    border-radius: 1rem;
    background: rgba(255, 246, 239, 0.96);
    border: 1px solid rgba(240, 106, 47, 0.16);
    box-shadow: 0 18px 40px rgba(58, 32, 18, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-actions .icon-btn[aria-label="DexScreener"] {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
  }
}
