/* sappy.lol/seals — static clone */
@font-face {
  font-family: "ClashGrotesk";
  src: url("assets/clash_grotesk-s.p.424c49d9.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Robinhood-inspired greens */
  --rh-green: #00c805;
  --rh-neon: #ccff00;
  --rh-deep: #0a1f0c;
  --rh-mid: #0d3b12;
  --blue: #00c805;
  --blue-bright: #00e60b;
  --cyan: #ccff00;
  --yellow: #ccff00;
  --yellow-deep: #a8d400;
  --ink: #061208;
  --white: #ffffff;
  --font-display: "ClashGrotesk", "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, #0d3b12 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, #00c80518 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, #ccff0012 0%, transparent 45%),
    linear-gradient(180deg, #061208 0%, #0a1f0c 40%, #061208 100%);
  background-attachment: fixed;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== TOP NAV ========== */
.top-nav {
  position: fixed;
  inset-inline: 0;
  top: 5vh;
  z-index: 50;
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.1vw;
  color: #fff;
  pointer-events: none;
}

.top-nav > * {
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .top-nav {
    display: flex;
  }
}

.top-nav nav {
  display: flex;
  width: 40%;
  justify-content: space-between;
}

.top-nav nav button,
.top-nav nav a {
  position: relative;
  width: min-content;
  margin-top: 0.5vw;
  white-space: nowrap;
  transition: color 0.15s;
}

.top-nav nav button:hover,
.top-nav nav a:hover {
  color: #d1d5dc;
}

.ping-dot {
  position: absolute;
  top: -0.25rem;
  right: -0.75rem;
  z-index: 50;
  display: inline-flex;
  aspect-ratio: 1;
  height: min-content;
  width: 0.625rem;
}

.ping-dot .ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #ccff00;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot .dot {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #00c805;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.nav-logo {
  width: min(18vw, 200px);
  max-height: 3.5rem;
}

.nav-logo img {
  width: 100%;
  height: auto;
  max-height: 3.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgb(57 255 20 / 0.45));
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.85), transparent);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav img {
  height: 28px;
  width: auto;
}

.mobile-nav .menu-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgb(1 1 1 / 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 4vw 8vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0 200 5 / 0.12) 0%,
    rgb(6 18 8 / 0.45) 45%,
    rgb(6 18 8 / 0.95) 100%
  );
}

.hero-main {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  flex-wrap: nowrap;
}

.hero-coolest {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 13cqw, 8rem);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-coolest .glow {
  position: absolute;
  inset: 0;
  animation: cool-pulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 15px rgba(255, 255, 255, 0.35));
  pointer-events: none;
}

@keyframes cool-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.hero-seal-wrap {
  position: relative;
  width: clamp(4.5rem, 13cqw, 8.5rem);
  aspect-ratio: 1;
  flex-shrink: 0;
}

.hero-seal-wrap .glow-ring {
  position: absolute;
  inset: -18%;
  width: 136%;
  height: 136%;
  object-fit: contain;
  pointer-events: none;
  animation: seal-glow 3s ease-in-out infinite;
}

.hero-seal-wrap .seal {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgb(0 0 0 / 0.45));
  animation: float 4s ease-in-out infinite;
}

@keyframes seal-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

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

.hero-thing {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-top: 0.15em;
  max-width: 18ch;
}

.hero-subline {
  margin-top: 1.25rem;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
  letter-spacing: 0.02em;
}

.hero-subline a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ca-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgb(0 200 5 / 0.18);
  border: 1px solid rgb(204 255 0 / 0.45);
  font-size: 0.85rem;
  font-weight: 600;
}

.ca-badge .ca-label {
  color: var(--yellow);
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
}

.ca-badge .ca-value {
  color: #fff;
}

.social-disabled {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  opacity: 0.45;
  cursor: not-allowed;
}

.social-disabled img {
  width: 1rem;
  height: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  max-width: 40rem;
  margin: 0 auto 2rem;
  justify-content: center;
  text-align: center;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-item .fi-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.45);
}

.footer-item a {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-item a:hover {
  text-decoration: underline;
}

.footer-item .fi-soon {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-snow {
  position: absolute;
  right: 2vw;
  bottom: 18vw;
  width: min(28vw, 220px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .hero-snow {
    bottom: 12vw;
    right: 5vw;
  }
}

/* ========== MEME MACHINE ========== */
.section {
  position: relative;
  padding: 6vw 5vw;
}

@media (min-width: 1536px) {
  .section {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.meme-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
}

.meme-block a.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s;
}

.meme-block a.card:hover {
  transform: translateX(4px);
}

.meme-sticker {
  width: clamp(72px, 12vw, 120px);
  flex-shrink: 0;
}

.meme-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.1;
  color: #fff;
  text-shadow:
    1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .meme-title {
    white-space: normal;
  }
}

.meme-desc {
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #a8d400;
  margin-top: 0.35rem;
  max-width: 28rem;
}

.meme-link-icon {
  width: clamp(28px, 4vw, 48px);
  flex-shrink: 0;
}

.seal-peak {
  position: absolute;
  right: 2vw;
  bottom: -2vw;
  width: min(28vw, 200px);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 640px) {
  .seal-peak {
    display: none;
  }
}

/* ========== SCOOP ========== */
#news {
  padding-top: 4vw;
  padding-bottom: 6vw;
}

.scoop-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 5vw;
  margin-bottom: 1rem;
}

.scoop-head h2 {
  font-size: max(1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.scoop-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4vw 5vw 2vw;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scoop-track::-webkit-scrollbar {
  display: none;
}

.scoop-card {
  flex: none;
  width: min(72vw, 280px);
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.scoop-card:hover {
  transform: translateY(-6px);
}

.scoop-card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0d3b12;
}

.scoop-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scoop-card .meta {
  margin-top: 0.75rem;
}

.scoop-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scoop-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.2rem;
}

/* ========== ABOUT ========== */
#about {
  padding: 8vw 5vw;
  position: relative;
}

.about-label {
  position: absolute;
  right: 4vw;
  top: 10vw;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgb(255 255 255 / 0.7);
  display: none;
}

@media (min-width: 640px) {
  .about-label {
    display: block;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.about-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-title .q-img {
  display: inline-block;
  vertical-align: middle;
  width: 2.5rem;
  margin-left: 0.35rem;
}

.about-copy p {
  color: rgb(255 255 255 / 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.about-copy .things-label {
  font-weight: 600;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-list li {
  position: relative;
  padding-left: 1rem;
  color: rgb(255 255 255 / 0.85);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-bright);
}

.about-visual {
  text-align: center;
}

.about-visual .crowd {
  border-radius: 1rem;
  width: 100%;
}

.about-visual .whisper {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.45);
  font-style: italic;
}

/* ========== GAMING ========== */
#gaming {
  padding: 6vw 0 4vw;
  overflow: hidden;
}

.gaming-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6.5vw, 5rem);
  line-height: 0.95;
  text-align: center;
  padding: 0 5vw 4vw;
  letter-spacing: -0.02em;
}

.gaming-stage {
  position: relative;
  margin: 0 4vw;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: clamp(280px, 50vw, 520px);
}

.gaming-stage > img.world {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 50vw, 520px);
  object-fit: cover;
}

.gaming-stage .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 0.85) 0%,
    rgb(0 0 0 / 0.55) 45%,
    rgb(0 0 0 / 0.15) 100%
  );
}

.gaming-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  max-width: min(36rem, 92%);
}

.games-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--cyan);
}

.game-tag svg {
  height: 1em;
  width: auto;
}

.game-tag svg path {
  fill: #ccff00;
}

.gaming-copy p {
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 0.85rem;
  text-align: justify;
}

.gaming-copy .hl {
  position: relative;
  color: #fff;
  font-weight: 600;
}

.gaming-copy .hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 40%;
  height: 0.55em;
  background: color-mix(in srgb, var(--cyan) 35%, transparent);
  z-index: -1;
  border-radius: 2px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: #00c805e6;
  color: #041006;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.35rem;
  width: fit-content;
  transition: background 0.15s, transform 0.15s;
}

.btn-learn:hover {
  background: #ccff00;
  transform: translateY(-1px);
}

.happy-seals {
  display: block;
  margin: 2.5rem auto 0;
  max-width: min(280px, 50vw);
}

/* ========== INNOVATIONS ========== */
#innovations {
  padding: 8vw 5vw;
}

.innov-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}

.innov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .innov-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.innov-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.innov-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--blue-bright);
}

.innov-card .art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #0a1f0c;
}

.innov-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.innov-card p,
.innov-card li {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.5;
}

.innov-card a {
  color: var(--cyan);
  font-weight: 600;
}

.innov-card a:hover {
  text-decoration: underline;
}

.innov-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.innov-card ul li::before {
  content: "→ ";
  color: var(--blue-bright);
}

.innov-more {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ========== FLYWHEEL ========== */
#flywheel {
  position: relative;
  padding: 8vw 5vw 4vw;
  text-align: center;
  overflow: hidden;
}

.flywheel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.flywheel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.flywheel-bg .halftone {
  position: absolute;
  inset: 0;
  background: url("assets/halftone-pattern.88d765e1.png") center / cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.flywheel-bg .grad {
  position: absolute;
  inset: 0;
  background: url("assets/gradient-overlays.b876c863.png") center / cover;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.flywheel-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.flywheel-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}

.flywheel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 2rem;
}

.flywheel-diagram {
  max-width: min(420px, 80vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgb(57 135 251 / 0.35));
}

.flywheel-inner p {
  color: rgb(255 255 255 / 0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: left;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
}

/* ========== EASTER + FOOTER ========== */
#footer {
  position: relative;
  padding: 8vh 5vw 3rem;
  overflow: hidden;
}

.easter {
  text-align: center;
  margin-bottom: 2rem;
}

.easter p {
  color: rgb(255 255 255 / 0.4);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.easter img {
  max-width: min(320px, 80vw);
  margin: 0 auto;
}

.footer-legal {
  max-width: 36rem;
  margin-left: auto;
  padding-top: 8vh;
  padding-bottom: 3rem;
  text-align: justify;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.55);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-legal {
    font-size: 0.875rem;
  }
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-rail a {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.15);
  transition: background 0.15s, transform 0.15s;
}

.social-rail a:hover {
  background: rgb(255 255 255 / 0.18);
  transform: scale(1.08);
}

.social-rail img {
  width: 1rem;
  height: 1rem;
}

.social-rail .os {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
