@charset "UTF-8";
/* Modern CSS Reset – 2026 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

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

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

/* Typography improvements */
p,
li {
  text-wrap: pretty;
}

h1, h2, h3 {
  text-wrap: balance;
}

/* Reduced motion – non-invasive */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  --main-color: oklch(66% 0.2 51deg);
  --accent-color: oklch(45% 0.32 182.8deg);
  --light-color: oklch(98% 0 78deg);
  --dark-color: oklch(32% 0 271deg);
  --main-color-100: color-mix(in oklch, var(--main-color) 75%, var(--light-color));
  --main-color-200: color-mix(in oklch, var(--main-color) 80%, var(--light-color));
  --main-color-300: color-mix(in oklch, var(--main-color) 95%, var(--light-color));
  --main-color-400: color-mix(in oklch, var(--main-color) 90%, var(--light-color));
  --main-color-500: var(--main-color);
  --main-color-600: color-mix(in oklch, var(--main-color) 90%, var(--dark-color));
  --main-color-700: color-mix(in oklch, var(--main-color) 90%, var(--dark-color));
  --main-color-800: color-mix(in oklch, var(--main-color) 90%, var(--dark-color));
  --main-color-900: color-mix(in oklch, var(--main-color) 80%, var(--dark-color));
  --accent-color-100: color-mix(in oklch, var(--accent-color) 75%, var(--light-color));
  --accent-color-200: color-mix(in oklch, var(--accent-color) 80%, var(--light-color));
  --accent-color-300: color-mix(in oklch, var(--accent-color) 95%, var(--light-color));
  --accent-color-400: color-mix(in oklch, var(--accent-color) 90%, var(--light-color));
  --accent-color-500: var(--accent-color);
  --accent-color-600: color-mix(in oklch, var(--accent-color) 90%, var(--dark-color));
  --accent-color-700: color-mix(in oklch, var(--accent-color) 90%, var(--dark-color));
  --accent-color-800: color-mix(in oklch, var(--accent-color) 90%, var(--dark-color));
  --accent-color-900: color-mix(in oklch, var(--accent-color) 80%, var(--dark-color));
  --light-color-100: color-mix(in oklch, var(--light-color) 75%, var(--light-color));
  --light-color-200: color-mix(in oklch, var(--light-color) 80%, var(--light-color));
  --light-color-300: color-mix(in oklch, var(--light-color) 95%, var(--light-color));
  --light-color-400: color-mix(in oklch, var(--light-color) 90%, var(--light-color));
  --light-color-500: var(--light-color);
  --light-color-600: color-mix(in oklch, var(--light-color) 90%, var(--dark-color));
  --light-color-700: color-mix(in oklch, var(--light-color) 90%, var(--dark-color));
  --light-color-800: color-mix(in oklch, var(--light-color) 90%, var(--dark-color));
  --light-color-900: color-mix(in oklch, var(--light-color) 80%, var(--dark-color));
  --dark-color-100: color-mix(in oklch, var(--dark-color) 75%, var(--light-color));
  --dark-color-200: color-mix(in oklch, var(--dark-color) 80%, var(--light-color));
  --dark-color-300: color-mix(in oklch, var(--dark-color) 95%, var(--light-color));
  --dark-color-400: color-mix(in oklch, var(--dark-color) 90%, var(--light-color));
  --dark-color-500: var(--dark-color);
  --dark-color-600: color-mix(in oklch, var(--dark-color) 90%, var(--dark-color));
  --dark-color-700: color-mix(in oklch, var(--dark-color) 90%, var(--dark-color));
  --dark-color-800: color-mix(in oklch, var(--dark-color) 90%, var(--dark-color));
  --dark-color-900: color-mix(in oklch, var(--dark-color) 80%, var(--dark-color));
  --main-color-soft: oklch(
    from var(--main-color) calc(l + 0.004) calc(c - 0.035) h
  );
  --accent-color-soft: oklch(
    from var(--accent-color) calc(l + 0.004) calc(c - 0.035) h
  );
  --fw-bold: 800;
  --fs-200: 1.1rem;
  --fs-300: 1.15rem;
  --fs-400: 1.2rem;
  --fs-500: 1.3rem;
  --fs-default: var(--fs-400);
  --fs-normal: 1.125rem;
  --fs-large: 1.2rem;
  --fs-larger: 1.4rem;
  --h1: 2rem;
  --h2: 1.5rem;
  --ffamily-roboto:
    "Roboto", -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
    "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  --ffamily-dynapuff: "DynaPuff", -apple-system, blinkmacsystemfont, "Segoe UI";
  --ffamily-e-candy:
    "Emilys Candy", -apple-system, blinkmacsystemfont, "Segoe UI";
  --ffamily-header: var(--ffamily-dynapuff);
  --ffamily-nav: var(--ffamily-e-candy);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html[data-theme=dark] {
  --surface-color: var(--dark-color);
}

html[data-theme=light] {
  --surface-color: var(--light-color);
}

html[data-theme=light] {
  --surface-l2: oklch(from var(--surface-color) calc(l - 0.08) c h);
  --surface-l3: oklch(from var(--surface-color) calc(l - 0.14) c h);
  --surface-l4: oklch(from var(--surface-color) calc(l - 0.22) c h);
}
html[data-theme=dark] {
  --surface-l2: oklch(from var(--surface-color) calc(l + 0.08) c h);
  --surface-l3: oklch(from var(--surface-color) calc(l + 0.14) c h);
  --surface-l4: oklch(from var(--surface-color) calc(l + 0.22) c h);
}
html {
  color-scheme: light dark;
}

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

html[data-theme=dark] {
  background-color: var(--dark-color);
}

html[data-theme=light] {
  background-color: var(--light-color);
}

html[data-theme=dark] {
  color: var(--light-color);
}

html[data-theme=light] {
  color: var(--dark-color);
}

body {
  font-size: var(--fs-normal);
  display: grid;
  grid-template: 1fr auto 1fr/1fr;
  grid-template-areas: "header" "primary-container" "footer";
  height: 100vh;
}
body a,
body a:link {
  text-decoration: none;
}
@media (width <= 48em) {
  body {
    grid-template-areas: "primary-container" "header";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.screenshot {
  margin: 0 1.5rem;
}
.screenshot img {
  width: 100%;
  height: auto;
}
@media (width <= 48em) {
  .screenshot img {
    width: 50%;
  }
}

html[data-theme=dark] header,
html[data-theme=dark] footer {
  background-color: var(--main-color-600);
}
html[data-theme=light] header,
html[data-theme=light] footer {
  background-color: var(--main-color-500);
}
html[data-theme=dark] header,
html[data-theme=dark] footer {
  color: var(--light-color-400);
}
html[data-theme=light] header,
html[data-theme=light] footer {
  color: var(--light-color-500);
}
html[data-theme=dark] header a,
html[data-theme=dark] footer a {
  color: var(--light-color);
}
html[data-theme=light] header a,
html[data-theme=light] footer a {
  color: var(--light-color);
}
header a,
footer a {
  padding: 0.5rem;
}
header a:hover,
footer a:hover {
  border-radius: 0.75rem;
}
html[data-theme=dark] header a:hover,
html[data-theme=dark] footer a:hover {
  background-color: var(--main-color-soft);
}
html[data-theme=light] header a:hover,
html[data-theme=light] footer a:hover {
  background-color: var(--main-color-600);
}
html[data-theme=light] header a:hover,
html[data-theme=light] footer a:hover {
  outline: 1px solid var(--light-color-500);
}
html[data-theme=dark] header a:hover,
html[data-theme=dark] footer a:hover {
  outline: 1px solid var(--light-color-500);
}

header {
  grid-area: header;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: normal;
  gap: 3rem;
  font-family: var(--ffamily-nav);
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
}
header {
  font-weight: var(--fw-bold);
}

#theme-toggle {
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--light-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (width <= 48em) {
  #theme-toggle {
    scale: 1.45;
  }
}
#theme-toggle svg {
  fill: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

/* main section of site */
.primary-container {
  grid-area: primary-container;
}
html[data-theme=light] .primary-container a,
html[data-theme=light] .primary-container a:link {
  background-color: inherit;
  color: var(--accent-color);
}
html[data-theme=light] .primary-container a:focus, html[data-theme=light] .primary-container a:hover,
html[data-theme=light] .primary-container a:link:focus,
html[data-theme=light] .primary-container a:link:hover {
  background-color: inherit;
  color: var(--main-color);
  outline: none;
}
html[data-theme=dark] .primary-container a,
html[data-theme=dark] .primary-container a:link {
  background-color: inherit;
  color: var(--light-color-l2);
}
html[data-theme=dark] .primary-container a:focus, html[data-theme=dark] .primary-container a:hover,
html[data-theme=dark] .primary-container a:link:focus,
html[data-theme=dark] .primary-container a:link:hover {
  background-color: inherit;
  color: var(--main-color-l2);
  outline: none;
}
.primary-container > *:nth-child(1) {
  margin: 2rem;
  display: grid;
  grid-template-areas: "aside main";
  grid-template-columns: 16% 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (width <= 64em) {
  .primary-container > *:nth-child(1) {
    grid-template-columns: 25% 1fr;
  }
}
@media (width <= 48em) {
  .primary-container > *:nth-child(1) {
    gap: 2rem;
    grid-template-areas: "main" "aside";
    grid-template-columns: unset;
    margin-bottom: 7rem;
  }
}
.primary-container > *:nth-child(1) > aside {
  grid-area: aside;
  margin: unset;
}
html[data-theme=light] .primary-container > *:nth-child(1) > aside .aside-section {
  box-shadow: 0 0 0.4rem var(--main-color);
}
html[data-theme=dark] .primary-container > *:nth-child(1) > aside .aside-section {
  box-shadow: 0 0 0.4rem var(--light-color);
}
.primary-container > *:nth-child(1) > aside input {
  display: none;
}
.primary-container > *:nth-child(1) > aside label {
  background-color: var(--accent-color-500);
  color: var(--light-color);
  font-weight: 800;
  display: block;
  margin: unset;
  padding: 1rem;
}
.primary-container > *:nth-child(1) > aside label:hover {
  cursor: crosshair;
}
.primary-container > *:nth-child(1) > aside .accordion {
  background-color: var(--surface-l2);
  margin-bottom: 1rem;
  padding: 1.25rem;
}
.primary-container > *:nth-child(1) > aside .accordion .accordion-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: normal;
}
.primary-container > *:nth-child(1) > aside .accordion .accordion-content a {
  margin-top: 0.5rem;
}
.primary-container > *:nth-child(1) > main {
  grid-area: main;
}

.desktop_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
}
.desktop_container .desktop-card {
  background-color: var(--surface-l2);
}
html[data-theme=light] .desktop_container .desktop-card {
  outline: var(--main-color) 1px solid;
  box-shadow: 0 0.15rem 0.6rem var(--main-color);
}
html[data-theme=dark] .desktop_container .desktop-card {
  outline: var(--light-color) 1px solid;
  box-shadow: 0 0.15rem 0.6rem var(--light-color);
}

.mobile_menu_related {
  display: none;
}
@media (width <= 48em) {
  html[data-theme=light] .mobile_menu_related a,
  html[data-theme=light] .mobile_menu_related a:link {
    background-color: inherit;
    color: var(--accent-color);
  }
  html[data-theme=light] .mobile_menu_related a:focus, html[data-theme=light] .mobile_menu_related a:hover,
  html[data-theme=light] .mobile_menu_related a:link:focus,
  html[data-theme=light] .mobile_menu_related a:link:hover {
    background-color: inherit;
    color: var(--main-color);
    outline: none;
  }
  html[data-theme=dark] .mobile_menu_related a,
  html[data-theme=dark] .mobile_menu_related a:link {
    background-color: inherit;
    color: var(--light-color-l2);
  }
  html[data-theme=dark] .mobile_menu_related a:focus, html[data-theme=dark] .mobile_menu_related a:hover,
  html[data-theme=dark] .mobile_menu_related a:link:focus,
  html[data-theme=dark] .mobile_menu_related a:link:hover {
    background-color: inherit;
    color: var(--main-color-l2);
    outline: none;
  }
  .mobile_menu_related {
    display: block;
    margin: 1rem auto;
    scroll-behavior: smooth;
  }
}
