@font-face {
  font-family: "Anybody";
  src: url("assets/fonts/Anybody-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("assets/fonts/SchibstedGrotesk-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --void: #0b1b12;
  --ink: #102818;
  --panel: #163923;
  --panel-lit: #205230;
  --surface: rgba(10, 29, 18, 0.92);
  --surface-soft: rgba(15, 42, 27, 0.78);
  --surface-raised: rgba(20, 56, 35, 0.88);
  --flow-bg: #0b2015;
  --flow-bg-deep: #08180f;
  --flow-panel: rgba(15, 42, 27, 0.96);
  --line: #487a4f;
  --line-strong: #5f9c3a;
  --hairline: rgba(169, 255, 54, 0.2);
  --acid: #a9ff36;
  --acid-soft: #d4ff8a;
  --mint: #61d99f;
  --cyan: #69dbce;
  --amber: #ffd166;
  --bone: #f1ead7;
  --muted: #c0cab4;
  --faint: #829078;
  --shadow: rgba(0, 0, 0, 0.58);
  --glow: rgba(169, 255, 54, 0.24);
  --display: "Anybody", ui-sans-serif, system-ui, sans-serif;
  --body: "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --cut-button: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  --cut-panel: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(169, 255, 54, 0.13), transparent 30rem),
    radial-gradient(circle at 86% 22%, rgba(97, 217, 159, 0.14), transparent 28rem),
    linear-gradient(180deg, #0e2517 0%, var(--flow-bg) 46%, var(--flow-bg-deep) 100%);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0, black 22%, black 78%, transparent 100%);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(169, 255, 54, 0.14), transparent 16rem),
    linear-gradient(180deg, #06120b 0%, #0b2015 100%);
  color: var(--bone);
  text-align: center;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-mark {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.preloader-mark::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(169, 255, 54, 0.22);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

.preloader-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader span {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--acid-soft);
}

.preloader-bar {
  width: min(240px, 64vw);
  height: 4px;
  overflow: hidden;
  background: rgba(169, 255, 54, 0.14);
  clip-path: var(--cut-button);
}

.preloader-bar::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--mint));
  animation: preloaderScan 1.05s ease-in-out infinite;
}

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

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

::selection {
  color: var(--void);
  background: var(--acid);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  padding: 0.72rem max(1.25rem, calc((100% - 1240px) / 2));
  border-bottom: 1px solid var(--hairline);
  background: rgba(5, 15, 9, 0.9);
  backdrop-filter: blur(20px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: max(1.25rem, calc((100% - 1240px) / 2));
  right: max(1.25rem, calc((100% - 1240px) / 2));
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 255, 54, 0.7), transparent);
  opacity: 0.36;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(5, 14, 9, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(169, 255, 54, 0.28));
}

.brand span,
h1,
h2,
h3,
.btn,
.eyebrow {
  font-family: var(--display);
  letter-spacing: 0;
}

.brand span {
  color: var(--bone);
  font-size: 1.22rem;
  font-variation-settings: "wdth" 108;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  position: relative;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.4rem;
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--bone);
  padding: 0.78rem;
  clip-path: var(--cut-button);
}

.icon-button span {
  display: block;
  height: 2px;
  margin: 0 0 5px;
  background: var(--bone);
}

.icon-button span:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border: 0;
  clip-path: var(--cut-button);
  cursor: pointer;
  font-size: 0.78rem;
  font-variation-settings: "wdth" 96;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  color: var(--void);
  background: linear-gradient(135deg, var(--acid), var(--mint));
  box-shadow: 0 16px 34px rgba(169, 255, 54, 0.16);
}

.btn-ghost {
  color: var(--bone);
  border: 1px solid rgba(169, 255, 54, 0.34);
  background: rgba(10, 29, 18, 0.76);
}

.btn-ghost:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.btn-disabled {
  color: var(--faint);
  border: 1px solid rgba(101, 112, 94, 0.4);
  background: rgba(20, 34, 25, 0.86);
  cursor: not-allowed;
}

.btn-disabled:hover {
  transform: none;
}

.compact {
  min-height: 42px;
  padding-inline: 1rem;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 27, 18, 0.94));
}

.hero-video,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--void);
}

.hero-bg {
  background-image: url("assets/images/flokinhood-city.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 18, 12, 0.82) 0%, rgba(7, 18, 12, 0.58) 34%, rgba(7, 18, 12, 0.08) 62%, rgba(7, 18, 12, 0) 100%),
    linear-gradient(180deg, rgba(7, 18, 12, 0.02) 0%, rgba(7, 18, 12, 0.03) 56%, rgba(7, 18, 12, 0.54) 100%);
}

.hero-content {
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 2.5rem));
  min-height: 600px;
  margin: 0 auto;
  padding: 3.75rem 0 4.75rem;
}

.hero-copy {
  max-width: 620px;
  transform: translateY(-0.6rem);
  position: relative;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-variation-settings: "wdth" 96;
  font-weight: 850;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(169, 255, 54, 0.2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  color: var(--bone);
  font-size: 4.65rem;
  font-variation-settings: "wdth" 106;
  font-weight: 820;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 2rem;
  color: #e1dfcf;
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.hero-meta span {
  padding: 0.46rem 0.68rem;
  border: 1px solid rgba(169, 255, 54, 0.22);
  color: var(--acid-soft);
  background: rgba(8, 24, 15, 0.66);
  clip-path: var(--cut-button);
  font-size: 0.78rem;
  font-weight: 800;
}

.signal-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(7, 20, 13, 0.98);
  overflow: hidden;
}

.signal-track {
  display: flex;
  width: max-content;
  animation: signalMove 42s linear infinite;
}

.signal-track span {
  min-width: 14rem;
  padding: 0.78rem 1.35rem;
  border-right: 1px solid rgba(169, 255, 54, 0.16);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.signal-track span:nth-child(3n + 1) {
  color: var(--acid);
}

.signal-track span:nth-child(4n) {
  color: var(--amber);
}

@keyframes signalMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: min(21rem, 100%);
  height: 1px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--acid), transparent);
  opacity: 0.7;
}

.section-heading.wide {
  max-width: 920px;
}

h2 {
  color: var(--bone);
  font-size: 2.6rem;
  font-variation-settings: "wdth" 112;
  font-weight: 780;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  color: var(--bone);
  font-size: 1.35rem;
  font-variation-settings: "wdth" 100;
  font-weight: 780;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.story-section {
  width: 100%;
  margin: 0;
  padding: 5rem max(1.25rem, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(169, 255, 54, 0.22);
  border-bottom: 1px solid rgba(169, 255, 54, 0.22);
  background:
    linear-gradient(90deg, rgba(11, 27, 18, 0.94) 0%, rgba(11, 27, 18, 0.76) 42%, rgba(11, 27, 18, 0.48) 100%),
    linear-gradient(180deg, rgba(11, 27, 18, 0.46) 0%, rgba(11, 27, 18, 0.88) 100%),
    url("assets/images/flokinhood-story-bg.png");
  background-size: cover;
  background-position: center 42%;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.story-card {
  min-height: 430px;
  margin: 0;
  padding: 1.15rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  background:
    linear-gradient(180deg, rgba(24, 62, 39, 0.78), rgba(8, 26, 17, 0.92)),
    var(--surface);
  backdrop-filter: blur(4px);
  clip-path: var(--cut-panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.story-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(169, 255, 54, 0.09);
  filter: blur(10px);
}

.story-card span {
  display: inline-flex;
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.story-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  border: 1px solid rgba(169, 255, 54, 0.22);
  object-fit: cover;
  object-position: center;
  clip-path: var(--cut-button);
  position: relative;
  z-index: 1;
}

.story-card:nth-child(3) .story-card-image {
  object-position: 32% center;
}

.story-card p {
  margin: 0;
  color: #d4dac8;
  position: relative;
  z-index: 1;
}

.culture-section {
  border-top: 1px solid rgba(169, 255, 54, 0.14);
}

.culture-section,
.split-section,
.roadmap-section,
.buy-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(169, 255, 54, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--flow-bg), var(--flow-bg-deep));
  box-shadow: 0 0 0 100vmax var(--flow-bg);
  clip-path: inset(0 -100vmax);
}

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

.culture-card {
  min-height: 255px;
  padding: 1.55rem;
  border: 1px solid rgba(169, 255, 54, 0.28);
  background:
    linear-gradient(180deg, rgba(28, 70, 44, 0.92), rgba(10, 31, 20, 0.98)),
    var(--surface);
  clip-path: var(--cut-panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  animation: cultureCardLoop 8s ease-in-out infinite;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.culture-card:nth-child(2) {
  animation-delay: 2s;
}

.culture-card:nth-child(3) {
  animation-delay: 4s;
}

.culture-card:nth-child(4) {
  animation-delay: 6s;
}

.culture-card:nth-child(2)::before {
  animation-delay: 2s;
}

.culture-card:nth-child(3)::before {
  animation-delay: 4s;
}

.culture-card:nth-child(4)::before {
  animation-delay: 6s;
}

.culture-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--acid), transparent);
  opacity: 0.42;
  transition: opacity 160ms ease;
}

.culture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(169, 255, 54, 0.16), transparent 42%);
  opacity: 0;
  animation: cultureCardSheen 8s ease-in-out infinite;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.culture-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 255, 54, 0.45);
  background:
    linear-gradient(180deg, rgba(34, 78, 48, 0.9), rgba(10, 31, 20, 0.98)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.culture-card h3 {
  position: relative;
  z-index: 1;
}

.culture-card span {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--cyan);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.culture-card p {
  color: #d8deca;
  position: relative;
  z-index: 1;
}

@keyframes cultureCardLoop {
  0%,
  32%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(169, 255, 54, 0.28);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  }

  10%,
  18% {
    transform: translateY(-9px) scale(1.022);
    border-color: rgba(169, 255, 54, 0.72);
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.28), 0 0 38px rgba(169, 255, 54, 0.12);
  }
}

@keyframes cultureCardSheen {
  0%,
  32%,
  100% {
    opacity: 0;
  }

  10%,
  18% {
    opacity: 1;
  }
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.5rem;
  align-items: stretch;
}

.poster-panel {
  display: grid;
  place-items: center;
  min-height: 400px;
  padding: 2rem;
  border: 1px solid rgba(169, 255, 54, 0.22);
  background:
    radial-gradient(circle at 50% 42%, rgba(169, 255, 54, 0.12), transparent 17rem),
    linear-gradient(145deg, rgba(21, 56, 35, 0.92), rgba(8, 25, 16, 0.98));
  clip-path: var(--cut-panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.poster-panel::after {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(169, 255, 54, 0.24) 0%, rgba(97, 217, 159, 0.1) 38%, transparent 68%);
  filter: blur(18px);
  opacity: 0.82;
  transform: translate3d(0, 0, 0) scale(1);
  animation: posterGlowPulse 5.8s ease-in-out infinite;
  pointer-events: none;
}

.poster-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(169, 255, 54, 0.18);
  clip-path: var(--cut-panel);
  pointer-events: none;
}

.poster-panel img {
  width: min(300px, 72%);
  filter: none;
  position: relative;
  z-index: 2;
  animation: posterFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.poster-panel p {
  margin: 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

@keyframes posterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

@keyframes posterGlowPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.94;
    transform: scale(1.14);
  }
}

.manifesto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem;
  border-top: 1px solid rgba(169, 255, 54, 0.22);
  border-bottom: 1px solid rgba(169, 255, 54, 0.22);
  background: linear-gradient(180deg, rgba(13, 36, 23, 0.42), rgba(7, 22, 14, 0.1));
}

.manifesto p {
  max-width: 680px;
  color: #cbd0bf;
  font-size: 1.08rem;
}

.signal-meter {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 0.45rem;
  width: min(25rem, 100%);
  margin: 1.35rem 0 0.3rem;
}

.signal-meter span {
  height: 0.42rem;
  background: linear-gradient(90deg, var(--acid), var(--mint));
  clip-path: var(--cut-button);
  box-shadow: 0 0 18px rgba(169, 255, 54, 0.18);
}

.signal-meter span:nth-child(2) {
  opacity: 0.58;
}

.signal-meter span:nth-child(3) {
  opacity: 0.78;
}

.manifesto-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.manifesto-lines span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  color: var(--acid-soft);
  background: rgba(9, 29, 18, 0.76);
  clip-path: var(--cut-button);
}

.roadmap-section {
  border-top: 1px solid rgba(169, 255, 54, 0.14);
}

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

.roadmap li {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(169, 255, 54, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 47, 29, 0.9), rgba(8, 25, 16, 0.96)),
    var(--flow-panel);
  clip-path: var(--cut-button);
  position: relative;
  overflow: hidden;
}

.roadmap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--acid), transparent);
  opacity: 0.42;
}

.roadmap strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.roadmap span {
  color: var(--muted);
}

.buy-section {
  border-top: 1px solid rgba(169, 255, 54, 0.14);
}

.buy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.buy-panel {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  background:
    radial-gradient(circle at 85% 12%, rgba(169, 255, 54, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(22, 58, 36, 0.9), rgba(8, 25, 16, 0.98));
  clip-path: var(--cut-panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 96px;
}

.buy-panel-image {
  width: 100%;
  height: clamp(240px, 34vw, 430px);
  margin-bottom: 1.15rem;
  object-fit: cover;
  object-position: 48% 18%;
  border: 1px solid rgba(169, 255, 54, 0.22);
  clip-path: var(--cut-button);
}

.buy-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-family: var(--display);
  font-variation-settings: "wdth" 96;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.buy-panel p {
  margin-bottom: 1.25rem;
  color: #d4dac8;
}

.contract-chip {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  background: rgba(5, 15, 10, 0.58);
  color: var(--bone);
  text-align: left;
  clip-path: var(--cut-button);
  cursor: pointer;
}

.contract-chip span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contract-chip strong {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--acid-soft);
  overflow-wrap: anywhere;
}

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

.buy-steps li {
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid rgba(169, 255, 54, 0.2);
  background:
    linear-gradient(180deg, rgba(19, 52, 32, 0.9), rgba(8, 25, 16, 0.97)),
    var(--flow-panel);
  clip-path: var(--cut-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.buy-steps li::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(169, 255, 54, 0.07);
  filter: blur(8px);
  pointer-events: none;
}

.buy-steps span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--cyan);
  font-family: var(--display);
  font-variation-settings: "wdth" 96;
  font-weight: 850;
}

.buy-steps h3 {
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.buy-steps p {
  margin: 0;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.safety-reminder {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 209, 102, 0.3);
  background: linear-gradient(90deg, rgba(38, 35, 19, 0.72), rgba(12, 26, 16, 0.88));
  clip-path: var(--cut-button);
}

.safety-reminder strong {
  color: var(--amber);
  font-family: var(--display);
  font-variation-settings: "wdth" 100;
  text-transform: uppercase;
}

.safety-reminder p {
  margin: 0;
  color: #e5ddc9;
}

.dex-section {
  padding-top: 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(169, 255, 54, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--flow-bg), var(--flow-bg-deep));
  box-shadow: 0 0 0 100vmax var(--flow-bg);
  clip-path: inset(0 -100vmax);
}

.dex-panel {
  padding: 1.1rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  background:
    radial-gradient(circle at 86% 12%, rgba(169, 255, 54, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(12, 36, 23, 0.96), rgba(5, 15, 10, 0.98));
  clip-path: var(--cut-panel);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.26);
}

.dex-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.dex-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  border: 1px solid rgba(169, 255, 54, 0.22);
  background: #07120b;
  clip-path: var(--cut-button);
}

.dex-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  width: min(1180px, calc(100% - 2.5rem));
  min-height: 470px;
  margin: 0 auto 4.5rem;
  padding: 12rem 2.2rem 2.5rem;
  border: 1px solid rgba(169, 255, 54, 0.24);
  background:
    linear-gradient(90deg, rgba(4, 14, 9, 0.48) 0%, rgba(7, 21, 13, 0.2) 46%, rgba(5, 15, 10, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 15, 10, 0.03) 0%, rgba(5, 15, 10, 0.08) 30%, rgba(5, 15, 10, 0.68) 66%, rgba(5, 15, 10, 0.94) 100%),
    url("assets/images/flokinhood-join-alley.png");
  background-size: cover;
  background-position: center 30%;
  clip-path: var(--cut-panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  position: relative;
}

.join-section::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(169, 255, 54, 0.13);
  filter: blur(26px);
  pointer-events: none;
}

.join-copy {
  min-width: 0;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.join-section h2 {
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.join-section p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.join-actions {
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.disclaimer-section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: -2.8rem auto 4.5rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(169, 255, 54, 0.22);
  background:
    linear-gradient(90deg, rgba(7, 22, 14, 0.9), rgba(9, 31, 19, 0.76)),
    var(--flow-bg-deep);
  clip-path: var(--cut-button);
}

.disclaimer-section p {
  max-width: 1060px;
  margin: 0;
  color: rgba(212, 218, 200, 0.86);
  font-size: 0.92rem;
  line-height: 1.65;
}

.disclaimer-section p + p {
  margin-top: 0.8rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem max(1.25rem, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--hairline);
  color: var(--faint);
  background: var(--flow-bg-deep);
}

.site-footer span:first-child,
.site-footer span:nth-child(2) {
  color: var(--bone);
  font-family: var(--display);
  font-weight: 850;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  padding: 0.8rem 1rem;
  color: var(--void);
  background: var(--acid);
  clip-path: var(--cut-button);
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(140%);
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    display: block;
    width: 122px;
    height: 82px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-999px, -999px, 0);
    transition: opacity 140ms ease, filter 140ms ease;
    will-change: transform;
  }

  .custom-cursor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(16% 0, 63% 0, 100% 58%, 84% 100%, 32% 100%, 0 37%);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  }

  body.is-cursor-active .custom-cursor {
    opacity: 1;
  }

  body.is-cursor-pressing .custom-cursor {
    filter: brightness(1.16) saturate(1.15);
  }
}

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

@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes preloaderScan {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(230%);
  }
}

@media (min-width: 1400px) {
  .dex-embed {
    padding-bottom: 65%;
  }
}

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

@media (max-width: 960px) {
  .site-header {
    min-height: 70px;
  }

  .icon-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.7rem 1.25rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 18, 12, 0.98);
  }

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

  .nav-links a {
    padding: 0.85rem 0;
  }

  .compact {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .story-grid,
  .culture-grid,
  .split-section,
  .buy-layout,
  .join-section {
    grid-template-columns: 1fr;
  }

  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-panel {
    position: relative;
    top: auto;
  }

  .join-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 62px;
    padding: 0.5rem 0.75rem;
    gap: 0.65rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand span {
    font-size: 0.92rem;
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    margin-left: auto;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    padding: 0.62rem;
  }

  .icon-button span {
    margin-bottom: 4px;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-video {
    object-position: 66% center;
    transform: translateY(18px) scale(1.04);
    transform-origin: center;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 18, 12, 0.84) 0%, rgba(7, 18, 12, 0.62) 28%, rgba(7, 18, 12, 0.16) 54%, rgba(7, 18, 12, 0.5) 82%, var(--void) 100%),
      linear-gradient(90deg, rgba(7, 18, 12, 0.74), rgba(7, 18, 12, 0.02));
  }

  .hero-content,
  .section,
  .join-section,
  .disclaimer-section {
    width: min(100% - 1.25rem, 1180px);
  }

  .hero-content {
    align-items: start;
    padding-top: 2.15rem;
    padding-bottom: 2rem;
  }

  .hero-copy {
    transform: none;
  }

  h1 {
    font-size: 2.34rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 1.68rem;
    line-height: 1;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .join-actions .btn {
    width: 100%;
  }

  .dex-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .hero-meta span {
    font-size: 0.68rem;
    padding: 0.42rem 0.5rem;
  }

  .story-grid,
  .culture-grid,
  .buy-steps,
  .safety-reminder {
    grid-template-columns: 1fr;
  }

  .story-section {
    width: 100%;
    padding: 4rem 1rem;
  }

  .story-card,
  .culture-card {
    min-height: auto;
  }

  .section {
    padding: 4rem 0;
  }

  .poster-panel {
    min-height: 320px;
  }

  .manifesto {
    padding: 1.2rem 0;
  }

  .roadmap li {
    grid-template-columns: 1fr;
  }

  .buy-steps li {
    min-height: auto;
  }

  .buy-panel-image {
    height: 320px;
  }

  .join-section {
    min-height: 630px;
    padding: 9.8rem 1.35rem 1.35rem;
    background-position: 52% 26%;
  }

  .safety-reminder {
    gap: 0.6rem;
  }
}
