/* Hood Doge — Robinhood Doge Theme (lime flag + black type) */

:root {
  --lime: #ccff00;
  --lime-bright: #d8ff33;
  --lime-deep: #a8d600;
  --lime-soft: rgba(204, 255, 0, 0.22);
  --lime-glow: rgba(204, 255, 0, 0.55);
  --hood: #1a6b3c;
  --hood-dark: #0d3d22;
  --hood-panel: #0f2918;
  --black: #0a0a0a;
  --ink: #111811;
  --panel: rgba(15, 41, 24, 0.82);
  --panel-border: rgba(10, 10, 10, 0.14);
  --text: #0a0a0a;
  --text-light: #f2ffe0;
  --muted: rgba(10, 10, 10, 0.68);
  --muted-light: rgba(242, 255, 224, 0.72);
  --font-display: "Anton", Impact, sans-serif;
  --font-brush: "Kaushan Script", cursive;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 76px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--lime);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.lime {
  color: var(--lime);
}

/* ===== Ambient — Robinhood lime flag feel ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

#featherCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.ambient-lime {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, #e4ff4d 0%, var(--lime) 38%, #b8e600 100%);
}

.ambient-fabric {
  position: absolute;
  inset: -10%;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 42px,
      rgba(0, 0, 0, 0.025) 42px,
      rgba(0, 0, 0, 0.025) 44px
    ),
    radial-gradient(ellipse 90% 55% at 20% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 78% 65%, rgba(0, 0, 0, 0.08), transparent 50%);
  animation: fabricShift 14s ease-in-out infinite alternate;
}

.ambient-fabric.fabric-2 {
  opacity: 0.55;
  animation-delay: -5s;
  animation-duration: 18s;
  transform: scale(1.08);
}

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

.feather-mark {
  position: absolute;
  color: rgba(10, 10, 10, 0.07);
  animation: featherFloat 10s ease-in-out infinite;
}

.feather-mark svg {
  width: 100%;
  height: 100%;
}

.feather-a {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 6%;
}

.feather-b {
  width: 120px;
  height: 120px;
  bottom: 18%;
  left: 4%;
  animation-delay: -3s;
}

.feather-c {
  width: 90px;
  height: 90px;
  top: 42%;
  left: 42%;
  animation-delay: -6s;
}

@keyframes fabricShift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1.5%, 0) scale(1.03); }
}

@keyframes featherFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.55; }
  50% { transform: translate(-12px, 16px) rotate(-8deg); opacity: 1; }
}

/* ===== Marquee ===== */
.marquee-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 34px;
  background: var(--black);
  border-bottom: 2px solid var(--lime);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--lime);
  white-space: nowrap;
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--lime);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid rgba(10, 10, 10, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s var(--ease);
}

.nav.scrolled .nav-logo {
  border-color: rgba(204, 255, 0, 0.35);
}

.nav-brand:hover .nav-logo {
  transform: rotate(-4deg) scale(1.05);
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--black);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav.scrolled .nav-name {
  color: var(--lime);
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.75);
  transition: color 0.25s ease;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--muted-light);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav.scrolled .nav-links a::after {
  background: var(--lime);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--black);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a:focus-visible {
  color: var(--text-light);
}

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

.nav-cta {
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  background: var(--black) !important;
  color: var(--lime) !important;
}

.nav.scrolled .nav-cta {
  background: var(--lime) !important;
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 2px solid rgba(10, 10, 10, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
}

.nav.scrolled .nav-toggle {
  border-color: rgba(204, 255, 0, 0.35);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--lime);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  padding: calc(34px + var(--nav-h) + 2rem) 1rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: var(--black);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-flag {
  position: absolute;
  width: min(380px, 82vw);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(145deg, #d4ff33 0%, var(--lime) 45%, #a8d600 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: flagWave 6s ease-in-out infinite;
}

.flag-fold,
.flag-fold.fold-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(0, 0, 0, 0.06) 50%, transparent 62%);
  animation: foldMove 5s ease-in-out infinite;
}

.flag-fold.fold-2 {
  animation-delay: -2.5s;
  opacity: 0.7;
}

.hero-feather-lg {
  position: absolute;
  top: 4%;
  left: 6%;
  width: 72px;
  color: rgba(10, 10, 10, 0.75);
  z-index: 3;
  animation: featherDrift 5s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(300px, 68vw);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-logo.float {
  animation: logoFloat 5.5s ease-in-out infinite;
}

.hero-copy {
  max-width: 560px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 2px solid rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.chip-dot,
.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hood);
  box-shadow: 0 0 10px rgba(26, 107, 60, 0.5);
  animation: blink 1.8s ease-in-out infinite;
}

.hero-title-wrap {
  position: relative;
  margin-bottom: 0.35rem;
}

.speed-lines {
  position: absolute;
  left: -18%;
  top: 18%;
  width: 45%;
  height: 60%;
  background: repeating-linear-gradient(
    -12deg,
    transparent 0,
    transparent 6px,
    rgba(10, 10, 10, 0.12) 6px,
    rgba(10, 10, 10, 0.12) 8px
  );
  mask-image: linear-gradient(90deg, black, transparent);
  animation: speedPulse 3s ease-in-out infinite;
}

.hero-title {
  position: relative;
  line-height: 0.9;
}

.title-brush {
  display: block;
  font-family: var(--font-brush);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: var(--black);
  transform: rotate(-4deg);
  margin-bottom: -0.1rem;
  text-shadow: 2px 3px 0 rgba(255, 255, 255, 0.35);
}

.title-block {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.2rem);
  letter-spacing: 0.02em;
  color: var(--black);
  text-shadow:
    3px 3px 0 rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.title-feather {
  display: block;
  width: 38px;
  margin: 0.15rem auto 0;
  color: var(--black);
  animation: featherBounce 4s ease-in-out infinite;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  color: var(--hood-dark);
  margin-bottom: 1rem;
}

.hero-bio {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--black);
  color: var(--lime);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.btn-lime:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.btn-lime .btn-ico {
  filter: none;
}

.btn-outline {
  border: 2px solid rgba(10, 10, 10, 0.2);
  background: rgba(255, 255, 255, 0.35);
  color: var(--black);
}

.btn-outline .btn-ico {
  filter: brightness(0);
}

.btn-wide {
  width: 100%;
}

.btn-ico {
  width: 20px;
  height: 20px;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 2px dashed rgba(10, 10, 10, 0.18);
  background: rgba(255, 255, 255, 0.32);
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hood-dark);
}

.ca-addr {
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--black);
}

.ca-copy {
  margin-left: auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 2px solid rgba(10, 10, 10, 0.15);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.25s ease;
}

.ca-copy:hover {
  background: var(--black);
  color: var(--lime);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(10, 10, 10, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-bar {
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, var(--black), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ===== Sections — dark hood panels on lime page ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 41, 24, 0.94), rgba(10, 10, 10, 0.97));
  z-index: -1;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text-light);
}

.section-lede {
  margin-top: 0.85rem;
  color: var(--muted-light);
  max-width: 52ch;
  margin-inline: auto;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-seal {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.seal-glow {
  position: absolute;
  inset: 8%;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.28), transparent 68%);
  animation: sealPulse 4s ease-in-out infinite;
}

.seal-logo {
  position: relative;
  z-index: 1;
  width: min(280px, 70vw);
  border-radius: 22px;
  border: 3px solid rgba(204, 255, 0, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  animation: logoFloat 6s ease-in-out infinite;
}

.seal-ring {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 24px;
  border: 2px dashed rgba(204, 255, 0, 0.25);
  animation: ringSpin 20s linear infinite;
}

.about-body p {
  color: var(--muted-light);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--text-light) !important;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.manifesto-card {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 255, 0, 0.16);
  background: rgba(204, 255, 0, 0.06);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.manifesto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.4);
  background: rgba(204, 255, 0, 0.1);
}

.manifesto-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--lime);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.manifesto-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.45;
}

.about-closer {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--lime) !important;
  text-transform: uppercase;
}

.about-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(204, 255, 0, 0.14);
  background: linear-gradient(160deg, rgba(26, 107, 60, 0.25), rgba(10, 10, 10, 0.55));
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.panel-glyph {
  width: 42px;
  height: 42px;
  color: var(--lime);
  margin-bottom: 0.85rem;
}

.panel h3 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  color: var(--text-light);
}

.panel p {
  color: var(--muted-light);
  font-size: 0.94rem;
}

/* How to buy */
.howtobuy::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.97), rgba(15, 41, 24, 0.94));
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(204, 255, 0, 0.14);
  background: rgba(204, 255, 0, 0.05);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.step:hover {
  border-color: rgba(204, 255, 0, 0.35);
  transform: translateX(6px);
}

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

.step-content h3 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  color: var(--text-light);
}

.step-content p {
  color: var(--muted-light);
  font-size: 0.95rem;
}

.buy-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.buy-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(204, 255, 0, 0.16);
  background: rgba(0, 0, 0, 0.28);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.buy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.4);
  background: rgba(204, 255, 0, 0.08);
}

.buy-card img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.buy-card strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.buy-card span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted-light);
  margin-top: 0.15rem;
}

/* Chart */
.chart-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(204, 255, 0, 0.2);
  background: #0b120d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(204, 255, 0, 0.12);
  background: rgba(0, 0, 0, 0.45);
}

.chart-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.chart-label {
  margin-left: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-light);
}

.chart-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
}

.chart-frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #0b120d;
}

.chart-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

/* Join us */
.joinus::before {
  background: linear-gradient(180deg, rgba(15, 41, 24, 0.94), rgba(204, 255, 0, 0.12));
}

.joinus-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.joinus-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(10, 10, 10, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.banner-glow,
.banner-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.banner-glow {
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15), transparent 55%);
}

.banner-shimmer {
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: bannerShine 5s ease-in-out infinite;
}

.banner-img {
  width: 100%;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}

.joinus-banner:hover .banner-img {
  transform: scale(1.05);
}

.joinus-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.joinus-desc {
  color: var(--muted-light);
  margin-bottom: 1.4rem;
}

.social-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 255, 0, 0.16);
  background: rgba(0, 0, 0, 0.28);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.social-card:hover {
  transform: translateX(6px);
  border-color: rgba(204, 255, 0, 0.38);
}

.social-card img {
  width: 28px;
  height: 28px;
}

.social-card strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.social-card span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted-light);
}

/* Footer */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 3px solid var(--black);
  background: var(--lime);
  color: var(--black);
}

.footer-inner {
  text-align: center;
}

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

.footer-logo {
  width: 44px;
  border-radius: 12px;
  border: 2px solid rgba(10, 10, 10, 0.12);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.footer-brand span {
  font-size: 0.86rem;
  color: var(--hood-dark);
  font-weight: 700;
}

.footer-tag {
  font-family: var(--font-brush);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.footer-note,
.footer-copy {
  color: rgba(10, 10, 10, 0.65);
  font-size: 0.84rem;
  max-width: 62ch;
  margin-inline: auto;
}

.footer-copy {
  margin-top: 0.65rem;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--black);
  border: 2px solid var(--lime);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
  z-index: 200;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal[data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="right"] {
  transform: translateX(36px);
}

.reveal.visible[data-reveal="left"],
.reveal.visible[data-reveal="right"] {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* Keyframes */
@keyframes flagWave {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.02); }
}

@keyframes foldMove {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(8%); opacity: 1; }
}

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

@keyframes featherDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(8px, -10px) rotate(6deg); }
}

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

@keyframes speedPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(6px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes sealPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bannerShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero-inner,
  .about-layout,
  .joinus-grid {
    grid-template-columns: 1fr;
  }

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

  .about-panels,
  .buy-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: calc(34px + var(--nav-h));
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 18px;
    border: 2px solid var(--lime);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.65rem 0.25rem;
    color: var(--muted-light) !important;
  }

  .hero-scroll {
    display: none;
  }

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

  .speed-lines {
    display: none;
  }
}

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