@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&family=Noto+Sans:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;600;700&display=swap";
:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --gold-primary: #d97706;
  --gold-gradient: linear-gradient(
    -45deg,
    #8c421d 3.7%,
    #fbe67b 45.6%,
    #fcfbe7 72.7%,
    #f7d14e 103%,
    #d4a041 132.6%
  );
  --white-grey-gradient: linear-gradient(118.85deg, #ffffff 14.19%, #999999 85.8%);
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --max-width: 402px;
  --gold-glow: drop-shadow(0px 0px 75px rgba(255, 200, 0, 0.33))
    drop-shadow(0px 0px 15px rgba(255, 200, 0, 0.1));
  --gold-box-shadow: 0px 0px 15px rgba(255, 200, 0, 0.1), 0px 0px 75px rgba(255, 200, 0, 0.33);
  --font-primary: "Sora", "Noto Sans", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
}
#root {
  width: 100%;
  max-width: var(--max-width);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: #000;
  background-image: url(/assets/grid-BWn8Smfc.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 32px;
}
.app-container {
  padding: 32px 0 48px;
  position: relative;
  z-index: 1;
}
.site-header {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
}
.logo-mk {
  width: 58px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mk img {
  width: 58px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  align-items: center;
  text-align: center;
}
.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0;
  filter: var(--gold-glow);
}
.subtitle {
  color: #ffffffd9;
  font-family: var(--font-primary);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-self: stretch;
}
.watch-video {
  display: flex;
  align-items: center;
  gap: 8px;
}
.watch-video span {
  color: #ffb4b4;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.video-icon-small {
  width: 20px;
  height: 20px;
}
.video-container {
  width: 354px;
  height: 200px;
  background: #111;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 50px;
  pointer-events: none;
}
.play-overlay img {
  width: 40px;
  height: 50px;
  object-fit: contain;
}
.hero-pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}
.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  filter: var(--gold-glow);
}
.current-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(115deg, #fff 14%, #999 85.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.original-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  position: relative;
  background: linear-gradient(116deg, #fff 14%, #999 85.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.original-price:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(116deg, #fff 14%, #999 85.8%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 0 48px;
}
.buy-button {
  width: 100%;
  max-width: 306px;
  height: 59px;
  border-radius: 13px;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-box-shadow);
  transition: transform 0.2s ease;
}
.buy-button:active {
  transform: scale(0.98);
}
.price-notice {
  color: #ffffffb3;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 200;
  line-height: 16px;
  max-width: 306px;
  margin: 0 auto;
}
.decorative-image {
  width: 100%;
  height: 253px;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.decorative-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.decorative-overlay {
  position: absolute;
  inset: 0;
  background: #0006;
}
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  text-align: center;
}
.white-grey-gradient {
  background: var(--white-grey-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title-large {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
}
.header-arrow-icon {
  width: 46px;
  height: 24px;
  object-fit: contain;
}
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin-bottom: 40px;
}
.module-card {
  background: linear-gradient(333deg, #ffffff0d, #fff0 49.53%, #ffffff0d);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  border-radius: 32px;
  padding: 24px 24px 32px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
}
.module-header {
  margin-bottom: 40px;
  text-align: center;
}
.white-text {
  color: #fff;
  -webkit-text-fill-color: #ffffff;
}
.module-header h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  margin: 0 0 4px;
  text-transform: uppercase;
  color: #fff;
}
.module-subtitle-italic {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  text-transform: none;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-header-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.feature-icon-circle {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}
.feature-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  color: #f0f0f0;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.feature-sub {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #ffffffb3;
  line-height: 1.5;
  margin-left: 0;
  padding-left: 0;
}
.gold-card {
  background: radial-gradient(circle at center, #d9770626, #0000), #ffffff0d;
  border: 1px solid rgba(251, 230, 123, 0.2);
}
.gold-item-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  color: #f0f0f0;
  letter-spacing: -0.4px;
}
.gold-badge {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.4px;
}
.bonuses-subtitle-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  background: linear-gradient(162.28deg, #fff 14.19%, #999 85.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-badge-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.bonus-content {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.bonus-content strong,
.bonus-item p span {
  font-weight: 700;
}
.faq-section {
  padding: 40px 20px;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.faq-header {
  display: flex;
  gap: 16px;
  align-items: center;
}
.faq-header-arrow {
  width: 46px;
  height: 24px;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}
.faq-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: transparent;
  background: var(--white-grey-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  margin: 0;
  text-shadow:
    0px 0px 75.1px rgba(255, 200, 0, 0.33),
    0px 0px 14.9px rgba(255, 200, 0, 0.1);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.faq-item {
  background-color: #111113;
  border-radius: 10px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.faq-item.active {
  background: linear-gradient(180deg, #111113, #11111300);
  border-color: transparent;
}
.faq-question-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.faq-question-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.faq-answer {
  margin-top: 28px;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffffb3;
}
.inhouse-section {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inhouse-card {
  background: linear-gradient(135deg, #ffffff0d, #00000080, #ffffff0d);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checklist-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  font-style: normal;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.checklist {
  list-style: none;
}
.checklist-item {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #ffffffb3;
  line-height: 24px;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checklist-item:before {
  content: "•";
  color: #fff;
  font-weight: 700;
}
.inhouse-pricing-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.inhouse-pricing-pill {
  width: 306px;
  height: 73px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  position: relative;
  box-shadow: 0 4px 20px #0003;
  z-index: 1;
}
.inhouse-pricing-pill:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: linear-gradient(103deg, #fff3 14.2%, #9993 85.8%);
  -webkit-mask-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) -2.62%,
    #bebebe 49.06%,
    rgba(153, 153, 153, 0) 103.81%
  );
  mask-image: linear-gradient(105deg, #fff0 -2.62%, #bebebe 49.06%, #9990 103.81%);
  z-index: -1;
}
.inhouse-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.inhouse-current-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(118.81deg, #fff 14.2%, #999 85.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inhouse-original-price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  text-decoration: line-through;
  background: linear-gradient(122.62deg, #fff 14.2%, #999 85.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration-color: #ffffff80;
}
.inhouse-buy-button {
  background: linear-gradient(
    -43.36deg,
    #8c421d 3.71%,
    #fbe67b 45.64%,
    #fcfbe7 72.74%,
    #f7d14e 102.96%,
    #d4a041 132.63%
  );
  border: none;
  border-radius: 9px;
  width: 124px;
  height: 41px;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow:
    0 0 10.8px #ffc8001a,
    0 0 54.3px #ffc80054;
}
.inhouse-buy-button:active {
  transform: scale(0.98);
}
.inhouse-price-notice {
  font-family: var(--font-primary);
  font-size: 11px;
  line-height: 1.4;
  color: #ffffff80;
  text-align: center;
  max-width: 280px;
}
.footer {
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 64px 0 0;
  gap: 32px;
}
.up-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 100px;
}
.up-button img {
  width: 48px;
  height: 48px;
}
.up-button span {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}
.up-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-info {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.3;
  line-height: 1.5;
}
