:root {
  --orange: #ff4b00;
  --orange-light: #ff6a24;
  --orange-dark: #c83600;
  --black: #050505;
  --panel: rgba(16, 16, 18, 0.72);
  --panel-strong: rgba(10, 10, 11, 0.9);
  --white: #ffffff;
  --muted: #c8c8cc;
  --line: rgba(255,255,255,.14);
  --radius: 22px;
  --shadow: 0 26px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -32px;
  z-index: -3;
  background: url("serveurs.webp") center 42% / cover no-repeat;
  filter: blur(5px) saturate(.78) contrast(1.06) brightness(.56);
  transform: scale(1.04);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 44%, rgba(255,75,0,.19), transparent 34%),
    linear-gradient(90deg, rgba(2,2,3,.98) 0%, rgba(3,3,4,.92) 35%, rgba(4,4,5,.68) 64%, rgba(3,3,4,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.78));
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: clamp(180px, 18vw, 250px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.5));
}

.status-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8,8,9,.55);
  backdrop-filter: blur(15px);
  color: #f3f3f4;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-mini::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,75,0,.13), 0 0 18px rgba(255,75,0,.75);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  padding: 32px 0 26px;
}

.hero-copy { max-width: 820px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f2f2f3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255,75,0,.6);
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
  max-width: 900px;
}
h1 span { display: block; }
h1 .accent {
  color: var(--orange);
  text-shadow: 0 8px 32px rgba(255,75,0,.16);
}

.intro {
  margin: 25px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}
.intro strong { color: #fff; font-weight: 700; }

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 13px 28px rgba(255,75,0,.22);
}
.btn-secondary {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.btn svg { width: 18px; height: 18px; }

.launch-card {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,8,9,.1), rgba(8,8,9,.88)),
    url("serveurs.webp") 72% center / cover no-repeat;
  box-shadow: var(--shadow);
}
.launch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 30%, rgba(255,75,0,.28), transparent 36%);
}
.launch-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  pointer-events: none;
}
.launch-content {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(5,5,6,.92) 28%);
}
.launch-label {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.launch-card h2 {
  margin: 9px 0 10px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.launch-card p {
  margin: 0;
  color: #c7c7ca;
  line-height: 1.55;
  font-size: 14px;
}
.pulse-line {
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.pulse-line span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(255,75,0,.55);
  animation: scan 3.6s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { transform: translateX(-18%); }
  50% { transform: translateX(190%); }
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 2px 0 26px;
}
.service-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(16px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,75,0,.46);
  background: rgba(20,18,18,.82);
}
.icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--orange-light);
  border: 1px solid rgba(255,75,0,.34);
  background: rgba(255,75,0,.08);
}
.icon-wrap svg { width: 24px; height: 24px; }
.service-card h3 {
  margin: 1px 0 6px;
  font-size: 15px;
  letter-spacing: .015em;
}
.service-card p {
  margin: 0;
  color: #bfc0c4;
  font-size: 13px;
  line-height: 1.5;
}

.footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.footer-panel p {
  margin: 0;
  color: #bdbdc1;
  font-size: 12px;
  line-height: 1.5;
}
.footer-panel strong { color: #fff; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.footer-contact svg { color: var(--orange); width: 18px; height: 18px; }

.reveal { animation: reveal .72s cubic-bezier(.2,.7,.2,1) both; }
.reveal-delay { animation-delay: .11s; }
.reveal-delay-2 { animation-delay: .2s; }
@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 25px; }
  .hero-copy { max-width: none; }
  .launch-card { min-height: 270px; align-self: auto; background-position: center 45%; }
  .services { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { padding-top: 18px; align-items: flex-start; }
  .brand img { width: 165px; }
  .status-mini { padding: 8px 10px; font-size: 10px; }
  .hero { padding: 20px 0 22px; }
  h1 { font-size: clamp(46px, 15.2vw, 70px); line-height: .9; }
  .intro { font-size: 16px; line-height: 1.55; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .launch-card { min-height: 250px; }
  .services { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .footer-panel { align-items: flex-start; flex-direction: column; }
  .footer-contact { white-space: normal; }
}

@media (max-width: 430px) {
  .topbar { gap: 10px; }
  .brand img { width: 145px; }
  .status-mini { max-width: 125px; text-align: left; line-height: 1.25; }
  .launch-content { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
