.about-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

.about-content-wrapper {
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom, rgba(9, 15, 19, 0) 0%, rgba(16, 18, 17, 0.01) 50%, #090f13 100%);
}

.about-content {
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.main-b {
    width: 1552px;
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    display: flex;
    gap: 86px;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.section-title-a {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.3px;
    text-align: center;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(90deg, #7066FF 0%, #B794FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-bold {
    background: linear-gradient(90deg, #7066FF 0%, #B794FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px 16px 24px;
    background: linear-gradient(272deg, #37B9FF -8.97%, #B5FE38 100%);
    color: #050505;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 48px;
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0, 255, 127, 0.3);
}

.btn-primary span {
    position: relative;
    top: -3px;
    margin-left: 4px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll.animate-slideUp {
    animation: slideUp 0.8s ease-out forwards;
}

.hero-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 0 0 0;
    margin-bottom: 133px;
}

.hero-content {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 40px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    position: relative;
    flex: 1;
}

.hero-title .title-image {
    width: 672px;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-right {
    flex-shrink: 0;
    position: relative;
    flex: 1;
    animation: slideInRight 0.8s ease-out;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.character-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.character-image {
    width: 696px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}

.speech-bubble {
    position: absolute;
    left: -60px;
    bottom: 50%;
    transform: translateY(55%);
    width: auto;
    height: auto;
    z-index: 10;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out 1s forwards;
}

.speech-bubble .bubble-image {
    width: auto;
    height: auto;
    max-width: 300px;
    display: block;
}

.about-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.about-section .section-header {
    margin-bottom: 50px;
}

.about-intro {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 48px;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px !important;
}

.text-line {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 34px;
}

.text-line .text-bold {
    font-weight: 600;
}

.intro-video {
    flex-shrink: 0;
    width: 480px;
    height: 270px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder video {
    width: 100%;
    border-radius: 24px;
    height: 100%;
}

.stats-cards {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    background: #0C151C;
    border-radius: 24px;
    padding: 0;
    backdrop-filter: blur(10px);
    border: 1px solid #543B5F;
    position: relative;
}

.stat-card {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    position: relative;
}

.stat-card::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 80px;
    background: url("/static/assets/about/tt3.png") no-repeat;
    background-size: 100% 100%;
}

.stat-card:last-child::after {
    display: none;
}

.stat-icon {
    width: 125px;
    height: 88px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.stat-card:nth-child(1) .stat-icon {
    background-image: url("/static/assets/about/ai11.png");
}

.stat-card:nth-child(2) .stat-icon {
    background-image: url("/static/assets/about/ai10.png");
}

.stat-card:nth-child(3) .stat-icon {
    background-image: url("/static/assets/about/ai9.png");
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
}

.stat-desc {
    font-size: 14px;
    font-weight: 400;
    color: #afafaf;
}

.why-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 0;
    margin-bottom: 0;
    background: url("/static/assets/about/abg1.png") no-repeat;
    background-size: 100% 100%;
}

.feature-cards {
    display: flex;
    gap: 24px;
    height: auto;
    align-items: stretch;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 40px;
    background: rgba(21, 37, 50, 0.48);
    border-radius: 24px;
    border: 1px solid #543B5F;
    backdrop-filter: blur(12px);
    border-radius: 24px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.feature-card:nth-child(1) .feature-icon {
    background-image: url("/static/assets/about/ai8.png");
}

.feature-card:nth-child(2) .feature-icon {
    background-image: url("/static/assets/about/ai7.png");
}

.feature-card:nth-child(3) .feature-icon {
    background-image: url("/static/assets/about/ai6.png");
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: #afafaf;
    line-height: 1.5;
}

.steps-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 0;
    margin-bottom: 0;
}

.steps-content {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 24px;
    padding: 0;
    backdrop-filter: none;
    height: auto;
}

.steps-illustration {
    flex-shrink: 0;
    width: 500px;
    height: 420px;
    position: relative;
    background: rgba(12, 21, 28, 0.8);
    border-radius: 24px;
    border: 1px solid #543B5F;
    backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.character-image-2 {
    width: 500px;
    display: block;
    object-fit: contain;
}

.speech-bubble-2 {
    position: absolute;
    right: 47px;
    top: 18px;
    width: auto;
    height: auto;
    z-index: 10;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out 0.8s forwards;
}

.speech-bubble-2 .bubble-image-2 {
    width: auto;
    height: auto;
    max-width: 259px;
    display: block;
}

.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 198px;
    padding: 0 40px;
    border-radius: 24px;
    border: 1px solid #543B5F;
    background: #0C151C;
    backdrop-filter: blur(12px);
    backdrop-filter: blur(10px);
}

.step-card .step-numer {
    width: 252px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    opacity: 0.24;
}
.step-card .step-numer.step-numer2 {
  width: 274px;
}

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

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 34px;
}

.step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #afafaf;
    line-height: 20px;
}

.step-desc-gradient {
    font-size: 14px;
    font-weight: 400;
    padding-top: 8px;
    line-height: 20px;
}

.step-number {
    position: absolute;
    right: 41px;
    font-family: "Daizen", sans-serif;
    font-size: 160px;
    font-weight: 400;
    color: #fff;
    opacity: 0.24;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.promise-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 0;
    margin-bottom: 0;
    background: url("/static/assets/about/abg2.png") no-repeat;
    background-size: 100% 100%;
}

.promise-cards {
    display: flex;
    gap: 24px;
    height: auto;
    align-items: stretch;
}

.promise-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
}

.promise-icon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.promise-card:nth-child(1) .promise-icon {
    background-image: url("/static/assets/about/ai5.png");
}

.promise-card:nth-child(2) .promise-icon {
    background-image: url("/static/assets/about/ai4.png");
}

.promise-card:nth-child(3) .promise-icon {
    background-image: url("/static/assets/about/ai3.png");
}

.promise-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promise-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.promise-desc {
    font-size: 14px;
    font-weight: 400;
    color: #afafaf;
    line-height: 1.5;
    text-align: center;
}

.promise-desc span {
    display: flex;
    padding-top: 16px;
    justify-content: center;
}

.cta-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    margin-bottom: 0;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 229px;
    background-image: url("/static/assets/about/ai2.png");
    background-size: cover;
    background-position: center;
    filter: blur(48px);
    mix-blend-mode: screen;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-illustration {
    flex-shrink: 0;
    width: 284px;
    height: 320px;
    position: relative;
}

.character-image-3 {
    width: 100%;
    height: 100%;
    background-image: url("/static/assets/about/ag3.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-intro {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.cta-title {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 400;
    background: linear-gradient(90deg, #7066FF 0%, #B794FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px 16px 24px;
    background: linear-gradient(272deg, #37B9FF -8.97%, #B5FE38 100%);
    color: #050505;
    font-size: 20px;
    width: fit-content;
    height: 60px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button span {
    position: relative;
    top: -3px;
    margin-left: 4px;
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0, 255, 127, 0.3);
}

@media screen and (max-width: 1552px) {
    .about-content {
        padding: 0 16px;
    }
}

.inH5 {
    display: none !important;
}

.inPc {
    display: block !important;
}

@media screen and (max-width: 768px) {
  .inH5 {
    display: block !important;
  }
  .inPc {
    display: none !important;
  }
  .hero-title {
    margin-top: 40px;
  }
  .about-content {
    padding: 0 16px;
  }
  .speech-bubble {
    width: 100%;
    left: 0;
    right: 0;
    bottom: -120px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-section {
    margin-bottom: 80px !important;
  }
  .bubble-image {
    width: 300px;
  }
  .btn-primary {
    margin: 0 auto;
    right: 0;
    margin-top: 24px !important;
    font-size: 16px !important;
    display: block;
    width: fit-content;
  }
  .about-content-wrapper::before, .about-content-wrapper::after {
    top: 800px;
    height: 400px;
  }
  .hero-section {
    height: auto;
    padding: 20px 0;
  }
  .section-header {
    margin-bottom: 24px !important;
  }
  .section-title-a {
    font-size: 24px;
  }
  .text-line {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
  .text-block {
    text-align: center;
    font-size: 14px !important;
  }
  .intro-video {
    width: 100% !important;
    margin-top: 16px;
  }
  .video-placeholder {
    width: 100%;
  }
  .video-placeholder video {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .about-section {
    margin-bottom: 80px !important;
  }
  .why-section {
    background: url("/static/assets/about/ah5bg1.png") no-repeat;
    background-size: 100% 100%;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .why-section .feature-cards {
    padding: 0 16px;
  }
  .why-section .feature-cards .feature-card {
    padding: 16px;
    gap: 10px;
  }
  .why-section .feature-cards .feature-card .feature-content .feature-title {
    font-size: 18px;
    line-height: 25px;
  }
  .why-section .feature-cards .feature-card .feature-content .feature-desc {
    font-size: 14px;
  }
  .why-section .feature-cards .feature-card .feature-icon {
    width: 88px;
    height: 88px;
  }
  .cta-title {
    font-size: 32px;
  }
  .stats-cards {
    flex-direction: column;
    padding: 16px !important;
    gap: 32px;
    align-items: flex-start;
  }
  .stats-cards .stat-card {
    padding: 0 !important;
    gap: 8px;
    width: 100%;
  }
  .stats-cards .stat-card::after {
    background-image: url("/static/assets/about/line.png") !important;
    width: 100%;
    height: 1px;
    top: calc(100% + 16px);
    left: 0;
  }
  .stats-cards .stat-card .stat-icon {
    width: 90px;
  }
  .stats-cards .stat-card .stat-content {
    flex: 1;
  }
  .stats-cards .stat-card .stat-content .stat-number {
    font-size: 18px;
    line-height: 25px;
  }
  .stats-cards .stat-card .stat-content .stat-desc {
    font-size: 14px;
    line-height: 20px;
  }
  .feature-cards {
    flex-direction: column;
  }
  .steps-section {
    margin-bottom: 32px !important;
  }
  .steps-content {
    flex-direction: column;
    gap: 16px !important;
  }
  .steps-content .steps-illustration {
    width: 100%;
    height: 300px;
  }
  .steps-content .steps-illustration .character-image-2 {
    width: 100%;
  }
  .steps-content .steps-illustration .speech-bubble-2 {
    left: 0;
    right: 0;
    top: -17px;
    display: flex;
    justify-content: center;
  }
  .steps-content .steps-illustration .bubble-image-2 {
    max-width: 320px;
  }
  .steps-content .steps-list {
    width: 100%;
  }
  .steps-content .steps-list .step-card {
    padding: 0 16px;
    width: 100%;
    height: 180px;
  }
  .steps-content .steps-list .step-card .step-content {
    width: 100%;
  }
  .steps-content .steps-list .step-card .step-content .step-title {
    font-size: 18px;
    line-height: 25px;
  }
  .steps-content .steps-list .step-card .step-content .step-desc {
    font-size: 14px;
  }
  .steps-content .steps-list .step-card .step-numer {
    width: 220px !important;
    right: 16px !important;
  }
  .steps-content .steps-list .step-card .step-numer.step-numer2 {
    width: 239px !important;
  }
  .cta-content {
    flex-direction: column;
  }
  .about-intro {
    flex-direction: column;
    margin-bottom: 24px !important;
  }
  .hero-content {
    flex-direction: column-reverse;
  }
  .promise-section {
    background: url("/static/assets/about/ah5bg2.png") no-repeat !important;
    background-size: 100% 100%;
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
  }
  .promise-cards {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 0 16px;
  }
  .promise-cards .promise-card {
    padding: 0 !important;
    gap: 16px !important;
    align-items: center;
  }
  .promise-cards .promise-card .promise-icon {
    width: 64px;
    height: 64px;
  }
  .promise-cards .promise-card .promise-content {
    gap: 8px;
    align-items: center;
    width: 100%;
  }
  .promise-cards .promise-card .promise-content .promise-desc {
    text-align: center;
  }
  .promise-cards .promise-card .promise-content .promise-title {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
  }
  .promise-cards .promise-card .promise-content .text-gradient {
    text-align: center;
    padding-top: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-glow {
    width: calc(100vw - 32px);
  }
  .cta-section .cta-content {
    gap: 24px !important;
  }
  .cta-section .cta-content .cta-text {
    width: 311px;
    text-align: center;
  }
  .cta-section .cta-content .cta-text .cta-intro {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .cta-section .cta-content .cta-text .cta-title {
    font-size: 24px !important;
    line-height: 34px !important;
  }
  .cta-section .cta-content .cta-text .cta-subtitle {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .cta-section .cta-content .cta-button {
    font-size: 16px !important;
    line-height: 22px !important;
    margin: 0 auto;
    display: flex;
    padding: 0 24px !important;
    align-items: center;
    height: 44px;
  }
}

.colorText {
    background: linear-gradient(272deg, #37B9FF -8.97%, #B5FE38 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow1,
.glow2 {
    display: none !important;
}


/*# sourceMappingURL=about.css.map */
