* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family: "Jost", sans-serif;
  background: radial-gradient(
      circle at 20% 20%,
      #f5eeff 0%,
      rgba(245, 238, 255, 0) 55%
    ),
    radial-gradient(circle at 80% 15%, #f1ddff 0%, rgba(241, 221, 255, 0) 60%),
    linear-gradient(135deg, #fff 0%, #faf4ff 40%, #cfb4ff 100%);
  min-height: 100vh;
  height: 100%;
  background-attachment: fixed;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 100%
  );
}
.page-wrap {
  position: relative;
  width: min(1200px, 100% - 80px);
  min-height: 100vh;
  color: #221537;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  opacity: 0.3;
  filter: blur(0.9px);
}
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8d4aff 0%, #c06cff 40%, #ffc6ff 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 22px;
}
.brand-star {
  transform: translateY(0px);
}
.social {
  display: flex;
  gap: 16px;
}
.social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #362550;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.543);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  opacity: 0.6;
  filter: blur(0.7px);
  cursor: not-allowed;
  pointer-events: none;
}
.social a svg {
  width: 18px;
  height: 18px;
}
.social a:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.hero {
  margin-top: 13%;
  text-align: center;
  max-width: 600px;
}
.badge {
  margin: 0 auto 28px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  color: #4b2a63;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(117, 69, 200, 0.12);
}
.badge-icon {
  width: 14px;
  height: 14px;
  color: #8347ff;
}
.headline {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 4px;
  color: #221537;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.headline-line {
  display: block;
}
.strike {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: #9a9a9a;
}
.strike::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 60%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(34, 21, 55, 0.05) 0%,
    rgba(34, 21, 55) 30%,
    rgba(34, 21, 55) 70%,
    rgba(34, 21, 55, 0) 100%
  );
  transform: rotate(-4deg);
  border-radius: 999px;
}
.platform-callout {
  position: relative;
  font-size: clamp(16px, 3vw, 26px);
  font-weight: 600;
  color: black;
  display: inline-flex;
  align-items: end;
  justify-content: end;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  margin-left: 0px;
  margin-right: 20px;
}
.platform-callout::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 30px;
  left: 78%;
  top: -30px;
  transform: translateX(-50%);
  background-image: url("arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}
.arrow-inline {
  position: relative;
  width: 66px;
  height: 18px;
  flex-shrink: 0;
}
.arrow-inline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  top: 50%;
  height: 4px;
  background: rgba(34, 21, 55, 0.8);
  border-radius: 999px;
  transform: translateY(-50%);
}
.arrow-inline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 4px solid rgba(34, 21, 55, 0.85);
  border-top: 4px solid rgba(34, 21, 55, 0.85);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: clamp(36px, 3.6vw, 60px);
  font-weight: 700;
  color: #9952ff;
  /* background: linear-gradient(105deg, #9952ff 0%, #9e55ff 45%, #c982ff 100%);
  box-shadow: 0 16px 32px rgba(135, 74, 226, 0.35); */
}
.description {
  font-size: clamp(16px, 0.7vw, 18px);
  line-height: 1.6;
  color: #5f4c73;
  max-width: 520px;
  margin: 8px auto 10px;
}
.subscribe {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: min(200px, 100%);
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(123, 70, 206, 0.12);
}
.subscribe input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: clamp(12px, 1.8vw, 14px);
  color: #3c2d4f;
  background: transparent;
}
.subscribe input::placeholder {
  color: #b1a2c5;
}
.subscribe button {
  min-width: 80px;
  padding: 8px 12px;
  border: none;
  outline: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg, #9a4dff 0%, #9850ff 40%, #c97eff 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.subscribe button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(134, 74, 229, 0.3);
}
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(
    135deg,
    rgba(138, 80, 255, 0.8),
    rgba(212, 136, 255, 0.8)
  );
  clip-path: polygon(
    50% 0,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0 50%,
    38% 38%
  );
  filter: drop-shadow(0 12px 22px rgba(123, 70, 206, 0.25));
}
.s1 {
  top: 28%;
  left: 18%;
  transform: scale(1.4);
}
.s2 {
  top: 38%;
  left: 72%;
  transform: scale(1.2) rotate(6deg);
}
.s3 {
  bottom: 22%;
  left: 22%;
  transform: scale(0.9);
}
.s4 {
  top: 64%;
  right: 22%;
  transform: scale(1.05);
}
.s5 {
  top: 14%;
  right: 32%;
  transform: scale(0.8) rotate(-10deg);
}
.s6 {
  top: 68%;
  right: 40%;
  transform: scale(0.7) rotate(12deg);
}
@media (max-width: 900px) {
  .page-wrap {
    width: min(100% - 40px, 100%);
  }
  .top-bar {
    padding: 28px 0;
  }
  .brand {
    font-size: 18px;
  }
  .brand-icon {
    width: 42px;
    height: 42px;
  }
  .social a {
    width: 40px;
    height: 40px;
  }
  .social a svg {
    width: 16px;
    height: 16px;
  }
  .hero {
    margin-top: 20px;
  }
  .headline {
    margin-bottom: 7px;
    font-size: clamp(26px, 10vw, 42px);
    gap: 6px;
  }
  .platform-callout {
    font-size: clamp(16px, 3.5vw, 20px);
    padding: 6px 16px;
    margin-left: 12px;
  }
  .platform-callout::before {
    position: absolute;
    background-image: url("arrow-down.svg");
    left: 78%;
    width: 55px;
    height: 38px;
    top: -42px;
  }
  .subscribe {
    padding: 4px;
    width: min(180px, 95%);
  }
  .subscribe button {
    min-width: 70px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  body {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .page-wrap {
    width: min(100% - 32px, 100%);
    padding: 0 16px;
    min-height: 100vh;
  }
  .top-bar {
    padding: 30px 0 40px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-size: 18px;
  }
  .brand-icon {
    width: 40px;
    height: 40px;
  }
  .social a {
    width: 38px;
    height: 38px;
  }
  .social a svg {
    width: 15px;
    height: 15px;
  }
  .hero {
    margin-top: 40px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .badge {
    padding: 12px 14px;
    font-size: 15px;
    margin-bottom: 40px;
  }
  .headline {
    font-size: clamp(24px, 20vw, 32px);
    margin-bottom: 9px;
    gap: 8px;
    line-height: 1.15;
    align-items: center;
  }
  .platform-callout {
    font-size: clamp(15px, 5vw, 18px);
    padding: 8px 18px;
    margin-left: 100%;
    align-self: center;
  }
  .platform-callout::before {
    position: absolute;
    width: 50px;
    height: 25px;
    left: 38%;
    top: -24px;
    transform: translateX(-50%);
    display: block;
    background-image: url("arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
.headline-row svg {
  width: clamp(24px, 6vw, 32px);
  height: clamp(24px, 6vw, 32px);
}
.platform-pill {
  padding: 10px 22px;
  font-size: clamp(18px, 6vw, 24px);
  box-shadow: 0 8px 20px rgba(135, 74, 226, 0.26);
}
.description {
  font-size: 17px;
  margin: 12px auto 16px;
  line-height: 1.7;
  max-width: 100%;
}
.subscribe {
  width: min(290px, 95%);
  padding: 4px;
  margin-top: 20px;
}
.subscribe input {
  padding: 8px 12px;
  font-size: 12px;
}
.subscribe button {
  min-width: 70px;
  padding: 8px 12px;
  font-size: 12px;
}
.s1 {
  top: 24%;
  left: 12%;
  transform: scale(1.2);
}
.s2 {
  top: 34%;
  left: 78%;
  transform: scale(1) rotate(6deg);
}
.s3 {
  bottom: 18%;
  left: 16%;
  transform: scale(0.8);
}
.s4 {
  top: 62%;
  right: 18%;
  transform: scale(0.9);
}
.s5 {
  top: 12%;
  right: 28%;
  transform: scale(0.7) rotate(-10deg);
}
.s6 {
  top: 70%;
  right: 34%;
  transform: scale(0.6) rotate(12deg);
}

@media (max-width: 480px) {
  body {
    padding: 0;
  }
  .page-wrap {
    width: min(100% - 28px, 100%);
    padding: 0 14px;
  }
  .top-bar {
    padding: 32px 0 48px;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-size: 17px;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .social {
    gap: 12px;
  }
  .social a {
    width: 38px;
    height: 38px;
  }
  .social a svg {
    width: 15px;
    height: 15px;
  }
  .hero {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .badge {
    padding: 5px 15px;
    font-size: 15px;
    margin-bottom: 44px;
  }
  .headline {
    font-size: clamp(26px, 15vw, 37px);
    margin-bottom: 14px;
    gap: 18px;
    align-items: center;
  }
  .platform-callout {
    align-self: center;
    margin: 12px 0 0;
    font-size: clamp(17px, 6vw, 18px);
    padding: 10px 20px;
    margin-left: 100%;
  }
  .custom-arrow {
    width: clamp(30px, 6vw, 38px);
    margin-bottom: 6px;
  }
  .platform-callout::before {
    position: absolute;
    width: 40px;
    height: 35px;
    left: 30%;
    top: -40px;
    transform: translateX(-50%);
    background-image: url("arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .description {
    font-size: 16px;
    margin: 14px auto 18px;
    line-height: 1.7;
  }
  .subscribe {
    width: min(240px, 95%);
    padding: 4px;
    margin-top: 24px;
  }
  .subscribe input {
    padding: 8px 10px;
    font-size: 12px;
  }
  .subscribe button {
    min-width: 65px;
    padding: 8px 10px;
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  body {
    padding: 0;
  }
  .page-wrap {
    width: min(100% - 24px, 100%);
    padding: 0 12px;
  }
  .top-bar {
    padding: 36px 0 52px;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-size: 16px;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .social a {
    width: 36px;
    height: 36px;
  }
  .hero {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .badge {
    margin-bottom: 48px;
    padding: 12px 24px;
    font-size: 15px;
  }
  .headline {
    font-size: clamp(24px, 12vw, 38px);
    margin-bottom: 16px;
    gap: 20px;
    align-items: center;
  }
  .platform-callout {
    align-self: center;
    margin: 16px 0 0;
    font-size: clamp(16px, 6vw, 20px);
    padding: 10px 20px;
  }
  .custom-arrow {
    width: clamp(28px, 6vw, 36px);
    margin-bottom: 6px;
  }
  .platform-callout::before {
    position: absolute;
    width: 45px;
    height: 32px;
    left: 50%;
    top: -38px;
    transform: translateX(-50%);
    background-image: url("arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .description {
    font-size: 15px;
    margin: 16px auto 20px;
    line-height: 1.7;
  }
  .subscribe {
    width: min(220px, 100%);
    margin-top: 28px;
    padding: 3px;
  }
}
