/* ==========================================================================
   DESIGN SYSTEM — NUIT NUMÉRIQUE
   ========================================================================== */

/* Self-hosted fonts */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url('/assets/fonts/syne-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: fallback;
  src: url('/assets/fonts/outfit-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: optional;
  src: url('/assets/fonts/jetbrainsmono-variable.woff2') format('woff2');
}

:root {
  /* Backgrounds */
  --bg: #060d18;
  --bg-2: #08111f;
  --bg-3: #0c1a2e;

  /* Borders */
  --border: #0f2238;
  --border-2: #162d4a;

  /* Accents */
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --indigo: #6366f1;
  --indigo-dim: #4338ca;

  /* Text */
  --text: #e2e8f0;
  --text-2: #94a3b8;
  --text-3: #475569;
  --white: #ffffff;

  /* Spacing */
  --nav-height: 68px;

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* Hero H1 — Syne 800 */
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section titles homepage — Outfit 700 (NOT Syne) */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 3rem;
}

/* Page titles (technologies/services) — Syne 700-800 */
.page-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Body text */
p {
  margin-bottom: 1rem;
  color: var(--text-2);
}

/* Links */
a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--white);
}

/* Code & labels — JetBrains Mono */
code, .pill, .tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(6, 13, 24, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-logo:hover {
  color: var(--cyan);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
  }

  .nav-link.active::after {
    bottom: 0.5rem;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary,
.btn-secondary,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-cta {
  background: transparent;
  border-color: var(--cyan);
  color: var(--cyan);
  position: relative;
}

.btn-cta:hover {
  background: var(--cyan);
  color: var(--bg);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.btn-icon {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.btn-icon:hover {
  color: var(--white);
}

/* ==========================================================================
   PILLS & TAGS
   ========================================================================== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--cyan);
  transition: all 0.2s ease;
}

.pill:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--border-2);
  background: var(--bg-3);
  transform: translateY(-4px);
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero eyebrow badge */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-2);
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--border-2);
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-family: var(--font-mono);
  color: var(--cyan);
}

.hero-eyebrow-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero H1 — 3-line structure */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-h1 .line-dim {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-2);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-h1 .line-main {
  display: block;
  font-size: 100%
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.hero-h1 .line-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--text-3);
}

.hero-desc {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stack {
  padding-top: 2rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-stack .pills-container {
  justify-content: center;
}

/* Hero background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-orb-1 {
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-orb-2 {
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--bg-3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.service-card p {
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

.service-link::after {
  content: '→';
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: 2rem 0 1rem;
  margin-top: var(--nav-height);
}

.breadcrumb nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-3);
}

.breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.breadcrumb span {
  color: var(--text-2);
}

/* ==========================================================================
   PROJECT FILTERS
   ========================================================================== */

.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */

.project-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.project-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-3);
  overflow: hidden;
}

.project-thumb-inner {
  width: 100%;
  height: 100%;
}

.project-thumb-mock {
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-line {
  height: 8px;
  background: var(--border-2);
  border-radius: 4px;
  width: 60%;
}

.mock-line-short {
  width: 40%;
}

.mock-block {
  height: 100px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 24, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-btn {
  color: var(--cyan);
  font-weight: 500;
  font-size: 1.125rem;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.project-content p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-tag.symfony {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.project-tag.api {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

.project-tag.vue {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.project-tag.saas {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

.project-tag.ia {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
}

.project-tag.wp,
.project-tag.wordpress {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
}

.project-tag.woo,
.project-tag.woocommerce {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), var(--indigo-dim));
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.testimonial-info h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-3);
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-stars {
  color: var(--cyan);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}

/* ==========================================================================
   TECHNOLOGIES SECTION
   ========================================================================== */

.tech-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
}

.tech-card:hover {
  border-color: var(--border-2);
  background: var(--bg-3);
  transform: translateY(-4px);
}

.tech-card::after {
  content: '→';
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--cyan);
  font-size: 1.25rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s ease;
}

.tech-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.tech-logo {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid;
}

.tech-logo.symfony {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.3);
}

.tech-logo.vue {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.3);
}

.tech-logo.api {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  border-color: rgba(34, 211, 238, 0.3);
}

.tech-logo.stripe {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
}

.tech-logo.wordpress {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  border-color: rgba(34, 211, 238, 0.3);
}

.tech-logo.ia {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.3);
}

.tech-logo.docker {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.tech-logo.saas {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
}

.tech-logo.reprise {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}

.tech-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.tech-card p {
  color: var(--text-2);
  font-size: 0.9375rem;
  margin: 0;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.cta-band h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--text-2);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 560px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: slideUp 0.4s 1s ease both;
  display: flex;
  gap: 1rem;
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.cookie-close:hover {
  color: var(--white);
}

.cookie-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  padding-right: 1.5rem;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-desc a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cookie-accept,
.cookie-refuse {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg);
}

.cookie-accept:hover {
  background: var(--white);
  border-color: var(--white);
}

.cookie-refuse {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text);
}

.cookie-refuse:hover {
  border-color: var(--text-3);
  color: var(--text);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .cookie-icon {
    display: none;
  }

  .cookie-text {
    padding-right: 2rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col .footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-2);
  font-size: 0.875rem;
  margin: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, 20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}
