      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --violet: #7c3aed;
        --violet-light: #a78bfa;
        --cyan: #06b6d4;
        --cyan-light: #67e8f9;
        --bg: #080810;
        --bg-2: #0d0d1a;
        --surface: rgba(255, 255, 255, 0.04);
        --surface-hover: rgba(255, 255, 255, 0.07);
        --border: rgba(255, 255, 255, 0.08);
        --border-light: rgba(255, 255, 255, 0.12);
        --text: #f0f0ff;
        --text-muted: rgba(240, 240, 255, 0.45);
        --text-subtle: rgba(240, 240, 255, 0.25);
      }
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 90px;
        background: #080810;
        overflow-x: hidden;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        width: 100%;
        max-width: 100vw;
      }
      .bg-grid {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(
          ellipse 80% 80% at 50% 50%,
          black 30%,
          transparent 100%
        );
      }
      .bg-orb {
        position: fixed;
        pointer-events: none;
        border-radius: 50%;
        filter: blur(100px);
        z-index: 0;
      }
      .bg-orb-1 {
        width: 700px;
        height: 700px;
        top: -200px;
        left: -200px;
        background: radial-gradient(
          circle,
          rgba(124, 58, 237, 0.12) 0%,
          transparent 70%
        );
        animation: orbFloat 20s ease-in-out infinite;
      }
      .bg-orb-2 {
        width: 500px;
        height: 500px;
        bottom: -100px;
        right: -100px;
        background: radial-gradient(
          circle,
          rgba(6, 182, 212, 0.1) 0%,
          transparent 70%
        );
        animation: orbFloat 25s ease-in-out infinite reverse;
      }
      @keyframes orbFloat {
        0%,
        100% {
          transform: translate(0, 0);
        }
        33% {
          transform: translate(40px, -30px);
        }
        66% {
          transform: translate(-20px, 20px);
        }
      }
      .wrap {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
        padding: 0 1.25rem;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1.25rem 0;
        border-bottom: 1px solid transparent;
        transition: all 0.4s ease;
      }
      nav.scrolled {
        background: rgba(8, 8, 16, 0.85);
        backdrop-filter: blur(20px);
        border-bottom-color: var(--border);
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
      }
      .nav-logo img {
        height: 32px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
      }
      .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s;
        letter-spacing: 0.02em;
      }
      .nav-links a:hover {
        color: var(--text);
      }
      .nav-cta {
        background: linear-gradient(135deg, var(--violet), #5b21b6) !important;
        color: white !important;
        padding: 8px 20px !important;
        border-radius: 8px;
        font-weight: 500 !important;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
        transition:
          opacity 0.2s,
          transform 0.2s !important;
      }
      .nav-cta:hover {
        opacity: 0.9 !important;
        transform: translateY(-1px) !important;
        color: white !important;
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 140px 0 100px;
      }
      .hero-content {
        max-width: 780px;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(124, 58, 237, 0.12);
        border: 1px solid rgba(124, 58, 237, 0.25);
        border-radius: 100px;
        padding: 6px 14px 6px 8px;
        font-size: 13px;
        color: var(--violet-light);
        margin-bottom: 2.5rem;
        animation: fadeUp 0.6s ease both;
      }
      .hero-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--violet-light);
        animation: pulse 2s ease infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(0.8);
        }
      }
      h1 {
        font-family: "Outfit", sans-serif;
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.015em;
        margin-bottom: 1.75rem;
        animation: fadeUp 0.6s ease 0.1s both;
      }
      .h1-line {
        display: block;
      }
      .h1-gradient {
        background: linear-gradient(
          90deg,
          var(--violet-light),
          var(--cyan-light)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero-desc {
        font-size: 1.125rem;
        color: var(--text-muted);
        max-width: 560px;
        line-height: 1.75;
        margin-bottom: 3rem;
        font-weight: 300;
        animation: fadeUp 0.6s ease 0.2s both;
      }
      .hero-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        animation: fadeUp 0.6s ease 0.3s both;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--violet), #4f46e5);
        color: white;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 500;
        font-size: 15px;
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.35);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
      }
      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text-muted);
        text-decoration: none;
        padding: 14px 24px;
        border-radius: 10px;
        font-weight: 400;
        font-size: 15px;
        border: 1px solid var(--border);
        transition:
          color 0.2s,
          border-color 0.2s;
      }
      .btn-secondary:hover {
        color: var(--text);
        border-color: var(--border-light);
      }
      .hero-refs {
        margin-top: 5rem;
        animation: fadeUp 0.6s ease 0.4s both;
      }
      .hero-refs-label {
        font-size: 12px;
        color: var(--text-subtle);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 1.25rem;
      }
      .hero-refs-logos {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        flex-wrap: wrap;
      }
      .ref-logo {
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 15px;
        color: var(--text-subtle);
        letter-spacing: 0.08em;
        transition: color 0.2s;
      }
      .ref-logo:hover {
        color: var(--text-muted);
      }
      .ref-logo-accent {
        color: rgba(167, 139, 250, 0.4);
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* SECTIONS */
      section {
        padding: 120px 0;
        position: relative;
        z-index: 1;
      }
      .section-label {
        font-size: 12px;
        color: var(--cyan);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 500;
        margin-bottom: 1rem;
      }
      .section-title {
        font-family: "Outfit", sans-serif;
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 1.25rem;
      }
      .section-desc {
        font-size: 1.0625rem;
        color: var(--text-muted);
        max-width: 520px;
        line-height: 1.75;
        font-weight: 300;
      }

      /* SERVICES */
      .services-header {
        margin-bottom: 4rem;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.25px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
      }
      .service-card {
        background: var(--bg-2);
        padding: 2.25rem 2rem;
        transition: background 0.3s;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(124, 58, 237, 0.05),
          transparent
        );
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
      }
      .service-card:hover {
        background: rgba(13, 13, 26, 0.8);
      }
      .service-card:hover::before {
        opacity: 1;
      }
      .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
      }
      .icon-violet {
        background: rgba(124, 58, 237, 0.15);
        border: 1px solid rgba(124, 58, 237, 0.25);
        color: #a78bfa;
      }
      .icon-cyan {
        background: rgba(6, 182, 212, 0.12);
        border: 1px solid rgba(6, 182, 212, 0.2);
        color: #67e8f9;
      }
      .icon-indigo {
        background: rgba(99, 102, 241, 0.12);
        border: 1px solid rgba(99, 102, 241, 0.2);
        color: #a5b4fc;
      }
      .service-card h3 {
        font-family: "Outfit", sans-serif;
        font-weight: 600;
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
        letter-spacing: -0.01em;
      }
      .service-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ABOUT */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
      }
      .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
      }
      .stat-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.5rem;
        backdrop-filter: blur(10px);
      }
      .stat-number {
        font-family: "Outfit", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(
          90deg,
          var(--violet-light),
          var(--cyan-light)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 4px;
      }
      .stat-label {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 300;
      }
      .about-visual {
        position: relative;
        height: 420px;
      }
      .glass-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 1.5rem;
      }
      .glass-card-main {
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(
          135deg,
          rgba(124, 58, 237, 0.08),
          rgba(6, 182, 212, 0.05)
        );
      }
      .glass-card-main-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
      }
      .glass-card-main h4 {
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
      }
      .glass-card-main p {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 300;
      }
      .glass-card-float-1 {
        bottom: -20px;
        left: -30px;
        width: 160px;
        background: rgba(124, 58, 237, 0.1);
        border-color: rgba(124, 58, 237, 0.2);
      }
      .glass-card-float-2 {
        top: -20px;
        right: -20px;
        width: 140px;
        background: rgba(6, 182, 212, 0.08);
        border-color: rgba(6, 182, 212, 0.15);
      }
      .float-label {
        font-size: 11px;
        color: var(--text-subtle);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      .float-value {
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 15px;
      }

      /* CONTACT */
      .contact-wrap {
        max-width: 660px;
        margin: 0 auto;
        text-align: center;
      }
      .contact-wrap .section-desc {
        margin: 0 auto 3rem;
      }
      .contact-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 3rem;
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
      }
      .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--violet-light),
          var(--cyan-light),
          transparent
        );
      }
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .form-group label {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 400;
      }
      .form-group input,
      .form-group textarea,
      .form-group select {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 11px 14px;
        color: var(--text);
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        transition:
          border-color 0.2s,
          background 0.2s;
        outline: none;
        width: 100%;
      }
      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: rgba(124, 58, 237, 0.5);
        background: rgba(124, 58, 237, 0.05);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 100px;
      }
      .form-group select option {
        background: #1a1a2e;
      }
      .btn-submit {
        width: 100%;
        background: linear-gradient(135deg, var(--violet), #4f46e5);
        color: white;
        border: none;
        cursor: pointer;
        padding: 14px 28px;
        border-radius: 10px;
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
        font-size: 15px;
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        margin-top: 0.5rem;
      }
      .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
      }

      /* FOOTER */
      footer {
        border-top: 1px solid var(--border);
        padding: 2.5rem 0;
        position: relative;
        z-index: 1;
      }
      .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-logo img {
        height: 24px;
        width: auto;
        opacity: 0.6;
        transition: opacity 0.2s;
      }
      .footer-logo img:hover {
        opacity: 1;
      }
      .footer-copy {
        font-size: 13px;
        color: var(--text-subtle);
        font-weight: 300;
      }
      .footer-links {
        display: flex;
        gap: 2rem;
      }
      .footer-links a {
        font-size: 13px;
        color: var(--text-subtle);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--text-muted);
      }

      /* REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 768px) {
        /* NAV */
        .nav-links {
          display: none;
        }
        .nav-logo img {
          height: 26px;
        }

        /* HERO */
        .hero {
          padding: 110px 0 70px;
          min-height: auto;
        }
        .hero-content {
          max-width: 100%;
          width: 100%;
        }
        h1 {
          font-size: 2rem;
          letter-spacing: -0.015em;
          word-break: break-word;
        }
        .hero-desc {
          font-size: 0.9375rem;
          margin-bottom: 2rem;
          max-width: 100%;
        }
        .hero-actions {
          flex-direction: column;
          align-items: stretch;
          gap: 0.75rem;
        }
        .btn-primary,
        .btn-secondary {
          text-align: center;
          justify-content: center;
          padding: 13px 16px;
          font-size: 14px;
        }
        .hero-refs {
          margin-top: 2.5rem;
        }
        .hero-refs-logos {
          gap: 0.75rem;
          flex-wrap: wrap;
        }
        .ref-logo {
          font-size: 12px;
        }

        /* SECTIONS */
        section {
          padding: 60px 0;
        }
        .section-title {
          font-size: 1.6rem;
          word-break: break-word;
        }
        .section-desc {
          max-width: 100%;
          font-size: 0.9375rem;
        }

        /* SERVICES */
        .services-grid {
          grid-template-columns: 1fr;
        }
        .services-header {
          margin-bottom: 2rem;
        }

        /* ABOUT */
        .about-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .about-visual {
          display: none;
        }
        .about-stats {
          grid-template-columns: 1fr 1fr;
          gap: 0.75rem;
          margin-top: 2rem;
        }
        .stat-card {
          padding: 1rem;
        }
        .stat-number {
          font-size: 1.4rem;
        }
        .stat-label {
          font-size: 12px;
        }

        /* CONTACT */
        .contact-card {
          padding: 1.5rem 1rem;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .contact-wrap .section-desc {
          margin-bottom: 1.5rem;
        }

        /* FOOTER */
        .footer-inner {
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 0.75rem;
        }
        .footer-links {
          justify-content: center;
          gap: 1.25rem;
        }
        .footer-logo img {
          height: 20px;
        }

        /* MENTIONS */
        #mentions-overlay > div {
          padding: 4rem 1rem 3rem;
        }
      }

      @media (max-width: 400px) {
        h1 {
          font-size: 1.75rem;
        }
        .hero-badge {
          font-size: 11px;
          padding: 5px 10px 5px 7px;
        }
        .about-stats {
          grid-template-columns: 1fr;
        }
        .stat-number {
          font-size: 1.6rem;
        }
      }

/* ===== Internal service links (home cards) ===== */
.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--violet-light);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover {
  color: var(--cyan);
}

/* ===== FAQ section ===== */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-2);
  padding: 1.5rem 1.75rem;
}
.faq-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.faq-item p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== Service page (article) ===== */
.service-page {
  padding-top: 9rem;
}
.service-page h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 820px;
}
.service-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.service-body {
  max-width: 760px;
}
.service-body h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.75rem 0 1.1rem;
}
.service-body h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.6rem;
}
.service-body p {
  font-size: 1.0125rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.service-body ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.service-body li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 1.0125rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}
.service-body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--violet-light);
  font-weight: 700;
}
.service-cta {
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(79, 70, 229, 0.06));
}
.service-cta h2 {
  margin-top: 0;
}
.related-services {
  max-width: 760px;
  margin-top: 3.5rem;
}
.related-services h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.related-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.related-services-grid a {
  display: inline-flex;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.related-services-grid a:hover {
  border-color: var(--violet-light);
  color: var(--violet-light);
}

/* ===== Labo / projets ===== */
.labo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.labo-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.labo-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}
.labo-figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #14142a, #0d0d1a);
  border-bottom: 1px solid var(--border);
}
.labo-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.labo-card-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.labo-card-body h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.labo-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}
.labo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.labo-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.labo-card--soft {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
  justify-content: center;
}
.labo-card--soft .labo-card-body {
  padding: 2.25rem 1.6rem;
}
