:root {
  --abyss: #02101f;
  --deep-sea: #062a4a;
  --ocean: #0b4f7a;
  --seafoam: #2dd4bf;
  --foam: #7ee7ff;
  --bubble: rgba(126, 231, 255, 0.35);
  --sand: #f7e7c6;
  --cream: #fff8eb;
  --ink: #08111f;
  --comic-yellow: #ffd34d;
  --comic-orange: #ff8a3d;
  --comic-pink: #ff6b9d;
  --text: #e8f7ff;
  --muted: #9ec7dd;
  --panel: rgba(6, 42, 74, 0.82);
  --panel-light: rgba(255, 248, 235, 0.92);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --comic-shadow: 6px 6px 0 var(--ink);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--abyss);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.ocean-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(126, 231, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(11, 79, 122, 0.55), transparent 42%),
    linear-gradient(180deg, #031525 0%, #062a4a 42%, #02101f 100%);
}

.halftone-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}

.bubble-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.85),
    rgba(126, 231, 255, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: rise linear infinite;
}

@keyframes rise {
  from {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  to {
    transform: translateY(-110vh) translateX(20px);
    opacity: 0;
  }
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.comic-panel,
.comic-frame,
.comic-inset {
  border: 4px solid var(--ink);
  box-shadow: var(--comic-shadow);
}

.comic-panel {
  background: var(--panel);
}

.comic-frame {
  background: rgba(255, 255, 255, 0.08);
}

.comic-inset {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 3px 3px 0 rgba(0, 0, 0, 0.35);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 24px), var(--content-width));
  margin: 12px auto 0;
  padding: 12px 16px;
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
}

.brand div {
  display: grid;
}

.brand-name,
.brand-symbol,
.pill,
.eyebrow,
.button,
.step-number,
.symbol-chip,
.trend-chip,
.floating-card,
.hero-copy h1,
.section-heading h2,
.step-card h3,
.highlight-card h3 {
  font-family: "Bangers", "Fredoka", sans-serif;
  letter-spacing: 0.04em;
}

.brand-name {
  font-size: 1.05rem;
}

.brand-symbol {
  color: var(--seafoam);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--foam);
  transform: translateY(-1px);
}

.header-cta {
  flex-shrink: 0;
}

.section {
  width: min(calc(100% - 24px), var(--content-width));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-video-wrap {
  position: absolute;
  inset: 12px 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 4px solid var(--ink);
  box-shadow: var(--comic-shadow);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 16, 31, 0.35), rgba(2, 16, 31, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(45, 212, 191, 0.18), transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  margin-top: 180px;
  background:
    linear-gradient(145deg, rgba(6, 42, 74, 0.94), rgba(2, 16, 31, 0.92)),
    rgba(6, 42, 74, 0.88);
}

.speech-bubble {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -16px;
  width: 24px;
  height: 24px;
  background: var(--cream);
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

.hero-bubble .pill {
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  color: var(--ocean);
}

.bio-line {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.95;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  color: var(--foam);
}

.pill,
.eyebrow,
.symbol-chip,
.trend-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 700;
}

.pill {
  background: rgba(255, 211, 77, 0.95);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}

.symbol-chip {
  background: rgba(45, 212, 191, 0.2);
  color: var(--seafoam);
}

.trend-chip {
  background: rgba(255, 107, 157, 0.18);
  color: #ffb8d0;
}

.lead,
.card p,
.step-card p,
.join-copy p,
.tagline {
  line-height: 1.72;
  font-size: 1.05rem;
}

.lead {
  max-width: 58ch;
  font-size: 1.12rem;
  font-weight: 600;
}

.ca-card {
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 3px solid rgba(126, 231, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
}

.ca-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Bangers", sans-serif;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ca-value {
  flex: 1 1 220px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92rem;
  word-break: break-all;
  color: var(--foam);
  user-select: all;
}

.ca-copy {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
}

.hero-actions,
.section-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 4px 4px 0 var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary {
  background: linear-gradient(135deg, var(--comic-orange), var(--comic-yellow));
  color: var(--ink);
}

.button-secondary {
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  color: var(--ink);
}

.button-ghost {
  background: rgba(255, 248, 235, 0.12);
  color: var(--cream);
}

.button.is-copied {
  background: linear-gradient(135deg, var(--seafoam), var(--foam));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  font-family: "Bangers", sans-serif;
  letter-spacing: 0.05em;
  color: var(--foam);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

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

.hero-image-wrap {
  position: relative;
  width: min(100%, 460px);
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.floating-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.98rem;
}

.floating-card-top {
  top: 8%;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 8%;
}

.wave-divider {
  width: 100%;
  height: 72px;
  background:
    radial-gradient(circle at 50% 0%, transparent 68%, rgba(126, 231, 255, 0.08) 69%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%230b4f7a' d='M0,64 C200,120 400,0 600,64 C800,128 1000,32 1200,64 L1200,120 L0,120 Z'/%3E%3C/svg%3E")
      center / cover no-repeat;
  opacity: 0.85;
}

.wave-divider-top {
  margin-top: -8px;
}

.wave-divider-light {
  filter: brightness(1.15);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  width: fit-content;
  color: var(--ink);
  background: var(--comic-yellow);
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--foam);
}

.about-grid,
.join-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.card,
.step-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.card-large {
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.95), rgba(247, 231, 198, 0.92));
  color: var(--ink);
}

.card-large p {
  margin-top: 0;
}

.tagline {
  margin-bottom: 0;
  font-family: "Bangers", sans-serif;
  font-size: 1.35rem;
  color: var(--ocean);
}

.highlight-card {
  background:
    linear-gradient(180deg, rgba(11, 79, 122, 0.98), rgba(2, 16, 31, 0.98));
  color: var(--text);
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2rem;
  color: var(--foam);
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  line-height: 1.6;
}

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

.step-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.94), rgba(247, 231, 198, 0.9));
  color: var(--ink);
}

.step-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ocean);
  font-size: 1.1rem;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.chart-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #041018;
}

.chart-card iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.join-copy {
  background:
    linear-gradient(145deg, rgba(6, 42, 74, 0.95), rgba(2, 16, 31, 0.92));
}

.join-banner {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.join-banner img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.site-footer {
  width: min(calc(100% - 24px), var(--content-width));
  margin: 0 auto 24px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links a {
  color: var(--foam);
  font-weight: 700;
}

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

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;
  }

  .hero-inner,
  .about-grid,
  .join-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    margin-top: 220px;
  }

  .hero-copy h1,
  .section-heading h2 {
    max-width: none;
  }

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

  .hero-visual {
    min-height: auto;
    padding-top: 12px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    width: 100%;
    padding-top: 8px;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .section {
    width: min(calc(100% - 16px), var(--content-width));
    padding: 42px 0;
  }

  .hero-inner {
    padding: 20px;
    margin-top: 180px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .card,
  .step-card,
  .stat-card {
    padding: 20px;
  }

  .chart-card iframe {
    min-height: 400px;
  }

  .floating-card {
    position: static;
  }

  .hero-visual {
    gap: 12px;
  }

  .hero-video-wrap {
    inset: 8px 0 0;
  }
}
