:root {
  --lime: #8fff3a;
  --lime-deep: #5fd410;
  --mint: #d8ffe0;
  --cream: #f3fff4;
  --foam: #eafaf0;
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --purple: #6b2d9b;
  --purple-bright: #9b4fd4;
  --purple-soft: #e8d4f7;
  --white: #ffffff;
  --stroke: 3.5px;
  --radius: 22px;
  --shadow: 6px 6px 0 var(--ink);
  --font-brand: "Fredoka", sans-serif;
  --font-display: "Sriracha", cursive;
  --font-body: "Nunito", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

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

/* ===== Atmosphere ===== */
.bg-wash {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(143, 255, 58, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 20%, rgba(155, 79, 212, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(107, 45, 155, 0.12), transparent 55%),
    linear-gradient(165deg, #f7fff8 0%, #e8fcec 40%, #f0e8f8 100%);
}

.bg-bubbles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  border: 2px solid rgba(18, 18, 18, 0.12);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(143, 255, 58, 0.15));
  animation: rise linear infinite;
  opacity: 0.55;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-110vh) scale(1.15);
    opacity: 0;
  }
}

.ink-splash {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 70%, rgba(18, 18, 18, 0.04) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 35%, rgba(18, 18, 18, 0.05) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 20%, rgba(107, 45, 155, 0.06) 0 2px, transparent 3px);
  background-size: 180px 180px, 140px 140px, 220px 220px;
  animation: grain 18s linear infinite;
}

@keyframes grain {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 180px 90px, -140px 70px, 110px -220px; }
}

/* ===== Header ===== */
.mast {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(247, 255, 248, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: var(--stroke) solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.mast.is-scrolled {
  border-bottom-color: var(--ink);
  background: rgba(247, 255, 248, 0.92);
  box-shadow: 0 8px 0 rgba(18, 18, 18, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--white);
  animation: bob 3.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
}

.brand-tick {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 2px 2px 0 var(--ink);
}

.nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding: 0.2rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.mast-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--lime);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-btn span {
  width: 18px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-brand);
  font-weight: 650;
  font-size: 1rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-sm:hover {
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}

.btn-lime:hover {
  background: #a8ff5c;
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-bright);
}

.btn-ink {
  background: var(--ink);
  color: var(--lime);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
}

.btn-ico {
  width: 18px;
  height: 18px;
  filter: invert(0);
}

.btn-ink .btn-ico {
  filter: invert(1) sepia(1) saturate(8) hue-rotate(40deg) brightness(1.2);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  inset: -20% -10%;
  background: conic-gradient(
    from 0deg at 35% 45%,
    transparent 0deg,
    rgba(143, 255, 58, 0.12) 12deg,
    transparent 24deg,
    rgba(155, 79, 212, 0.1) 36deg,
    transparent 48deg
  );
  animation: spin-rays 28s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes spin-rays {
  to { transform: rotate(360deg); }
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
  animation: twinkle 2.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: rotate(45deg) scale(0.4); }
  40% { opacity: 1; transform: rotate(45deg) scale(1); }
  70% { opacity: 0.6; transform: rotate(45deg) scale(0.8); }
}

.hero-stage {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.tub-ring {
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px dashed rgba(18, 18, 18, 0.2);
  animation: spin-slow 22s linear infinite;
}

.tub-ring-2 {
  width: min(72%, 340px);
  border-style: solid;
  border-color: rgba(107, 45, 155, 0.25);
  animation-direction: reverse;
  animation-duration: 16s;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.mascot-wrap {
  position: relative;
  z-index: 2;
  width: min(88%, 400px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 5px solid var(--ink);
  background:
    radial-gradient(circle at 40% 30%, #ffffff 0%, var(--mint) 45%, #c8f5d0 100%);
  box-shadow:
    10px 10px 0 var(--ink),
    inset 0 -20px 40px rgba(107, 45, 155, 0.08);
  overflow: hidden;
  animation: float-mascot 4.5s ease-in-out infinite;
}

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

.hero-video,
.hero-logo {
  width: 86%;
  height: 86%;
  object-fit: contain;
  position: absolute;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video.is-ready ~ .hero-logo {
  opacity: 0;
  pointer-events: none;
}

.hero-logo {
  z-index: 1;
  filter: drop-shadow(0 8px 0 rgba(18, 18, 18, 0.15));
  animation: peek-wiggle 5s ease-in-out infinite;
}

@keyframes peek-wiggle {
  0%, 100% { transform: translateY(6%) rotate(-1deg); }
  50% { transform: translateY(2%) rotate(1.5deg); }
}

.speed-lines {
  position: absolute;
  inset: 8%;
  z-index: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg 8deg,
    rgba(18, 18, 18, 0.04) 8deg 9deg
  );
  border-radius: 50%;
  animation: spin-slow 40s linear infinite reverse;
  opacity: 0.6;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--purple-soft);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  animation: pulse-soft 2.8s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-shadow: 4px 4px 0 var(--white), 7px 7px 0 var(--ink);
}

.title-line {
  display: block;
}

.title-accent {
  color: var(--lime-deep);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  animation: title-pop 3.5s ease-in-out infinite;
}

@keyframes title-pop {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.ticker-pill {
  display: inline-block;
  margin: 1rem 0 0.75rem;
  padding: 0.35rem 1rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-bio {
  margin: 0 0 1.5rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  max-width: 22ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  max-width: 100%;
}

.ca-label {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  border: 2px solid var(--ink);
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
  border: 2px solid var(--ink);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0.3; }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 5.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 40ch;
}

.section-body {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 48ch;
}

.section-head {
  margin-bottom: 2.25rem;
  text-align: center;
}

.section-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(143, 255, 58, 0.12) 30%, rgba(232, 212, 247, 0.25) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.trait-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.trait-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 750;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.25s;
}

.trait-list li:hover {
  transform: translateX(8px);
}

.trait-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  border: 2.5px solid var(--ink);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 255, 58, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(143, 255, 58, 0); }
}

.peek-frame {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  border: 5px solid var(--ink);
  background: linear-gradient(160deg, var(--white), var(--mint));
  box-shadow: 10px 10px 0 var(--purple);
  overflow: hidden;
  animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  50% { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
}

.peek-logo {
  width: 115%;
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  animation: peek-up 4s ease-in-out infinite;
}

@keyframes peek-up {
  0%, 100% { transform: translateX(-50%) translateY(8%); }
  50% { transform: translateX(-50%) translateY(0); }
}

.peek-ripple {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 70%;
  height: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid rgba(18, 18, 18, 0.15);
  animation: ripple 2.8s ease-out infinite;
}

@keyframes ripple {
  0% { transform: translateX(-50%) scale(0.6); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(1.4); opacity: 0; }
}

/* How to buy */
.howto {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(155, 79, 212, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(143, 255, 58, 0.15), transparent 45%);
}

.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.step {
  position: relative;
  padding: 1.35rem 1.15rem 1.5rem;
  background: var(--white);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime), var(--purple-bright));
}

.step:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 8px 12px 0 var(--ink);
}

.step-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple);
  letter-spacing: 0.08em;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-brand);
  font-size: 1.2rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.howto-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Chart */
.chart {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.03), transparent 20%);
}

.chart-frame {
  position: relative;
  border: 5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  background: #0b0e11;
  box-shadow: 10px 10px 0 var(--ink);
  min-height: 520px;
}

.chart-glow {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(143, 255, 58, 0.25), transparent 70%);
  animation: sheen 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 1;
}

@keyframes sheen {
  0% { transform: translateX(-60%); opacity: 0; }
  30% { opacity: 0.5; }
  100% { transform: translateX(60%); opacity: 0; }
}

.chart-frame iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 560px;
  border: 0;
}

.chart-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Join */
.join {
  padding-bottom: 6rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 45, 155, 0.14), transparent 55%),
    linear-gradient(180deg, transparent, rgba(143, 255, 58, 0.1));
}

.join-banner {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 920px;
  border: 5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--purple);
  animation: banner-float 5s ease-in-out infinite;
}

@keyframes banner-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.3deg); }
}

.join-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 48%,
    transparent 56%
  );
  animation: banner-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-shine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: var(--stroke) solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.social:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--lime);
}

.social-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 3px solid var(--ink);
  background: var(--foam);
  flex-shrink: 0;
}

.social-ico img {
  width: 22px;
  height: 22px;
}

.social-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.social-meta strong {
  font-family: var(--font-brand);
  font-size: 1.1rem;
}

.social-meta span {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink-soft);
}

/* Footer */
.foot {
  border-top: 5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem 1.25rem;
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.brand-foot {
  color: var(--cream);
}

.brand-foot img {
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: var(--white);
}

.foot-bio {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lime);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-weight: 700;
}

.foot-links a {
  position: relative;
}

.foot-links a:hover {
  color: var(--lime);
}

.foot-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  opacity: 0.55;
  max-width: 42ch;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

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

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

  .hero-visual {
    order: -1;
    min-height: 320px;
  }

  .mascot-wrap {
    width: min(78%, 320px);
  }

  .hero-bio,
  .section-lead,
  .section-body {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .ca-row {
    justify-content: center;
  }

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

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

  .social-row {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(247, 255, 248, 0.97);
    border-bottom: 3px solid var(--ink);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 2px dashed rgba(18, 18, 18, 0.15);
  }

  .menu-btn {
    display: flex;
  }

  .mast-actions .btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 3.6rem);
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .brand-text {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
