:root {
  --bg: #07030d;
  --bg-soft: #12081c;
  --panel: rgba(18, 10, 28, 0.88);
  --panel-strong: rgba(28, 16, 43, 0.96);
  --line: rgba(217, 176, 255, 0.14);
  --text: #fbf7ff;
  --muted: #bfb2d7;
  --accent: #b46cff;
  --accent-strong: #8c46e2;
  --accent-soft: #ead3ff;
  --project-green: #72f0a1;
  --project-green-strong: #2ea864;
  --project-green-soft: #d9ffe8;
  --project-blue: #6cb8ff;
  --project-blue-strong: #2d73e5;
  --project-blue-soft: #d9ebff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(168, 102, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #11081b 0%, var(--bg) 55%, #040207 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 24%, rgba(208, 140, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 76%, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px);
  background-size: 220px 220px, 280px 280px, 320px 320px;
  opacity: 0.85;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.background-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(110px);
  z-index: -1;
  opacity: 0.32;
}

.background-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(174, 93, 255, 0.42);
}

.background-glow-right {
  top: 18rem;
  right: -12rem;
  background: rgba(125, 66, 226, 0.28);
}

.hero {
  position: relative;
  padding: 5rem 0 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    linear-gradient(90deg, rgba(7, 5, 12, 0.82) 0%, rgba(7, 5, 12, 0.64) 42%, rgba(7, 5, 12, 0.42) 100%),
    url("../../assets/media/accueil/hero.png") center center / cover no-repeat;
  opacity: 0.44;
  filter: blur(3px) saturate(0.9);
  transform: translateX(-50%) scale(1.01);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 50%, rgba(196, 126, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 5, 12, 0.1), rgba(7, 5, 12, 0.22));
  pointer-events: none;
  z-index: -1;
}

.hero-badge,
.section-tag,
.mini-card-tag,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(221, 190, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 1.25rem 0 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero h1 span {
  display: block;
}

.hero-accent {
  background: linear-gradient(135deg, #f0d4ff 0%, #c881ff 38%, #8c46e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.server-copy p,
.contact-copy p,
.mini-card p,
.product-card p,
.pricing-card p,
.server-stats span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 640px;
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 18px 40px rgba(140, 70, 226, 0.34);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-dark {
  background: rgba(11, 7, 17, 0.86);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-search-card,
.mini-card,
.product-card,
.pricing-card,
.server-banner,
.contact-form {
  background: linear-gradient(180deg, rgba(30, 18, 46, 0.88), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-search-card {
  margin: 2.4rem 0 0;
  max-width: 760px;
  padding: 1rem 1rem 1rem 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-search-copy {
  text-align: left;
}

.hero-search-copy span {
  display: block;
  color: var(--accent-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

.hero-search-copy strong {
  font-size: 1rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.mini-card,
.product-card,
.pricing-card,
.contact-form {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.mini-card {
  min-height: 230px;
  text-align: left;
}

.mini-card h2,
.product-card h3,
.pricing-card h3 {
  margin: 1rem 0 0.8rem;
}

.visual-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.visual-card-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 6, 16, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.visual-card-overlay span {
  display: block;
  color: var(--accent-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
}

.trust-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip div {
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip strong,
.server-stats strong {
  display: block;
  margin-bottom: 0.45rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 5rem 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.product-card {
  min-height: 260px;
}

.product-card-featured {
  background:
    radial-gradient(circle at top right, rgba(180, 108, 255, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(36, 20, 54, 0.95), rgba(12, 8, 18, 0.96));
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(180, 108, 255, 0.16);
  color: var(--accent-soft);
  font-weight: 800;
}

.product-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-soft);
  font-weight: 700;
}

.showcase-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-list {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.pricing-preview {
  display: grid;
  gap: 1rem;
}

.pricing-card strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 2rem;
}

.pricing-card-highlight {
  background:
    radial-gradient(circle at top, rgba(180, 108, 255, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(39, 22, 59, 0.96), rgba(12, 8, 18, 0.96));
}

.server-banner {
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.server-stats {
  display: grid;
  gap: 1rem;
}

.server-stats div {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(180, 108, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 108, 255, 0.12);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--accent-soft);
  font-weight: 700;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-orbit {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 108, 255, 0.2), transparent 70%);
  filter: blur(20px);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(226, 196, 255, 0.12);
}

.orbit-ring-large {
  inset: 4%;
}

.orbit-ring-small {
  inset: 18%;
}

.orbit-center {
  position: relative;
  z-index: 4;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(208, 145, 255, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(36, 20, 54, 0.95), rgba(10, 6, 16, 0.98));
  border: 1px solid rgba(234, 211, 255, 0.16);
  box-shadow: 0 0 70px rgba(140, 70, 226, 0.32);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orbit-center img {
  position: absolute;
  top: 48%;
  left: 54%;
  z-index: 6;
  width: 320px;
  height: 320px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 48px rgba(180, 108, 255, 0.5));
}

.orbit-path {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-path-two {
  inset: 14%;
  animation-direction: reverse;
  animation-duration: 12s;
}

.orbit-path-three {
  inset: 9%;
  animation-duration: 15s;
}

.orbit-project {
  position: absolute;
  top: -28px;
  left: 50%;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 13, 34, 0.88), rgba(10, 6, 16, 0.96));
  border: 1px solid rgba(234, 211, 255, 0.14);
  box-shadow:
    0 0 24px rgba(180, 108, 255, 0.22),
    0 18px 36px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: spin 18s linear infinite reverse;
}

.orbit-project-large {
  width: 88px;
  height: 88px;
  margin-left: -44px;
}

.orbit-project-small {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  animation-duration: 12s;
  animation-direction: normal;
}

.orbit-project-medium {
  width: 84px;
  height: 84px;
  margin-left: -42px;
  top: auto;
  bottom: -26px;
  animation-duration: 15s;
}

.orbit-project img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(180, 108, 255, 0.2));
}


@media (max-width: 1100px) {
  .hero-cards,
  .trust-strip,
  .section-heading,
  .product-grid,
  .showcase-layout,
  .server-banner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-position: center;
    opacity: 0.36;
  }

  .hero-orbit {
    margin: 1rem auto 0;
    width: min(100%, 560px);
  }

  .orbit-center img {
    width: 270px;
    height: 270px;
  }

  .orbit-project-large {
    width: 80px;
    height: 80px;
    margin-left: -40px;
  }

  .orbit-project-small {
    width: 72px;
    height: 72px;
    margin-left: -36px;
  }

  .orbit-project-medium {
    width: 76px;
    height: 76px;
    margin-left: -38px;
    bottom: -24px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 3.5rem;
    min-height: calc(100vh - 88px);
    min-height: calc(100dvh - 88px);
  }

  .hero::before {
    opacity: 0.3;
    filter: blur(4px) saturate(0.85);
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .orbit-center img {
    width: 205px;
    height: 205px;
  }

  .orbit-project-large {
    width: 68px;
    height: 68px;
    margin-left: -34px;
    top: -24px;
  }

  .orbit-project-small {
    width: 62px;
    height: 62px;
    margin-left: -31px;
    top: -22px;
  }

  .orbit-project-medium {
    width: 66px;
    height: 66px;
    margin-left: -33px;
    bottom: -20px;
  }

  .mini-card,
  .product-card,
  .pricing-card,
  .contact-form,
  .server-banner {
    padding: 1.25rem;
  }

  .orbit-center {
    width: 140px;
    height: 140px;
  }

  .orbit-center img {
    width: 360px;
    height: 360px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── main bottom breathing room ─── */
main {
  padding-bottom: 6rem;
}

/* ─── section-lead (paragraph in section-heading) ─── */
.section-heading p {
  font-size: 1.05rem;
}

/* ─── SERVICES ─── */
.services-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(30, 18, 46, 0.88), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 108, 255, 0.28);
  box-shadow: 0 20px 50px rgba(100, 40, 180, 0.16);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(180, 108, 255, 0.1);
  border: 1px solid rgba(180, 108, 255, 0.18);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.3rem;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 0.95rem;
}

/* ─── PROJECTS ─── */
.projects-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.project-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card-inner {
  padding: 2rem;
}

.project-card-featured {
  background:
    radial-gradient(circle at top right, rgba(114, 240, 161, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(16, 30, 20, 0.96), rgba(7, 14, 10, 0.98));
  border-color: rgba(114, 240, 161, 0.16);
  box-shadow: 0 20px 60px rgba(10, 50, 25, 0.22);
}

.project-card-featured:hover {
  border-color: rgba(114, 240, 161, 0.32);
  box-shadow: 0 30px 80px rgba(10, 60, 28, 0.30);
}

.project-card-soon {
  background: linear-gradient(180deg, rgba(20, 13, 32, 0.88), rgba(10, 7, 16, 0.96));
}

.project-card-teaser-red {
  background:
    radial-gradient(circle at top right, rgba(255, 86, 86, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(40, 13, 17, 0.96), rgba(16, 6, 9, 0.98));
  border-color: rgba(255, 99, 99, 0.2);
  box-shadow: 0 20px 60px rgba(65, 12, 18, 0.28);
}

.project-card-teaser-blue {
  background:
    radial-gradient(circle at top right, rgba(108, 184, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(12, 24, 44, 0.96), rgba(6, 11, 20, 0.98));
  border-color: rgba(108, 184, 255, 0.2);
  box-shadow: 0 20px 60px rgba(18, 46, 98, 0.28);
}

.project-card-teaser-red:hover {
  border-color: rgba(255, 99, 99, 0.34);
  box-shadow: 0 30px 80px rgba(85, 14, 22, 0.34);
}

.project-card-teaser-blue:hover {
  border-color: rgba(108, 184, 255, 0.34);
  box-shadow: 0 30px 80px rgba(22, 58, 126, 0.34);
}

.project-label {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(114, 240, 161, 0.1);
  border: 1px solid rgba(114, 240, 161, 0.2);
  color: var(--project-green);
  margin-bottom: 1.4rem;
}

.project-label-soon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.project-label-red {
  background: rgba(255, 91, 91, 0.1);
  border-color: rgba(255, 91, 91, 0.22);
  color: #ff8d8d;
}

.project-label-blue {
  background: rgba(108, 184, 255, 0.1);
  border-color: rgba(108, 184, 255, 0.22);
  color: var(--project-blue-soft);
}

.project-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 14px rgba(114, 240, 161, 0.26));
}

.project-logo-red {
  filter: drop-shadow(0 6px 16px rgba(255, 91, 91, 0.26));
}

.project-logo-blue {
  filter: drop-shadow(0 6px 16px rgba(108, 184, 255, 0.28));
}

.project-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.project-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.project-tags span {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(114, 240, 161, 0.07);
  border: 1px solid rgba(114, 240, 161, 0.14);
  color: var(--project-green-soft);
}

.project-tags-red span {
  background: rgba(255, 91, 91, 0.08);
  border-color: rgba(255, 91, 91, 0.16);
  color: #ffc1c1;
}

.project-tags-blue span {
  background: rgba(108, 184, 255, 0.08);
  border-color: rgba(108, 184, 255, 0.16);
  color: var(--project-blue-soft);
}

.project-cta {
  color: var(--project-green);
  font-weight: 700;
  font-size: 0.95rem;
}

.project-card-teaser-red .project-cta {
  color: #ff8d8d;
}

.project-card-teaser-blue .project-cta {
  color: var(--project-blue);
}

.project-soon-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 1rem;
}

.project-discord-link {
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.project-discord-link:hover {
  color: var(--accent);
}

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.about-copy .section-tag {
  margin-bottom: 0;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 1.1rem 0 1.4rem;
}

.about-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-stats strong {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f0d4ff 0%, #c881ff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stats span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-card {
  background: linear-gradient(180deg, rgba(30, 18, 46, 0.88), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.4rem;
}

.about-card-header img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(180, 108, 255, 0.28));
  flex-shrink: 0;
}

.about-card-header strong {
  display: block;
  font-weight: 800;
  margin-bottom: 0.22rem;
}

.about-card-header span {
  font-size: 0.84rem;
  color: var(--muted);
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-values li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(114, 240, 161, 0.1);
  border: 1px solid rgba(114, 240, 161, 0.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2372f0a1' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ─── DISCORD CTA ─── */
.discord-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 3.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(114, 89, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(22, 14, 42, 0.96), rgba(9, 6, 16, 0.98));
  border: 1px solid rgba(180, 108, 255, 0.12);
  box-shadow: var(--shadow);
}

.discord-copy .section-tag {
  margin-bottom: 0;
}

.discord-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 1rem 0 1.2rem;
}

.discord-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 2rem;
  font-size: 1rem;
}

.discord-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.discord-icon {
  width: 148px;
  height: 148px;
  border-radius: 38px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.16);
  display: grid;
  place-items: center;
  color: rgba(114, 137, 218, 0.55);
}

.discord-icon svg {
  width: 72px;
  height: 72px;
}

/* ─── RESPONSIVE — new sections ─── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .discord-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .discord-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .discord-banner {
    padding: 1.75rem;
  }
}
