*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 5s;
    border-radius: 12px;
}

canvas.active {
    opacity: 0;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --border: 1px solid var(--c-light-10);
    --c-accent: #50E667;
    --c-dark: #0A0A0A;
    --c-light: #DDDCD7;
    --c-light-80: rgba(221, 220, 215, 0.8);
    --c-light-60: rgba(221, 220, 215, 0.6);
    --c-light-40: rgba(221, 220, 215, 0.4);
    --c-light-20: rgba(221, 220, 215, 0.2);
    --c-light-10: rgba(221, 220, 215, 0.1);
    --c-light-05: rgba(221, 220, 215, 0.05);
    --fs-base: 1.4rem;
    --s-gutter: 2.4rem;
    --s-48: 4.8rem;
    --t-cb-fast: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

@supports (font-size: clamp(1rem, 1vi, 1rem)) {
    :root {
        --fs-sm: clamp(1rem, 0.6vi + 0.76rem, 1.1rem);
    }
}

@supports not (font-size: clamp(1rem, 1vi, 1rem)) {
    :root {
        --fs-sm: 1rem;
    }
}

@media screen and (min-width: 568px) {
    :root {
        --fs-sm: 1.1rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-dark);
    min-height: 100dvh;
    -webkit-user-select: none;
    user-select: none;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    overflow: -moz-scrollbars-none;
}

body {
    -ms-overflow-style: none;
}

@font-face {
    font-family: Mono;
    font-style: normal;
    font-display: auto;
    src: url(/assets/mono.woff2) format("woff2-variations");
    unicode-range: U+000-5FF;
}

@font-face {
    font-family: Sans;
    font-style: normal;
    font-display: auto;
    src: url(/assets/sans.woff2) format("woff2-variations");
    unicode-range: U+000-5FF;
}

html {
    font-size: 62.5%;
}

body,
h1 {
    color: var(--c-light-60);
    font-family: Sans, Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: normal;
    -webkit-font-kerning: normal;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

.font-mono,
h2 {
    color: var(--c-light);
    font-family: Mono, ui-monospace, Source Code Pro, Menlo, Consolas, monospace;
    font-size: var(--fs-sm);
    font-weight: 425;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    color: var(--c-light);
}

h2 {
    margin-bottom: 3.125vh;
}

a {
    display: inline-block;
    color: var(--c-light-60);
    text-decoration: none;
    transition: var(--t-cb-fast);
}

a:hover {
    color: var(--c-light);
}

ul.divider-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(var(--s-gutter) / 2);
    list-style: none;
    padding: 0;
}

ul.divider-list li {
    border-top: var(--border);
    padding: 0.8rem 0;
}

ul.divider-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.divider-list a:hover img {
    opacity: 1;
}

ul.divider-list img {
    opacity: 0.6;
    transition: var(--t-cb-fast);
}

.flex-end {
    display: flex;
    justify-content: flex-end !important;
}

.c-grey-100 {
    color: var(--c-grey-100);
}

.c-grey-500 {
    color: var(--c-grey-500);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    height: 2.8rem;
    border: none;
    border-radius: 2rem;
    color: var(--c-light-60);
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--c-light-05);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.button img {
    opacity: 0.6;
}

.button:hover {
    color: var(--c-light);
    background-color: var(--c-light-10);
}

.button:hover img {
    opacity: 1;
}

.button:focus {
    outline: none;
}

@media only screen and (max-width: 400px) {
    .hide-sm {
        display: none !important;
    }
}

body {
    display: flex;
    flex-direction: column;
    gap: calc(16.66vh - var(--s-48));
    padding-bottom: 16.66vh;
}

.container {
    width: 100%;
    max-width: 56.8rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}

media screen and (min-width: 568px) {
    .row {
        padding: 2rem;
    }
}

.col {
    flex: 2 1 auto;
    padding: 0 var(--s-gutter);
}

.col-100 {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--s-gutter);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
    padding-bottom: var(--s-gutter);
}

.hero .button {
    margin-top: var(--s-gutter);
}

header {
    width: 100%;
}

header .container {
    padding-top: var(--s-gutter);
}

header .col:nth-of-type(2) {
    display: flex;
    justify-content: flex-end;
}

header img {
    border-radius: 1.5rem;
    width: 3.6rem;
    height: 3.6rem;
}

main {
    display: flex;
    flex-direction: column;
    gap: 16.66vh;
    padding-top: var(--s-gutter);
}

section {
    width: 100%;
}

.divider-item {
    border-top: var(--border);
    display: flex;
    flex-direction: row;
    gap: var(--s-gutter);
    padding: 0.8rem 0;
}

.divider-item div,
.divider-item a {
    flex: 2 1 50%;
}

.divider-item .divider-item-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.divider-item img {
    opacity: 0.6;
    transition: var(--t-cb-fast);
}

.divider-item:hover img {
    opacity: 1;
}
