
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&family=Sora:wght@400;600;700;800;900&display=swap");

:root {
  --bg: #0b1c24;
  --bg-deep: #050c10;
  --text: #ffffff;
  --muted: #8da2ab;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff751f;
  --orange-dark: #cc5f19;
  --purple: #9a63ff;
  --teal: #2bc4b6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", system-ui, sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 117, 31, 0.18), transparent 34rem),
    linear-gradient(180deg, #0b1c24 0%, #0b1c24 64%, #050c10 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 180ms ease, border 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  padding-block: 0.7rem;
  background: rgba(11, 28, 36, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
}

.brand span span {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav button,
.site-footer button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.desktop-nav button:hover,
.site-footer button:hover,
.site-footer a:hover {
  color: var(--orange);
}

.nav-cta,
.waitlist-form button,
.label-sticker,
.join-card,
.sticky-note {
  border: 1px solid var(--orange-dark);
  background: linear-gradient(135deg, var(--orange), #e66a1c);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 32px rgba(255, 117, 31, 0.18);
}

.nav-cta {
  border-radius: 2px;
  padding: 0.72rem 1.2rem;
  font-weight: 900;
  transform: rotate(2deg);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 68rem;
  font-size: clamp(3.8rem, 8.7vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 > span {
  display: block;
}

.hero h1 strong {
  display: inline-block;
  min-width: clamp(10rem, 24vw, 21rem);
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.hero h1 strong.crossed {
  color: rgba(248, 113, 113, 0.7);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 0.05em;
}

.hero h1 strong.final {
  color: #fb923c;
}

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

.thunder-wrap {
  position: relative;
  display: inline-block;
}

.thunder {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 0 18px rgba(255, 117, 31, 0.45));
}

.thunder-one {
  width: 6rem;
  left: -5rem;
  top: 0.7rem;
  transform: rotate(95deg);
}

.thunder-two {
  width: 4.6rem;
  left: -4.1rem;
  top: -2.6rem;
  transform: rotate(110deg);
}

mark {
  display: inline-block;
  padding: 0.08em 0.28em 0.13em;
  border: 1px solid var(--orange-dark);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--orange), #e66a1c);
  color: #fff;
  box-shadow: 0 0 50px rgba(255, 117, 31, 0.58);
  transform: rotate(-3deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: 2rem auto 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-copy span {
  display: block;
  margin-top: 0.4rem;
  color: var(--orange);
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: min(34rem, 100%);
  margin-top: 2.8rem;
}

.waitlist-form {
  width: min(34rem, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.waitlist-form input {
  min-width: 0;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 1rem;
  outline: 0;
}

.waitlist-form input:focus {
  border-color: rgba(255, 117, 31, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 117, 31, 0.14);
}

.waitlist-form button {
  height: 3.5rem;
  border-radius: 0.85rem;
  padding: 0 1.35rem;
  font-weight: 900;
}

.waitlist-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #fb7185;
}

.secondary-button {
  height: 3.2rem;
  border-radius: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  padding: 0 1.4rem;
  font-weight: 800;
}

.bot-card {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(9rem, 18vw, 14rem);
  aspect-ratio: 1;
  animation: float 4.8s ease-in-out infinite;
  opacity: 0.94;
}

.bot-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(255, 117, 31, 0.28));
}

.bot-card-one {
  right: 2%;
  top: 24%;
  transform: rotate(-6deg);
}

.bot-card-two {
  left: 6%;
  bottom: 10%;
  animation-delay: -1.4s;
  transform: rotate(12deg);
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 1.3rem; }
}

.features-section,
.services-section,
.pricing-section,
.cta-section {
  position: relative;
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.reveal-section {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-section {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 3rem;
  align-items: start;
}

.sticky-note,
.paper-card,
.platform-grid article,
.price-card,
.join-card {
  position: relative;
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.sticky-note {
  top: 6rem;
  padding: 2rem;
  transform: rotate(-3deg);
}

.sticky-note h2 {
  margin: 0 0 1rem;
  font-size: 2.7rem;
  line-height: 0.92;
  font-weight: 900;
}

.sticky-note p,
.sticky-note strong {
  display: block;
  margin: 0.4rem 0;
}

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

.paper-card,
.platform-grid article,
.price-card {
  min-height: 13rem;
  padding: 1.6rem;
  background: linear-gradient(145deg, #fff, #f5f7f8);
  color: #12181c;
  border: 1px solid #d8dee2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.paper-card h3 {
  margin: 0 0 0.45rem;
  font-size: 2.8rem;
  font-weight: 900;
}

.paper-card strong {
  color: var(--orange);
}

.paper-card p,
.platform-grid p,
.price-card p {
  color: #64727b;
  line-height: 1.6;
}

.tilt-a { transform: rotate(2deg); }
.tilt-b { transform: rotate(-2deg); margin-top: 2rem; }
.tilt-c { transform: rotate(1deg); }
.tilt-d { transform: rotate(-1deg); margin-top: 2rem; }

.section-heading {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 3rem;
}

.label-sticker {
  display: inline-flex;
  padding: 0.7rem 1.3rem;
  margin-bottom: 1.2rem;
  font-size: 1.45rem;
  font-weight: 900;
  transform: rotate(-2deg);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.section-heading mark {
  margin-top: 0.55rem;
  background: #fff;
  color: #111;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.platform-grid article {
  min-height: 16rem;
  text-align: center;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
}

.telegram { background: #229ed9; }
.whatsapp { background: #25d366; }
.discord { background: #5865f2; }

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 52rem;
  margin: 0 auto;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--orange), #e66a1c);
  color: #fff;
  border-color: var(--orange-dark);
  transform: rotate(1.5deg);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.price {
  margin: 0.6rem 0;
  font-size: 3rem;
  font-weight: 900;
}

.cta-section {
  text-align: center;
  padding-bottom: 7rem;
}

.cta-section h2 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 0 2rem;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  font-weight: 900;
}

.cta-section h2 span + span {
  color: var(--muted);
}

.join-card {
  display: inline-flex;
  margin-bottom: 1.7rem;
  padding: 1rem 2rem;
  transform: rotate(-2deg);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
}

.bounce-note {
  position: absolute;
  top: -1.1rem;
  left: -1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
  background: #fff;
  color: #111;
  font-size: 0.75rem;
  transform: rotate(-12deg);
  animation: bounce 1.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -0.45rem; }
}

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

.site-footer {
  position: relative;
  background: var(--bg-deep);
  padding: 5rem clamp(1rem, 4vw, 3rem) 2rem;
  overflow: hidden;
}

.footer-mark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.035);
  font-size: 18vw;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(74rem, 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
}

.site-footer p,
.site-footer a,
.site-footer button {
  display: block;
  color: var(--muted);
  line-height: 1.8;
  text-align: left;
}

.site-footer h3 {
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(141, 162, 171, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 800;
  }

  .mobile-menu.open {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(11, 28, 36, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-menu button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 strong {
    min-width: 9rem;
    text-align: center;
  }

  .bot-card {
    display: none;
  }

  .thunder-one {
    left: -3rem;
    top: 0.4rem;
    width: 4rem;
  }

  .thunder-two {
    left: -2.4rem;
    top: -1.6rem;
    width: 3rem;
  }

  .features-section,
  .platform-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-note {
    top: 0;
  }

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

  .tilt-b,
  .tilt-d {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12.5vw, 3rem);
    line-height: 0.96;
  }

  .hero h1 strong {
    display: block;
    min-width: 0;
    text-align: center;
  }

  .zero-line {
    display: block;
    gap: 0.35rem;
  }

  .zero-line .thunder-wrap,
  .zero-line mark {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    max-width: min(18rem, calc(100vw - 2rem));
    font-size: 0.94rem;
  }

  .hero-copy span {
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .waitlist-form {
    max-width: calc(100vw - 2rem);
  }

  .thunder {
    display: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form button,
  .waitlist-form input {
    width: 100%;
  }

  .hero {
    padding-top: 7rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
