@import "https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;700;900&display=swap";

/* src/styles/colors.css */
:root {
  --cyan: oklch(0.859 0.097 223);
  --cyan-subtle: oklch(0.859 0.097 223 / 30%);
  --black: oklch(0 0 0);
  --success: oklch(0.906 0.153 162);
  --alert: oklch(0.718 0.248 320);
  --orange: oklch(0.812 0.128 57);
  --yellow: oklch(0.918 0.172 97);
  --purple: oklch(0.524 0.243 308);
  --gray: oklch(0.67 0.021 222);
  --color-primary: var(--cyan);
  --color-primary-hover: color-mix(in oklch, var(--cyan) 82%, oklch(0 0 0));
  --color-primary-light: var(--cyan-subtle);
  --color-primary-subtle: var(--cyan-subtle);
  --color-background: oklch(0.957 0.026 224);
  --color-surface: oklch(1 0 0);
  --color-surface-raised: oklch(0.979 0.009 220);
  --color-border: oklch(0.918 0.027 219);
  --color-border-strong: oklch(0.843 0.041 218);
  --color-text-primary: var(--black);
  --color-text-secondary: oklch(0 0 0 / 60%);
  --color-text-disabled: var(--gray);
  --color-text-inverse: oklch(1 0 0);
  --color-text-on-primary: var(--black);
  --color-success: var(--success);
  --color-warning: var(--orange);
  --color-error: var(--alert);
  --color-info: var(--cyan);
}

/* src/styles/spacing.css */
:root {
  --space-xs: 0.25rem;
  --space-sm: 0.4375rem;
  --space-md: 0.90625rem;
  --space-base: 1.8125rem;
  --space-lg: 3.625rem;
  --space-xl: 7.25rem;
  --space-2xl: 14.5rem;
}

/* src/styles/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset {
  border: none;
}

/* src/styles/typography.css */
:root {
  --font-sans:
    "Lexend",
    system-ui,
    sans-serif;
  --font-mono:
    ui-monospace,
    "Cascadia Code",
    "Fira Code",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-widest: 0.12em;
  --text-h1: 2rem;
  --text-h2: 1.5rem;
  --text-h3: 1.25rem;
  --text-body: 0.9375rem;
  --text-caption: 0.75rem;
  --text-label: 0.9375rem;
}
@media (min-width: 769px) {
  :root {
    --text-h1: 3.5rem;
    --text-h2: 2.25rem;
    --text-h3: 1.5rem;
    --text-body: 1rem;
    --text-caption: 0.75rem;
    --text-label: 0.9375rem;
  }
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
}
h1 {
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}
h3 {
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}
p {
  line-height: var(--leading-relaxed);
}
small,
.caption {
  font-size: var(--text-caption);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
}
code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
  font-size: 0.9em;
}
strong,
b {
  font-weight: var(--weight-bold);
}
em,
i {
  font-style: italic;
}

/* src/styles.scss */
h1 {
  margin: 20px 0px;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.black {
  font-weight: 900;
}
.underline {
  text-decoration: underline;
}
.lf-supertitle {
  font-size: 23px;
}
@media (min-width: 1900px) {
  .lf-supertitle {
    font-size: 60px;
  }
}
.lf-maintitle {
  font-size: 17px;
}
@media (min-width: 1900px) {
  .lf-maintitle {
    font-size: 53px;
  }
}
.lf-subtitle {
  font-size: 20px;
}
@media (min-width: 900px) {
  .lf-subtitle {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .lf-subtitle {
    font-size: 36px;
  }
}
@media (min-width: 1900px) {
  .lf-subtitle {
    font-size: 45px;
  }
}
.lf-second-subtitle {
  font-size: 18px;
}
@media (min-width: 900px) {
  .lf-second-subtitle {
    font-size: 25px;
  }
}
@media (min-width: 1400px) {
  .lf-second-subtitle {
    font-size: 30px;
  }
}
@media (min-width: 1900px) {
  .lf-second-subtitle {
    font-size: 40px;
  }
}
.lf-p-1 {
  font-size: 18px;
}
@media (min-width: 900px) {
  .lf-p-1 {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .lf-p-1 {
    font-size: 30px;
  }
}
@media (min-width: 1900px) {
  .lf-p-1 {
    font-size: 35px;
  }
}
.lf-p-1-2 {
  font-size: 15px;
}
@media (min-width: 900px) {
  .lf-p-1-2 {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .lf-p-1-2 {
    font-size: 25px;
  }
}
@media (min-width: 1900px) {
  .lf-p-1-2 {
    font-size: 30px;
  }
}
.lf-p-2 {
  font-size: 13px;
}
@media (min-width: 900px) {
  .lf-p-2 {
    font-size: 17px;
  }
}
@media (min-width: 1400px) {
  .lf-p-2 {
    font-size: 21px;
  }
}
@media (min-width: 1900px) {
  .lf-p-2 {
    font-size: 25px;
  }
}
.lf-p-3 {
  font-size: 13px;
}
@media (min-width: 900px) {
  .lf-p-3 {
    font-size: 16px;
  }
}
@media (min-width: 1900px) {
  .lf-p-3 {
    font-size: 20px;
  }
}
.lf-p-4 {
  font-size: 12px;
}
@media (min-width: 900px) {
  .lf-p-4 {
    font-size: 16px;
  }
}
@media (min-width: 1900px) {
  .lf-p-4 {
    font-size: 18px;
  }
}
.lf-p-5 {
  font-size: 11px;
}
@media (min-width: 900px) {
  .lf-p-5 {
    font-size: 13px;
  }
}
@media (min-width: 1900px) {
  .lf-p-5 {
    font-size: 15px;
  }
}
.lf-p-6 {
  font-size: 11px;
}
@media (min-width: 900px) {
  .lf-p-6 {
    font-size: 13px;
  }
}
@media (min-width: 1900px) {
  .lf-p-6 {
    font-size: 13px;
  }
}
.lf-e-1 {
  font-size: 13px;
}
@media (min-width: 900px) {
  .lf-e-1 {
    font-size: 18px;
  }
}
@media (min-width: 700px) {
  .lf-e-1 {
    font-size: 25px;
  }
}
@media (min-width: 1400px) {
  .lf-e-1 {
    font-size: 30px;
  }
}
@media (min-width: 1900px) {
  .lf-e-1 {
    font-size: 35px;
  }
}
.lf-e-2 {
  font-size: 18px;
}
@media (min-width: 900px) {
  .lf-e-2 {
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .lf-e-2 {
    font-size: 26px;
  }
}
@media (min-width: 1900px) {
  .lf-e-2 {
    font-size: 30px;
  }
}
.lf-e-3 {
  font-size: 15px;
}
@media (min-width: 900px) {
  .lf-e-3 {
    font-size: 20px;
  }
}
@media (min-width: 1900px) {
  .lf-e-3 {
    font-size: 25px;
  }
}
.lf-e-4 {
  font-size: 11px;
}
@media (min-width: 900px) {
  .lf-e-4 {
    font-size: 15px;
  }
}
@media (min-width: 1900px) {
  .lf-e-4 {
    font-size: 20px;
  }
}
.lf-e-5 {
  font-size: 15px;
}
@media (min-width: 900px) {
  .lf-e-5 {
    font-size: 18px;
  }
}
@media (min-width: 1900px) {
  .lf-e-5 {
    font-size: 20px;
  }
}
.lf-e-6 {
  font-size: 18px;
}
@media (min-width: 1900px) {
  .lf-e-6 {
    font-size: 18px;
  }
}
.lf-e-7 {
  font-size: 13px;
}
@media (min-width: 1900px) {
  .lf-e-7 {
    font-size: 15px;
  }
}
.lf-btn {
  font-size: 15px;
}
.text-blue {
  color: #85DFFF;
}
.hide {
  display: none !important;
}
.pink-strikethrough {
  text-decoration: line-through;
  text-decoration-color: #FF69FF;
  text-decoration-thickness: 3px;
}
.glass-1 {
  background-color: rgba(255, 255, 255, 0.26);
  border: solid #FFFFFF 4px;
}
@media (max-width: 425px) {
  .glass-1 {
    border: solid #FFFFFF 2px;
  }
}
.glass-1 {
  opacity: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.glass-1.no-blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.glass-2 {
  background-color: rgba(255, 255, 255, 0.64);
  border: solid #FFFFFF 2px;
  opacity: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.glass-2.no-blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.btn-1 {
  text-decoration: none;
  color: black;
  background-color: #85dfff;
  padding: 0px;
  height: 52px;
  font-family: "Lexend";
  font-weight: 600;
  border: none;
  border-radius: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0px;
  cursor: pointer;
  letter-spacing: 0.1em;
}
@media (min-width: 400px) {
  .btn-1 {
    width: fit-content;
  }
}
.btn-1.disable {
  opacity: 30%;
}
@media (min-width: 900px) {
  .btn-1:hover {
    background-color: #c3efff;
    color: #575757;
    color: #fff;
    background-color: #000;
  }
}
.btn-2 {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0px 30px 0px 30px;
  height: 52px;
  font-family: "Lexend";
  font-weight: 600;
  border: 3px solid #000;
  border-radius: 30px;
  margin: 5px 0px;
  cursor: pointer;
  white-space: nowrap;
  width: fit-content;
  letter-spacing: 0.1em;
}
@media (min-width: 900px) {
  .btn-2:hover {
    color: #fff;
    background-color: #000;
  }
}
.btn-3 {
  color: black;
  text-decoration: none;
  background-color: #85dfff;
  padding: 0px 60px 0px 60px;
  height: 52px;
  font-family: "Lexend";
  font-weight: 600;
  border: none;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.btn-3.disable {
  opacity: 30%;
}
@media (min-width: 900px) {
  .btn-3:hover {
    color: #fff;
    background-color: #000;
  }
}
.btn-4 {
  color: black;
  text-decoration: none;
  padding: 0px 60px 0px 60px !important;
  opacity: 1;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  height: 89px;
  font-family: "Lexend";
  font-weight: 700;
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.26);
}
@media (max-width: 425px) {
  .btn-4 {
    border: solid rgba(255, 255, 255, 0.4) 2px;
    padding: 0px 30px 0px 30px !important;
  }
}
@media (min-width: 900px) {
  .btn-4:hover {
    color: black;
    border: 4px solid rgba(133, 223, 255, 0.5019607843);
  }
  .btn-4:hover img {
    filter: none !important;
  }
}
.btn-5 {
  text-decoration: none;
  color: white !important;
  background-color: black;
  padding: 0px 30px 0px 30px;
  height: 52px;
  font-family: "Lexend";
  font-weight: 600;
  border: none;
  border-radius: 30px;
  width: fit-content;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 5px 0px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.btn-5.disable {
  opacity: 30%;
}
@media (min-width: 900px) {
  .btn-5:hover {
    background-color: #85dfff;
    color: black !important;
  }
}
@media (max-width: 650px) {
  .btn-1 {
    height: 42px;
    font-size: 1em;
  }
  .btn-1.disable {
    opacity: 30%;
  }
  .btn-2 {
    height: 42px;
    font-size: 1em;
  }
  .btn-3 {
    background-color: #85dfff;
    padding: 0px 20% 0px 20%;
    height: 42px;
    font-weight: 600;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-3.disable {
    opacity: 30%;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.link-1 {
  font-family: "Lexend";
  font-weight: 600;
  font-size: 0.9375em;
  text-decoration: underline;
}
.link-1.lowercase {
  text-transform: lowercase;
}
.link-2 {
  font-family: "Lexend";
  font-weight: 600;
  font-size: 1.125em;
  text-decoration: underline;
}
@media (max-width: 425px) {
  .link-1 {
    font-family: "Lexend";
    font-weight: 600;
    font-size: 0.9375em;
    text-decoration: underline;
  }
  .link-1.lowercase {
    text-transform: lowercase;
  }
  .link-2 {
    font-family: "Lexend";
    font-weight: 600;
    font-size: 0.75em;
    text-decoration: underline;
  }
}
.glass-1 {
  background-color: rgba(255, 255, 255, 0.26);
  border: solid #FFFFFF 4px;
}
@media (max-width: 425px) {
  .glass-1 {
    border: solid #FFFFFF 2px;
  }
}
.glass-1 {
  opacity: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.glass-1.no-blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.glass-2 {
  background-color: rgba(255, 255, 255, 0.64);
  border: solid #FFFFFF 2px;
  opacity: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.glass-2.no-blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.box {
  border: solid #000000 4px;
  padding: 5px;
  width: fit-content;
}
.underlined {
  background: none;
  outline: none;
  border: none;
  width: fit-content;
}
.underlined::after {
  content: "";
  height: 8px;
  width: 100%;
  background-color: #85dfff;
  display: block;
  padding: 0px 5px;
  margin-top: -8px;
  margin-left: -5px;
}
.white-underlined {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.white-underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 8px;
  background-color: white;
  z-index: -1;
}
.underlined_2 {
  background: none;
  outline: none;
  border: none;
  width: fit-content;
}
.underlined_2::after {
  content: "";
  height: 15px;
  width: 100%;
  background-color: #85dfff;
  display: block;
  padding: 0px 5px;
  margin-top: -15px;
  margin-left: -5px;
}
.underlined_2.to_white::after {
  background-color: rgb(255, 255, 255);
}
@media (max-width: 425px) {
  .underlined {
    background: none;
    outline: none;
    border: none;
    width: fit-content;
  }
  .underlined::after {
    content: "";
    height: 7px;
    width: 100%;
    background-color: #85dfff;
    display: block;
    padding: 0px 5px;
    margin-top: -8px;
    margin-left: -5px;
  }
  .underlined_2 {
    background: none;
    outline: none;
    border: none;
    width: fit-content;
  }
  .underlined_2::after {
    content: "";
    height: 10px;
    width: 100%;
    background-color: #85dfff;
    display: block;
    padding: 0px 5px;
    margin-top: -15px;
    margin-left: -5px;
  }
  .underlined_2.to_white::after {
    background-color: rgb(255, 255, 255);
  }
}

/* angular:styles/global:styles */
