/* Hero section */

#hero {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    
    min-height: 100dvh;

    display: grid;
    place-items: center;

    overflow: clip;
    position: relative;
    isolation: isolate;
}
#hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        hsla(225, 21%, 7%, 0.95),
        hsla(225, 21%, 7%, 0.65)
    );

    z-index: -1;
}
#hero picture.back-gr {
    position: absolute;
    inset: 0;
    z-index: -1;
}
#hero picture.back-gr img {
    min-width: 100%;
    min-height: 100%;
}

#hero .hero-inner {
    padding-block: 15rem 7.5rem;

    display: grid;
    gap: 3rem;
}

#hero .hero-inner .neon-box {
    max-width: max-content;
}

#hero .hero-inner h1 {
    max-width: 18ch;

    font-size: 7.2rem;
    line-height: 1.25;
    font-style: italic;
    text-transform: uppercase;
    color: var(--font-col-600);
    margin-bottom: 1.5rem;
}
#hero .hero-inner h2 {
    text-align: left;
}

#hero .hero-inner p {
    max-width: 80ch;

    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--font-col-400);

    text-align: justify;
}

#hero .hero-inner ul {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(22.5rem, 100%), 1fr));
    gap: 2rem;
}

#hero .hero-inner ul li strong {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    text-align: center;
}
#hero .hero-inner ul li small {
    margin-inline: auto;
    max-width: 22ch;

    display: block;

    font-size: 1.4rem;
    color: var(--font-col-300);
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
}

#hero .hero-inner .buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

#hero .mouse {
    --s: 24px;
    padding-block: calc(var(--s)/3);

    position: absolute;
    bottom: 5rem; left: calc(50% - var(--s)/2);

    width: var(--s);
    aspect-ratio: 24 / 40;

    display: flex;
    align-items: start;
    justify-content: center;

    border: 2px solid #ffffff4d;
    border-radius: 30px;

    animation: bounce 1s infinite;

    & > p {
        width: calc(var(--s)/6);
        aspect-ratio: 4 / 6;
        background-color: #fff;
        border-radius: 1rem;
    }

    z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

section:not(#hero) {
    border-top: 1px solid #1e2939;
}


/* ETSY Principles */
#etsy-principles {
    background-color: #000;
}
#etsy-principles h2 {
    font-size: 6rem;
}
#etsy-principles p.-bigger {
    font-size: 2rem;
    font-weight: 500;
    color: var(--font-col-500);
    text-wrap: balance;
}
#etsy-principles p.-smaller {
    color: var(--font-col-300);
}
#etsy-principles .strong-ico {
    width: 64px;
    border: unset;
}
#etsy-principles .strong-ico svg {
    --d: 32px;
}

/* Central element. Blue. */

ul.central-big {
    grid-template-columns: auto !important;
}
ul.central-big li {
    padding: 3.2rem;
    min-height: 10rem;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
ul.central-big li.-blue {
    background: linear-gradient(
        135deg,
        var(--blue5B),
        var(--blue2A)
    );
    border: unset;
}
ul.central-big li.-blue p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--font-col-600);
    line-height: 1.625;
    text-align: center;
}


/* ETSY management */
#etsy-management h2,
#etsy-pro h2 {
    font-size: 6rem;
}
#etsy-management ul li,
#etsy-pro ul li {
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto;
    grid-row: auto;
    gap: 1.2rem;
    & svg {
        color: var(--yellow);
    }
}

/* ETSY pro */
#etsy-story {
    background-color: #000;
}


/* Blue slide */
.-blue-slide {
    padding-block: 8rem;
    background: linear-gradient(
        135deg,
        var(--blue5B),
        var(--blue3D),
        var(--blue2A)
    );

    & .-main-box {
        max-width: 90rem;
    }
}
.-blue-slide h2 {
    font-size: 6rem;
    margin-bottom: 2.4rem;
}
.-blue-slide .text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.625;
    color: var(--font-col-600);
    text-align: center;
}

/* UNIQUE TOUCH */
#etsy-uniquetouch {
    background-color: #000;
}
#etsy-uniquetouch h2 {
    font-size: 6rem;
}

/* Specialized */
#etsy-specialized h2 {
    font-size: 6rem;
}
#etsy-specialized ul.list {
    counter-reset: index;
}
#etsy-specialized ul.list li > span {
    counter-increment: index;

    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
    grid-row: auto;
    gap: 1.6rem;
}
#etsy-specialized ul.list li > span::before {
    content: "0"counter(index);

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--yellow);
    border-radius: 50%;

    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}

/* CTA */

#cta {
    padding-block: 8rem;
    background: linear-gradient(
        135deg,
        var(--blue5B),
        var(--blue3D),
        var(--blue2A)
    );
}
#cta .-main-box {
    display: grid;
    justify-items: center;
    gap: 4rem;
}
#cta h2 {
    font-size: 6rem;
}
#cta p {
    max-width: 68ch;

    font-size: 2rem;
    line-height: 1.625;
    color: var(--font-col-600);
    text-align: center;
}
#cta p.card {
    padding: 3.2rem;

    font-size: 2.4rem;
    font-weight: 700;

    background-color: #ffffff1a;
    border: 1px solid #ffffff4d;
    border-radius: 1.6rem;
}
#cta .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.6rem;

    & > * {
        border-radius: 3rem;
    }
}