/* ================================================== */
/* IMPORTS */
/* ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

/* ================================================== */
/* KEYFRAMES */
/* ================================================== */

@keyframes animatedArrowAnimation {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-48px) }
}

.animated-arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    right: 50%;
    animation: animatedArrowAnimation 2s cubic-bezier(0.7,0.1,0.5,0.9) infinite;
}

/* ================================================== */
/* BASIC */
/* ================================================== */

:root {
    --color-bg-main: #F8F8F8;
    --color-bg-card: #FFFFFF;

    --color-text-main: #141414;
    --color-text-alt: #636363;
    
    --color-accent-main: #4C8EFF;
    --color-accent-alt: #7C8EFF;

    --color-border: #E5CDCD;
    --color-bg-transparent: #14141485;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    letter-spacing: 1px;
}

*::selection {
    background-color: var(--color-accent-main);
    color: var(--color-text-main);
}

/* ================================================== */
/* CONTAINERS */
/* ================================================== */

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    min-height: 100vh;
}

html { scroll-behavior: smooth; }

.section {
    max-width: 1696px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 568px) {
    .section { padding: 20px !important; }
}

/* ================================================== */
/* DISPLAY */
/* ================================================== */

.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }

/* ================================================== */
/* FLEX */
/* ================================================== */

.row {
    display: flex;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
}

.res-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.v-center { align-items: center; }
.v-en { align-items: end; }
.v-st { align-items: start; }
.h-center { justify-content: center; }
.h-en { justify-content: end; }
.h-se { justify-content: space-evenly; }
.h-sb { justify-content: space-between; }
.center { display: flex; align-items: center; justify-content: center; }

/* ================================================== */
/* GRID */
/* ================================================== */

.cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }

/* ================================================== */
/* GAP */
/* ================================================== */

.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-48 { gap: 48px; }
.gap-64 { gap: 64px; }
.gap-96 { gap: 96px; }

/* ================================================== */
/* SPACING */
/* ================================================== */

.m-4 { margin: 4px; }
.m-8 { margin: 8px; }
.m-12 { margin: 12px; }
.m-16 { margin: 16px; }
.m-20 { margin: 20px; }
.m-24 { margin: 24px; }
.m-32 { margin: 32px; }
.m-auto { margin: auto; }
.mx-auto { margin: 0 auto;}

.mv-4 { margin-top: 4px 0; }
.mv-8 { margin-top: 8px 0; }
.mv-12 { margin-top: 12px 0; }
.mv-16 { margin-top: 16px 0; }
.mv-20 { margin-top: 20px 0; }
.mv-24 { margin-top: 24px 0; }
.mv-32 { margin-top: 32px 0; }

.mh-4 { margin-bottom: 0 4px; }
.mh-8 { margin-bottom: 0 8px; }
.mh-12 { margin-bottom: 0 12px; }
.mh-16 { margin-bottom: 0 16px; }
.mh-20 { margin-bottom: 0 20px; }
.mh-24 { margin-bottom: 0 24px; }
.mh-32 { margin-bottom: 0 32px; }

.p-4 { padding: 4px; }
.p-8 { padding: 8px; }
.p-12 { padding: 12px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }
.p-48 { padding: 48px; }
.p-96 { padding: 96px; }

.ph-4 { padding-left: 4px; padding-right: 4px; }
.ph-8 { padding-left: 8px; padding-right: 8px; }
.ph-12 { padding-left: 12px; padding-right: 12px; }
.ph-16 { padding-left: 16px; padding-right: 16px; }
.ph-20 { padding-left: 20px; padding-right: 20px; }
.ph-24 { padding-left: 24px; padding-right: 24px; }
.ph-32 { padding-left: 32px; padding-right: 32px; }

.pv-4 { padding-top: 4px; padding-bottom: 4px; }
.pv-8 { padding-top: 8px; padding-bottom: 8px; }
.pv-12 { padding-top: 12px; padding-bottom: 12px; }
.pv-16 { padding-top: 16px; padding-bottom: 16px; }
.pv-20 { padding-top: 20px; padding-bottom: 20px; }
.pv-24 { padding-top: 24px; padding-bottom: 24px; }
.pv-32 { padding-top: 32px; padding-bottom: 32px; }

/* ================================================== */
/* SIZE */
/* ================================================== */

.w-auto { width: auto; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

/* ================================================== */
/* TYPOGRAPHY */
/* ================================================== */

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.fs-12 { font-size: 12px !important; }
.fs-16 { font-size: 16px !important; }
.fs-20 { font-size: 20px !important; }
.fs-24 { font-size: 24px !important; }
.fs-32 { font-size: 32px !important; }
.fs-36 { font-size: 36px !important; }
.fs-48 { font-size: min(48px, 15vw) !important; }
.fs-64 { font-size: min(64px, 20vw) !important; }
.fs-96 { font-size: min(96px, 22vw) !important; }
.fs-128 { font-size: min(128px, 25vw) !important; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.text-muted { color: var(--color-text-alt); }

.fn-inter { font-family: "Inter", sans-serif; }
.fn-ioc { font-family: "Iosevka Charon", sans-serif; }

.h1 {
    font-family: "Iosevka Charon", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 2px;
}

.h2 {
    font-family: "Iosevka Charon", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
}

.h2-lw {
    font-family: "Iosevka Charon", sans-serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 2px;
}

.h3 {
    font-family: "Iosevka Charon", sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
}

.text, .para {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
}

.mini {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
}

.title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight { color: var(--color-accent-alt); }

/* ================================================== */
/* BORDER */
/* ================================================== */

.border { border: 1px solid var(--color-border); }
.rounded-4 { border-radius: 4px; }
.rounded-8 { border-radius: 8px; }
.rounded-12 { border-radius: 12px; }
.rounded-16 { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

/* ================================================== */
/* EFFECTS */
/* ================================================== */

.shadow-sm { box-shadow: 0 2px 8px rgb(0 0 0 / 0.12); }
.shadow-md { box-shadow: 0 8px 24px rgb(0 0 0 / 0.16); }
.shadow-lg { box-shadow: 0 16px 40px rgb(0 0 0 / 0.2); }

/* ================================================== */
/* COLORS */
/* ================================================== */

.bg-main { background-color: var(--color-bg-main); }
.bg-card { background-color: var(--color-bg-card); }

/* ================================================== */
/* INPUTS */
/* ================================================== */

.input {
    background-color: var(--color-surface-alt);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    padding: 8px;
    border-radius: 8px;
    outline: none;
}

textarea.input {
    height: 148px;
    resize: vertical;
}

.btn {
    background-color: transparent;
    cursor: pointer;
    border: none;
    text-align: center;
    width: fit-content;
}

.ot {
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.fl {
    background-color: var(--color-accent-main);
    color: #F1F3F8 !important;
    transition: background-color 0.4s ease-in-out;
}
.fl:hover { background-color: var(--color-accent-alt); }

.icon-ot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.icon-fl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-accent-main);
    color: #F1F3F8 !important;
    transition: background-color 0.4s ease-in-out;
}
.icon-fl:hover { background-color: var(--color-accent-alt); }

/* ================================================== */
/* LINKS */
/* ================================================== */

.link {
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
}

.ulink {
    text-decoration: underline;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    text-underline-offset: 5px;
}

/* ================================================== */
/* IMAGES */
/* ================================================== */

.img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    vertical-align: bottom;
}

.symbol {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: bottom;
}

.fl-icon {font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;}

/* ================================================== */
/* OTHER ELEMENTS */
/* ================================================== */

.divider { border: 1px solid var(--color-border); }
.divider-l { border: 2px solid var(--color-border); }

.disabled {
    background-color: var(--color-border);
    color: var(--color-text-alt);
    cursor: not-allowed;
    opacity: 0.6;
}

.disabled-alt {
    color: var(--color-text-alt);
    cursor: not-allowed;
    opacity: 0.6;
}

.list { list-style-type: none; }
.no-list { list-style-position: inside; }