:root
{

    --color-white: #FFFFFF;
    --color-black: #050505;
    --color-light-pink: #FDD3CC;
    --color-neon-purple: #832EFC;
    --color-neon-green: #24DDA1;
    --color-neon-yellow: #EDED05;

    --max-width: 68rem;
    --padding-x: 4rem;
    --padding-y: 6rem;

}

/*  attributes for all  */
html, body, header, main, footer, section, h1, h2, h3, h4, h5, h6, p, div, img, a, address, b, i, u, sup, div, span, ul, li
{
    margin: 0;
    padding: 0;
    border: 0;
}

/*  tags  */
html
{
    height: 100%;
}

body
{
    font-family: 'Inter', sans-serif;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

img
{
    max-width: 100%;
}

header
{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 4rem;
    z-index: 100;
}
header #logo
{
    text-decoration: none;
    height: 100%;
    margin: 2rem;
}
header #logo img
{
    width: auto;
    height: 100%;
}

main
{
}

section
{
    position: relative;
    display: block;
    overflow: clip;
    padding: var(--padding-y) var(--padding-x);
}
main > section:first-child
{
    /*min-height: 100svh;*/
}
section.center
{
    text-align: center;
}
section.stripe
{
    background: var(--color-neon-yellow);
    color: var(--color-black);
    padding: .5em var(--padding-x);
    text-align: center;
    font-size: 1.5rem;
}
section > .background-image
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section:first-child
{
    /*min-height: calc(100svh - 11rem);*/
}

footer
{
    position: relative;
    display: grid;
}
footer:after
{
    content: '';
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    width: min(100%, calc((100% / 2 + var(--max-width) / 2)));
    height: 100%;
    background: url(../img/rrr-purple.svg) no-repeat bottom right;
    background-size: contain;
    aspect-ratio: 1223 / 472;
    z-index: -1;
    user-select: none;
}
footer .rse-banner
{
    display: block;
}
footer .rse-banner img
{
    display: block;
}

#footer-top
{
    display: block;
    padding: var(--padding-y) var(--padding-x);
}

#footer-bottom
{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 2rem;
    margin-top: calc(var(--padding-y) * 2);
    font-size: 1.25rem;
}
#footer-bottom menu
{
    flex: 1 1;
    display: flex;
    flex-flow: row wrap;
    gap: 1rem 2rem;
    padding: 0 2rem;
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    list-style-type: none;
}
#footer-bottom .rse-banner
{

}

.keyvisual
{
    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    grid-template-columns: 2fr 3fr 2rem;
    grid-template-rows: 1fr auto;
    padding-top: var(--padding-y);
}
.keyvisual.rrr-purple:after
{
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/rrr-purple-animated.svg) no-repeat bottom center;
    background-size: contain;
    aspect-ratio: 1223 / 472;
    z-index: -1;
}
.keyvisual.rrr-purple .image
{
    grid-column: 2 / 2;
    grid-row: 1 / 1;
    align-self: flex-end;
}
.keyvisual.rrr-purple .pill
{
    grid-column: 2 / 2;
    grid-row: 2 / 2;
}

section:has(> .wrapper > .keyvisual.rrr-yellow)
{
    padding-bottom: 0;
}

.keyvisual.rrr-yellow:after
{
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/rrr-yellow-animated.svg) no-repeat bottom center;
    background-size: contain;
    aspect-ratio: 1223 / 472;
    z-index: -1;
}

.pill
{
    --pill-background: var(--color-neon-green);
    --pill-color: var(--color-black);
    display: inline-block;
    padding: 1em 1.5em;
    border-radius: 999em;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: var(--pill-background);
    color: var(--pill-color);
    cursor: default;
}

.application-ad
{
    position: absolute;
    display: inline-flex;
    isolation: isolate;
    flex-flow: column nowrap;
    right: max(2rem, 5vw);
    top: max(5rem, 15vh);
    text-align: center;
    z-index: 1;
    cursor: default;
    font-size: 1.5rem;
}
.application-ad .head
{
    display: flex;
    margin: 0 auto;
    border-radius: 50%;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    padding: .75em;
    background: var(--color-white);
    color: var(--color-neon-purple);
    font-size: inherit;
    text-transform: uppercase;
    font-weight: bold;
    animation: var(--animation-pulsate);
    z-index: 0;
}
.application-ad .pill
{
    margin-top: -1em;
    padding: .5em 1em;
    --pill-background: var(--color-black);
    --pill-color: var(--color-neon-green);
    font-size: inherit;
    text-transform: none;
    z-index: 1;
}

.wrapper
{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width);
    box-sizing: border-box;
    container-name: wrapper;
    container-type: inline-size;
}

.columns
{
    display: grid;
    gap: var(--padding-y) var(--padding-x);
}
.columns.columns-one-one { grid-template-columns: 1fr 1fr; }
@container wrapper (max-width: 48rem)
{
    .columns.columns-one-one { grid-template-columns: 1fr; }
}


a
{
    color: inherit;
    text-decoration: rgba(255, 255, 255, .5) underline 2px;
    transition: color .3s var(--ease), text-decoration .3s var(--ease);
}
a:hover
{
    text-decoration: var(--color-neon-yellow) underline 2px;
}

h1
{
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 7rem;
    line-height: 1;
    text-transform: uppercase;
    word-break: break-word;
    hyphens: auto;
    color: var(--color-neon-yellow);
    -webkit-text-stroke: 2px var(--color-neon-yellow);
    text-stroke: 2px var(--color-neon-yellow);
    -webkit-text-fill-color: var(--color-black);
    text-fill-color: var(--color-black);
    margin-bottom: 2rem;
}
h1 > i
{
    white-space: nowrap;
    word-break: manual;
    -webkit-text-fill-color: var(--color-neon-yellow);
    text-fill-color: var(--color-neon-yellow);
}

h2
{
    font-size: 2rem;
    margin-bottom: 1rem;
    word-break: break-word;
    hyphens: auto;
}
h2:not(:first-child)
{
    margin-top: 3rem;
}

h3
{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
h3:not(:first-child)
{
    margin-top: 1.5rem;
}

.logo
{
    max-width: 32rem;
    margin: 0 auto;
}

p
{
    font-size: 1.25rem;
}
p:not(:last-child)
{
    margin-bottom: 1em;
}
p.medium
{
    font-size: 1.75rem;
    font-weight: bold;
}
p.medium:not(:first-child)
{
    margin-top: 3rem;
}

ul.arrows
{
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    font-size: 1.25rem;
}
ul.arrows:not(:last-child)
{
    margin-bottom: 1rem;
}
ul.arrows li
{
    position: relative;
    list-style-type: none;
    padding-left: 3rem;
}
ul.arrows li:before
{
    content: '';
    position: absolute;
    left: 0;
    top: -.25rem;
    display: block;
    width: 2rem;
    height: 2rem;
    background: url(../img/arrow.svg) no-repeat left center;
    background-size: 100%;
}