:root {
  --ink: #0c0c0c;
  --ink-soft: #1a1a1a;
  --paper: #ecece8;
  --paper-2: #f6f6f2;
  --paper-deep: #deded8;
  --brush: rgba(40, 40, 40, 0.08);
  --muted: #5a5a55;
  --hood: #00c805;
  --hood-deep: #00a004;
  --hood-glow: rgba(0, 200, 5, 0.35);
  --line: rgba(12, 12, 12, 0.12);
  --radius: 18px;
  --header-h: 72px;
  --font-display: "Lilita One", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 200, 5, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(0, 0, 0, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 0% 70%, rgba(0, 200, 5, 0.05), transparent),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 45%, #e5e5df 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

ul,
ol {
  list-style: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  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;
}

.brush-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.brush {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: brush-drift 18s var(--ease-out) infinite alternate;
}

.brush-1 {
  width: 42vw;
  height: 28vw;
  top: -8%;
  left: -10%;
  background: rgba(0, 0, 0, 0.06);
}

.brush-2 {
  width: 36vw;
  height: 36vw;
  top: 35%;
  right: -12%;
  background: rgba(0, 200, 5, 0.07);
  animation-delay: -6s;
  animation-duration: 22s;
}

.brush-3 {
  width: 50vw;
  height: 24vw;
  bottom: 5%;
  left: 20%;
  background: rgba(0, 0, 0, 0.05);
  animation-delay: -12s;
  animation-duration: 26s;
}

@keyframes brush-drift {
  from { transform: translate(0, 0) rotate(0deg) scale(1); }
  to { transform: translate(4%, 6%) rotate(8deg) scale(1.08); }
}

#ink-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  z-index: 40;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(246, 246, 242, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: logo-wobble 5s var(--ease-spring) infinite;
}

@keyframes logo-wobble {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.04); }
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--hood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  border-radius: 2px;
}

.nav a:hover {
  opacity: 1;
}

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

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

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  transition: transform 0.25s var(--ease-spring), background 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0);
}

.icon-btn:hover {
  transform: translateY(-2px) rotate(-6deg);
  background: var(--hood);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-2);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.btn-hood {
  background: var(--hood);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-hood:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  background: #11e016;
}

.btn-ink {
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: 4px 4px 0 var(--hood);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover {
  background: var(--paper-2);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-ink .btn-icon {
  filter: brightness(0) invert(1);
}

.invert-on-dark {
  filter: brightness(0);
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border: 1.5px dashed rgba(12, 12, 12, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 40s linear infinite;
}

.orbit-ring.r1 {
  width: min(78vw, 720px);
  height: min(78vw, 720px);
}

.orbit-ring.r2 {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  animation-direction: reverse;
  animation-duration: 28s;
  border-style: solid;
  border-color: rgba(0, 200, 5, 0.18);
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  left: 50%;
  top: 42%;
  margin: -5px;
}

.orbit-dot.d1 {
  animation: orbit-path 14s linear infinite;
  offset-path: circle(min(39vw, 360px) at center);
}

.orbit-dot.d2 {
  background: var(--hood);
  width: 14px;
  height: 14px;
  margin: -7px;
  animation: orbit-path 18s linear infinite reverse;
  offset-path: circle(min(29vw, 260px) at center);
}

.orbit-dot.d3 {
  background: var(--ink);
  opacity: 0.4;
  animation: orbit-path 22s linear infinite;
  offset-path: circle(min(34vw, 310px) at center);
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-path {
  to { offset-distance: 100%; }
}

.hero-inner {
  text-align: center;
  max-width: 780px;
  width: 100%;
  position: relative;
}

.hero-mark {
  position: relative;
  width: min(280px, 58vw);
  margin: 0 auto 1.5rem;
}

.hero-logo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
}

.float-logo {
  animation: float-y 4.5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.logo-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hood-glow), transparent 68%);
  animation: pulse-halo 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-halo {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 1; }
}

.ink-splash {
  position: absolute;
  border-radius: 50%;
  background: var(--ink);
  z-index: 0;
  opacity: 0.08;
}

.ink-splash.s1 {
  width: 70px;
  height: 70px;
  top: 8%;
  left: -8%;
  animation: splash-pop 5s var(--ease-spring) infinite;
}

.ink-splash.s2 {
  width: 42px;
  height: 42px;
  bottom: 10%;
  right: -4%;
  background: var(--hood);
  opacity: 0.35;
  animation: splash-pop 5s var(--ease-spring) infinite 1.2s;
}

@keyframes splash-pop {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.35); }
  60% { transform: scale(0.9); }
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hood);
  box-shadow: 0 0 0 0 var(--hood-glow);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 var(--hood-glow); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.stroke-line {
  display: inline-block;
  position: relative;
  animation: title-pop 1s var(--ease-spring) both;
}

.stroke-line::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 8%;
  height: 12px;
  background: var(--hood);
  opacity: 0.35;
  transform: skewX(-12deg) scaleX(0);
  transform-origin: left;
  animation: underline-draw 1.1s var(--ease-out) 0.5s forwards;
  z-index: -1;
  border-radius: 4px;
}

@keyframes title-pop {
  from { opacity: 0; transform: scale(0.86) rotate(-3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes underline-draw {
  to { transform: skewX(-12deg) scaleX(1); }
}

.hero-lead {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.25s var(--ease-spring);
}

.hero-links a img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.hero-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--hood-deep);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  opacity: 0.55;
  animation: cue-bob 2s ease-in-out infinite;
}

.scroll-line {
  width: 3px;
  height: 10px;
  background: var(--hood);
  border-radius: 2px;
  animation: cue-slide 2s ease-in-out infinite;
}

@keyframes cue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes cue-slide {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-run 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.06em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hood);
  box-shadow: 0 0 12px var(--hood-glow);
}

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

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0.35rem 0 0.85rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hood-deep);
  position: relative;
  padding-left: 1.4rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 3px;
  background: var(--hood);
  transform: translateY(-50%);
  border-radius: 2px;
}

.eyebrow.light {
  color: var(--hood);
}

.eyebrow.light::before {
  background: var(--hood);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.about-block {
  padding: 1.5rem 1.35rem;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(246, 246, 242, 0.72);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-block::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.15), transparent 70%);
  transition: transform 0.4s var(--ease-out);
}

.about-block:hover {
  transform: translate(-4px, -4px) rotate(-0.5deg);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.about-block:hover::before {
  transform: scale(1.4);
}

.block-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hood);
  margin-bottom: 0.65rem;
  position: relative;
}

.about-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  position: relative;
}

.about-block p {
  color: var(--muted);
  font-size: 0.96rem;
  position: relative;
}

.about-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 2.5px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.08), transparent 45%),
    rgba(246, 246, 242, 0.85);
  box-shadow: 8px 8px 0 var(--ink);
}

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

.feature-logo {
  width: min(220px, 55vw);
  position: relative;
  z-index: 2;
}

.spin-slow {
  animation: spin-slow 28s linear infinite;
}

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

.feature-ring {
  position: absolute;
  width: min(260px, 65vw);
  height: min(260px, 65vw);
  border: 3px dashed rgba(12, 12, 12, 0.18);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite reverse;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.feature-copy > p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-stats li {
  padding: 0.85rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-2);
  text-align: center;
}

.feature-stats span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.feature-stats strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

/* How to buy */
.howtobuy {
  max-width: 900px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--hood), var(--ink));
  border-radius: 2px;
  opacity: 0.35;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.step-index {
  width: 56px;
  height: 56px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 3px 3px 0 var(--hood);
  transition: transform 0.3s var(--ease-spring);
}

.step:hover .step-index {
  transform: scale(1.08) rotate(-8deg);
  background: var(--hood);
}

.step-index span {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.step-body {
  padding: 1.1rem 1.25rem;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(246, 246, 242, 0.75);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.step:hover .step-body {
  transform: translateX(6px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}

.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.step-body p {
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--hood-deep);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.text-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.text-link:hover {
  border-color: var(--hood);
}

/* Chart */
.chart {
  max-width: 1100px;
}

.chart-frame {
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 10px 10px 0 var(--ink);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(90deg, rgba(0, 200, 5, 0.12), transparent 60%);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #febc2e; }
.chrome-dot:nth-child(3) { background: #28c840; }

.chrome-label {
  margin-left: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome-open {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--hood);
  transition: transform 0.25s var(--ease-spring);
}

.chrome-open img {
  width: 14px;
  height: 14px;
  filter: brightness(0);
}

.chrome-open:hover {
  transform: scale(1.05);
}

.chart-embed {
  position: relative;
  width: 100%;
  height: min(640px, 75vh);
  background: #fff;
}

.chart-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Join Us — banner only here */
.joinus {
  max-width: 1100px;
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.join-banner {
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  min-height: min(520px, 78vw);
  box-shadow: 12px 12px 0 var(--ink);
  display: grid;
  align-items: end;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-ken 22s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.05) 0%, rgba(12, 12, 12, 0.55) 55%, rgba(12, 12, 12, 0.82) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(0, 200, 5, 0.25), transparent 50%);
  z-index: 1;
}

.join-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 5vw, 3rem);
  color: #f4f4f0;
  max-width: 560px;
}

.join-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1;
  margin: 0.4rem 0 0.85rem;
  letter-spacing: 0.02em;
}

.join-content > p {
  opacity: 0.88;
  margin-bottom: 1.4rem;
  font-weight: 500;
}

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

.join-actions .btn-ghost {
  color: #f4f4f0;
  border-color: #f4f4f0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.join-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.join-actions .btn-ghost .btn-icon {
  filter: brightness(0) invert(1);
}

/* Footer */
.site-footer {
  border-top: 2.5px solid var(--ink);
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: rgba(246, 246, 242, 0.65);
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a img {
  width: 15px;
  height: 15px;
  filter: brightness(0);
}

.footer-links a:hover {
  color: var(--hood-deep);
  transform: translateY(-2px);
}

.footer-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Magnetic cursor trail dots handled in JS */

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(246, 246, 242, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--ink);
    padding: 0.5rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  }

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

  .nav a {
    padding: 0.9rem 1.25rem;
    opacity: 1;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .header-actions .btn-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .steps::before {
    left: 21px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }

  .step-index {
    width: 44px;
    height: 44px;
  }

  .orbit-dot {
    display: none;
  }

  .chart-embed {
    height: 480px;
  }
}

@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;
  }
}
