* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #010118;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.main-container {
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 16px 0;
    background: rgba(1, 1, 24, 1);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    width: 100%;
    align-items: center;
    background: rgba(1, 1, 24, 1);
    position: relative;
}

.gradient-bg {
    position: absolute;
    top: -34px;
    left: 0;
    width: 848px;
    height: 450px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(55, 99, 193, 1) 0%, rgba(35, 70, 157, 0.5) 38%, rgba(35, 70, 157, 0) 100%);
    pointer-events: none;
}

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 24px;
    padding: 0px 0px 20px 0px;
    position: relative;
    z-index: 3;
}

.header-title {
    font-family: 'Inter', Helvetica;
    font-weight: 700;
    font-size: 30px;
    line-height: 140%;
    color: #ffffff;
}

.text-yellow {
    color: #ffae00;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0px 20px 0;
    gap: 24px;
    width: 100%;
    position: relative;
}

.hero-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
    width: 100%;
}

.username {
    font-weight: 400;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    width: 100%;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 80px;
    background: linear-gradient(182deg, rgba(0, 68, 255, 1) 0%, rgba(0, 17, 167, 1) 100%);
    border: none;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    font-family: 'Inter', Helvetica;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    color: #ffffff;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.spots-left {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
    opacity: 0.8;
    width: 100%;
}

.visualization {
    position: relative;
    top: 0;

    margin-left: -16px;
    margin-right: -16px;
}

.visualization::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.288);
}

.big-card {
  position: relative;
  margin-left: -16px;
  margin-right: -16px;
}

.big-card svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
}

.big-card video {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.big-card img {
  position: relative;
  z-index: 2;
}

.bars-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -96px);
    width: 360px;
    height: 267px;
    display: flex;
    gap: 4.9px;
}

.bar {
    width: 35.12px;
    height: 124.88px;
}

.bar:first-child {
    margin-left: 2.4px;
}

.photo {

}

.gradient-overlay {
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 361px;
    height: 272px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0px;
    gap: 20px;
    width: 100%;
}

.section-title {
    font-family: 'Inter', Helvetica;
font-weight: 700;
font-size: 30px;
line-height: 140%;
    width: 100%;
    color: #ffffff;
}

.section-subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
}

.section-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
}

.section-text.bold {
    font-weight: 700;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
                radial-gradient(50% 50% at 69% 38%, rgba(55, 99, 193, 0.06) 0%, rgba(35, 70, 157, 0.03) 38%, rgba(35, 70, 157, 0) 100%);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0, 51, 152, 1) 0%, rgba(0, 68, 203, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-emoji {
    font-size: 24px;
    line-height: 36px;
}

.feature-title {
    font-family: 'Inter', Helvetica;
    font-weight: 800;
    font-size: 20px;
    line-height: 160%;
    color: #ffffff;
}

.cta-two {
  padding: 0;
}

.feature-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
}

.access-section {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
    width: 100%;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 220px;
background: linear-gradient(182deg, #04f 0%, #0011a7 100%);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #ffffff;
    width: fit-content;
}

.step-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
}

.closing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0px 30px 0;
    gap: 20px;
    width: 100%;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 20px 0;
    width: 100%;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.check-icon {
    font-size: 16px;
    line-height: 24px;
    flex-shrink: 0;
}

.check-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    flex: 1;
}

.closing-image-card {
  margin-left: -16px;
  margin-right: -16px;
  position: relative;
}

.footer {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: -16px;
    margin-right: -16px;
    align-items: center;
    gap: 20px;
    padding: 20px 16px;
    background-color: #000000;
}

.footer-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #ffffff;
    opacity: 0.6;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    align-items: center;
}

.footer-link {
    display: flex;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .content-wrapper {
        max-width: 600px;
    }

    .visualization {
    }

    .bars-container {
        width: 600px;
    }

    .photo {

    }

    .gradient-overlay {
        width: 601px;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        max-width: 800px;
    }
}
.text-green {
    color: rgba(75, 234, 0, 1);
}
