/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #e6f0ff;
  line-height: 1.7;
  background-color: #020617;
  background-image:
    linear-gradient(rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.55)),
    url('../Images/background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ========== STAR BACKGROUND (NO CANVAS) ========== */
/* 3 straturi de „stele” cu animații diferite */
.stars,
.stars:before,
.stars:after {
  position: fixed;
  inset: 0;
  content: "";
  background-repeat: repeat;
  z-index: -3;
}

.stars {
  background-image:
    radial-gradient(2px 2px at 20px 30px, #9adcff, transparent 60%),
    radial-gradient(1px 1px at 120px 80px, #bff6ff, transparent 60%),
    radial-gradient(2px 2px at 220px 160px, #7dd3fc, transparent 60%),
    radial-gradient(1px 1px at 340px 40px, #e0f2fe, transparent 60%),
    radial-gradient(2px 2px at 480px 200px, #38bdf8, transparent 60%);
  animation: drift 80s linear infinite;
  opacity: .6;
}

.stars:before {
  background-image:
    radial-gradient(1px 1px at 60px 140px, #e0f2fe, transparent 60%),
    radial-gradient(2px 2px at 200px 60px, #7dd3fc, transparent 60%),
    radial-gradient(1px 1px at 320px 180px, #bff6ff, transparent 60%),
    radial-gradient(2px 2px at 420px 100px, #38bdf8, transparent 60%);
  animation: drift 120s linear infinite reverse;
  opacity: .5;
}

.stars:after {
  background-image:
    radial-gradient(2px 2px at 40px 220px, #9adcff, transparent 60%),
    radial-gradient(1px 1px at 160px 20px, #e0f2fe, transparent 60%),
    radial-gradient(2px 2px at 300px 120px, #7dd3fc, transparent 60%),
    radial-gradient(1px 1px at 500px 60px, #bff6ff, transparent 60%);
  animation: drift 160s linear infinite;
  opacity: .4;
}

@keyframes drift {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-1000px)
  }
}

/* nebula / glow */
.glow-a,
.glow-b {
  position: fixed;
  inset: auto;
  z-index: -2;
  filter: blur(80px);
  pointer-events: none;
}

.glow-a {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 234, 255, .25), transparent 60%);
}

.glow-b {
  width: 600px;
  height: 600px;
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 0, 150, .18), transparent 60%);
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e6f0ff;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-close,
.nav-backdrop {
  display: none;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.36);
  box-shadow: 0 10px 22px rgba(0, 102, 255, 0.14);
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  font-weight: 700;
  letter-spacing: .5px
}

.nav a {
  margin: 0 14px;
  color: #a7b6d6;
  text-decoration: none;
  transition: .25s;
}

.nav a:hover {
  color: #7dd3fc
}

.nav a.active {
  color: #e6f0ff;
}

.btn-nav {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: #e6f0ff;
}

.btn-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 88px 0 52px;
  max-width: 780px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px
}

.hero h1 span {
  color: #00eaff
}

.hero p {
  color: #9fb0cf;
  margin-bottom: 28px;
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: #cfe4ff;
  letter-spacing: .04em;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #00eaff, #0066ff);
  color: #fff;
  text-decoration: none;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00eaff
}

/* GLASS */
.glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(0, 234, 255, .15);
}

/* hero card (image placeholder) */
/* PROJECTS */
.section {
  padding: 72px 0
}

.about-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: stretch;
  padding: 88px 0 36px;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-copy h1 {
  font-size: 48px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.about-lead {
  color: #9fb0cf;
  max-width: 680px;
  line-height: 1.85;
}

.about-hero-card {
  padding: 32px;
}

.about-hero-card h2,
.about-panel h2 {
  margin-bottom: 16px;
}

.about-hero-card p,
.about-panel p,
.about-cta p {
  color: #9fb0cf;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
}

.stat-card span {
  color: #9fb0cf;
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
}

.about-panel {
  padding: 32px;
}

.about-list {
  margin-top: 24px;
  padding-left: 22px;
  color: #c7d6f1;
}

.about-list li+li {
  margin-top: 14px;
}

.about-cta {
  margin-top: 28px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
  padding: 88px 0 36px;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-copy h1 {
  font-size: 48px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.contact-card {
  padding: 32px;
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-card p {
  color: #9fb0cf;
}

.contact-items {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
  color: #e6f0ff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 234, 255, 0.14);
  border-color: rgba(125, 211, 252, 0.28);
}

.contact-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
}

.website-contact-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.website-contact-head .eyebrow {
  background: linear-gradient(45deg, #00eaff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.website-contact-head h2 {
  margin-bottom: 16px;
}

.website-contact-head p {
  color: #9fb0cf;
}

.website-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
}

.website-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.website-panel p {
  color: #9fb0cf;
}

.website-panel__list {
  margin-top: 4px;
}

.projects-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
  padding: 88px 0 36px;
}

.projects-hero__copy {
  max-width: 780px;
}

.projects-hero__copy h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.projects-hero__card {
  padding: 32px;
}

.projects-hero__card h2 {
  margin: 12px 0 16px;
}

.projects-hero__card p {
  color: #9fb0cf;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: start;
  padding: 26px 0 52px;
}

.projects-filter-bar {
  display: none;
  justify-content: flex-end;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 0 2px;
  grid-column: 1 / -1;
}

.projects-filter-dropdown {
  position: relative;
  width: auto;
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.projects-filter-toggle {
  width: auto;
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 26px;
  border: 1px solid rgba(98, 219, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(55, 111, 176, 0.98), rgba(37, 81, 132, 0.95)),
    linear-gradient(90deg, rgba(0, 234, 255, 0.12), rgba(0, 102, 255, 0.14));
  color: #e6f0ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 102, 255, 0.2),
    0 0 0 4px rgba(0, 234, 255, 0.04);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, filter .22s ease;
}

.projects-filter-toggle:hover,
.projects-filter-dropdown.is-open .projects-filter-toggle {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 28px rgba(0, 102, 255, 0.24),
    0 0 30px rgba(0, 234, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(62, 124, 192, 0.99), rgba(42, 93, 151, 0.97)),
    linear-gradient(90deg, rgba(0, 234, 255, 0.14), rgba(0, 102, 255, 0.18));
  filter: brightness(1.03);
}

.projects-filter-toggle:focus-visible,
.projects-filters-panel__close:focus-visible,
.projects-filter:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(2, 6, 23, 0.9),
    0 0 0 5px rgba(125, 211, 252, 0.42);
}

.projects-filter-toggle__icon {
  font-size: 13px;
  transition: transform .22s ease;
  opacity: .92;
}

.projects-filter-dropdown.is-open .projects-filter-toggle__icon {
  transform: rotate(180deg);
}

.projects-filters-panel {
  position: sticky;
  top: 24px;
  display: block;
  width: 100%;
  grid-column: 2;
  grid-row: 1;
  padding: 24px;
  z-index: 30;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: linear-gradient(180deg, rgba(17, 25, 48, 0.98), rgba(10, 16, 34, 0.96));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.projects-filters-panel__intro {
  margin-bottom: 22px;
}

.projects-filters-panel__intro h2 {
  margin: 12px 0 16px;
}

.projects-filters-panel__intro p {
  color: #9fb0cf;
}

.projects-filters-panel.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.projects-filters-panel__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

.projects-filters-panel__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.projects-filters-panel__close {
  width: 34px;
  height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e6f0ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.projects-filters-panel__close:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.projects-filters-panel__note {
  margin-top: 24px;
  padding: 18px;
}

.projects-filters-panel__note strong {
  display: block;
  margin-bottom: 10px;
}

.projects-filters-panel__note p {
  color: #9fb0cf;
  margin-bottom: 14px;
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  grid-column: 1;
  grid-row: 1;
}

.project-gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .25s ease;
}

.project-gallery-card.is-hidden {
  display: none;
}

.project-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 234, 255, 0.18);
}

.project-gallery-card img,
.project-gallery-card__visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
}

.project-gallery-card img {
  object-fit: cover;
  object-position: center;
}

.project-gallery-card__image--large {
  aspect-ratio: 4 / 3;
  object-position: top center;
}

.project-gallery-card__visual {
  position: relative;
  overflow: hidden;
}

.project-gallery-card__visual span {
  position: absolute;
  inset: auto 16px 16px auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e6f0ff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-gallery-card__visual--aurora {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 234, 255, 0.42), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(0, 102, 255, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(12, 20, 40, 0.96), rgba(7, 12, 28, 0.98));
}

.project-gallery-card__visual--grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(0, 102, 255, 0.12));
  background-size: 28px 28px, 28px 28px, cover;
  background-position: center;
}

.project-gallery-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  flex: 1;
}

.project-gallery-card__body p {
  color: #9fb0cf;
}

.project-gallery-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-gallery-card__tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.16);
  color: #cfe4ff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.projects-filter {
  text-align: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #dce9ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.projects-filter:hover,
.projects-filter.is-active {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.6);
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(0, 102, 255, 0.18));
  box-shadow: 0 10px 22px rgba(0, 102, 255, 0.16);
}

.projects-mobile-slider {
  display: none;
  grid-column: 1;
}

.projects-mobile-slider__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.projects-mobile-slider__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e6f0ff;
  font-size: 20px;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, opacity .22s ease;
}

.projects-mobile-slider__arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 12px 26px rgba(0, 102, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.projects-mobile-slider__arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.projects-mobile-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.projects-mobile-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(167, 182, 214, 0.34);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.projects-mobile-slider__dot.is-active {
  background: linear-gradient(135deg, #00eaff, #0066ff);
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(0, 234, 255, 0.12);
}

.application-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 30;
}

.application-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.application-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.application-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  scrollbar-width: none;
}

.application-modal__dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.application-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e6f0ff;
  font-size: 24px;
  cursor: pointer;
}

.application-modal__intro {
  color: #9fb0cf;
  margin-bottom: 24px;
}

.application-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field span {
  font-size: 13px;
  color: #dce9ff;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #e6f0ff;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 234, 255, 0.08);
}

.form-field textarea {
  min-height: 180px;
}

.form-field small {
  color: #9fb0cf;
  font-size: 12px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.application-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 30px;
}

.application-form__status {
  margin-right: auto;
  color: #9fb0cf;
  font-size: 13px;
}

.submit-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 260px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: rgba(7, 12, 28, 0.9);
  color: #e6f0ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 50;
}

.contact-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.application-submit {
  cursor: pointer;
}

.application-submit[disabled] {
  opacity: .65;
  cursor: wait;
}

.section h2 {
  margin-bottom: 24px
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:last-child {
  color: #9fb0cf;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-card,
.home-feature,
.step-card {
  padding: 30px;
}

.home-card h3,
.step-card h3 {
  margin: 16px 0 12px;
}

.home-card p,
.home-feature p,
.step-card p {
  color: #9fb0cf;
}

.home-focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: start;
}

.home-feature h2 {
  margin-bottom: 16px;
}

.home-steps {
  display: grid;
  gap: 18px;
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.2), rgba(0, 102, 255, 0.22));
  border: 1px solid rgba(125, 211, 252, 0.24);
  color: #e6f0ff;
}

.home-links {
  padding-top: 18px;
}

.home-links-grid {
  grid-template-columns: repeat(2, minmax(280px, 360px));
}

.discord-showcase {
  padding-top: 12px;
}

.discord-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.discord-card::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.2), transparent 68%);
  pointer-events: none;
}

.discord-card__content,
.discord-preview {
  position: relative;
  z-index: 1;
}

.discord-card__content h2 {
  max-width: 640px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.discord-card__content h2 span {
  color: #8ea1ff;
}

.discord-card__text {
  max-width: 620px;
  color: #9fb0cf;
}

.discord-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.discord-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce9ff;
  font-size: 13px;
}

.discord-stat__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
  flex: 0 0 9px;
}

.discord-stat__dot--online {
  background: #67e08a;
  box-shadow: 0 0 0 4px rgba(103, 224, 138, 0.14);
}

.discord-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.discord-card__button {
  min-width: 170px;
}

.discord-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.discord-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.14);
  border: 1px solid rgba(142, 161, 255, 0.24);
  color: #dbe3ff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discord-preview__badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(93%) sepia(7%) saturate(1050%) hue-rotate(193deg) brightness(108%) contrast(101%);
}

.discord-preview__panel {
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(49, 51, 56, 0.94), rgba(35, 39, 42, 0.98)),
    linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(64, 78, 237, 0.12));
  border: 1px solid rgba(142, 161, 255, 0.18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.discord-preview__avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(88, 101, 242, 0.35);
}

.discord-preview__invite {
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 10px;
}

.discord-preview__panel h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.discord-preview__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #f3f4f6;
  font-size: 14px;
  margin-bottom: 26px;
}

.discord-preview__stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-preview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(90deg, #5865f2, #6472ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(88, 101, 242, 0.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.discord-preview__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(88, 101, 242, 0.38);
  filter: brightness(1.04);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  transition: .25s;
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}

.card-img-minecraft {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px
}

.card p {
  font-size: 13px;
  color: #9fb0cf
}

.project-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(0, 102, 255, 0.18));
  color: #e6f0ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.project-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
}

.project-link:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.65);
  box-shadow: 0 10px 28px rgba(0, 234, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.24), rgba(0, 102, 255, 0.24));
}

.project-link:hover::before {
  left: 140%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(0, 234, 255, .2);
}

/* CTA */
.cta {
  margin-top: 40px;
  padding: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta p {
  color: #9fb0cf
}

.projects-legal-note {
  margin-top: 32px;
  padding: 30px 34px;
  border-radius: 22px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 234, 255, 0.22), rgba(0, 102, 255, 0.28)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 38px rgba(0, 102, 255, 0.16);
}

.projects-legal-note h3 {
  margin: 10px 0 12px;
}

.projects-legal-note p {
  max-width: 920px;
  color: #e6f0ff;
  line-height: 1.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #dce9ff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(17%) saturate(363%) hue-rotate(180deg) brightness(103%) contrast(98%);
  transition: transform .25s ease, filter .25s ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(0, 102, 255, 0.2));
  opacity: 0;
  transition: opacity .25s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.22);
}

.social-link:hover img {
  transform: scale(1.08);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(27deg) brightness(104%) contrast(102%);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover::after {
  left: 150%;
}

.social-link img,
.social-link span,
.social-link {
  z-index: 1;
}

/* FOOTER */
.footer {
  margin-top: 44px;
  padding: 34px 0;
  color: #7f93b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ========== ANIMATIONS (CSS + small JS hook) ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: .6s
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  body {
    background-attachment: scroll;
    background-position: top center;
  }

  .container {
    padding: 0 20px;
  }

  .nav {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    padding: 20px 0 12px;
    position: relative;
  }

  .logo {
    text-align: center;
    font-size: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 82vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    padding: 84px 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 10, 24, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-108%);
    transition: transform .28s ease;
    z-index: 60;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.36);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.48);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 55;
    pointer-events: none;
  }

  .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav.is-open nav {
    transform: translateX(0);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #e6f0ff;
    font-size: 24px;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  }

  .nav-close:hover {
    transform: translateY(-1px);
    border-color: rgba(125, 211, 252, 0.45);
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.16);
  }

  .nav a {
    margin: 0;
    padding: 14px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 15px;
  }

  .nav a.active {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.16), rgba(0, 102, 255, 0.16));
    border: 1px solid rgba(125, 211, 252, 0.22);
  }

  .btn-nav,
  .btn-nav-link {
    display: none;
  }

  .hero {
    text-align: center;
    padding: 40px 0 24px;
    gap: 22px;
    max-width: 100%;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero p,
  .about-lead,
  .section-heading p:last-child,
  .website-contact-head p,
  .discord-card__text,
  .projects-legal-note p,
  .cta p,
  .projects-hero__card p,
  .contact-card p,
  .website-panel p,
  .about-panel p {
    margin-inline: auto;
    max-width: 34rem;
  }

  .about-hero,
  .projects-hero,
  .contact-hero,
  .home-grid,
  .home-focus-layout,
  .discord-card,
  .about-grid,
  .contact-grid,
  .website-contact-grid,
  .projects-layout,
  .projects-gallery,
  .application-form__grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .projects-hero,
  .contact-hero {
    padding: 42px 0 24px;
    gap: 22px;
  }

  .section-heading,
  .website-contact-head,
  .projects-hero__copy,
  .about-hero-copy,
  .contact-hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .about-hero-copy h1,
  .contact-hero-copy h1,
  .projects-hero__copy h1 {
    font-size: clamp(32px, 8.4vw, 42px);
    line-height: 1.08;
  }

  .hero p,
  .about-lead,
  .projects-hero__card p,
  .contact-card p,
  .website-panel p,
  .about-panel p,
  .projects-sidebar p,
  .cta p {
    font-size: 15px;
    line-height: 1.7;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .section {
    padding: 42px 0;
  }

  .about-panel,
  .about-hero-card,
  .contact-card,
  .website-panel,
  .projects-hero__card,
  .projects-legal-note,
  .cta,
  .application-modal__dialog {
    padding: 24px;
  }

  .about-panel,
  .about-hero-card,
  .contact-card,
  .website-panel,
  .projects-hero__card,
  .projects-legal-note,
  .home-card,
  .home-feature,
  .step-card,
  .card,
  .discord-card__content,
  .cta {
    text-align: center;
  }

  .about-list {
    width: fit-content;
    max-width: min(100%, 30rem);
    margin-inline: auto;
    text-align: left;
  }

  .contact-items {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 18px;
  }

  .projects-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 14px 0 34px;
  }

  .projects-filter-bar {
    display: flex;
    order: 1;
  }

  .projects-filter-dropdown {
    width: 100%;
    max-width: 360px;
    padding: 0;
    justify-content: center;
    margin-inline: auto;
  }

  .projects-filter-toggle {
    width: auto;
    min-width: 176px;
    min-height: 0;
    gap: 12px;
    padding: 13px 26px;
    font-size: 13px;
    letter-spacing: .14em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 12px 24px rgba(0, 102, 255, 0.2),
      0 0 0 4px rgba(0, 234, 255, 0.04);
  }

  .projects-filters-panel {
    position: relative;
    top: auto;
    grid-column: 1;
    width: min(100vw - 40px, 440px);
    padding: 14px;
    margin: 2px auto 8px;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    order: 2;
  }

  .projects-filters-panel__intro,
  .projects-filters-panel__note {
    display: none;
  }

  .projects-filters-panel.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .projects-filters-panel__header {
    display: flex;
  }

  .projects-filters-panel__close {
    display: inline-flex;
  }

  .projects-filter-bar {
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 0 2px;
  }

  .projects-gallery {
    order: 3;
    grid-auto-flow: column;
    grid-auto-columns: minmax(86%, 86%);
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-inline: 2px;
    padding-bottom: 8px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .projects-gallery::-webkit-scrollbar {
    display: none;
  }

  .project-gallery-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .project-gallery-card__body {
    padding: 22px;
  }

  .project-gallery-card__tags {
    gap: 6px;
  }

  .project-gallery-card__tags span {
    font-size: 10px;
    padding: 6px 9px;
  }

  .projects-mobile-slider {
    display: grid;
    gap: 14px;
    justify-items: center;
    margin-top: -6px;
    order: 4;
  }

  .projects-filters {
    justify-content: center;
    gap: 8px;
  }

  .projects-filter {
    text-align: center;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: .04em;
  }

  .contact-toast {
    top: 16px;
    right: 16px;
    left: 16px;
    min-width: 0;
    max-width: none;
  }

  .about-hero,
  .projects-hero,
  .contact-hero {
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-card,
  .home-feature,
  .step-card {
    padding: 24px;
  }

  .hero-point {
    justify-content: center;
  }

  .home-links-grid {
    grid-template-columns: 1fr;
  }

  .discord-card {
    padding: 26px;
  }

  .discord-card__content {
    text-align: center;
  }

  .discord-card__meta,
  .discord-card__actions,
  .discord-preview__stats {
    justify-content: center;
  }

  .discord-preview__panel h3 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .cta {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .cta>div {
    margin-inline: auto;
  }

  .cta .btn,
  .cta .project-link {
    width: 100%;
    max-width: 260px;
  }

  .social-strip {
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 32px;
    padding: 26px 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .nav nav {
    width: min(280px, 86vw);
    padding: 78px 14px 18px;
  }

  .nav-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-bottom: 8px;
  }

  .nav a {
    font-size: 14px;
    padding: 10px 12px;
  }

  .nav nav {
    text-align: center;
  }

  .hero h1,
  .about-hero-copy h1,
  .contact-hero-copy h1,
  .projects-hero__copy h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
  }

  .about-panel,
  .about-hero-card,
  .contact-card,
  .website-panel,
  .projects-hero__card,
  .projects-sidebar,
  .projects-legal-note,
  .cta,
  .application-modal__dialog {
    padding: 20px;
    border-radius: 16px;
  }

  .hero {
    padding: 34px 0 20px;
    gap: 20px;
  }

  .about-hero,
  .projects-hero,
  .contact-hero {
    padding: 36px 0 22px;
    gap: 20px;
  }

  .section {
    padding: 36px 0;
  }

  .hero p,
  .about-lead,
  .section-heading p:last-child,
  .website-contact-head p,
  .discord-card__text,
  .projects-legal-note p,
  .cta p,
  .projects-hero__card p,
  .contact-card p,
  .website-panel p,
  .about-panel p {
    max-width: 30rem;
  }

  .hero-actions,
  .hero-points,
  .contact-items,
  .projects-mobile-slider__buttons,
  .projects-mobile-slider__dots {
    width: 100%;
  }

  .projects-gallery {
    grid-auto-columns: 92%;
    gap: 16px;
  }

  .project-gallery-card__body {
    padding: 20px;
    gap: 12px;
  }

  .projects-mobile-slider {
    gap: 12px;
  }

  .projects-filter-dropdown {
    width: 100%;
    max-width: 320px;
    padding: 8px 0;
    justify-content: center;
    margin-inline: auto;
  }

  .projects-filter-toggle {
    width: auto;
    min-width: 176px;
    min-height: 0;
    gap: 12px;
    padding: 13px 26px;
    font-size: 13px;
    letter-spacing: .14em;
  }

  .projects-filters-panel {
    width: min(100vw - 32px, 360px);
    padding: 12px;
    transform: translateY(-8px);
  }

  .projects-filters-panel.is-open {
    display: block;
    transform: translateY(0);
  }

  .projects-filters-panel__header {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .projects-filters-panel__close {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .projects-filter-bar {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 10px 0 2px;
  }

  .projects-filters {
    gap: 7px;
  }

  .projects-filter {
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: .03em;
  }

  .projects-mobile-slider__buttons {
    justify-content: space-between;
  }

  .projects-mobile-slider__arrow {
    width: 46px;
    height: 46px;
  }

  .projects-mobile-slider__dots {
    gap: 8px;
  }

  .projects-mobile-slider__dot {
    width: 11px;
    height: 11px;
  }

  .project-gallery-card img,
  .project-gallery-card__visual {
    aspect-ratio: 16 / 11;
  }

  .project-gallery-card__image--large {
    aspect-ratio: 4 / 3;
  }

  .discord-card,
  .discord-preview__panel {
    border-radius: 18px;
  }

  .discord-preview__panel {
    padding: 20px 16px;
  }

  .discord-preview__avatar {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    font-size: 24px;
  }

  .discord-card__actions .btn,
  .discord-card__actions .project-link,
  .discord-preview__cta {
    width: 100%;
  }

  .projects-filters {
    justify-content: center;
  }

  .social-link {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .hero-actions .btn,
  .hero-actions .project-link,
  .hero-point {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .card,
  .home-card,
  .home-feature,
  .step-card,
  .discord-card,
  .projects-legal-note,
  .contact-item {
    border-radius: 18px;
  }

  .application-modal {
    padding: 14px;
  }

  .application-modal__close {
    top: 12px;
    right: 12px;
  }

  .contact-toast {
    top: 12px;
    right: 12px;
    left: 12px;
  }
}