@import url('site-chrome.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.hi{
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
}

  .swiper {
    width: 1100px;
    height: 170px;
    border-radius: 20px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

  }

img{
    width: 100%;
    display: flex;
}
a{
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

.Down{

    margin-block-start: 70px;
    margin-inline-start: 70px;
    padding-inline-start: 20px;
    background-color: #5F0625;
    color: white;
    width : 100px;
    block-size: 55px;
    border-radius: 10px;
    font-size: 25px;
    transition: all 0.4s ease;

}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #CC1C39;
    z-index: -100;
}

header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content {
    position: relative;
    z-index: 0;
}

header .content h4{
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
}

header .content h1{
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

header .content p{
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    z-index: 0;
}

.hero-visual__glow {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 28, 57, 0.45) 0%, transparent 65%);
    filter: blur(40px);
    animation: hero-glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-glow-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-visual__ring {
    position: absolute;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    border-radius: 50%;
    border: 1px solid rgba(204, 28, 57, 0.22);
    animation: hero-ring-spin 20s linear infinite;
    pointer-events: none;
}

.hero-visual__ring::before {
    content: "呪";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: rgba(204, 28, 57, 0.55);
}

@keyframes hero-ring-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-visual__img-wrap {
    position: relative;
    z-index: 1;
    width: min(380px, 85vw);
}

.hero-visual__img-wrap::before {
    content: "";
    position: absolute;
    inset: 10%;
    background: var(--bibrik-accent, #cc1c39);
    filter: blur(60px);
    opacity: 0.35;
    border-radius: 50%;
    pointer-events: none;
}

.hero-visual__img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
    animation: hero-img-float 5s ease-in-out infinite;
}

@keyframes hero-img-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual__glow,
    .hero-visual__ring,
    .hero-visual__img {
        animation: none !important;
    }
}

section .header{
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}

.project-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.project-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(160deg, #2c2c30 0%, #27272a 55%, #232326 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 28, 57, 0.38);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(204, 28, 57, 0.12);
}

.project-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.project-card__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(204, 28, 57, 0.18);
    border: 1px solid rgba(204, 28, 57, 0.35);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 8px 20px rgba(204, 28, 57, 0.18);
}

.project-card__badge--discord {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    color: #a5b4fc;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.15);
}

.project-card__eyebrow {
    margin: 0 0 0.2rem;
    font-family: "Jura", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(204, 28, 57, 0.9);
}

.project-card__title {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.project-card__desc {
    flex: 1;
    margin: 0 0 1.25rem;
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #d4d4d8;
    font-size: 0.92rem;
    line-height: 1.55;
    min-height: 5.5rem;
}

.project-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    background: rgba(204, 28, 57, 0.22);
    border: 1px solid rgba(204, 28, 57, 0.45);
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.project-card__link:hover {
    background: #cc1c39;
    border-color: #cc1c39;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 28, 57, 0.32);
}

.project-card__link--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92) !important;
}

.project-card__link--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    transform: translateY(-2px);
}

@media (width < 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-card,
    .project-card__link {
        transition: none;
    }
    .project-card:hover,
    .project-card__link:hover {
        transform: none;
    }
}

.sub-header{
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #ccc;
}

.info-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.info-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(160deg, #2c2c30 0%, #27272a 55%, #232326 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 28, 57, 0.38);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(204, 28, 57, 0.12);
}

.info-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-card__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(204, 28, 57, 0.18);
    border: 1px solid rgba(204, 28, 57, 0.35);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 8px 20px rgba(204, 28, 57, 0.18);
}

.info-card__eyebrow {
    margin: 0 0 0.2rem;
    font-family: "Jura", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(204, 28, 57, 0.9);
}

.info-card__title {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.info-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.info-card__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.info-card__item:hover {
    background: rgba(204, 28, 57, 0.1);
    border-color: rgba(204, 28, 57, 0.28);
    transform: translateX(4px);
}

.info-card__item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(165, 25, 53, 0.22);
    color: #fff;
    font-size: 1.15rem;
}

.info-card__item-icon--win { background: rgba(0, 120, 215, 0.22); color: #7ec8ff; }
.info-card__item-icon--mac { background: rgba(255, 255, 255, 0.1); color: #f4f4f5; }
.info-card__item-icon--linux { background: rgba(233, 84, 32, 0.2); color: #fca76a; }
.info-card__item-icon--vscode { background: rgba(0, 122, 204, 0.22); color: #7ec0ff; }

.info-card__item-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
}

.info-card__bio {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.info-card__bio-lead,
.info-card__bio-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #d4d4d8;
    font-size: 0.95rem;
    line-height: 1.55;
}

.info-card__bio-lead i,
.info-card__bio-note i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.2rem;
    color: var(--bibrik-accent, #cc1c39);
}

.info-card__bio-lead strong {
    color: #fff;
}

.info-card__item-icon--discord {
    background: rgba(88, 101, 242, 0.2);
    color: #a5b4fc;
}

.info-card--services {
    background: linear-gradient(165deg, #2a2830 0%, #27272a 50%, #232326 100%);
}

@media (width < 900px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-card--services {
        grid-column: 1 / -1;
    }
}

@media (width < 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-card--services {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-card,
    .info-card__item {
        transition: none;
    }
    .info-card:hover,
    .info-card__item:hover {
        transform: none;
    }
}

.pricing{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing .card{
    padding: 3rem 2rem;
    background-color: #27272a;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing .card:hover{
    background-color: #323232;
    border-color: #fff;
    transform: scale(1.05);
}

.pricing .card .content{
    flex: 1;
    margin-bottom: 2rem;
}

.pricing .card h4{
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing .card h3{
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px dashed #fff;
}

.pricing .card p{
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing .card p i{
    color: #A51935;
    font-size: 1.6rem;
    margin-right: 0.3rem;
}

.pricing .card button{
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.pricing .card button:hover{
    background-color: #A51935;
    border-color: #A51935;
}
.logo_2{

    inline-size: 65px;
    block-size: 64px;
    margin: 20px;
    position: absolute;
    transition: all 0.4s ease;
    
}
.number p{

    display: flex;

   inline-size: 170px;
   margin-inline-start: 110px;
   padding-block: 5px;
   color: white;

}

.number{

    inline-size: 100px;
    margin-block: auto;
}

.logo_2:hover{

    transform: scale(0.85);
    filter: drop-shadow(10px 5px 0px #a51935b7);

}

@media (width < 900px){
    header{
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-visual {
        order: -1;
        min-height: 320px;
        padding-top: 1rem;
    }
    .hero-visual__img-wrap {
        width: min(280px, 70vw);
    }
    .swiper{
        display: none;
    }
    .project-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .info-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (width < 600px){
    .ban{
        display: none;
    }

    .project-grid{
        grid-template-columns: 1fr;
    }
    .info-grid{
        grid-template-columns: 1fr;
    }

    .pricing{
        grid-template-columns: repeat(1, 1fr);
    }

    footer{

        block-size: 150px;
        max-inline-size: 350px;
        flex-wrap: wrap;
    
    }
    .number p{
    
    margin-block: auto;
    
    }
    .logo_2{
        margin: 15px;

    }
    
}

