:root {
  --ink: #15171a;
  --muted: #5d6673;
  --paper: #fffdf8;
  --line: rgba(21, 23, 26, 0.13);
  --green: #11a97d;
  --coral: #f06449;
  --gold: #e6a93c;
  --blue: #2864d8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.vibe-bg,
#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.vibe-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 20%, rgba(255, 227, 94, 0.34), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(95, 209, 255, 0.26), transparent 28%),
    radial-gradient(circle at 62% 92%, rgba(255, 112, 137, 0.22), transparent 34%),
    linear-gradient(140deg, #fff8df 0%, #f1fff8 38%, #eef7ff 72%, #fff1f4 100%);
}

#networkCanvas {
  pointer-events: none;
}

.blob,
.wave {
  position: absolute;
  display: block;
  filter: blur(1px);
  opacity: 0.82;
  will-change: transform;
}

.blob {
  border-radius: 42% 58% 65% 35% / 48% 42% 58% 52%;
  mix-blend-mode: multiply;
  animation: floatBlob 18s ease-in-out infinite alternate;
}

.blob-coral {
  width: min(45vw, 560px);
  aspect-ratio: 1;
  left: -12vw;
  top: 9vh;
  background: linear-gradient(135deg, rgba(255, 116, 100, 0.54), rgba(255, 190, 93, 0.3));
}

.blob-aqua {
  width: min(44vw, 540px);
  aspect-ratio: 1.05;
  right: -10vw;
  top: 5vh;
  background: linear-gradient(135deg, rgba(80, 210, 220, 0.46), rgba(107, 132, 255, 0.24));
  animation-duration: 22s;
}

.blob-lime {
  width: min(34vw, 430px);
  aspect-ratio: 1;
  right: 12vw;
  bottom: -12vh;
  background: linear-gradient(135deg, rgba(178, 231, 91, 0.42), rgba(29, 188, 142, 0.28));
  animation-duration: 20s;
}

.blob-sky {
  width: min(24vw, 320px);
  aspect-ratio: 1;
  left: 36vw;
  bottom: 18vh;
  background: linear-gradient(135deg, rgba(92, 186, 255, 0.24), rgba(255, 255, 255, 0.28));
  animation-duration: 16s;
}

.wave {
  width: 72vw;
  height: 18vw;
  min-height: 150px;
  border: 2px solid rgba(21, 23, 26, 0.06);
  border-radius: 50%;
  transform: rotate(-9deg);
  animation: driftWave 24s linear infinite;
}

.wave-one {
  left: -18vw;
  top: 64vh;
}

.wave-two {
  right: -26vw;
  top: 30vh;
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    border-radius: 42% 58% 65% 35% / 48% 42% 58% 52%;
  }

  50% {
    transform: translate3d(3vw, -2vh, 0) rotate(8deg) scale(1.06);
    border-radius: 58% 42% 38% 62% / 42% 60% 40% 58%;
  }

  100% {
    transform: translate3d(-2vw, 3vh, 0) rotate(-7deg) scale(0.96);
    border-radius: 39% 61% 52% 48% / 56% 37% 63% 44%;
  }
}

@keyframes driftWave {
  from {
    transform: translateX(-4vw) rotate(-9deg);
  }

  to {
    transform: translateX(8vw) rotate(-9deg);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav a,
.nav-cta {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: conic-gradient(from 160deg, var(--coral), var(--gold), var(--green), var(--blue), var(--coral));
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta,
.office-cta,
.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.office-cta {
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(46px, 7vw, 88px) clamp(20px, 5vw, 64px) 64px;
}

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

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text,
.section p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.ghost-button {
  border: 0;
  padding: 0 22px;
  font-size: 0.96rem;
  text-decoration: none;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #39c6c8);
  box-shadow: 0 16px 40px rgba(17, 169, 125, 0.24);
}

.ghost-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.primary-button:hover,
.ghost-button:hover,
.office-cta:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero-image,
.launch-panel,
.quiz,
.growth-meter,
.signup {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(45, 44, 39, 0.11);
  backdrop-filter: blur(14px);
}

.launch-panel {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
}

.hero-showcase {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0 0 96px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.hero-showcase .launch-panel {
  width: min(96%, 430px);
  margin-inline: auto;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown div {
  min-width: 0;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: rgba(251, 250, 247, 0.72);
}

.countdown strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1;
}

.countdown span,
.signal-row,
.growth-meter span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 18px;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
}

.quiz {
  padding: clamp(22px, 4vw, 34px);
}

.question {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-options button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quiz-options button.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.result span {
  display: block;
  opacity: 0.82;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.sim-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.7fr);
  gap: 18px;
}

.simulator {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 188, 98, 0.18), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(91, 189, 230, 0.18), transparent 26%),
    linear-gradient(135deg, #fffcf4 0%, #effdf7 46%, #f2fbff 100%);
}

.earnings-simulator {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.earning-controls,
.earning-results {
  display: grid;
  gap: 16px;
}

.earning-control,
.earning-card {
  border: 1px solid rgba(17, 169, 125, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(20, 38, 42, 0.09);
  backdrop-filter: blur(14px);
}

.earning-control {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.earning-control span,
.earning-card span {
  color: var(--ink);
  font-weight: 900;
}

.earning-control input {
  width: 100%;
  accent-color: var(--green);
}

.earning-control strong {
  color: var(--muted);
  font-size: 1.08rem;
}

.earning-control b {
  color: var(--green);
  font-size: 1.55rem;
}

.dedication-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 169, 125, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.dedication-toggle button {
  min-height: 50px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.dedication-toggle button.active {
  color: #08795a;
  background: linear-gradient(135deg, rgba(17, 169, 125, 0.14), rgba(57, 198, 200, 0.09));
  box-shadow: inset 0 0 0 1px rgba(17, 169, 125, 0.42);
}

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

.earning-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 28px);
}

.earning-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--green);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 0.95;
}

.earning-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.earning-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(17, 169, 125, 0.12), rgba(255, 255, 255, 0.9));
}

.bonus-highlights-card {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(214, 161, 45, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 191, 90, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(255, 251, 237, 0.98), rgba(255, 255, 255, 0.88) 54%, rgba(240, 255, 249, 0.9));
  box-shadow: 0 24px 70px rgba(120, 78, 10, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.78) inset;
}

.bonus-highlights-card::before,
.bonus-highlights-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.bonus-highlights-card::before {
  width: 120px;
  height: 120px;
  right: -34px;
  top: -34px;
  background: rgba(232, 191, 90, 0.22);
  filter: blur(18px);
}

.bonus-highlights-card::after {
  width: 8px;
  height: 8px;
  right: 22%;
  top: 18px;
  background: #e8bf5a;
  box-shadow: 54px 34px 0 rgba(232, 191, 90, 0.56), -38px 92px 0 rgba(17, 169, 125, 0.28);
}

.bonus-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
}

.bonus-main-icon,
.bonus-item i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
}

.bonus-main-icon {
  width: 54px;
  height: 54px;
  color: #fff8df;
  background: linear-gradient(135deg, #d9a334, #f3cf73);
  box-shadow: 0 10px 28px rgba(217, 163, 52, 0.36);
  font-size: 1.45rem;
}

.bonus-card-header span {
  display: block;
  color: #7a4b00;
  font-weight: 950;
}

.bonus-card-header strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.bonus-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.bonus-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 169, 125, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.bonus-item i {
  width: 42px;
  height: 42px;
  background: rgba(17, 169, 125, 0.12);
  box-shadow: 0 8px 18px rgba(17, 169, 125, 0.13);
}

.bonus-item span,
.bonus-item strong {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
}

.bonus-item-featured {
  min-height: 86px;
  border-color: rgba(214, 161, 45, 0.45);
  background: linear-gradient(135deg, rgba(255, 241, 192, 0.9), rgba(255, 255, 255, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.bonus-item-featured i {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0b6d54, #154334);
  box-shadow: 0 10px 24px rgba(17, 169, 125, 0.28);
}

.bonus-item-featured p {
  margin: 4px 0 0;
  color: #7a4b00;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.25;
}

.bonus-item-featured b {
  color: #08795a;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.bonus-disclaimer {
  position: relative;
  z-index: 1;
  color: rgba(75, 72, 64, 0.78);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.earning-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.advanced-link {
  grid-column: 1 / -1;
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.controls {
  display: grid;
  gap: 14px;
}

.controls label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.controls input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--green);
}

.growth-meter {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 38px);
}

.growth-meter strong {
  display: block;
  margin: 8px 0 14px;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
}

.founders-banner {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 64px);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 188, 98, 0.16), transparent 26%),
    radial-gradient(circle at 84% 6%, rgba(113, 206, 244, 0.18), transparent 30%),
    linear-gradient(135deg, #fbfff5, #eefbff 52%, #fff8f0);
}

.founders-banner-frame {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #020806;
  box-shadow: 0 28px 80px rgba(3, 18, 16, 0.24);
}

.founders-banner-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.founders-banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 191, 90, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.founders-banner-copy {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  gap: 12px;
  margin: 0 auto;
  text-align: center;
}

.founders-banner-copy h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  text-shadow: none;
}

.founders-banner-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.founders-banner-copy .primary-button {
  width: fit-content;
  margin: 6px auto 0;
  white-space: nowrap;
}

.founders {
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 188, 98, 0.2), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(113, 206, 244, 0.26), transparent 26%),
    radial-gradient(circle at 72% 90%, rgba(181, 220, 118, 0.2), transparent 24%),
    linear-gradient(135deg, #f8fff8, #eefbff 48%, #fff7fb);
}

.founder-panel {
  position: relative;
  max-width: 1500px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(180, 214, 95, 0.28);
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(140, 210, 58, 0.16), transparent 26%),
    radial-gradient(circle at 82% 100%, rgba(37, 95, 68, 0.28), transparent 28%),
    linear-gradient(135deg, #020f0f 0%, #061615 52%, #020806 100%);
  box-shadow: 0 30px 80px rgba(3, 18, 16, 0.28);
  isolation: isolate;
}

.founder-panel::before,
.founder-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(172, 238, 81, 0.2);
  border-radius: 50%;
  filter: blur(0.2px);
  pointer-events: none;
}

.founder-panel::before {
  left: -180px;
  top: -150px;
}

.founder-panel::after {
  right: -160px;
  bottom: -190px;
}

.founder-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto clamp(30px, 5vw, 54px);
}

.founder-stat {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(229, 181, 77, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 24px rgba(172, 238, 81, 0.08), 0 0 30px rgba(172, 238, 81, 0.08);
}

.founder-stat span {
  color: #aef35d;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 20px rgba(174, 243, 93, 0.42);
}

.founder-stat strong {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  font-weight: 650;
}

.founder-heading {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.founder-heading h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-family: inherit;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.founder-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  margin-top: clamp(26px, 4vw, 42px);
}

.founder-card {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(172, 238, 81, 0.24);
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 50%, rgba(172, 238, 81, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 28px rgba(172, 238, 81, 0.04), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.founder-card.is-live {
  animation: founderAppear 520ms ease both;
}

.founder-avatar {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 2px solid #aef35d;
  border-radius: 999px;
  color: #f5c75f;
  background: radial-gradient(circle, rgba(172, 238, 81, 0.14), rgba(0, 0, 0, 0.18));
  box-shadow: 0 0 20px rgba(172, 238, 81, 0.42), inset 0 0 18px rgba(172, 238, 81, 0.14);
  font-family: inherit;
  font-size: 2.6rem;
  font-weight: 800;
}

.founder-info {
  display: grid;
  gap: 10px;
}

.founder-info strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.founder-info span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 650;
}

.founder-info span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border: 2px solid #aef35d;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(172, 238, 81, 0.4);
}

.founder-info em {
  width: fit-content;
  margin-top: 4px;
  padding: 8px 18px;
  border: 1px solid rgba(172, 238, 81, 0.28);
  border-radius: 999px;
  color: #c9ff7a;
  background: rgba(72, 148, 38, 0.22);
  box-shadow: 0 0 18px rgba(172, 238, 81, 0.14);
  font-style: normal;
  font-weight: 850;
}

@keyframes founderAppear {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.registration {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.signup {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 30px);
}

.signup input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.signup p {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
}

@media (max-width: 840px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .sim-grid,
  .earnings-simulator,
  .registration {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 520px) {
  .topbar {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .office-cta {
    padding-inline: 10px;
    font-size: 0.85rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .blob-coral,
  .blob-aqua {
    width: 86vw;
  }

  .blob-lime {
    width: 62vw;
  }

  .wave {
    width: 130vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob,
  .wave {
    animation: none;
  }
}

/* Neon hero direction inspired by the reference mood, with original branding. */
.topbar {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(2, 2, 5, 0.82);
}

.brand,
.nav a,
.office-cta,
.nav-cta {
  color: var(--white);
}

.office-cta {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 77px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  color: var(--white);
  overflow: hidden;
  background: #020204;
  --hero-image: url("assets/hero-sabiyaku.png?v=20260525-4");
  --accent: #45ff75;
  --accent-rgb: 69, 255, 117;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 43%, rgba(0, 0, 0, 0.72) 72%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, transparent 36%),
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
  animation: heroBreath 9s ease-in-out infinite alternate;
  transition: opacity 520ms ease, filter 520ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 52%, rgba(var(--accent-rgb), 0.16), transparent 26%),
    radial-gradient(circle at 53% 10%, rgba(182, 255, 94, 0.1), transparent 18%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 680px;
}

.mode-line {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.72);
}

.mode-line span {
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 22px rgba(var(--accent-rgb), 0.86);
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.2rem, 8.4vw, 8.8rem);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.56), 0 0 54px rgba(var(--accent-rgb), 0.34);
}

.hero h1.is-long-title {
  font-size: clamp(3rem, 6.6vw, 6.6rem);
  line-height: 0.9;
}

.hero .eyebrow,
.hero .panel-kicker {
  color: var(--accent);
}

.hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

.hero .primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #11a97d);
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.36), 0 16px 40px rgba(17, 169, 125, 0.2);
}

.hero .ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.hero-showcase {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  left: clamp(20px, 5vw, 64px);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-showcase .launch-panel {
  width: min(100%, 690px);
  margin-inline: auto;
}

.hero .launch-panel {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.14);
}

.hero-copy.is-changing {
  animation: heroCopyIn 520ms ease;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero-dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.64);
}

.hero .countdown div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero .countdown span,
.hero .signal-row {
  color: rgba(255, 255, 255, 0.68);
}

.neon-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.neon-ring,
.neon-spark {
  position: absolute;
  display: block;
  border-radius: 999px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.neon-ring {
  border: 2px solid rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.42), inset 0 0 18px rgba(var(--accent-rgb), 0.18);
  filter: blur(0.2px);
  animation: orbitGlow 8s ease-in-out infinite alternate;
}

.ring-one {
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  left: 3vw;
  top: 29vh;
  transform: rotate(-18deg) scaleX(1.38);
}

.ring-two {
  width: min(27vw, 420px);
  height: min(27vw, 420px);
  left: 23vw;
  top: 37vh;
  opacity: 0.72;
  transform: rotate(23deg) scaleX(1.55);
  animation-duration: 10s;
  animation-direction: alternate-reverse;
}

.neon-spark {
  width: 9px;
  height: 9px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 34px rgba(var(--accent-rgb), 0.66);
  animation: sparkDrift 5s ease-in-out infinite;
}

@keyframes heroCopyIn {
  from {
    opacity: 0.3;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spark-one {
  left: 8vw;
  top: 44vh;
}

.spark-two {
  left: 31vw;
  top: 60vh;
  animation-delay: 1.2s;
}

.spark-three {
  left: 36vw;
  top: 26vh;
  animation-delay: 2.1s;
}

@keyframes orbitGlow {
  0% {
    opacity: 0.32;
    transform: translate3d(-1vw, 1vh, 0) rotate(-18deg) scaleX(1.25) scale(0.96);
  }

  50% {
    opacity: 0.76;
  }

  100% {
    opacity: 0.42;
    transform: translate3d(2vw, -2vh, 0) rotate(18deg) scaleX(1.58) scale(1.06);
  }
}

@keyframes sparkDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.6);
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(64px, -80px, 0) scale(1.18);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.2vw, 0.6vh, 0);
  }
}

@media (max-width: 840px) {
  .founders-banner {
    padding: 42px 18px;
  }

  .founders-banner-frame img {
    object-position: center top;
  }

  .founders-banner-frame {
    border-radius: 10px;
  }

  .founders-banner-copy {
    width: auto;
    gap: 12px;
  }

  .founder-panel {
    padding: 24px 16px;
  }

  .founder-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }

  .founder-stat {
    min-height: 74px;
  }

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

  .founder-card {
    min-height: 164px;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .founder-avatar {
    width: 82px;
    height: 82px;
    font-size: 2rem;
  }

  .founder-info {
    gap: 7px;
  }

  .founder-info em {
    padding: 7px 14px;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 38svh 18px 270px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.14) 72%),
      var(--hero-image) 38% top / auto 54svh no-repeat,
      #020204;
    animation-duration: 13s;
  }

  .hero-copy {
    grid-column: 1;
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero-text {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.48;
  }

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

  .hero-dots {
    margin-top: 16px;
  }

  .hero-showcase {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero .launch-panel {
    padding: 14px;
    backdrop-filter: blur(10px);
  }

  .hero .panel-kicker {
    margin-bottom: 9px;
    font-size: 0.66rem;
  }

  .hero .countdown {
    gap: 7px;
  }

  .hero .countdown div {
    padding: 11px 6px;
  }

  .hero .countdown strong {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .hero .countdown span {
    font-size: 0.66rem;
  }

  .hero .signal-row {
    margin-top: 10px;
    font-size: 0.68rem;
    gap: 6px;
  }

  .ring-one {
    width: 88vw;
    height: 88vw;
    left: -16vw;
    top: 17vh;
  }

  .ring-two {
    width: 62vw;
    height: 62vw;
    left: 18vw;
    top: 26vh;
  }
}

@media (max-width: 520px) {
  .earning-results {
    grid-template-columns: 1fr;
  }

  .dedication-toggle {
    grid-template-columns: 1fr;
  }

  .earning-card {
    min-height: 136px;
  }

  .bonus-card-header {
    align-items: flex-start;
  }

  .bonus-item {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .bonus-item-featured {
    grid-template-columns: 48px 1fr;
  }

  .founders-banner {
    padding: 34px 14px;
  }

  .founders-banner-frame img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .founders-banner-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .founder-panel {
    border-radius: 10px;
    padding-inline: 12px;
  }

  .founder-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-avatar,
  .founder-info em {
    margin-inline: auto;
  }

  .mode-line {
    font-size: clamp(1.55rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.8rem);
    line-height: 0.9;
  }

  .hero h1.is-long-title {
    font-size: clamp(2.55rem, 12vw, 3.9rem);
  }

  .hero {
    padding-top: 36svh;
    padding-bottom: 292px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.1) 76%),
      var(--hero-image) 34% top / auto 50svh no-repeat,
      #020204;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-dots button {
    width: 28px;
  }

  .hero .launch-panel {
    width: 100%;
  }

  .hero .signal-row {
    justify-content: center;
    text-align: center;
  }

  .neon-ring {
    border-width: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .neon-ring,
  .neon-spark {
    animation: none;
  }
}
