*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: #000;
  background: #fff;
  line-height: 1.5;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mo {
  display: none;
}

.hero {
  height: 720px;
  overflow: hidden;
  color: #fff;
  background: #020101 url(../landing/img/get-free-license-bgimg.png) top center no-repeat;
  background-size: cover;
}

.hero-shell {
  width: min(1400px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(680px, 740px) minmax(0, 1fr);
  gap: 32px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 120px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 3.1vw, 48px);
  font-weight: 700;
  color: #fff;
}

.hero-copy p {
  max-width: 690px;
  width: 100%;
  margin: 20px 0 30px;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
}

.primary-cta {
  width: min(377px, 100%);
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(108deg, #DB74FF 0.14%, #256CFF 95.45%);
  box-shadow: 0 12px 30px rgba(137, 70, 255, 0.28);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.primary-cta:hover {
  background: linear-gradient(108deg, #256CFF 0.14%, #DB74FF 95.45%);
}

.hero-copy small {
  margin-top: 14px;
  display: block;
  color: #aaa;
  font-size: 12px;
  line-height: 18px;
}

.hero-media {
  /* width: min(879px, 62vw);
  margin: 0 -62px 0 0;
  justify-self: end; */
  position: absolute;
  right: -240px;
}

.hero-media img {
  aspect-ratio: 1050 / 720;
  object-fit: cover;
}

.steps-section {
  position: relative;
  z-index: 3;
  margin-top: -140px;
  padding: 0 70px;
}

.steps-panel {
  width: min(1780px, 100%);
  min-height: 1476px;
  margin: 0 auto;
  padding: 92px 40px 100px;
  border-radius: 40px;
  background: linear-gradient(180deg, #EFE5FF 0%, #F4EDFF 79.19%, rgba(244, 237, 255, 0.00) 98.98%);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}

.channels-section>h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.section-heading p {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 30px;
}

.steps-heading p {
  color: #333;
}

.steps-list {
  position: relative;
  width: min(1200px, 100%);
  margin: 50px auto 0;
  display: grid;
  gap: 32px;
}

.step-card {
  position: relative;
  padding: 30px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  overflow: visible;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 18px rgba(198, 94, 255, 0.22);
  backdrop-filter: blur(20px);
}

.step-card::before,
.step-card::after {
  content: "";
  position: absolute;
  left: 110px;
  z-index: 1;
  border-left: 2px dashed #b395ff;
  pointer-events: none;
}

.step-card::before {
  top: 0;
  height: calc(50% - 50px);
}

.step-card::after {
  top: calc(50% + 50px);
  bottom: -32px;
}

.step-card:first-child::before,
.step-card:last-child::after {
  display: none;
}

.step-card>* {
  position: relative;
  z-index: 2;
}

.step-card img {
  width: 160px;
  height: 100px;
  object-fit: cover;
}

.step-copy h3 {
  margin: 0 0 10px;
  color: transparent;
  background: linear-gradient(110deg, #256cff, #db74ff);
  background-clip: text;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 39px;
  display: inline-block;
  padding-right: 0.18em;
  overflow: visible;
}

.step-copy p {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.5;
}

.step-copy a {
  color: #256cff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}

.steps-cta {
  width: min(548px, 100%);
  min-height: 80px;
  margin: 50px auto 0;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(108deg, #DB74FF 0.14%, #256CFF 95.45%);
  box-shadow: 0 18px 40px rgba(137, 70, 255, 0.28);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  text-align: center;
}

.steps-cta:hover {
  background: linear-gradient(108deg, #256CFF 0.14%, #DB74FF 95.45%);
}

.dark-page {
  margin-top: 0;
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(105, 33, 255, 0.7), transparent 32%),
    linear-gradient(180deg, #151515 0%, #151515 71%, rgba(105, 33, 255, 0.22) 100%),
    #151515;
}

.dark-content {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 100px;
}

.channels-section>h2 {
  text-align: center;
}

.channel-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.channel-card {
  min-width: 0;
  padding: 30px;
  border-radius: 24px;
  color: #000;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(140deg, #f7f2ff 0%, #e9dcff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
}

.channel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

.channel-header h3 {
  margin: 0;
  color: transparent;
  background: linear-gradient(110deg, #256cff, #db74ff);
  background-clip: text;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}

.channel-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #256cff, #db74ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.channel-icon svg {
  width: 30px;
  height: 30px;
}

.channel-body {
  margin-top: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.channel-body>h4,
.platform-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.detail-list {
  display: grid;
  gap: 6px;
}

.detail-list li {
  position: relative;
  padding-left: 14px;
  color: #434343;
  font-size: 14px;
  line-height: 21px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #434343;
}

.reward-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DBDBDB;
}

.channel-body>.detail-list {
  padding-bottom: 24px;
}

.platform-box {
  margin-top: auto;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 8px rgba(199, 94, 255, 0.25);
  backdrop-filter: blur(20px);
  min-height: 155px;
}

.light-heading h2,
.light-heading p {
  color: #fff;
}

.audit-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audit-card {
  min-height: 227px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(173, 114, 255, 0.4), transparent 70%),
    rgba(223, 204, 255, 0.13);
}

.audit-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.audit-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.audit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 21px;
}

.reward-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 12px;
}

.reward-shell {
  position: relative;
  min-width: 0;
  min-height: 438px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(158, 98, 255, 0.38), rgba(98, 123, 247, 0)), #281a40;
  box-shadow: 0 0 24px 10px rgba(54, 56, 98, 0.25);
}

.reward-shell::before {
  content: "";
  display: block;
  background: url(../landing/img/get-free-license-giftimg.png) top center no-repeat;
  background-size: cover;
  width: 106%;
  position: absolute;
  top: -10%;
  left: -3%;
  z-index: 5;
  aspect-ratio: 465 / 100;
  object-fit: cover;
}

.reward-card {
  height: 100%;
  min-height: 371px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.8);
  border-radius: 30px;
  background: radial-gradient(106.85% 85.36% at 50% 18.79%, #1B0F2A 69.86%, #472E76 100%), linear-gradient(200deg, #36295D 28.01%, rgba(47, 40, 61, 0.00) 81.22%), rgba(20, 23, 31, 0.90);
  box-shadow: 0 0 24px 10px rgba(54, 55, 98, 0.25);
  backdrop-filter: blur(14.600000381469727px);
}

.reward-media {
  height: 198px;
  overflow: hidden;
}

.reward-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reward-list {
  padding: 8px 18px 18px;
  display: grid;
  gap: 8px;
}

.reward-list li {
  position: relative;
  padding-left: 14px;
  color: #dbdbdb;
  font-size: 14px;
  line-height: 21px;
}

.notice {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.notice h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.notice ol {
  display: grid;
  gap: 8px;
  counter-reset: notice;
}

.notice li {
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  counter-increment: notice;
}

.notice li::before {
  content: counter(notice) ". ";
}

@media (max-width: 1500px) {
  .hero-media {
    margin-right: 0;
  }
}

@media (max-width: 1200px) {

  .hero-shell,
  .dark-content {
    width: min(100% - 40px, 1100px);
  }

  .hero-shell {
    grid-template-columns: minmax(480px, 540px) minmax(0, 1fr);
  }

  .hero-media {
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
  }

  .steps-section {
    padding: 0 28px;
  }

  .steps-panel {
    min-height: 0;
    padding-inline: 28px;
  }

  .reward-shell::before { 
    top: -8%;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 720px;
    padding: 80px 0 180px;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    gap: 0;
  }

  .hero-copy {
    margin-top: 0px;
    text-align: center;
    max-width: 100%;
    order: 2;
  }

  .hero-copy p {
    text-align: center;
    max-width: 100%;
  }

  .hero-media {
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 100%;
    right: 0;
    margin: 0 auto;
  }

  .steps-section {
    margin-top: -120px;
  }

  .channel-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .reward-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reward-shell {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .platform-box {
    min-height: auto;
  }

  .reward-shell::before { 
    display: none;
  }

  .mo {
    display: block;
  }

  .hero-media img.mo {
    aspect-ratio: 750 / 530;
    margin: 0 auto;
  }

  .pc {
    display: none;
  }
}

@media (max-width: 700px) {

  .hero-shell,
  .dark-content {
    width: min(100% - 32px, 640px);
  }

  .hero {
    padding: 40px 0 100px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .primary-cta {
    font-size: 17px;
  }

  .steps-section {
    padding: 0 12px;
    margin-top: -80px;
  }

  .steps-panel {
    padding: 50px 15px;
    border-radius: 20px;
  }

  .section-heading h2,
  .channels-section>h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .section-heading p {
    font-size: 17px;
    line-height: 1.5;
  }

  .steps-list {
    gap: 16px;
    margin: 30px auto 0;
  }

  .step-card::before,
  .step-card::after {
    display: none;
  }

  .step-card {
    padding: 18px;
    gap: 16px;
    min-height: 0;
  }

  .step-card img {
    height: auto;
    aspect-ratio: 8 / 5;
  }

  .step-copy h3 {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .step-copy p {
    font-size: 17px;
  }

  .steps-cta {
    min-height: 64px;
    margin-top: 32px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .dark-page {
    padding: 60px 0;
  }

  .dark-content {
    gap: 60px;
  }

  .channel-grid,
  .audit-grid,
  .reward-grid {
    margin-top: 36px;
  }

  .channel-card {
    padding: 22px;
  }

  .reward-shell {
    min-height: 0;
  }

  .notice {
    padding: 18px;
  }
}

body.modal-open {
  overflow: hidden;
}

.primary-cta,
.steps-cta {
  border: 0;
  cursor: pointer;
}

.claim-dialog {
  width: min(480px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 49px 50px 50px;
  overflow: auto;
  border: 0;
  border-radius: 20px;
  color: #000;
  background:
    linear-gradient(180deg, #e3d1ff 0%, #f3ebff 35%, #fff 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.claim-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.claim-dialog[open] {
  animation: claim-dialog-enter 180ms ease-out;
}

@keyframes claim-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

.claim-dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 25px;
  height: 25px;
  padding: 5px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #7e8c8c;
  background: transparent;
  cursor: pointer;
}

.claim-dialog-close:hover,
.claim-dialog-close:focus-visible {
  color: #333;
  background: rgba(255, 255, 255, 0.5);
  outline: none;
}

.claim-dialog-close svg {
  width: 16px;
  height: 16px;
}

.claim-form-view,
.claim-success-view {
  width: 100%;
}

.claim-form-view {
  display: grid;
  justify-items: center;
}

.claim-visual {
  width: 88px;
  height: 75px;
  margin: 0;
  overflow: hidden;
}

.claim-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.claim-dialog h2 {
  width: 100%;
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
}

.claim-form {
  width: 100%;
  margin-top: 30px;
  display: grid;
  gap: 30px;
}

.claim-field {
  width: 100%;
  display: grid;
  gap: 8px;
}

.claim-field label {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.claim-field input {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  outline: 0;
  color: #333;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  font-size: 14px;
  line-height: 21px;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.claim-field input::placeholder {
  color: #999;
  opacity: 1;
}

.claim-field input:hover,
.claim-field input:focus {
  border-color: #466dff;
  background: #fff;
}

.claim-field.is-error input {
  border-color: #e64040;
  background: #fff;
}

.claim-field-error {
  display: none;
  margin: -1px 0 0;
  color: #e64040;
  font-size: 14px;
  line-height: 21px;
}

.claim-field.is-error .claim-field-error {
  display: block;
}

.claim-submit,
a.claim-download {
  width: 100%;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #db74ff 0%, #256cff 100%);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}

.claim-submit:disabled {
  color: #909090;
  background: #f2f2f2;
  cursor: not-allowed;
}

.claim-submit:not(:disabled):hover,
.claim-download:hover {
  filter: brightness(1.04);
}

.claim-submit:not(:disabled):active,
.claim-download:active {
  transform: translateY(1px);
}

.claim-success-view {
  padding-top: 12px;
  text-align: center;
}

.claim-success-view[hidden],
.claim-form-view[hidden] {
  display: none;
}

.claim-success-view h2 {
  margin-top: 0;
}

.claim-success-view>p {
  max-width: 380px;
  margin: 10px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.activation-code {
  position: relative;
  width: 100%;
  min-height: 164px;
  margin-top: 30px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132, 79, 244, 0.6);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(219, 116, 255, 0.06), rgba(37, 108, 255, 0.06));
}

.activation-code strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: transparent;
  background: linear-gradient(135deg, #db74ff 0%, #256cff 100%);
  background-clip: text;
  font-size: 28px;
  font-weight: 800;
  line-height: 42px;
  text-align: center;
}

.copy-code {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  padding: 8px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #555;
  background: linear-gradient(135deg, rgba(219, 116, 255, 0.12), rgba(37, 108, 255, 0.12));
  cursor: pointer;
}

.copy-code:hover,
.copy-code:focus-visible {
  color: #333;
  background: linear-gradient(135deg, rgba(219, 116, 255, 0.2), rgba(37, 108, 255, 0.2));
  outline: none;
}

.copy-code svg {
  width: 16px;
  height: 16px;
}

.copied-icon {
  display: none;
}

.copy-code.is-copied .copy-icon {
  display: none;
}

.copy-code.is-copied .copied-icon {
  display: block;
}

.claim-download {
  margin-top: 30px;
}

@media (max-width: 560px) {
  .claim-dialog {
    width: calc(100vw - 24px);
    padding: 48px 24px 32px;
  }

  .claim-visual {
    width: 132px;
    height: 89px;
  }

  .claim-dialog h2 {
    font-size: 25px;
    line-height: 36px;
  }

  .claim-form {
    margin-top: 24px;
    gap: 24px;
  }

  .activation-code {
    min-height: 146px;
    padding: 34px 28px;
  }

  .activation-code strong {
    font-size: 22px;
    line-height: 34px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 br {
    display: none;
  }

  .step-card img {
    width: 1.6rem;
    margin: 0 auto;
  }
}