.hero {
  background-color: #fc025e;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #000;
}

.hero-watermark {
  position: absolute;

  font-size: clamp(10rem, 30vw, 40rem);
  color: white;
  opacity: 0.06;
  line-height: 0.8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: lowercase;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline-row {
  display: block;

  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.headline-control {
  font-size: clamp(4rem, 10vw, 12rem);
  color: #fc025e;
  -webkit-text-stroke: 3px white;
  text-stroke: 3px white;
  letter-spacing: 0.05em;
  margin-top: -0.06em;
}

.tagline {
  font-size: clamp(0.75rem, 1vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 3em;
  white-space: nowrap;
}

.hero-bar {
  height: 8px;
  background: #000;
  position: relative;
  z-index: 1;
}

.section {
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  gap: 5rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section-bar {
  width: 6rem;
  height: 6px;
  background: #fc025e;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

.how-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 60rem;
  width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  padding: 3.5rem;
}

.how-lead {
  font-size: clamp(1rem, 1.5vw, 1.75rem);
  line-height: 1.5;
  text-align: center;
  max-width: 40ch;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.how-highlight {
  color: #fc025e;
}

.how-break {
  display: block;
  margin-top: 0.5rem;
}

.how-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.how-node {
  font-size: clamp(0.625rem, 0.9vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 1.5rem;
  border: 4px solid white;
}

.how-tor {
  border-color: #fc025e;
  color: #fc025e;
}

.how-dest {
  border-color: white;
}

.how-arrow {
  font-size: clamp(0.75rem, 1vw, 1.25rem);
}

.section-decentralized {
  border-top: 8px solid #fc025e;
}

.decentralized-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 4px solid rgba(255, 255, 255, 0.15);
  padding: 4rem 5rem;
}

.decent-lead {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.decent-punch {
  font-size: clamp(2rem, 4.5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin-top: 1.5rem;
  max-width: 18ch;
}

.decent-highlight {
  color: #fc025e;
}

.decent-tag {
  font-size: clamp(0.875rem, 1.5vw, 1.75rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.section-bb {
  border-top: 8px solid white;
}

.bb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 4px solid rgba(255, 255, 255, 0.15);
  padding: 4rem 5rem;
}

.bb-main {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.bb-cant {
  font-size: clamp(2.5rem, 5vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 0.5rem;
}

.bb-target {
  font-size: clamp(1rem, 1.75vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.bb-divider {
  width: 4rem;
  height: 6px;
  background: #fc025e;
  margin: 3rem 0;
}

.bb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bb-list-item {
  font-size: clamp(1rem, 1.75vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-4px, 2px);
  }
  20% {
    transform: translate(4px, -1px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 3px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  60% {
    transform: translate(1px, -3px);
  }
  70% {
    transform: translate(-3px, 2px);
  }
  80% {
    transform: translate(3px, -1px);
  }
  90% {
    transform: translate(-2px, 1px);
  }
}

.section-schizo {
  border-top: 8px solid #fc025e;
  position: relative;
  overflow: hidden;
}

.schizo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 4px solid rgba(255, 255, 255, 0.15);
  padding: 4rem 5rem;
  position: relative;
  z-index: 1;
}

.schizo-bar {
  width: 100%;
  max-width: 16rem;
  height: 4px;
  background: #fc025e;
  margin: 2rem 0;
}

.schizo-line {
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.schizo-redact {
  background: #fc025e;
  color: #fc025e;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  padding: 0 0.2em;
}

.schizo-glitch {
  font-size: clamp(2rem, 3.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fc025e;
  position: relative;
  animation: glitch 0.4s infinite;
}

.schizo-glitch::before,
.schizo-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.schizo-glitch::before {
  color: #00ffff;
  clip-path: inset(0 0 55% 0);
  animation: glitch 0.3s infinite reverse;
}

.schizo-glitch::after {
  color: #ff00ff;
  clip-path: inset(55% 0 0 0);
  animation: glitch 0.35s infinite;
}

.schizo-safe {
  opacity: 0.7;
}

.schizo-ghost {
  color: #fc025e;
}

.section-final {
  border-top: 8px solid #fc025e;
  gap: 3rem;
  border-bottom: 8px solid #fc025e;
}

.final-line {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
}

.final-highlight {
  color: #fc025e;
}

.final-sub {
  font-size: clamp(2rem, 4.5vw, 5rem);
  text-transform: lowercase;
  letter-spacing: 0.2em;
  line-height: 1;
}

.final-free {
  font-size: clamp(1rem, 2vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.final-btn {
  font-size: clamp(0.75rem, 1vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  padding: 1.25rem 3.5rem;
  border: 4px solid #fc025e;
  color: #fc025e;
  margin-top: 2.5rem;
  transition: 0.15s;
}

.final-btn:hover {
  background: #fc025e;
  color: #000;
}

.footer {
  background: #000;
  border-top: 6px solid #fc025e;
  padding: 4rem 3rem;
}

.footer-body {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-msg {
  font-size: clamp(0.875rem, 1.25vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
  opacity: 0.6;
}

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

.footer-link {
  font-size: clamp(0.75rem, 1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #fc025e;
  transition: 0.1s;
}

.footer-link:hover {
  text-decoration: line-through;
}

.footer-dot {
  opacity: 0.3;
  font-size: 1.25rem;
}

.footer-credit {
  font-family: "Pencil Child";
  font-size: clamp(2rem, 2vw, 3rem);
  letter-spacing: 0.05em;
  color: white;
}
