* {
  box-sizing: border-box;
}

:root {
  --ios-blue: #007aff;
  --ios-blue-dark: #0051d5;
  --ios-text: #1d1d1f;
  --ios-secondary: #6e6e73;
  --ios-tertiary: #86868b;
  --ios-bg: #ffffff;
  --ios-grouped-bg: #f5f5f7;
  --ios-card: rgba(255, 255, 255, 0.82);
  --ios-border: rgba(60, 60, 67, 0.14);
  --ios-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body.dark-mode {
  --ios-blue: #0a84ff;
  --ios-blue-dark: #0066d6;
  --ios-text: #f5f5f7;
  --ios-secondary: rgba(235, 235, 245, 0.68);
  --ios-tertiary: rgba(235, 235, 245, 0.48);
  --ios-bg: #000000;
  --ios-grouped-bg: #1c1c1e;
  --ios-card: rgba(44, 44, 46, 0.78);
  --ios-border: rgba(235, 235, 245, 0.16);
  --ios-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);

  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  background: var(--ios-bg);
  color: var(--ios-text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: var(--ios-bg);
}

section {
  scroll-margin-top: 86px;
}

/* NAVBAR */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(60, 60, 67, 0.08);
}

.glass-nav {
  width: fit-content;
  margin: 0 auto;
  padding: 5px;

  display: flex;
  align-items: center;
  gap: 10px;

  border-radius: 999px;

  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  border: 1px solid var(--ios-border);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.glass-nav a {
  padding: 12px 20px;
  border-radius: 999px;

  color: var(--ios-secondary);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.glass-nav a:hover {
  color: var(--ios-blue);
  background: rgba(0, 122, 255, 0.11);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.88),
    0 6px 16px rgba(0, 122, 255, 0.1);

  transform: translateY(-1px);
}

.theme-toggle {
  position: absolute;
  right: 30px;

  padding: 5px 5px 5px 12px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--ios-border);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.82);
  color: var(--ios-secondary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 650;

  cursor: pointer;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  transition: 0.25s ease;
}

.theme-toggle:hover {
  color: var(--ios-blue);
  background: rgba(0, 122, 255, 0.11);
}

.theme-toggle-track {
  width: 52px;
  height: 30px;
  padding: 2px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;
  background: rgba(118, 118, 128, 0.18);
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, 0.1);

  transition: 0.25s ease;
}

.theme-toggle-thumb {
  width: 26px;
  height: 26px;

  display: block;

  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.92);

  transition: 0.25s ease;
}

body.dark-mode header {
  background: rgba(28, 28, 30, 0.78);
  border-bottom-color: rgba(235, 235, 245, 0.1);
}

body.dark-mode .glass-nav,
body.dark-mode .theme-toggle {
  background: rgba(44, 44, 46, 0.78);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

body.dark-mode .glass-nav a:hover,
body.dark-mode .theme-toggle:hover {
  background: rgba(10, 132, 255, 0.16);
}

body.dark-mode .theme-toggle-track {
  background: var(--ios-blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body.dark-mode .theme-toggle-thumb {
  transform: translateX(22px);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 360px;
  padding: 80px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f5f5f7);
}

body.dark-mode .hero {
  background: linear-gradient(180deg, #000000, #1c1c1e);
}

.hero::before {
  display: none;
}

.hero h1 {
  position: relative;

  margin: 0;

  color: var(--ios-text);
  font-size: clamp(45px, 8vw, 92px);
  line-height: 0.9;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;

  text-shadow: none;
}

.hero h1::before {
  display: none;
}

.hero p {
  position: relative;

  max-width: 560px;
  margin: 22px auto 0;

  color: var(--ios-secondary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

/* PROJECT SECTION */

.projects-section {
  position: relative;
  overflow: hidden;

  min-height: 650px;
  padding: 60px 0;

  background: var(--ios-grouped-bg);
  color: var(--ios-text);
}

.projects-section::before {
  display: none;
}

/* PROJECT HEADER */

.projects-header {
  position: relative;
  z-index: 2;

  width: min(1100px, 90%);
  margin: 0 auto 30px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.projects-header p,
.skills-header p,
.info-card > p:first-child {
  margin: 0 0 8px;

  color: var(--ios-blue);
  font-weight: 700;
}

.projects-header h2,
.skills-header h2 {
  margin: 0;

  color: var(--ios-text);
  font-size: clamp(45px, 8vw, 86px);
  line-height: 0.9;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

/* LIQUID GLASS SHOW ALL BUTTON */

.show-all {
  position: relative;
  overflow: hidden;

  margin-top: 20px;
  padding: 12px 20px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 999px;

  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  background: var(--ios-blue);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  border: 1px solid rgba(0, 122, 255, 0.28);

  box-shadow:
    0 12px 26px rgba(0, 122, 255, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);

  transition: 0.25s ease;
}

.show-all::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent 60%);

  opacity: 0.75;
  pointer-events: none;
}

.show-all span {
  position: relative;
  z-index: 1;
}

.show-all .arrow {
  color: white;
  font-size: 18px;
  line-height: 1;

  transition: 0.25s ease;
}

.show-all:hover {
  background: var(--ios-blue-dark);
  transform: translateY(-2px);

  box-shadow:
    0 16px 34px rgba(0, 122, 255, 0.26),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.show-all:hover .arrow {
  transform: translateX(4px);
}

/* CAROUSEL */

.carousel {
  position: relative;
  z-index: 2;

  width: min(1200px, 95%);
  height: 430px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: relative;

  width: 100%;
  height: 100%;
}

.project-card {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(430px, 75vw);
  min-height: 390px;
  padding: 18px;

  border-radius: 26px;

  background: var(--ios-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  border: 1px solid var(--ios-border);

  box-shadow:
    var(--ios-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);

  opacity: 0;
  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.75);
  transition: 0.7s ease;
}

.project-card.active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;

  transform: translate(-50%, -50%) scale(1);
}

.project-card.prev {
  opacity: 0.42;
  z-index: 2;

  filter: blur(1px);

  transform: translate(calc(-50% - 360px), -50%) scale(0.82);
}

.project-card.next {
  opacity: 0.42;
  z-index: 2;

  filter: blur(1px);

  transform: translate(calc(-50% + 360px), -50%) scale(0.82);
}

.project-preview {
  width: 100%;
  height: 190px;

  margin-bottom: 18px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.12), rgba(90, 200, 250, 0.1)),
    #f5f5f7;

  border: 1px solid rgba(60, 60, 67, 0.1);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(0, 0, 0, 0.05);
}

body.dark-mode .project-preview {
  background:
    linear-gradient(135deg, rgba(10, 132, 255, 0.2), rgba(100, 210, 255, 0.12)),
    #2c2c2e;
  border-color: rgba(235, 235, 245, 0.1);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.32);
}

.project-preview span {
  color: var(--ios-blue);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.project-card h3 {
  margin: 0 0 12px;

  color: var(--ios-text);
  font-size: 30px;
  line-height: 0.95;
  text-transform: none;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;

  margin-bottom: 14px;
}

.tags span {
  padding: 6px 10px;

  border-radius: 7px;

  background: rgba(118, 118, 128, 0.12);
  border: 1px solid rgba(60, 60, 67, 0.08);

  color: var(--ios-secondary);
  font-size: 13px;
  font-weight: 600;
}

.project-card p {
  color: var(--ios-secondary);
  font-weight: 600;
  line-height: 1.4;
}

.project-card a {
  color: var(--ios-blue);
  text-decoration: none;
  font-weight: 800;
}

/* ARROWS */

.carousel-btn {
  position: absolute;
  z-index: 5;

  width: 55px;
  height: 55px;

  border-radius: 50%;
  border: 1px solid var(--ios-border);

  background: rgba(255, 255, 255, 0.86);
  color: var(--ios-blue);

  font-size: 44px;
  line-height: 1;

  cursor: pointer;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition: 0.25s ease;
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.06);
}

body.dark-mode .carousel-btn {
  background: rgba(44, 44, 46, 0.86);
}

body.dark-mode .carousel-btn:hover {
  background: rgba(58, 58, 60, 0.96);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* DOTS */

.carousel-dots {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: center;
  gap: 10px;

  margin-top: 25px;
}

.carousel-dots button {
  width: 32px;
  height: 4px;

  border: none;
  border-radius: 999px;

  background: rgba(60, 60, 67, 0.2);
  cursor: pointer;

  transition: 0.25s ease;
}

.carousel-dots button.active {
  width: 45px;
  background: var(--ios-blue);
}

/* FINDER PROJECT SHOWCASE */

.project-finder-window {
  width: min(1180px, calc(100vw - 40px));
  min-height: 620px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 230px;
  grid-template-rows: 54px minmax(0, 1fr) 42px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.project-finder-sidebar {
  grid-row: 1 / -1;
  padding: 16px 12px;

  background: rgba(246, 246, 248, 0.84);
  border-right: 1px solid var(--ios-border);
}

.finder-lights {
  display: flex;
  gap: 8px;
  margin: 0 0 26px 6px;
}

.finder-light {
  width: 13px;
  height: 13px;

  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.finder-light.red {
  background: #ff5f57;
}

.finder-light.yellow {
  background: #ffbd2e;
}

.finder-light.green {
  background: #28c840;
}

.finder-sidebar-group {
  margin-bottom: 20px;
}

.finder-sidebar-group p {
  margin: 0 0 8px 8px;

  color: var(--ios-secondary);
  font-size: 12px;
  font-weight: 700;
}

.finder-sidebar-item {
  width: 100%;
  height: 38px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  gap: 10px;

  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ios-text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.finder-sidebar-item.active {
  background: rgba(118, 118, 128, 0.12);
  color: #ff2d8f;
}

.finder-sidebar-item span {
  width: 21px;
  height: 17px;

  display: inline-block;
  position: relative;

  border: 2px solid currentColor;
  border-radius: 4px;
}

.finder-sidebar-item span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 1px;

  width: 10px;
  height: 6px;

  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.project-finder-toolbar {
  grid-column: 2 / 4;
  padding: 8px 12px;

  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto minmax(160px, 280px);
  align-items: center;
  gap: 14px;

  border-bottom: 1px solid var(--ios-border);
  background: rgba(255, 255, 255, 0.72);
}

.finder-nav-buttons,
.finder-view-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finder-round-btn,
.finder-view-btn,
.finder-step-btn {
  border: 1px solid rgba(60, 60, 67, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ios-secondary);
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.finder-round-btn {
  width: 32px;
  height: 32px;

  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
}

.finder-round-btn:hover,
.finder-step-btn:hover {
  color: var(--ios-blue);
  background: rgba(0, 122, 255, 0.12);
  transform: scale(1.05);
}

.finder-title-stack {
  min-width: 0;

  display: flex;
  align-items: baseline;
  gap: 10px;
}

.finder-title-stack h3 {
  margin: 0;

  color: var(--ios-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.finder-title-stack span {
  color: var(--ios-secondary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.finder-view-btn {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 10px;
}

.finder-view-btn.active {
  background: rgba(118, 118, 128, 0.16);
  color: var(--ios-text);
}

.finder-grid-icon {
  width: 16px;
  height: 16px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.finder-grid-icon span,
.finder-list-icon span {
  background: currentColor;
  border-radius: 2px;
}

.finder-list-icon {
  width: 17px;

  display: grid;
  gap: 3px;
}

.finder-list-icon span {
  height: 2px;
}

.finder-column-icon {
  width: 18px;
  height: 17px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.finder-column-icon span {
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.finder-search {
  height: 34px;
  padding: 0 14px;

  border: 1px solid rgba(60, 60, 67, 0.08);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ios-text);
  font-family: inherit;
  font-size: 14px;
}

.project-finder-main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 30px 34px 18px;

  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  gap: 22px;

  background: rgba(255, 255, 255, 0.64);
}

.finder-preview-stage {
  min-height: 0;
  padding: 28px;

  display: grid;
  place-items: center;
  overflow: hidden;

  border: 1px solid rgba(60, 60, 67, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.finder-preview-card {
  --finder-accent: #007aff;
  --finder-accent-soft: rgba(0, 122, 255, 0.14);

  width: min(620px, 100%);
  min-height: 300px;
  padding: 26px;

  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;

  border: 1px solid rgba(60, 60, 67, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--finder-accent-soft), rgba(255, 45, 143, 0.1)),
    #f5f5f7;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: translateX(0) scale(1);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.finder-preview-card.is-switching {
  opacity: 0.62;
  transform: translateX(var(--finder-slide-direction, 18px)) scale(0.985);
}

.finder-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.finder-preview-top h3 {
  margin: 0;

  color: var(--ios-text);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 760;
  line-height: 0.92;
}

.finder-preview-top span {
  padding: 7px 10px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--finder-accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.finder-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.finder-preview-stats div {
  min-height: 88px;
  padding: 14px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(60, 60, 67, 0.08);
}

.finder-preview-stats span {
  color: var(--ios-secondary);
  font-size: 12px;
  font-weight: 700;
}

.finder-preview-stats strong {
  color: var(--ios-text);
  font-size: 22px;
  line-height: 1;
}

.finder-preview-card > p {
  margin: 0;

  color: var(--ios-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.finder-file-carousel {
  min-width: 0;

  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
}

.finder-step-btn {
  width: 38px;
  height: 38px;

  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.finder-file-track {
  min-width: 0;
  padding: 14px max(18px, calc(50% - 54px));

  display: flex;
  align-items: end;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.finder-file-track::-webkit-scrollbar {
  display: none;
}

.finder-file-item {
  flex: 0 0 108px;
  padding: 8px 6px;

  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ios-text);
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  opacity: 0.34;
  scroll-snap-align: center;
  transform: scale(0.84);
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.finder-file-item.is-near {
  opacity: 0.76;
  transform: scale(0.94);
}

.finder-file-item.active {
  opacity: 1;
  background: rgba(0, 122, 255, 0.12);
  transform: scale(1.06);
}

.finder-file-icon {
  width: 46px;
  height: 56px;
  margin: 0 auto 8px;

  display: block;
  position: relative;

  border: 1px solid rgba(60, 60, 67, 0.12);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff, #f3f3f5);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.finder-file-icon::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;

  width: 15px;
  height: 15px;

  border-radius: 0 4px 0 4px;
  background: linear-gradient(135deg, #e5e5ea 50%, transparent 50%);
}

.finder-file-icon::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;

  width: 26px;
  height: 22px;

  background:
    linear-gradient(#d1d1d6, #d1d1d6) 0 0 / 100% 2px,
    linear-gradient(#d1d1d6, #d1d1d6) 0 9px / 82% 2px,
    linear-gradient(#d1d1d6, #d1d1d6) 0 18px / 94% 2px;
  background-repeat: no-repeat;
}

.finder-file-item > span:last-child {
  display: block;
  overflow: hidden;

  color: var(--ios-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finder-file-item.active > span:last-child {
  color: var(--ios-blue);
}

.project-finder-inspector {
  grid-column: 3;
  grid-row: 2 / 4;
  padding: 20px 18px;

  border-left: 1px solid var(--ios-border);
  background: rgba(246, 246, 248, 0.76);
}

.finder-inspector-preview {
  width: 54px;
  height: 64px;
  margin: 0 auto 14px;

  border: 1px solid rgba(60, 60, 67, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.16), rgba(255, 45, 143, 0.12)),
    #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.project-finder-inspector h3 {
  margin: 0 0 4px;

  color: var(--ios-text);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.project-finder-inspector > p {
  margin: 0 0 22px;

  color: var(--ios-secondary);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.finder-info-block {
  margin-bottom: 20px;
}

.finder-info-block h4 {
  margin: 0 0 8px;

  color: var(--ios-text);
  font-size: 14px;
  line-height: 1;
}

.finder-info-block div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  margin-bottom: 8px;

  color: var(--ios-secondary);
  font-size: 12px;
  font-weight: 600;
}

.finder-info-block strong {
  color: var(--ios-text);
  font-weight: 650;
  text-align: right;
}

.finder-info-block p {
  min-height: 36px;
  margin: 0;
  padding: 9px 10px;

  border-radius: 2px;
  background: #ffffff;
  color: #b5b5ba;
  font-size: 13px;
  font-weight: 500;
}

.project-finder-path {
  grid-column: 2;
  grid-row: 3;
  padding: 0 16px;

  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;

  border-top: 1px solid var(--ios-border);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ios-tertiary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

body.dark-mode .project-finder-window {
  background: rgba(28, 28, 30, 0.88);
  border-color: rgba(235, 235, 245, 0.14);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.46),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

body.dark-mode .project-finder-sidebar,
body.dark-mode .project-finder-toolbar,
body.dark-mode .project-finder-inspector {
  background: rgba(44, 44, 46, 0.82);
}

body.dark-mode .project-finder-main,
body.dark-mode .project-finder-path {
  background: rgba(28, 28, 30, 0.74);
}

body.dark-mode .finder-preview-stage {
  background: #1c1c1e;
  border-color: rgba(235, 235, 245, 0.12);
}

body.dark-mode .finder-preview-card {
  background:
    linear-gradient(135deg, var(--finder-accent-soft), rgba(255, 45, 143, 0.1)),
    #2c2c2e;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

body.dark-mode .finder-preview-stats div,
body.dark-mode .finder-preview-top span,
body.dark-mode .finder-round-btn,
body.dark-mode .finder-view-btn,
body.dark-mode .finder-step-btn,
body.dark-mode .finder-search {
  background: rgba(58, 58, 60, 0.82);
  border-color: rgba(235, 235, 245, 0.12);
}

body.dark-mode .finder-file-icon,
body.dark-mode .finder-inspector-preview,
body.dark-mode .finder-info-block p {
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e);
  border-color: rgba(235, 235, 245, 0.12);
}

/* SKILLS SECTION */

.skills-section {
  position: relative;
  overflow: hidden;

  padding: 56px 20px 90px;
  background: #ffffff;
  text-align: center;
}

body.dark-mode .skills-section {
  background: var(--ios-bg);
}

.skills-section::before {
  display: none;
}

.skills-header {
  position: relative;
  z-index: 1;

  width: min(1100px, 90%);
  margin: 0 auto 20px;
  text-align: center;
}

.skills-header p {
  color: var(--ios-blue);
}

.skills-header h2 {
  color: var(--ios-text);
  font-size: clamp(52px, 8vw, 76px);
  font-weight: 500;
  line-height: 1;
  text-shadow: none;
}

.skills-folders {
  position: relative;
  z-index: 1;

  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.skill-folder-group {
  width: 100%;
}

.folder-title {
  margin: 0 0 14px;

  color: var(--ios-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.ios-folder {
  position: relative;
  overflow: hidden;

  width: 100%;
  margin: 0;
  padding: 34px 30px 24px;

  border-radius: clamp(32px, 6vw, 52px);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.82)),
    rgba(245, 245, 247, 0.86);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);

  border: 1px solid var(--ios-border);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

body.dark-mode .ios-folder,
body.dark-mode .creative-folder {
  background:
    linear-gradient(180deg, rgba(58, 58, 60, 0.92), rgba(44, 44, 46, 0.82)),
    rgba(44, 44, 46, 0.86);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.creative-folder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 242, 247, 0.82)),
    rgba(242, 242, 247, 0.86);
}

.ios-folder::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.72), transparent 58%);

  pointer-events: none;
}

body.dark-mode .ios-folder::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 58%);
}

.apps-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 22px 22px;
  max-width: 430px;
  margin: 0 auto;
}

.app {
  width: 98px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.app-icon {
  position: relative;
  overflow: hidden;

  width: 72px;
  height: 72px;
  margin: 0 auto 9px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  color: white;

  box-shadow:
    0 14px 30px rgba(2, 10, 28, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.52),
    inset 0 -1px 1px rgba(0, 0, 0, 0.18);

  transition: 0.25s ease;
}

.app-icon::before {
  content: "";
  position: absolute;
  inset: 1px;

  border-radius: 21px;

  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.48), transparent 44%);
  pointer-events: none;
}

.app-icon::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.app-icon svg {
  position: relative;
  z-index: 1;

  width: 51px;
  height: 51px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;

  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
}

.letter-icon span {
  position: relative;
  z-index: 1;

  color: currentColor;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.14);
}

.php span {
  font-size: 24px;
  font-style: italic;
}

.canva span {
  font-family: Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
}

.app:hover .app-icon {
  transform: scale(1.08);
}

.app p {
  margin: 0;

  color: var(--ios-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  text-shadow: none;
}

.html {
  background: linear-gradient(145deg, #ff9d42, #ff3b30 72%);
}

.css {
  background: linear-gradient(145deg, #54c7ff, #007aff 72%);
}

.js {
  background: linear-gradient(145deg, #ffe45c, #ffb703 72%);
  color: #1f1f1f;
}

.typescript {
  background: linear-gradient(145deg, #58a6ff, #235aaf 72%);
}

.php {
  background: linear-gradient(145deg, #9aa7db, #4f5d95 72%);
}

.python {
  background: linear-gradient(145deg, #4da3ff 0 48%, #ffd84d 52% 100%);
}

.sql {
  background: linear-gradient(145deg, #64d2ff, #007aff 74%);
}

.java {
  background: linear-gradient(145deg, #ffb340, #ff453a 74%);
}

.csharp {
  background: linear-gradient(145deg, #bf5af2, #5e2ccf 74%);
}

.git {
  background: linear-gradient(145deg, #ff8a48, #ff453a 72%);
}

.github {
  background: linear-gradient(145deg, #343a40, #050505 74%);
}

.vscode {
  background: linear-gradient(145deg, #44c8ff, #007aff 74%);
}

.figma {
  background: linear-gradient(145deg, #ffffff, #d8e2ff 74%);
}

.browser {
  background:
    conic-gradient(from 220deg, #0a84ff, #64d2ff, #34c759, #ffd60a, #ff453a, #0a84ff);
}

.terminal {
  background: linear-gradient(145deg, #2c2c2e, #050505 75%);
  color: #7cff9b;
}

.ae,
.pr {
  background: linear-gradient(145deg, #1f1147, #6d5dfc 74%);
  color: #d7d0ff;
}

.ps {
  background: linear-gradient(145deg, #001f36, #0a84ff 74%);
  color: #a7dcff;
}

.canva {
  background: conic-gradient(from 180deg, #00c4cc, #7d2ae8, #8b5cf6, #00c4cc);
}

.ai {
  background: linear-gradient(145deg, #3a1800, #ff9f0a 74%);
  color: #ffd08a;
}

.lr {
  background: linear-gradient(145deg, #002a3a, #31d2f7 74%);
  color: #b9f2ff;
}

.id {
  background: linear-gradient(145deg, #3a0624, #ff4fb3 74%);
  color: #ffc3e8;
}

.xd {
  background: linear-gradient(145deg, #3b0638, #ff66d8 74%);
  color: #ffd0f3;
}

.html svg > path:first-child,
.css svg > path:first-child,
.git svg > path:first-child,
.github svg > rect,
.js svg > rect,
.terminal svg > rect {
  fill: rgba(255, 255, 255, 0.16);
}

.js svg > rect {
  fill: rgba(29, 29, 31, 0.1);
}

.github svg > rect,
.terminal svg > rect {
  fill: rgba(255, 255, 255, 0.08);
}

.vscode svg {
  stroke-width: 2.4;
}

.vscode svg path {
  fill: rgba(255, 255, 255, 0.78);
  stroke: none;
}

.vscode svg path:last-child {
  fill: rgba(255, 255, 255, 0.32);
}

.figma svg {
  stroke: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.figma svg circle:nth-child(1) {
  fill: #ff7262;
}

.figma svg circle:nth-child(2) {
  fill: #a259ff;
}

.figma svg circle:nth-child(3) {
  fill: #1abcfe;
}

.figma svg circle:nth-child(4) {
  fill: #0acf83;
}

.figma svg circle:nth-child(5) {
  fill: #f24e1e;
}

.browser svg {
  color: rgba(255, 255, 255, 0.95);
  stroke-width: 2.6;
}

.browser svg path:last-child {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(18, 44, 98, 0.36);
}

.python svg path:first-child,
.python svg path:nth-child(2),
.java svg path:nth-child(3),
.sql svg ellipse {
  fill: rgba(255, 255, 255, 0.14);
}

.folder-dots {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
  gap: 9px;

  margin-top: 22px;
}

.folder-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: rgba(60, 60, 67, 0.22);
}

.folder-dots .active {
  background: var(--ios-blue);
}

/* INFO SECTIONS */

.info-section {
  padding: 50px 20px;
  background: var(--ios-grouped-bg);
}

.info-card {
  width: min(900px, 90%);
  margin: 0 auto;
  padding: 35px;

  border-radius: 30px;

  background: var(--ios-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  border: 1px solid var(--ios-border);

  box-shadow:
    var(--ios-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.info-card h2 {
  margin: 0 0 12px;

  color: var(--ios-text);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.info-card p:last-child {
  max-width: 650px;
  margin: 0;

  color: var(--ios-secondary);
  font-weight: 600;
  line-height: 1.6;
}

.contact-section {
  padding: 70px 20px 90px;
}

.contact-heading {
  width: min(1120px, 94vw);
  margin: 0 auto 24px;

  text-align: center;
}

.contact-heading p {
  margin: 0 0 8px;

  color: var(--ios-blue);
  font-weight: 700;
}

.contact-heading h2 {
  margin: 0;

  color: var(--ios-text);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 650;
  line-height: 0.95;
}

.mail-compose-card {
  width: min(1120px, 94vw);
  min-height: 620px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--ios-border);

  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

body.dark-mode .mail-compose-card {
  background: rgba(28, 28, 30, 0.96);

  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.mail-toolbar {
  min-height: 72px;
  padding: 0 22px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;

  background: rgba(248, 248, 250, 0.78);
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);

  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

body.dark-mode .mail-toolbar {
  background: rgba(44, 44, 46, 0.82);
  border-bottom-color: rgba(235, 235, 245, 0.12);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.window-dot {
  width: 18px;
  height: 18px;

  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.window-dot.red {
  background: #ff5f57;
}

.window-dot.yellow {
  background: #ffbd2e;
}

.window-dot.green {
  background: #28c840;
}

.mail-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mail-tools span {
  min-width: 56px;
  height: 44px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(60, 60, 67, 0.1);

  color: rgba(60, 60, 67, 0.76);
  font-size: 20px;
  font-weight: 650;
  line-height: 1;
}

body.dark-mode .mail-tools span,
body.dark-mode .send-mail-btn {
  background: rgba(58, 58, 60, 0.82);
  border-color: rgba(235, 235, 245, 0.12);
}

.send-mail-btn {
  justify-self: end;

  width: 52px;
  height: 52px;
  padding: 0 0 4px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(60, 60, 67, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);

  color: var(--ios-blue);
  font-family: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  transition: 0.22s ease;
}

.send-mail-btn:hover {
  color: #ffffff;
  background: var(--ios-blue);
  box-shadow: 0 10px 24px rgba(0, 122, 255, 0.26);
  transform: translateY(-1px);
}

.mail-fields {
  padding: 0 30px;
}

.mail-row {
  min-height: 58px;

  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;

  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
}

body.dark-mode .mail-row {
  border-bottom-color: rgba(84, 84, 88, 0.58);
}

.mail-row span {
  color: var(--ios-secondary);
  font-size: 20px;
  font-weight: 600;
}

.mail-row input {
  width: 100%;
  min-width: 0;
  padding: 0;

  border: 0;
  outline: 0;
  background: transparent;

  color: var(--ios-text);
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
}

.mail-row input[readonly] {
  color: var(--ios-text);
}

.mail-row input::placeholder,
.mail-message::placeholder {
  color: rgba(60, 60, 67, 0.38);
}

body.dark-mode .mail-row input::placeholder,
body.dark-mode .mail-message::placeholder {
  color: rgba(235, 235, 245, 0.36);
}

.mail-message {
  flex: 1;
  min-height: 330px;
  padding: 28px 30px 34px;

  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;

  color: var(--ios-text);
  font-family: inherit;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

body.dark-mode .settings-profile-card {
  background: rgba(44, 44, 46, 0.88);
  box-shadow:
    var(--ios-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.settings-profile-card {
  width: min(980px, 90%);
  margin: 0 auto;
  padding: 24px;

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;

  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--ios-border);
  box-shadow:
    var(--ios-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.memoji-photo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.memoji-image {
  display: block;

  width: min(100%, 260px);
  height: auto;

  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}

.about-me-content {
  padding: 10px 10px 10px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-me-content h2 {
  margin: 0 0 16px;

  color: var(--ios-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 650;
}

.about-me-content > p {
  max-width: 650px;
  margin: 0;

  color: var(--ios-secondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

/* MOBILE */

@media (max-width: 980px) {
  .project-finder-window {
    width: min(720px, calc(100vw - 28px));
    min-height: 680px;

    grid-template-columns: 148px minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) 42px;
  }

  .project-finder-toolbar {
    grid-column: 2;
    grid-template-columns: auto 1fr auto;
  }

  .finder-search,
  .project-finder-inspector {
    display: none;
  }

  .project-finder-main {
    min-height: 610px;
  }

  .finder-file-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .finder-file-track {
    padding-inline: max(16px, calc(50% - 54px));
  }

  .skills-folders {
    width: min(560px, calc(100vw - 32px));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  header {
    padding: 10px;
    flex-direction: column;
    gap: 8px;
  }

  .theme-toggle {
    position: static;
    align-self: center;

    padding-left: 14px;
  }

  .glass-nav {
    width: 100%;
    max-width: 420px;
    overflow-x: hidden;
    gap: 0;
  }

  .glass-nav a {
    flex: 1;
    white-space: nowrap;
    padding: 10px 6px;
    text-align: center;
    font-size: 12px;
  }

  .hero {
    min-height: 280px;
    padding: 60px 18px;
  }

  .projects-section {
    padding: 40px 0;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-header h2,
  .skills-header h2 {
    font-size: 48px;
  }

  .show-all {
    margin-top: 0;
  }

  .project-finder-window {
    width: 100%;
    min-height: 780px;
    border-radius: 0;

    grid-template-columns: 1fr;
  }

  .project-finder-sidebar {
    display: none;
  }

  .project-finder-toolbar,
  .project-finder-main,
  .project-finder-path {
    grid-column: 1;
  }

  .project-finder-toolbar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .finder-title-stack {
    flex-direction: column;
    gap: 1px;
  }

  .finder-title-stack span {
    font-size: 11px;
  }

  .project-finder-main {
    min-height: 690px;
    padding: 20px 16px;
  }

  .finder-preview-stage {
    padding: 14px;
  }

  .finder-preview-card {
    min-height: 495px;
  }

  .finder-preview-top {
    flex-direction: column;
    gap: 12px;
  }

  .finder-preview-top h3 {
    font-size: 30px;
  }

  .finder-preview-stats {
    grid-template-columns: 1fr;
  }

  .finder-file-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .finder-step-btn {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .finder-file-track {
    padding-inline: max(12px, calc(50% - 54px));
    gap: 12px;
  }

  .finder-file-item {
    flex-basis: 102px;
  }

  .carousel {
    height: 450px;
  }

  .project-card {
    width: 82vw;
  }

  .project-card.prev,
  .project-card.next {
    opacity: 0;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;

    font-size: 34px;
  }

  .ios-folder {
    padding: 32px 22px 24px;
    border-radius: 38px;
  }

  .settings-profile-card {
    width: min(560px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .memoji-image {
    width: min(260px, 88%);
    margin: 0 auto;
  }

  .about-me-content {
    padding: 0 2px 4px;
    text-align: left;
  }

  .contact-section {
    padding: 40px 10px 70px;
  }

  .mail-compose-card {
    width: min(560px, calc(100vw - 20px));
    min-height: 620px;

    border-radius: 28px;
  }

  .mail-toolbar {
    min-height: 70px;
    padding: 14px 14px 12px;

    grid-template-columns: 1fr auto;
    grid-template-areas:
      "dots send"
      "tools tools";
    gap: 10px;
  }

  .window-dots {
    grid-area: dots;
  }

  .mail-tools {
    grid-area: tools;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .send-mail-btn {
    grid-area: send;

    width: 46px;
    height: 46px;

    font-size: 28px;
  }

  .mail-fields {
    padding: 0 18px;
  }

  .mail-row {
    min-height: 54px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .mail-row span,
  .mail-row input {
    font-size: 16px;
  }

  .mail-message {
    min-height: 300px;
    padding: 22px 18px 28px;

    font-size: 16px;
  }

  .folder-title {
    font-size: 20px;
  }

  .apps-grid {
    gap: 24px 14px;
  }

  .app {
    width: 88px;
  }

  .app-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .app-icon::before {
    border-radius: 17px;
  }

  .app-icon svg {
    width: 47px;
    height: 47px;
  }

  .app p {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .apps-grid {
    gap: 20px 8px;
  }

  .app {
    width: 78px;
  }

  .app-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .app-icon::before {
    border-radius: 15px;
  }

  .app-icon svg {
    width: 41px;
    height: 41px;
  }
}
