:root {
  --page: #050505;
  --paper: #080b0f;
  --paper-2: #10151c;
  --ink: #f7f4ee;
  --muted: #c8c2b8;
  --orange: #ff8500;
  --orange-2: #ffb45d;
  --mint: #23d27d;
  --mint-soft: #082018;
  --dark: #090b0c;
  --line: rgba(255, 133, 0, 0.5);
  --radius: 22px;
  --gap: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 133, 0, 0.24), transparent 26rem),
    radial-gradient(circle at 16% 86%, rgba(35, 210, 125, 0.1), transparent 28rem),
    var(--page);
  color: var(--ink);
  font-family: Poppins, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(255, 133, 0, 0.62) 1px, transparent 1.5px),
    linear-gradient(112deg, transparent 0 48%, rgba(255, 133, 0, 0.26) 49% 50%, transparent 51%);
  background-size: 26px 26px, 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

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

h1,
h2,
p {
  margin: 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "nav hero hero metric"
    "nav a b c"
    "side d d contact";
  gap: var(--gap);
  width: min(100vw, 1680px);
  min-height: 100vh;
  margin: 0 auto;
  padding: var(--gap);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 42px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 133, 0, 0.16), transparent 9rem),
    linear-gradient(145deg, rgba(15, 20, 27, 0.96), rgba(4, 5, 7, 0.96));
  border: 1px solid var(--line);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.34s ease, opacity 0.52s ease, box-shadow 0.28s ease;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

.nav-card {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 133, 0, 0.22), transparent 13rem),
    #070707;
  color: var(--ink);
}

.brand-logo {
  display: inline-flex;
  width: fit-content;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-logo span {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.42);
}

.brand-kicker {
  margin-top: 30px;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  font-weight: 900;
  line-height: 1.18;
}

.brand-kicker em {
  color: var(--orange);
  font-style: italic;
}

.side-nav {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--orange);
  color: #080808;
  transform: translateX(3px);
}

.side-nav span {
  font-size: 1.6rem;
}

.hero-card {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 133, 0, 0.28), transparent 11rem),
    radial-gradient(circle at 8% 88%, rgba(255, 133, 0, 0.18), transparent 14rem),
    linear-gradient(145deg, #080808, #111820);
  color: #fff;
}

.hero-card.dark {
  background: var(--dark);
  color: #fff;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--orange);
  font-style: italic;
}

.hero-card p:last-child {
  max-width: 46rem;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-pills i {
  color: var(--orange);
  font-style: normal;
}

.metric-card {
  grid-area: metric;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #fff2df, var(--orange));
}

.metric-card span,
.dark-stat span {
  font-size: 2.4rem;
}

.metric-card strong,
.dark-stat strong,
.price-card strong {
  display: block;
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.metric-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card p,
.dark-stat p {
  margin-top: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.dark-stat {
  grid-area: metric;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.dark-stat strong {
  color: var(--orange);
}

.mockup-card {
  grid-area: a;
  background: #050505;
  border: 1px solid var(--line);
}

.mockup-card::before,
.device-showcase::before,
.brain-card::before,
.commotion-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 133, 0, 0.75) 1px, transparent 1.5px),
    linear-gradient(118deg, transparent 0 48%, rgba(255, 133, 0, 0.3) 49% 50%, transparent 51%);
  background-size: 22px 22px, 62px 62px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.tablet-ui {
  position: absolute;
  left: 7%;
  right: 16%;
  bottom: 14%;
  height: 58%;
  padding: 14px;
  border: 2px solid rgba(255, 133, 0, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 133, 0, 0.1), transparent 34%),
    #080d13;
  box-shadow: 0 0 36px rgba(255, 133, 0, 0.24);
}

.tablet-ui.big {
  left: 8%;
  right: 8%;
  top: 16%;
  bottom: 16%;
  height: auto;
}

.ui-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #dbe7f2;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ui-top b {
  color: var(--orange);
}

.ui-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.8fr);
  grid-template-rows: 66px 1fr 66px;
  gap: 8px;
  height: calc(100% - 24px);
  margin-top: 12px;
}

.ui-panel {
  border-radius: 10px;
  background: #131921;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ui-panel.players {
  grid-row: 1 / 4;
  background: repeating-linear-gradient(180deg, #131921 0 28px, #0d1218 28px 42px);
}

.ui-panel.players::before {
  content: "MES JOUEURS";
  display: block;
  padding: 10px;
  color: #3fb6ff;
  font-size: 0.62rem;
  font-weight: 900;
}

.ui-panel.stat {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.ui-panel.red {
  color: #ff4646;
}

.ui-panel.wide {
  grid-column: 2 / 5;
}

.ui-panel.wide::before {
  content: "JOUEURS   Fatigue  Risque  Douleur  Stress";
  display: block;
  padding: 12px;
  color: #d8e4ee;
  font-size: 0.7rem;
  font-weight: 800;
}

.ui-panel.chart {
  grid-column: 2 / 5;
  background:
    linear-gradient(160deg, transparent 46%, var(--orange) 47% 49%, transparent 50%),
    linear-gradient(20deg, transparent 52%, #3fb6ff 53% 55%, transparent 56%),
    #131921;
}

.phone-ui {
  position: absolute;
  right: 7%;
  bottom: 11%;
  width: 132px;
  min-height: 230px;
  padding: 28px 12px 12px;
  border: 6px solid #252a31;
  border-radius: 28px;
  background: #090b0e;
  box-shadow: 0 0 0 1px rgba(255, 133, 0, 0.9), 0 0 22px rgba(255, 133, 0, 0.28);
}

.phone-ui::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #3a4049;
  transform: translateX(-50%);
}

.phone-ui b {
  color: #ff3c3c;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.phone-ui span {
  display: block;
  height: 32px;
  margin-top: 10px;
  border-radius: 9px;
  background: #171d25;
  border-left: 3px solid var(--orange);
}

.phone-ui.floating {
  right: 14%;
  bottom: 12%;
  transform: rotate(8deg);
}

.feature-card {
  grid-area: b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.area-a {
  grid-area: a;
}

.area-b {
  grid-area: b;
}

.area-c {
  grid-area: c;
}

.side-card {
  grid-area: side;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 133, 0, 0.18), transparent 10rem),
    linear-gradient(145deg, #0b0d0f, #050505);
  color: #fff;
  border: 1px solid rgba(255, 133, 0, 0.22);
}

.side-card > span {
  color: var(--orange);
  font-size: 3rem;
  margin-bottom: auto;
}

.side-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 900;
  line-height: 1.04;
}

.side-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.feature-card h2,
.commotion-mini h2,
.security-tile h2,
.process-card h2,
.data-vault h2,
.contact-big h2,
.contact-band h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.feature-card h2 span,
.flow-card h2,
.process-card h2 span {
  display: inline;
  padding: 4px 10px;
  border-radius: 8px;
  color: #070707;
  background: var(--orange);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.feature-card p,
.security-tile p,
.data-vault p,
.contact-big p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.58;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  color: #fff;
}

.tick-list li::before {
  content: "check_circle";
  margin-right: 10px;
  color: var(--orange);
  font-family: "Material Symbols Outlined";
  vertical-align: middle;
}

.commotion-mini {
  grid-area: c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #080b0d, #101a15);
  color: #fff;
}

.brain-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(68%, 240px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(255, 133, 0, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 192, 0.2), transparent 52%);
}

.brain-orbit::before,
.brain-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(28deg);
}

.brain-orbit::after {
  inset: 34%;
  border-color: rgba(255, 133, 0, 0.5);
}

.brain-orbit span {
  color: var(--mint);
  font-size: clamp(3rem, 6vw, 5rem);
  text-shadow: 0 0 24px rgba(124, 255, 192, 0.72);
}

.brain-orbit.large {
  width: min(72%, 320px);
}

.security-strip {
  grid-area: d;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
  background: #050505;
  color: #fff;
  border: 1px solid var(--line);
}

.security-strip div,
.process-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--orange-2);
  font-weight: 900;
  text-align: center;
}

.contact-band {
  grid-area: contact;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 133, 0, 0.22), transparent 12rem),
    #050505;
  color: #fff;
  border: 1px solid var(--line);
}

.round-actions {
  display: flex;
  gap: 14px;
}

.round-actions a {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #000;
  color: #fff;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #070707;
  font-weight: 900;
}

.hero-lineup {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wire-athlete {
  position: absolute;
  width: 150px;
  height: 210px;
  opacity: 0.78;
  filter: drop-shadow(0 0 14px rgba(255, 133, 0, 0.5));
}

.wire-athlete::before,
.wire-athlete::after {
  content: "";
  position: absolute;
  border: 2px solid var(--orange);
}

.wire-athlete::before {
  width: 40px;
  height: 40px;
  left: 58px;
  top: 8px;
  border-radius: 50%;
}

.wire-athlete::after {
  width: 76px;
  height: 112px;
  left: 36px;
  top: 52px;
  border-radius: 48%;
  background:
    linear-gradient(35deg, transparent 48%, rgba(255, 133, 0, 0.58) 49% 51%, transparent 52%),
    linear-gradient(145deg, transparent 48%, rgba(255, 133, 0, 0.5) 49% 51%, transparent 52%);
}

.athlete-left {
  left: 6%;
  bottom: 9%;
  transform: scaleX(-1) rotate(-8deg);
}

.athlete-right {
  right: 8%;
  top: 10%;
  transform: rotate(8deg);
}

.signal-chart {
  position: absolute;
  right: 8%;
  bottom: 9%;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 86px;
}

.signal-chart i {
  width: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 133, 0, 0.7);
}

.signal-chart i:nth-child(1) { height: 30%; }
.signal-chart i:nth-child(2) { height: 52%; }
.signal-chart i:nth-child(3) { height: 40%; }
.signal-chart i:nth-child(4) { height: 82%; }
.signal-chart i:nth-child(5) { height: 62%; }

.device-showcase {
  grid-area: a;
  background: #050505;
  border: 1px solid var(--line);
}

.process-card {
  grid-area: d;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.flow-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 133, 0, 0.16), transparent 8rem),
    #080b0f;
  color: #fff;
}

.flow-card span {
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-weight: 800;
}

.brain-card {
  grid-area: c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #050505;
  color: #fff;
  border: 1px solid var(--line);
}

.commotion-page .brain-card {
  grid-area: side;
}

.commotion-page .side-card {
  display: none;
}

.security-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.security-tile > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #000;
  color: var(--orange);
  font-size: 2rem;
}

.data-vault {
  grid-area: c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #050505;
  color: #fff;
  border: 1px solid var(--line);
}

.metric-vault,
.metric-price,
.metric-contact {
  grid-area: metric;
}

.vault-shield {
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0, 88% 16%, 82% 70%, 50% 100%, 18% 70%, 12% 16%);
  background: linear-gradient(145deg, var(--orange), #1a1d20);
}

.vault-shield span {
  color: #fff;
  font-size: 4rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.price-card span {
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.hot {
  background: linear-gradient(145deg, #fff1df, var(--orange));
  color: #070707;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.contact-detail > span {
  font-size: 3rem;
  color: var(--orange);
}

.contact-detail h2 {
  font-size: 2rem;
  font-weight: 900;
}

.contact-detail a {
  color: var(--muted);
  font-weight: 800;
}

.contact-big {
  grid-area: c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #050505;
  color: #fff;
  border: 1px solid var(--line);
}

.terrain-page .process-card,
.commotion-page .process-card,
.data-page .process-card,
.offers-page .process-card,
.contact-page .process-card {
  grid-area: d;
}

.terrain-page .contact-band,
.commotion-page .contact-band,
.data-page .contact-band,
.offers-page .contact-band {
  grid-area: contact;
}

.terrain-page .dark-stat,
.commotion-page .dark-stat {
  grid-area: metric;
}

.contact-page .contact-big {
  grid-area: metric;
}

@media (max-width: 1180px) {
  body {
    overflow-y: auto;
  }

  .page-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "nav nav"
      "hero hero"
      "metric a"
      "b c"
      "side d"
      "contact contact";
    min-height: auto;
  }

  .nav-card {
    min-height: auto;
  }

  .side-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .side-nav a {
    min-height: 46px;
  }

  .card {
    min-height: 320px;
  }

  .nav-card,
  .contact-band,
  .security-strip {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "hero"
      "metric"
      "a"
      "b"
      "c"
      "side"
      "d"
      "contact";
    padding: 12px;
    gap: 12px;
  }

  .card {
    min-height: 260px;
    border-radius: 20px;
    padding: 22px;
  }

  .nav-card {
    min-height: auto;
  }

  .side-nav {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-card {
    min-height: 420px;
  }

  .security-strip,
  .process-row {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .round-actions a {
    width: 54px;
    height: 54px;
  }

  .athlete-left,
  .athlete-right,
  .signal-chart {
    opacity: 0.26;
  }
}

/* Poster-style EZTM landing */
.poster-body {
  background: #000;
  color: #f7f4ee;
}

.poster-body::before {
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(255, 132, 0, 0.55) 1px, transparent 1.6px),
    linear-gradient(118deg, transparent 0 48%, rgba(255, 132, 0, 0.24) 49% 50%, transparent 51%);
  background-size: 22px 22px, 58px 58px;
}

.poster-shell {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 58px) 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 132, 0, 0.22), transparent 14rem),
    radial-gradient(circle at 6% 23%, rgba(255, 132, 0, 0.16), transparent 13rem),
    radial-gradient(circle at 92% 24%, rgba(255, 132, 0, 0.16), transparent 13rem),
    #020202;
  border-left: 1px solid rgba(255, 132, 0, 0.18);
  border-right: 1px solid rgba(255, 132, 0, 0.18);
  box-shadow: 0 0 80px rgba(255, 132, 0, 0.12);
}

.poster-shell::before,
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.poster-shell::before {
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255, 132, 0, 0.85) 1px, transparent 1.6px),
    linear-gradient(128deg, transparent 0 48%, rgba(255, 132, 0, 0.34) 49% 50%, transparent 51%);
  background-size: 24px 24px, 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.poster-shell::after {
  inset: 13% -20% auto -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 132, 0, 0.9), transparent);
  box-shadow: 0 0 22px rgba(255, 132, 0, 0.85);
}

.poster-nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 8px;
  border: 1px solid rgba(255, 132, 0, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.poster-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.poster-nav a:hover,
.poster-nav a.active {
  background: #ff8400;
  color: #050505;
}

.poster-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.poster-logo {
  margin: 0;
  color: #ff8400;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 0.78;
  text-shadow: 0 0 16px rgba(255, 132, 0, 0.55), 0 10px 0 rgba(0, 0, 0, 0.45);
}

.poster-title h1 {
  margin-top: 18px;
  max-width: none;
  color: #f6f2eb;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.poster-title h1 span {
  color: #ff8400;
  font-style: normal;
}

.poster-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  color: #d8d2c8;
  font-size: clamp(1.25rem, 2.6vw, 2.25rem);
  font-style: italic;
  line-height: 1.1;
}

.poster-subtitle::before,
.poster-subtitle::after {
  content: "";
  width: min(12vw, 115px);
  height: 2px;
  background: #ff8400;
  box-shadow: 0 0 16px rgba(255, 132, 0, 0.8);
}

.poster-actions {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 5vw, 60px);
  width: 100%;
  transform: translateX(-50%);
}

.poster-actions span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f7f4ee;
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  font-weight: 900;
  text-transform: uppercase;
}

.poster-actions i {
  color: #ff8400;
  font-size: 1.35em;
}

.poster-athlete {
  position: absolute;
  width: 220px;
  height: 330px;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(255, 132, 0, 0.62));
}

.poster-athlete::before,
.poster-athlete::after {
  content: "";
  position: absolute;
  border: 2px solid #ff8400;
}

.poster-athlete::before {
  width: 54px;
  height: 54px;
  top: 12px;
  left: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.45) 0 4px, transparent 5px);
}

.poster-athlete::after {
  width: 104px;
  height: 150px;
  top: 78px;
  left: 54px;
  border-radius: 48%;
  transform: rotate(-16deg);
  background:
    linear-gradient(35deg, transparent 48%, rgba(255, 132, 0, 0.65) 49% 51%, transparent 52%),
    linear-gradient(145deg, transparent 48%, rgba(255, 132, 0, 0.55) 49% 51%, transparent 52%),
    radial-gradient(circle, rgba(255, 132, 0, 0.35) 1px, transparent 2px);
  background-size: auto, auto, 15px 15px;
}

.athlete-female {
  left: -24px;
  top: 54px;
  transform: scaleX(-1) rotate(-8deg);
}

.athlete-male {
  right: -18px;
  top: 62px;
  transform: rotate(8deg);
}

.poster-devices {
  position: relative;
  min-height: 520px;
  margin-top: 18px;
}

.poster-tablet {
  position: absolute;
  left: 9%;
  right: 23%;
  top: 4%;
  min-height: 390px;
  padding: 18px;
  border: 2px solid rgba(255, 132, 0, 0.78);
  border-radius: 30px;
  background: #070b10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 42px rgba(255, 132, 0, 0.26);
}

.tablet-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 8px 12px;
  color: #cfd8df;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.tablet-head b {
  color: #ff4040;
}

.tablet-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.72fr);
  grid-template-rows: 72px 1fr 88px;
  gap: 10px;
  min-height: 320px;
}

.tablet-panel {
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111820;
}

.tablet-panel strong,
.tablet-panel small {
  display: block;
  color: #3fb7ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roster {
  grid-row: 1 / 4;
  padding: 12px;
  background: repeating-linear-gradient(180deg, #111820 0 28px, #0c1118 28px 42px);
}

.roster p {
  padding: 7px 0;
  color: #d3dae0;
  font-size: 0.68rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.score {
  display: grid;
  align-content: center;
  justify-items: center;
  color: #fff;
}

.score b {
  font-size: 2.35rem;
  line-height: 1;
}

.score.alert b {
  color: #ff4040;
}

.players-state {
  grid-column: 2 / 4;
  padding: 12px;
}

.players-state p {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  color: #cdd5dd;
  font-size: 0.78rem;
}

.players-state span {
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(255, 132, 0, 0.18);
  color: #ffb45d;
  font-weight: 800;
}

.recovery {
  padding: 12px;
}

.recovery i {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 24px 3px 0 0;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: #ff8400;
  border-radius: 50%;
}

.relation-chart {
  grid-column: 2 / 5;
  padding: 12px;
  background:
    linear-gradient(160deg, transparent 48%, #ff8400 49% 51%, transparent 52%),
    linear-gradient(24deg, transparent 52%, #3fb7ff 53% 55%, transparent 56%),
    #111820;
}

.poster-phone {
  position: absolute;
  z-index: 4;
  width: 178px;
  min-height: 342px;
  padding: 34px 14px 16px;
  border: 7px solid #252a31;
  border-radius: 32px;
  background: #090b0e;
  box-shadow: 0 0 0 1px rgba(255, 132, 0, 0.78), 0 0 32px rgba(255, 132, 0, 0.25);
}

.poster-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: #363b43;
  transform: translateX(-50%);
}

.poster-phone b {
  display: block;
  color: #ff4040;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.poster-phone p {
  margin: 14px 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.poster-phone span {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border-radius: 11px;
  background: #171c23;
  border-left: 3px solid #ff8400;
  color: #cfd8df;
  font-size: 0.65rem;
}

.phone-left {
  left: 1%;
  bottom: 0;
  transform: rotate(-7deg);
}

.phone-right {
  right: 4%;
  top: 12%;
  transform: rotate(6deg);
}

.platform-title {
  margin-top: 34px;
  text-align: center;
}

.platform-title h2 {
  color: #f7f4ee;
  font-size: clamp(2.1rem, 5.4vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.platform-title h2 span {
  color: #ff8400;
  font-style: normal;
}

.platform-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 32px auto 0;
}

.platform-checks p {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #f7f4ee;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

.platform-checks i {
  color: #ff8400;
  font-weight: 900;
}

.poster-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border: 1px solid rgba(255, 132, 0, 0.58);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.poster-benefits article {
  min-height: 250px;
  padding: clamp(22px, 4vw, 42px);
  text-align: center;
  border-right: 1px solid rgba(255, 132, 0, 0.42);
}

.poster-benefits article:last-child {
  border-right: 0;
}

.poster-benefits span {
  color: #ff8400;
  font-size: 3.4rem;
}

.poster-benefits h3 {
  margin: 18px 0 12px;
  color: #ff8400;
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.poster-benefits p {
  color: #d8d2c8;
  line-height: 1.55;
}

.poster-security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255, 132, 0, 0.58);
  border-radius: 22px;
  overflow: hidden;
}

.poster-security div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 16px;
  align-items: center;
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(255, 132, 0, 0.42);
}

.poster-security div:last-child {
  border-right: 0;
}

.poster-security span {
  grid-row: span 2;
  color: #ff8400;
  font-size: 3rem;
}

.poster-security b {
  color: #ffb45d;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.poster-security p {
  color: #f7f4ee;
  text-transform: uppercase;
}

.poster-footer {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 132, 0, 0.7);
}

.app-mark {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.app-mark span {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background:
    radial-gradient(circle, transparent 0 24%, #f5dd27 25% 28%, transparent 29%),
    conic-gradient(from 0deg, #f5dd27 0 12%, transparent 12% 22%, #f5dd27 22% 35%, transparent 35% 100%),
    #111;
  box-shadow: 0 0 22px rgba(245, 221, 39, 0.18);
}

.app-mark b {
  color: #f7f4ee;
  font-size: 1.35rem;
  font-weight: 500;
}

.qr-mock {
  display: grid;
  grid-template-columns: repeat(3, 30px);
  grid-template-rows: repeat(3, 30px);
  gap: 6px;
  padding: 14px;
  background: #fff;
}

.qr-mock i {
  background: #000;
}

.qr-mock i:nth-child(2),
.qr-mock i:nth-child(4),
.qr-mock i:nth-child(9) {
  background: repeating-linear-gradient(45deg, #000 0 5px, #fff 5px 10px);
}

.store-badges {
  display: grid;
  gap: 10px;
}

.store-badges p {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  color: #f7f4ee;
  font-weight: 800;
}

.poster-contact {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  color: #d8d2c8;
  font-size: clamp(1rem, 2.6vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .poster-shell {
    padding-inline: 18px;
  }

  .poster-hero {
    min-height: 560px;
  }

  .poster-athlete {
    opacity: 0.42;
  }

  .athlete-female {
    left: -92px;
  }

  .athlete-male {
    right: -92px;
  }

  .poster-devices {
    min-height: 760px;
  }

  .poster-tablet {
    left: 0;
    right: 0;
    top: 70px;
  }

  .phone-left {
    left: 6%;
    bottom: 0;
  }

  .phone-right {
    right: 6%;
    bottom: 18px;
    top: auto;
  }

  .platform-checks,
  .poster-benefits,
  .poster-security {
    grid-template-columns: 1fr;
  }

  .poster-benefits article,
  .poster-security div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 132, 0, 0.42);
  }

  .poster-benefits article:last-child,
  .poster-security div:last-child {
    border-bottom: 0;
  }

  .poster-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .poster-contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .poster-nav {
    position: relative;
    top: 0;
    border-radius: 18px;
  }

  .poster-nav a {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .poster-hero {
    min-height: 500px;
  }

  .poster-logo {
    font-size: 4.7rem;
  }

  .poster-title h1 {
    font-size: 2.55rem;
  }

  .poster-actions {
    gap: 12px;
  }

  .poster-actions span {
    font-size: 0.92rem;
  }

  .poster-devices {
    min-height: 880px;
  }

  .tablet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .roster {
    display: none;
  }

  .players-state,
  .relation-chart {
    grid-column: 1 / 4;
  }

  .recovery {
    display: none;
  }

  .poster-phone {
    width: 150px;
  }

  .phone-left {
    left: 0;
  }

  .phone-right {
    right: 0;
  }
}

/* Clean full-screen bento system */
.bento-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "menu hero hero stat"
    "menu visual text network"
    "side wide wide cta";
  gap: 16px;
  width: min(100vw, 1480px);
  height: 100vh;
  min-height: 760px;
  margin: 0 auto;
  padding: 16px;
}

.home-layout {
  grid-template-areas:
    "menu hero hero stat"
    "menu visual visual network"
    "side wide wide cta";
}

.terrain-layout {
  grid-template-areas:
    "menu hero hero stack"
    "menu compare compare stack"
    "side wide wide cta";
}

.commotion-layout {
  grid-template-columns: minmax(260px, 0.95fr) repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "menu hero hero hero stat"
    "menu ac2c ac2c devices devices"
    "side wide wide wide cta";
}

.data-layout {
  grid-template-areas:
    "menu hero hero stat"
    "menu obligations obligations obligations"
    "side wide wide cta";
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 133, 0, 0.48);
  border-radius: 22px;
  padding: clamp(20px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 133, 0, 0.14), transparent 9rem),
    linear-gradient(145deg, rgba(15, 20, 27, 0.97), rgba(4, 5, 7, 0.97));
  color: #f7f4ee;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.48s ease, border-color 0.25s ease;
}

.bento-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bento-card:hover {
  border-color: rgba(255, 133, 0, 0.85);
  transform: translateY(-3px) scale(1);
}

a.bento-card {
  text-decoration: none;
}

a.bento-card:focus-visible {
  outline: 3px solid rgba(255, 133, 0, 0.9);
  outline-offset: 4px;
}

.menu-card {
  grid-area: menu;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 10% 0, rgba(255, 133, 0, 0.25), transparent 12rem),
    #070707;
}

.menu-button {
  display: none;
}

.ez-logo {
  display: inline-flex;
  width: fit-content;
  color: #f7f4ee;
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
}

.ez-logo .logo-ez {
  color: #ff8500;
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 46%, #b94a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.5);
  -webkit-text-fill-color: transparent;
}

.ez-logo .logo-tm {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3eb 32%, #b9b6ae 64%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  -webkit-text-fill-color: transparent;
}

.menu-title {
  margin-top: 26px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1.18;
}

.menu-title-main {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #f6f3eb 32%, #b9b6ae 64%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
  -webkit-text-fill-color: transparent;
}

.menu-title em {
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 50%, #b94a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ff8500;
  font-style: italic;
  -webkit-text-fill-color: transparent;
}

.block-menu {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.block-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 9px 13px;
  border-radius: 8px;
  color: #f7f4ee;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.block-menu a:hover,
.block-menu a.active {
  background: #ff8500;
  color: #050505;
  transform: translateX(3px);
}

.block-menu .material-symbols-outlined {
  font-size: 1.42rem;
  font-variation-settings: "FILL" 1, "wght" 350, "GRAD" 0, "opsz" 24;
}

@media (min-width: 1101px) and (max-height: 920px) {
  .menu-card {
    padding: clamp(16px, 1.7vw, 24px);
    overflow: auto;
  }

  .menu-card .ez-logo {
    font-size: clamp(2.15rem, 3vw, 3.05rem);
  }

  .menu-title {
    margin-top: 14px;
    font-size: clamp(1rem, 1.25vw, 1.34rem);
    line-height: 1.08;
  }

  .block-menu {
    gap: 4px;
    margin-top: 18px;
  }

  .block-menu a {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.84rem;
  }

  .block-menu .material-symbols-outlined {
    font-size: 1.18rem;
  }
}

.hero-panel {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 133, 0, 0.24), transparent 12rem),
    radial-gradient(circle at 4% 94%, rgba(255, 133, 0, 0.14), transparent 14rem),
    linear-gradient(145deg, #080808, #121923);
}

.kicker {
  margin-bottom: 12px;
  color: #ffb45d;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4.6vw, 5.1rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #eeeeea 42%, #8b8984 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  -webkit-text-fill-color: transparent;
}

.hero-panel h1 span,
.text-panel h2 span {
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 48%, #b94a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ff8500;
  font-style: italic;
  -webkit-text-fill-color: transparent;
}

.hero-panel p:not(.kicker) {
  max-width: 44rem;
  margin-top: 18px;
  color: #c8c2b8;
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

.contact-layout .hero-panel {
  justify-content: center;
  gap: 6px;
  padding-block: clamp(18px, 2vw, 26px);
}

.contact-layout .hero-panel h1 {
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
  line-height: 0.9;
}

.contact-layout .hero-panel .kicker {
  margin-bottom: 0;
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
}

.contact-layout .hero-panel p:not(.kicker) {
  margin-top: 0;
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  line-height: 1.3;
}

.contact-layout .hero-panel .pill-row {
  margin-top: 4px;
  gap: 8px;
}

.contact-layout .hero-panel .pill-row span {
  min-height: 30px;
  padding-inline: 12px;
  font-size: clamp(0.7rem, 0.8vw, 0.82rem);
}

.contact-layout .wide-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 10px;
  padding: 14px;
}

.contact-layout .wide-panel > div:not(.wide-row) {
  min-height: 0;
  padding: 12px 8px;
}

.contact-layout .wide-panel b {
  font-size: clamp(0.72rem, 0.9vw, 0.95rem);
  line-height: 1.08;
}

.contact-layout .cta-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ff8500;
  color: #050505;
  font-weight: 900;
}

.bento-layout .home-hero-image {
  isolation: isolate;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: #050505 !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.16)),
    url("./assets/eztm_bloc_fond_1.png") !important;
  background-color: #050505;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  opacity: 0.82;
  filter: saturate(1.18) contrast(1.12);
  pointer-events: none;
}

.home-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.01) 34rem);
}

.home-hero-image h1 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(1.7rem, 2.8vw, 3.15rem);
  line-height: 0.98;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #ddd8cf 74%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.2)) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.9));
  text-shadow: none;
}

.home-hero-image h1 span {
  background: linear-gradient(180deg, #ffd28a 0%, #ff930f 42%, #ff6b00 76%, #ffc36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 13px rgba(255, 133, 0, 0.38)) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.82));
}

.home-hero-image .kicker {
  width: 100%;
}

.home-hero-image .kicker,
.home-hero-image h1,
.home-hero-image .pill-row {
  position: relative;
  z-index: 2;
}

.home-hero-image .pill-row {
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.home-hero-image .wire-runner {
  display: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 133, 0, 0.52);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.pill-row i {
  color: #ff8500;
  font-style: normal;
}

.pill-icon-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.3) contrast(1.18) drop-shadow(0 0 8px rgba(255, 133, 0, 0.45));
}

.stat-panel {
  grid-area: stat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-panel.orange-panel {
  color: #050505;
  background: linear-gradient(145deg, #ffe4bd, #ff8500);
}

.orange-panel h2 {
  color: #050505;
  font-size: clamp(1.6rem, 2.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.orange-panel h2 span {
  display: inline;
  color: #743000;
  font-style: italic;
}

.orange-panel ul {
  display: grid;
  gap: 12px;
  margin: clamp(18px, 2vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.orange-panel li {
  color: #1b1208;
  font-size: clamp(0.92rem, 1.04vw, 1.05rem);
  font-weight: 700;
  line-height: 1.32;
  white-space: nowrap;
}

.orange-panel li::before {
  content: "check";
  margin-right: 8px;
  color: #7d3300;
  font-family: "Material Symbols Outlined";
  font-weight: 900;
  vertical-align: middle;
}

.stat-panel > .material-symbols-outlined {
  font-size: 2.7rem;
}

.stat-panel strong {
  display: block;
  margin-top: auto;
  font-size: clamp(3rem, 4.4vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.stat-panel h2 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stat-panel p {
  margin-top: 12px;
  line-height: 1.45;
}

.stat-panel.orange-panel h2 {
  margin-top: 0;
  color: #050505;
  font-size: clamp(1.35rem, 1.85vw, 2.18rem);
  line-height: 1.02;
}

.stat-panel.orange-panel h2 span {
  color: #743000;
  font-style: italic;
}

.home-layout .stat-panel.orange-panel h2 {
  font-size: clamp(1.2rem, 1.65vw, 1.82rem);
}

.home-layout .orange-panel ul {
  gap: 9px;
  margin-top: clamp(14px, 1.5vw, 20px);
}

.home-layout .orange-panel li {
  font-size: clamp(0.82rem, 0.94vw, 0.98rem);
  line-height: 1.24;
}

.cockpit-panel {
  grid-area: visual;
  min-height: 0;
  background: #050505;
}

.accueil-devices {
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.6vw, 22px);
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 133, 0, 0.2), transparent 18rem),
    linear-gradient(145deg, #070707, #101820);
}

.device-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.device-stage img {
  position: absolute;
  display: block;
  max-width: none;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}

.tablet-shot {
  left: 3%;
  top: 50%;
  width: min(76%, 680px);
  transform: translateY(-50%) rotate(-0.5deg);
  border-radius: 18px;
  animation: deviceFloatTablet 6.4s ease-in-out infinite;
}

.mobile-shot {
  right: 5%;
  bottom: 5%;
  width: min(24%, 190px);
  border-radius: 18px;
  animation: deviceFloatMobile 5.8s ease-in-out infinite;
  animation-delay: -1.8s;
}

@media (min-width: 681px) and (max-height: 820px) {
  .home-layout .accueil-devices {
    padding: 10px;
  }

  .home-layout .device-stage {
    min-height: 0;
  }

  .home-layout .tablet-shot {
    left: 5%;
    width: min(70%, 620px);
    max-height: calc(100% - 24px);
    object-fit: contain;
  }

  .home-layout .mobile-shot {
    right: 7%;
    bottom: 6%;
    width: min(22%, 165px);
    max-height: calc(100% - 18px);
    object-fit: contain;
  }
}

@keyframes deviceFloatTablet {
  0%,
  100% {
    transform: translateY(-50%) rotate(-0.5deg);
  }

  50% {
    transform: translateY(calc(-50% - 8px)) rotate(0.8deg);
  }
}

@keyframes deviceFloatMobile {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.2deg);
  }
}

.cockpit-panel::before,
.network-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle, rgba(255, 133, 0, 0.75) 1px, transparent 1.5px),
    linear-gradient(118deg, transparent 0 48%, rgba(255, 133, 0, 0.28) 49% 50%, transparent 51%);
  background-size: 22px 22px, 62px 62px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.dashboard-ui {
  position: absolute;
  left: 7%;
  right: 19%;
  top: 13%;
  bottom: 13%;
  padding: 12px;
  border: 2px solid rgba(255, 133, 0, 0.76);
  border-radius: 22px;
  background: #080d13;
  box-shadow: 0 0 30px rgba(255, 133, 0, 0.22);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #d7dee5;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.dash-top b {
  color: #ff4040;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.75fr);
  grid-template-rows: 52px 1fr 58px;
  gap: 7px;
  height: calc(100% - 26px);
  margin-top: 10px;
}

.dash-panel {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  background: #121923;
}

.dash-panel.roster {
  grid-row: 1 / 4;
  background: repeating-linear-gradient(180deg, #121923 0 24px, #0b1118 24px 36px);
}

.dash-panel.roster::before {
  content: "MES JOUEURS";
  display: block;
  padding: 8px;
  color: #3fb7ff;
  font-size: 0.58rem;
  font-weight: 900;
}

.dash-panel.number {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

.dash-panel.red {
  color: #ff4040;
}

.dash-panel.wide {
  grid-column: 2 / 5;
}

.dash-panel.wide::before {
  content: "Fatigue  Risque  Douleur  Stress";
  display: block;
  padding: 10px;
  color: #d8e4ee;
  font-size: 0.62rem;
  font-weight: 800;
}

.dash-panel.graph {
  grid-column: 2 / 5;
  background:
    linear-gradient(160deg, transparent 48%, #ff8500 49% 51%, transparent 52%),
    linear-gradient(24deg, transparent 52%, #3fb7ff 53% 55%, transparent 56%),
    #121923;
}

.phone-ui-clean {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: 116px;
  min-height: 210px;
  padding: 28px 10px 12px;
  border: 5px solid #252a31;
  border-radius: 25px;
  background: #090b0e;
  box-shadow: 0 0 0 1px rgba(255, 133, 0, 0.8), 0 0 24px rgba(255, 133, 0, 0.25);
}

.phone-ui-clean::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #3a4049;
  transform: translateX(-50%);
}

.phone-ui-clean b {
  display: block;
  color: #ff4040;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.phone-ui-clean span {
  display: block;
  height: 31px;
  margin-top: 10px;
  border-radius: 9px;
  background: #171d25;
  border-left: 3px solid #ff8500;
}

.text-panel {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-panel h2,
.network-panel h2,
.side-info h2,
.cta-panel h2,
.price-clean h2,
.contact-clean h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #eeeeea 42%, #8b8984 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  -webkit-text-fill-color: transparent;
}

.text-panel p,
.text-panel li,
.network-panel p,
.side-info p,
.cta-panel p,
.price-clean p {
  color: #c8c2b8;
  line-height: 1.58;
}

.text-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.text-panel li::before {
  content: "check";
  margin-right: 8px;
  color: #ff8500;
  font-family: "Material Symbols Outlined";
  vertical-align: middle;
}

.network-panel {
  grid-area: network;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 133, 0, 0.18), transparent 12rem),
    linear-gradient(145deg, #07110d, #050505);
}

.home-layout .network-panel {
  gap: 10px;
  padding: clamp(18px, 1.7vw, 24px);
}

.ac2c-network-img {
  display: block;
  width: 100%;
  max-height: 54%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  filter: saturate(1.08) contrast(1.05) drop-shadow(0 16px 28px rgba(255, 133, 0, 0.16));
}

.home-layout .ac2c-network-img {
  max-height: 46%;
}

.home-layout .network-panel h2 {
  font-size: clamp(1.65rem, 2.1vw, 2.25rem);
}

.home-layout .network-panel p {
  font-size: clamp(0.86rem, 0.96vw, 1rem);
  line-height: 1.35;
}

.brain-core-clean {
  position: relative;
  display: grid;
  place-items: center;
  width: min(68%, 190px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 133, 0, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 210, 125, 0.18), transparent 56%);
}

.brain-core-clean::before,
.brain-core-clean::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.brain-core-clean::after {
  inset: 34%;
  border-color: rgba(255, 133, 0, 0.5);
}

.brain-core-clean span {
  color: #23d27d;
  font-size: clamp(3rem, 5vw, 4.8rem);
  text-shadow: 0 0 22px rgba(35, 210, 125, 0.65);
}

.side-info {
  grid-area: side;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 213, 0, 0.13), transparent 9rem),
    linear-gradient(145deg, #0b0d0f, #050505);
}

.side-info > .material-symbols-outlined {
  margin-bottom: auto;
  color: #ff8500;
  font-size: 3rem;
}

.download-stack {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1vw, 14px);
  width: 100%;
}

button.download-stack {
  min-height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.download-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 133, 0, 0.78);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.44), 0 0 26px rgba(255, 133, 0, 0.12);
}

.eztm-download-logo {
  display: block;
  width: min(48%, 150px);
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 14px 30px rgba(255, 213, 0, 0.12));
}

.app-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(58%, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22%;
  background:
    radial-gradient(circle at center, rgba(255, 218, 0, 0.18), transparent 29%),
    linear-gradient(145deg, rgba(24, 24, 24, 0.92), rgba(4, 4, 4, 0.98));
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.07),
    0 0 34px rgba(255, 213, 0, 0.12);
}

.scope-ring {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from -10deg, #f2d900 0 42deg, transparent 42deg 60deg, #f2d900 60deg 121deg, transparent 121deg 151deg, #f2d900 151deg 224deg, transparent 224deg 254deg, #f2d900 254deg 316deg, transparent 316deg 360deg);
  box-shadow: 0 0 18px rgba(242, 217, 0, 0.42);
  -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 49% 69%, transparent 70%);
  mask: radial-gradient(circle, transparent 0 48%, #000 49% 69%, transparent 70%);
}

.scope-line {
  position: absolute;
  background: rgba(242, 217, 0, 0.75);
  box-shadow: 0 0 14px rgba(242, 217, 0, 0.4);
}

.scope-line.line-x {
  width: 70%;
  height: 2px;
}

.scope-line.line-y {
  width: 2px;
  height: 70%;
}

.download-stack strong {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3eb 32%, #b9b6ae 64%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  font-size: clamp(1.1rem, 1.55vw, 1.65rem);
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

.download-stack p {
  max-width: 18rem;
  color: #c8c2b8;
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.store-badges {
  display: grid;
  gap: 7px;
  width: min(76%, 210px);
}

.store-badges img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.wide-panel {
  grid-area: wide;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 10px;
  padding: clamp(10px, 1.2vw, 16px);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 133, 0, 0.1), transparent 24rem),
    #050505;
}

.wide-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 133, 0, 0.72);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(255, 133, 0, 0.08);
}

.wide-panel > div:not(.wide-row) {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 133, 0, 0.45);
  border-radius: 14px;
  color: #ffb45d;
  text-align: center;
  text-transform: uppercase;
}

.wide-row article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 0;
  padding: clamp(8px, 1vw, 12px);
  text-align: center;
}

.wide-row > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17%;
  bottom: 17%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 133, 0, 0.9), transparent);
  box-shadow: 0 0 12px rgba(255, 133, 0, 0.85);
}

.wide-row h3 {
  color: #ff8500;
  font-size: clamp(0.72rem, 0.86vw, 0.92rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.wide-row p {
  margin-top: 2px;
  color: #d6d0c7;
  font-size: clamp(0.62rem, 0.72vw, 0.76rem);
  line-height: 1.12;
}

.wide-row small {
  color: #e8e2d8;
  font-size: 0.82em;
  font-weight: 800;
}

.wide-panel .material-symbols-outlined {
  color: #ff8500;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.42);
}

.home-layout .wide-panel {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  padding: 12px;
}

.home-layout .feature-row article {
  gap: 4px;
  padding: 8px 10px;
}

.home-layout .feature-row .material-symbols-outlined {
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
}

.home-layout .feature-row h3 {
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
}

.home-layout .feature-row p {
  margin-top: 0;
  font-size: clamp(0.58rem, 0.68vw, 0.72rem);
  line-height: 1.1;
}

.data-proof-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.data-proof-panel > div:not(.wide-row) {
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-transform: none;
}

.data-proof-panel b {
  color: #ff8500;
  font-size: clamp(0.72rem, 0.86vw, 0.95rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.data-proof-panel p {
  margin: 0;
  color: #e8e2d8;
  font-size: clamp(0.66rem, 0.78vw, 0.84rem);
  font-weight: 500;
  line-height: 1.22;
}

.data-obligations {
  grid-area: obligations;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  padding: clamp(14px, 1.4vw, 20px);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 133, 0, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(11, 13, 15, 0.98), rgba(5, 5, 5, 0.98));
}

.data-obligations article {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  padding: clamp(14px, 1.25vw, 20px) clamp(10px, 1vw, 14px);
  border: 1px solid rgba(255, 133, 0, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 133, 0, 0.12), transparent 7rem),
    rgba(0, 0, 0, 0.18);
  text-align: center;
  animation: dataCardFloat 7s ease-in-out infinite;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.data-obligations article:nth-child(2) {
  animation-delay: -1.1s;
}

.data-obligations article:nth-child(3) {
  animation-delay: -2.2s;
}

.data-obligations article:nth-child(4) {
  animation-delay: -3.3s;
}

.data-obligations article:nth-child(5) {
  animation-delay: -4.4s;
}

.data-obligations article:hover {
  border-color: rgba(255, 133, 0, 0.8);
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 133, 0, 0.18), transparent 7rem),
    rgba(0, 0, 0, 0.24);
}

.data-obligations .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: clamp(38px, 3.2vw, 48px);
  height: clamp(38px, 3.2vw, 48px);
  border: 2px solid #ff8500;
  border-radius: 16px;
  color: #ff8500;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.36);
  animation: warningPulse 3.4s ease-in-out infinite;
}

.data-obligations h2 {
  margin: 0;
  color: #ff8500;
  font-size: clamp(0.58rem, 0.68vw, 0.78rem);
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.data-obligations p {
  margin: 0;
  max-width: 23ch;
  color: #d8d2c8;
  font-size: clamp(0.6rem, 0.68vw, 0.74rem);
  font-weight: 400;
  line-height: 1.34;
}

@keyframes dataCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes warningPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 133, 0, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(255, 133, 0, 0.22);
  }
}

.data-layout .api-card {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 133, 0, 0.18), transparent 8rem),
    radial-gradient(circle at 18% 74%, rgba(255, 133, 0, 0.1), transparent 9rem),
    linear-gradient(145deg, #0b0d0f, #050505);
}

.data-layout .api-card > .material-symbols-outlined {
  margin-bottom: clamp(18px, 2vw, 28px);
  color: #ff8500;
  font-size: clamp(2.1rem, 2.7vw, 3rem);
  text-shadow: 0 0 22px rgba(255, 133, 0, 0.42);
  animation: apiPulse 4s ease-in-out infinite;
}

.data-layout .api-card h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.3rem);
  line-height: 0.98;
}

.data-layout .api-card p {
  max-width: 24ch;
  margin-top: 10px;
  color: #e8e2d8;
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
  line-height: 1.34;
}

.api-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.api-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 133, 0, 0.5);
  border-radius: 999px;
  color: #ff8500;
  background: rgba(255, 133, 0, 0.06);
  font-size: clamp(0.64rem, 0.72vw, 0.78rem);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes apiPulse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(4deg);
  }
}

.data-layout .data-access-card {
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(14px, 1.55vw, 22px);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 133, 0, 0.18), transparent 8rem),
    linear-gradient(145deg, #0b0d0f, #050505);
}

.data-access-card h2 {
  margin: 0;
  color: #f7f4ee;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  line-height: 0.98;
}

.access-levels {
  display: grid;
  gap: 6px;
}

.access-levels article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px 9px;
  border: 1px solid rgba(255, 133, 0, 0.34);
  border-radius: 12px;
  background: rgba(255, 133, 0, 0.055);
  animation: accessLevelFloat 5.8s ease-in-out infinite;
}

.access-levels article:nth-child(2) {
  animation-delay: -1s;
}

.access-levels article:nth-child(3) {
  animation-delay: -2s;
}

.access-levels span {
  display: grid;
  place-items: center;
  width: clamp(34px, 2.8vw, 44px);
  height: clamp(38px, 3.1vw, 48px);
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 52%, #b94a00 100%);
  color: #050505;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 900;
  font-style: italic;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.access-levels b {
  color: #ff8500;
  font-size: clamp(0.76rem, 0.9vw, 1rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.data-access-card p {
  margin: 0;
  color: #d8d2c8;
  font-size: clamp(0.7rem, 0.82vw, 0.88rem);
  font-weight: 500;
  line-height: 1.22;
}

@keyframes accessLevelFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

:is(.data-layout, .offres-layout) .mobile-open-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 133, 0, 0.18), transparent 8rem),
    linear-gradient(145deg, #0b0d0f, #050505);
}

.mobile-open-card > .material-symbols-outlined {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #ff8500;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  opacity: 0.22;
  text-shadow: 0 0 24px rgba(255, 133, 0, 0.38);
}

.mobile-open-card article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 133, 0, 0.38);
  border-radius: 14px;
  background: rgba(255, 133, 0, 0.055);
  animation: accessLevelFloat 5.8s ease-in-out infinite;
}

.mobile-open-card article:nth-of-type(2) {
  animation-delay: -1.4s;
}

.mobile-open-card strong {
  display: grid;
  place-items: center;
  width: clamp(38px, 3.2vw, 48px);
  height: clamp(48px, 4vw, 60px);
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 52%, #b94a00 100%);
  color: #050505;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.mobile-open-card h2 {
  margin: 0;
  color: #ff8500;
  font-size: clamp(0.84rem, 1vw, 1.12rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.mobile-open-card p {
  margin: 5px 0 0;
  color: #f7f4ee;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 500;
  line-height: 1.18;
}

.mobile-open-card p b {
  color: #ff8500;
  font-weight: 900;
}

.mobile-open-card small {
  display: block;
  margin-top: 4px;
  color: #d8d2c8;
  font-size: clamp(0.6rem, 0.68vw, 0.76rem);
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.trust-row article {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  text-align: left;
  gap: clamp(10px, 1vw, 16px);
  padding-inline: clamp(12px, 1.4vw, 20px);
}

.trust-row h3 {
  color: #f7f4ee;
  font-size: clamp(0.8rem, 1vw, 1.05rem);
  line-height: 1.08;
}

.trust-row .shield-fill {
  background: linear-gradient(90deg, #ffffff 0 48%, #ff8500 49% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ff8500;
  -webkit-text-fill-color: transparent;
}

.cta-panel {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 133, 0, 0.22), transparent 9rem),
    #050505;
}

.home-layout .cta-panel {
  gap: 12px;
  padding: clamp(18px, 1.65vw, 24px);
}

.cta-content {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
}

.home-layout .cta-content {
  gap: 12px;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.home-layout .contact-lines {
  gap: 8px;
}

.contact-lines a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f7f4ee;
  font-weight: 800;
}

.contact-lines span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 133, 0, 0.58);
  border-radius: 50%;
  color: #ff8500;
  background: rgba(255, 133, 0, 0.08);
  font-size: 1.35rem;
  box-shadow: 0 0 18px rgba(255, 133, 0, 0.12);
}

.home-layout .contact-lines span {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  font-size: 1.08rem;
}

.contact-lines strong {
  min-width: 0;
  color: #e8e2d8;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.home-layout .contact-lines strong {
  font-size: clamp(0.78rem, 0.88vw, 0.9rem);
}

.home-layout .cta-panel h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
}

.home-layout .cta-panel a.cta-main {
  min-height: 46px;
}

.home-layout .linkedin-btn {
  display: none;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-panel a.cta-main,
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.cta-panel a.cta-main {
  flex: 1 1 190px;
  padding: 0 22px;
  background: #ff8500;
  color: #050505;
}

.linkedin-btn {
  flex: 0 0 50px;
  width: 50px;
  padding: 0;
  border: 1px solid rgba(255, 133, 0, 0.66);
  background: #050505;
  color: #ff8500;
  font-family: Arial, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0;
  box-shadow: inset 0 0 16px rgba(255, 133, 0, 0.12);
}

.price-clean,
.contact-clean {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-clean span,
.contact-clean > .material-symbols-outlined {
  color: #ff8500;
  font-size: 2.4rem;
  font-weight: 900;
}

.price-clean strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 3.8vw, 4.3rem);
  font-weight: 900;
  line-height: 0.95;
}

.price-clean.hot {
  color: #050505;
  background: linear-gradient(145deg, #ffe4bd, #ff8500);
}

.price-clean.hot span,
.price-clean.hot strong,
.price-clean.hot p {
  color: #050505;
}

.upsell-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  gap: clamp(12px, 1.2vw, 18px);
  padding: clamp(16px, 1.8vw, 26px);
}

.upsell-card .upsell-number {
  display: grid;
  place-items: center;
  width: clamp(48px, 4.2vw, 66px);
  height: clamp(58px, 5vw, 78px);
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 52%, #b94a00 100%);
  color: #050505;
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  animation: upsellNumberFloat 5.8s ease-in-out infinite;
}

.upsell-card.hot .upsell-number {
  animation-delay: -1s;
}

.upsell-card.slot-network .upsell-number {
  animation-delay: -2s;
}

.upsell-card > div {
  min-width: 0;
}

.upsell-card span:not(.upsell-number) {
  display: block;
  color: #ff8500;
  font-size: clamp(0.86rem, 1.05vw, 1.2rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.upsell-card strong {
  margin-top: 8px;
  color: #f7f4ee;
  font-size: clamp(1.9rem, 2.7vw, 3.1rem);
}

.upsell-card p {
  margin-top: 8px;
  color: #e8e2d8;
  font-size: clamp(0.72rem, 0.84vw, 0.94rem);
  font-weight: 700;
  line-height: 1.2;
}

.upsell-card small {
  display: block;
  margin-top: 8px;
  color: #bfb8ad;
  font-size: clamp(0.64rem, 0.74vw, 0.82rem);
  font-weight: 500;
  line-height: 1.25;
}

.upsell-card.hot span:not(.upsell-number),
.upsell-card.hot strong,
.upsell-card.hot p,
.upsell-card.hot small {
  color: #050505;
}

.upsell-card.hot .upsell-number {
  background: #050505;
  color: #ff8500;
}

@keyframes upsellNumberFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.tools-base-card {
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(16px, 1.55vw, 24px);
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 133, 0, 0.28), transparent 9rem),
    linear-gradient(145deg, #11100d, #050505);
}

.tools-base-card::after,
.offers-better-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 133, 0, 0.5) 49% 50%, transparent 51%),
    radial-gradient(circle, rgba(255, 133, 0, 0.85) 1px, transparent 1.5px);
  background-size: 74px 74px, 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.tools-kicker {
  position: relative;
  z-index: 1;
  color: #ff8500;
  font-size: clamp(1.1rem, 1.35vw, 1.55rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.tools-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.tools-list article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "icon"
    "title"
    "text";
  align-items: center;
  justify-items: start;
  gap: 4px;
  min-width: 0;
  min-height: 86px;
  padding: clamp(9px, 0.8vw, 12px);
  border: 1px solid rgba(255, 133, 0, 0.48);
  border-radius: 16px;
  background: rgba(255, 133, 0, 0.07);
  box-shadow: inset 0 0 18px rgba(255, 133, 0, 0.06);
  animation: toolCardBreathe 6s ease-in-out infinite;
}

.tools-list article:nth-child(2) {
  animation-delay: -1.2s;
}

.tools-list article:nth-child(3) {
  animation-delay: -2.4s;
}

.tools-list article:nth-child(4) {
  animation-delay: -3.6s;
}

.tools-list .material-symbols-outlined {
  grid-area: icon;
  color: #ff8500;
  font-size: clamp(1.55rem, 1.8vw, 2.05rem);
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 48;
  text-shadow: 0 0 16px rgba(255, 133, 0, 0.45);
}

.tools-list b {
  grid-area: title;
  color: #f7f4ee;
  font-size: clamp(0.68rem, 0.78vw, 0.9rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.tools-list small {
  grid-area: text;
  color: #d2cbc0;
  font-size: clamp(0.58rem, 0.66vw, 0.74rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.offers-better-panel {
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: clamp(10px, 1vw, 14px);
  padding: clamp(12px, 1.2vw, 18px);
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 133, 0, 0.18), transparent 12rem),
    radial-gradient(circle at 92% 78%, rgba(255, 133, 0, 0.14), transparent 12rem),
    #050505;
}

.better-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: stretch;
  gap: clamp(8px, 0.8vw, 12px);
  min-width: 0;
  padding: clamp(14px, 1.25vw, 18px);
  border: 1px solid rgba(255, 133, 0, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 133, 0, 0.12), rgba(255, 133, 0, 0.03)),
    rgba(0, 0, 0, 0.54);
  text-align: left;
  text-transform: none;
  overflow: hidden;
}

.better-section::before {
  content: "";
  position: absolute;
  inset: auto 12% 0 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 133, 0, 0.9), transparent);
  box-shadow: 0 0 22px rgba(255, 133, 0, 0.7);
}

.better-section > .material-symbols-outlined {
  color: #ff8500;
  font-size: clamp(1.7rem, 2.1vw, 2.45rem);
  font-variation-settings: "FILL" 1, "wght" 350, "GRAD" 0, "opsz" 48;
  filter: drop-shadow(0 0 16px rgba(255, 133, 0, 0.5));
  animation: betterIconFloat 6.5s ease-in-out infinite;
}

.better-section-keys > .material-symbols-outlined {
  animation-delay: -2s;
}

.better-section h2 {
  max-width: none;
  color: #ff8500;
  font-size: clamp(0.95rem, 1.25vw, 1.42rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.better-section ul {
  display: grid;
  gap: clamp(5px, 0.45vw, 8px);
  margin: clamp(8px, 0.75vw, 12px) 0 0;
  padding: 0;
  list-style: none;
}

.better-section li {
  position: relative;
  padding-left: 16px;
  color: #ded8cf;
  font-size: clamp(0.58rem, 0.68vw, 0.78rem);
  font-weight: 500;
  line-height: 1.2;
}

.better-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #ff8500;
  box-shadow: 0 0 10px rgba(255, 133, 0, 0.75);
  transform: rotate(45deg);
}

@keyframes toolCardBreathe {
  0%,
  100% {
    transform: translateX(0);
    border-color: rgba(255, 133, 0, 0.42);
  }

  50% {
    transform: translateX(4px);
    border-color: rgba(255, 133, 0, 0.78);
  }
}

@keyframes betterIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

.contact-clean a {
  color: #ffb45d;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.slot-visual {
  grid-area: visual;
}

.slot-text {
  grid-area: text;
}

.slot-network {
  grid-area: network;
}

.terrain-compare {
  grid-area: compare;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(12px, 1.5vw, 20px);
  background:
    radial-gradient(circle at 48% 52%, rgba(255, 133, 0, 0.16), transparent 20rem),
    linear-gradient(145deg, #070707, #111821);
}

.compare-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 133, 0, 0.52);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 133, 0, 0.1), transparent 10rem),
    linear-gradient(145deg, rgba(15, 20, 27, 0.98), rgba(4, 5, 7, 0.98));
}

.compare-card::after {
  content: "";
  position: absolute;
  inset-block: 44%;
  width: 46px;
  height: 72px;
  background: linear-gradient(180deg, #ffc36b, #ff8500);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  opacity: 0.95;
  transform: translateY(-50%);
}

.compare-card.before::after {
  right: -1px;
}

.compare-card.after::after {
  left: -1px;
  transform: translateY(-50%) rotate(180deg);
}

.compare-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.compare-card.before img {
  filter: grayscale(1) contrast(1.06);
}

.compare-card div {
  padding: clamp(14px, 1.6vw, 20px);
}

.compare-card h2 {
  background: linear-gradient(180deg, #ffffff 0%, #eeeeea 42%, #8b8984 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  font-size: clamp(1.8rem, 3.4vw, 3.9rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

.compare-card.after h2 {
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 48%, #b94a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ff8500;
  -webkit-text-fill-color: transparent;
}

.compare-card p {
  margin-top: 10px;
  color: #f4f0e8;
  font-size: clamp(0.82rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.32;
}

.terrain-stack {
  grid-area: stack;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(12px, 1.35vw, 18px);
  background:
    radial-gradient(circle at 70% 8%, rgba(255, 133, 0, 0.2), transparent 13rem),
    linear-gradient(145deg, rgba(15, 20, 27, 0.97), rgba(4, 5, 7, 0.97));
}

.terrain-stack article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 12px;
  min-height: 0;
  padding: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(255, 133, 0, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 133, 0, 0.11), transparent 9rem),
    rgba(0, 0, 0, 0.2);
}

.terrain-stack article + article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 133, 0, 0.68), transparent);
}

.terrain-stack span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: clamp(44px, 3.8vw, 58px);
  height: clamp(54px, 4.9vw, 70px);
  background: linear-gradient(180deg, #ffc36b 0%, #ff8500 52%, #b94a00 100%);
  color: #050505;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.terrain-stack h2 {
  background: linear-gradient(180deg, #ffffff 0%, #eeeeea 42%, #8b8984 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f7f4ee;
  font-size: clamp(0.92rem, 1.2vw, 1.18rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.08;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

.terrain-stack ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.terrain-stack li {
  color: #fff;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 400;
  line-height: 1.45;
}

.terrain-stack li::before {
  content: "○";
  margin-right: 5px;
  color: #ff8500;
}

:is(.terrain-layout, .data-layout, .offres-layout) .hero-panel {
  isolation: isolate;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(22px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.24) 100%),
    radial-gradient(circle at 88% 16%, rgba(255, 133, 0, 0.18), transparent 13rem),
    url("./assets/fond_global.png"),
    linear-gradient(145deg, #080808, #121923);
  background-position: center, 88% 16%, right center, center;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 100%, cover;
}

:is(.terrain-layout, .data-layout, .offres-layout) .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 50%, rgba(0, 0, 0, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
}

:is(.terrain-layout, .data-layout, .offres-layout) .hero-panel h1 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 2.65vw, 3rem);
  line-height: 0.97;
}

:is(.terrain-layout, .data-layout, .offres-layout) .hero-panel p:not(.kicker) {
  max-width: 58rem;
  margin-top: 14px;
  font-size: clamp(0.86rem, 0.98vw, 1.02rem);
  line-height: 1.42;
}

:is(.terrain-layout, .data-layout, .offres-layout) .kicker {
  margin-bottom: 8px;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
}

:is(.terrain-layout, .data-layout, .offres-layout) .pill-row {
  gap: 8px;
  margin-top: 14px;
}

:is(.terrain-layout, .data-layout, .offres-layout) .pill-row span {
  min-height: 32px;
  padding-inline: 12px;
  font-size: 0.78rem;
}

.terrain-layout .terrain-compare {
  gap: 12px;
  padding: 12px;
}

.terrain-layout .compare-card {
  grid-template-rows: minmax(0, 1fr) auto;
}

.terrain-layout .compare-card.after img {
  order: 1;
}

.terrain-layout .compare-card.after div {
  order: 2;
}

.terrain-layout .compare-card div {
  padding: clamp(10px, 1vw, 14px);
}

.terrain-layout .compare-card h2 {
  font-size: clamp(1.45rem, 2.25vw, 2.55rem);
  letter-spacing: 0.13em;
  line-height: 0.94;
}

.terrain-layout .compare-card p {
  margin-top: 8px;
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  line-height: 1.24;
}

.terrain-layout .compare-card::after {
  inset-block: 47%;
  width: 34px;
  height: 54px;
}

.terrain-layout .compare-card img {
  object-position: center;
}

.terrain-layout .terrain-stack {
  gap: 8px;
  padding: 12px;
}

.terrain-layout .terrain-stack article {
  column-gap: 10px;
  padding: 10px;
}

.terrain-layout .terrain-stack span {
  width: clamp(38px, 3vw, 48px);
  height: clamp(48px, 3.8vw, 58px);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.terrain-layout .terrain-stack h2 {
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
}

.terrain-layout .terrain-stack ul {
  gap: 3px;
  margin-top: 8px;
}

.terrain-layout .terrain-stack li {
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);

  line-height: 1.18;
}

.terrain-layout .side-info {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.terrain-layout .side-info > .material-symbols-outlined {
  margin-bottom: clamp(18px, 2vw, 28px);
  font-size: clamp(2rem, 2.4vw, 2.55rem);
}

.terrain-layout .side-info h2 {
  font-size: clamp(1.1rem, 1.72vw, 1.72rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
}

.terrain-layout .side-info p {
  margin-top: 10px;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  line-height: 1.35;
}

.terrain-layout .communication-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.terrain-layout .communication-list li {
  padding-left: 12px;
  border-left: 2px solid rgba(255, 133, 0, 0.75);
  color: #f7f4ee;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 700;
  line-height: 1.22;
}

.terrain-layout .communication-list strong {
  color: #ff8500;
  font-weight: 900;
  text-transform: uppercase;
}

.terrain-layout .wide-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 10px;
  padding: 12px;
}

.terrain-layout .terrain-roles article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(16px, 1.45vw, 22px);
  border: 1px solid rgba(255, 133, 0, 0.48);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 133, 0, 0.18), transparent 5.5rem),
    rgba(0, 0, 0, 0.28);
  text-align: left;
}

.terrain-layout .terrain-roles article + article {
  box-shadow: inset 1px 0 0 rgba(255, 133, 0, 0.18);
}

.terrain-layout .terrain-roles article > div {
  position: relative;
  z-index: 1;
}

.terrain-layout .terrain-roles .material-symbols-outlined {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: #ff8500;
  font-size: clamp(3.2rem, 4.4vw, 5rem);
  line-height: 1;
  opacity: 0.12;
  text-shadow: none;
}

.terrain-layout .terrain-roles h2 {
  margin: 0 0 8px;
  padding-right: 46px;
  color: #ff8500;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.terrain-layout .terrain-roles p {
  margin: 0;
  max-width: none;
  padding: 5px 8px;
  border-left: 2px solid rgba(255, 133, 0, 0.7);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 133, 0, 0.07);
  color: #f7f4ee;
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 400;
  line-height: 1.12;
}

.terrain-layout .terrain-roles .role-line {
  font-weight: 400;
}

.terrain-layout .terrain-roles p + p {
  margin-top: 5px;
}

.terrain-layout .cta-panel h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
}

.terrain-layout .cta-panel p {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  line-height: 1.35;
}

.wire-runner {
  position: absolute;
  width: 130px;
  height: 190px;
  opacity: 0.38;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(255, 133, 0, 0.55));
}

.wire-runner::before,
.wire-runner::after {
  content: "";
  position: absolute;
  border: 2px solid #ff8500;
}

.wire-runner::before {
  width: 34px;
  height: 34px;
  left: 52px;
  top: 6px;
  border-radius: 50%;
}

.wire-runner::after {
  width: 66px;
  height: 95px;
  left: 34px;
  top: 48px;
  border-radius: 48%;
  transform: rotate(-16deg);
  background:
    linear-gradient(35deg, transparent 48%, rgba(255, 133, 0, 0.62) 49% 51%, transparent 52%),
    linear-gradient(145deg, transparent 48%, rgba(255, 133, 0, 0.55) 49% 51%, transparent 52%);
}

.runner-left {
  left: 2%;
  bottom: 7%;
  transform: scaleX(-1) rotate(-8deg);
}

.runner-right {
  right: 4%;
  top: 10%;
  transform: rotate(8deg);
}

@media (max-width: 1100px) {
  .bento-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-template-areas:
      "menu menu"
      "hero hero"
      "stat visual"
      "text network"
      "side wide"
      "cta cta";
    height: auto;
    min-height: 100vh;
  }

  .home-layout {
    grid-template-areas:
      "menu menu"
      "hero hero"
      "stat stat"
      "visual visual"
      "network side"
      "wide wide"
      "cta cta";
    height: auto;
    min-height: 100vh;
  }

  .terrain-layout {
    grid-template-areas:
      "menu menu"
      "hero hero"
      "stack stack"
      "compare compare"
      "side wide"
      "cta cta";
  }

  .data-layout {
    grid-template-areas:
      "menu menu"
      "hero hero"
      "stat stat"
      "obligations obligations"
      "side wide"
      "cta cta";
  }

  .commotion-layout {
    grid-template-areas:
      "menu menu"
      "hero hero"
      "stat stat"
      "ac2c devices"
      "side wide"
      "cta cta";
  }

  .terrain-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .terrain-stack article + article::before {
    top: 15%;
    bottom: 15%;
    left: -6px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  }

  .menu-card {
    min-height: auto;
  }

  .block-menu {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card {
    min-height: 300px;
  }

  .menu-card,
  .wide-panel,
  .cta-panel {
    min-height: auto;
  }

  .offers-better-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .bento-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "menu"
      "hero"
      "stat"
      "visual"
      "text"
      "network"
      "side"
      "wide"
      "cta";
    padding: 12px;
    gap: 12px;
  }

  .home-layout {
    grid-template-areas:
      "menu"
      "hero"
      "visual"
      "stat"
      "network"
      "wide"
      "side"
      "cta";
  }

  .terrain-layout {
    grid-template-areas:
      "menu"
      "hero"
      "compare"
      "stack"
      "side"
      "wide"
      "cta";
  }

  .data-layout {
    grid-template-areas:
      "menu"
      "hero"
      "stat"
      "obligations"
      "side"
      "wide"
      "cta";
  }

  .commotion-layout {
    grid-template-areas:
      "menu"
      "hero"
      "ac2c"
      "stat"
      "devices"
      "side"
      "wide"
      "cta";
  }

  .terrain-stack,
  .terrain-compare {
    grid-template-columns: 1fr;
  }

  .terrain-stack {
    grid-template-rows: auto;
  }

  .terrain-stack article + article::before {
    top: -6px;
    left: 14%;
    right: 14%;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  }

  .compare-card {
    min-height: 360px;
  }

  .menu-card {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: auto;
    padding: 18px;
  }

  .menu-card .ez-logo {
    font-size: 2.35rem;
  }

  .menu-title {
    grid-column: 1;
    margin-top: 8px;
    font-size: 1rem;
  }

  .menu-button {
    display: inline-grid;
    grid-column: 2;
    grid-row: 1 / 3;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 133, 0, 0.62);
    border-radius: 14px;
    background: rgba(255, 133, 0, 0.1);
    color: #ff8500;
    cursor: pointer;
  }

  .menu-button .material-symbols-outlined {
    font-size: 1.8rem;
  }

  .block-menu.main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, margin-top 0.28s ease, opacity 0.2s ease;
  }

  .block-menu.main-nav.is-open {
    max-height: 430px;
    margin-top: 18px;
    opacity: 1;
  }

  .block-menu,
  .wide-panel {
    grid-template-columns: 1fr;
  }

  .contact-layout .wide-panel {
    grid-template-columns: 1fr;
  }

  .offers-better-panel {
    grid-template-columns: 1fr;
  }

  .tools-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-panel {
    grid-template-rows: auto;
  }

  .better-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .terrain-layout .terrain-roles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .terrain-layout .terrain-roles article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    justify-content: stretch;
    gap: 10px;
  }

  .terrain-layout .terrain-roles article + article {
    box-shadow: inset 0 1px 0 rgba(255, 133, 0, 0.18);
  }

  .terrain-layout .terrain-roles .material-symbols-outlined {
    position: static;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    opacity: 1;
    text-shadow: 0 0 18px rgba(255, 133, 0, 0.42);
  }

  .terrain-layout .terrain-roles h2 {
    padding-right: 0;
  }

  .terrain-layout .terrain-roles p {
    max-width: none;
  }

  .data-obligations {
    grid-template-columns: 1fr;
  }

  .data-obligations article {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: start;
    text-align: left;
  }

  .data-obligations .material-symbols-outlined {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.8rem;
  }

  .data-obligations h2,
  .data-obligations p {
    grid-column: 2;
  }

  .data-obligations h2 {
    font-size: 0.76rem;
  }

  .data-obligations p {
    font-size: 0.72rem;
  }

  .commotion-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commotion-path-grid b {
    font-size: 0.72rem;
  }

  .commotion-path-education {
    align-items: start;
  }

  .wide-row {
    grid-template-columns: 1fr;
  }

  .wide-row > * + *::before {
    left: 12%;
    right: 12%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 133, 0, 0.9), transparent);
  }

  .trust-row article {
    justify-items: center;
    text-align: center;
  }

  .hero-panel h1,
  .home-hero-image h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 9.4vw, 2.85rem);
    line-height: 0.96;
  }

  .home-hero-image .kicker {
    font-size: 0.82rem;
  }

  .home-hero-image .pill-row {
    gap: 8px;
  }

  .home-hero-image .pill-row span {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  .commotion-layout .commotion-hero-image {
    justify-content: center;
    min-height: 300px;
    padding-block: 30px 24px;
    background-size: cover !important;
  }

  .commotion-hero-image .kicker {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .commotion-layout .commotion-hero-image h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 0.92;
  }

  .commotion-hero-image .pill-row {
    gap: 10px;
    margin-top: 22px;
  }

  .commotion-hero-image .pill-row span {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .orange-panel li {
    white-space: normal;
  }

  .cockpit-panel {
    min-height: 420px;
  }

  .accueil-devices {
    min-height: 380px;
  }

  .tablet-shot {
    left: 50%;
    top: 42%;
    width: 92%;
    transform: translate(-50%, -50%);
    animation-name: deviceFloatTabletMobile;
  }

  .mobile-shot {
    right: 8%;
    bottom: 5%;
    width: 28%;
  }

  .dashboard-ui {
    left: 5%;
    right: 5%;
    top: 8%;
    bottom: 12%;
  }

  .phone-ui-clean {
    display: none;
  }

  .dash-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dash-panel.roster {
    display: none;
  }

  .dash-panel.wide,
  .dash-panel.graph {
    grid-column: 1 / 4;
  }
}

@keyframes deviceFloatTabletMobile {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-0.5deg);
  }

  50% {
    transform: translate(-50%, calc(-50% - 8px)) rotate(0.8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tablet-shot,
  .mobile-shot {
    animation: none;
  }
}


/* =========================
   CONTACT MODAL
========================= */

body.modal-open {
  overflow: hidden;
}

.download-modal,
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.download-modal.is-open,
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.download-modal__backdrop,
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
}

.download-modal__dialog,
.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(255, 133, 0, 0.25);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 133, 0, 0.14), transparent 10rem),
    linear-gradient(145deg, rgba(16, 21, 28, 0.98), rgba(8, 11, 15, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: #f7f4ee;
}

.download-modal__close,
.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f7f4ee;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.download-modal__close:hover,
.contact-modal__close:hover {
  transform: scale(1.05);
  background: rgba(255, 133, 0, 0.12);
  color: #ff8500;
}

.download-modal h2,
.contact-modal h2 {
  margin: 0;
  padding-right: 64px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.download-modal__intro,
.contact-modal__intro {
  margin-top: 12px;
  color: #c8c2b8;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

.download-modal__logo {
  display: block;
  width: clamp(72px, 9vw, 112px);
  margin-bottom: 18px;
  border-radius: 20px;
  filter: drop-shadow(0 14px 28px rgba(255, 133, 0, 0.14));
}

.download-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 3vw, 34px);
}

.download-choice {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 133, 0, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 133, 0, 0.2), transparent 9rem),
    rgba(255, 133, 0, 0.055);
  box-shadow: inset 0 0 22px rgba(255, 133, 0, 0.06);
}

.download-choice > .material-symbols-outlined {
  color: #ff8500;
  font-size: clamp(2.25rem, 3.2vw, 3.2rem);
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 48;
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.36);
}

.download-choice h3 {
  margin: 0;
  color: #ff8500;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.download-choice p {
  margin-top: 8px;
  color: #d7d1c8;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.4;
}

.download-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.download-links a {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 1px solid rgba(255, 133, 0, 0.34);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: #f7f4ee;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 133, 0, 0.78);
  background: rgba(255, 133, 0, 0.12);
}

.download-links img {
  display: block;
  width: min(100%, 180px);
  height: auto;
  border-radius: 7px;
}

.platform-links a {
  gap: 5px;
  padding: 8px;
}

.platform-links .material-symbols-outlined {
  color: #ff8500;
  font-size: 2.1rem;
}

.platform-links small {
  color: #f7f4ee;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-modal__form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-modal__form.is-hidden {
  display: none;
}

.contact-modal__form label {
  color: #f7f4ee;
  font-size: 1rem;
  font-weight: 800;
}

.contact-modal__form label span {
  color: #ff8500;
}

.contact-modal__form input,
.contact-modal__form textarea {
  width: 100%;
  border: 1px solid rgba(255, 133, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f4ee;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-modal__form input {
  min-height: 68px;
  padding: 0 24px;
}

.contact-modal__form textarea {
  min-height: 180px;
  padding: 18px 24px;
  border-radius: 28px;
  resize: vertical;
}

.contact-modal__form input::placeholder,
.contact-modal__form textarea::placeholder {
  color: rgba(247, 244, 238, 0.42);
}

.contact-modal__form input:focus,
.contact-modal__form textarea:focus {
  border-color: #ff8500;
  box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.contact-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #ff8500;
  color: #050505;
  font-family: inherit;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 133, 0, 0.22);
}

.contact-modal__submit:disabled {
  cursor: wait;
  opacity: 0.9;
  transform: none;
}

.contact-modal__submit .material-symbols-outlined {
  font-size: 1.5rem;
}

.contact-spinner {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(5, 5, 5, 0.28);
  border-top-color: #050505;
  border-radius: 50%;
  animation: contactSpin 0.72s linear infinite;
}

.contact-modal__status {
  display: none;
}

.contact-modal__status.is-success {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.2vw, 26px);
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(12px, 2vw, 22px) 0 clamp(10px, 2vw, 20px);
  text-align: center;
}

.contact-success-orb {
  display: grid;
  place-items: center;
  width: clamp(92px, 11vw, 128px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 133, 0, 0.24), rgba(255, 133, 0, 0.08) 54%, transparent 55%),
    rgba(255, 133, 0, 0.1);
  border: 1px solid rgba(255, 133, 0, 0.34);
  box-shadow: 0 0 36px rgba(255, 133, 0, 0.16);
  animation: contactSuccessPulse 1.9s ease-in-out infinite;
}

.contact-success-orb span {
  display: grid;
  place-items: center;
  width: clamp(42px, 4.8vw, 56px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ff8500;
  color: #050505;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 900;
}

.contact-modal__status h3 {
  margin: 0;
  color: #f7f4ee;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.contact-modal__status p {
  max-width: 32rem;
  color: #c8c2b8;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.contact-modal__done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 210px);
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #ff8500;
  color: #050505;
  font: inherit;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 133, 0, 0.18);
}

.contact-modal__status.is-error {
  display: block;
  margin-top: 16px;
}

.contact-error-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 133, 0, 0.45);
  border-radius: 18px;
  background: rgba(255, 133, 0, 0.08);
}

.contact-error-line span {
  color: #ff8500;
}

.contact-error-line p {
  color: #f7f4ee;
  font-size: 0.95rem;
  line-height: 1.35;
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes contactSuccessPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 32px rgba(255, 133, 0, 0.16);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 46px rgba(255, 133, 0, 0.28);
  }
}

@media (max-width: 720px) {
  .download-modal,
  .contact-modal {
    padding: 14px;
  }

  .download-modal__dialog,
  .contact-modal__dialog {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .download-modal__close,
  .contact-modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .download-modal__grid,
  .download-links {
    grid-template-columns: 1fr;
  }

  .download-modal h2 {
    padding-right: 48px;
  }

  .contact-modal__form input {
    min-height: 58px;
  }

  .contact-modal__form textarea {
    min-height: 150px;
  }

  .contact-modal__submit {
    min-height: 60px;
  }
}

/* Même format que le bloc haut milieu de la page Terrain */
.commotion-layout .hero-panel {
  isolation: isolate;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(22px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.24) 100%),
    radial-gradient(circle at 88% 16%, rgba(255, 133, 0, 0.18), transparent 13rem),
    url("./assets/fond_global.png"),
    linear-gradient(145deg, #080808, #121923);
  background-position: center, 88% 16%, right center, center;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 100%, cover;
}

.commotion-layout .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 50%, rgba(0, 0, 0, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
}

.commotion-layout .hero-panel h1 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 2.65vw, 3rem);
  line-height: 0.97;
}

.commotion-layout .hero-panel p:not(.kicker) {
  max-width: 58rem;
  margin-top: 14px;
  font-size: clamp(0.86rem, 0.98vw, 1.02rem);
  line-height: 1.42;
}

.commotion-layout .kicker {
  margin-bottom: 8px;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
}

.commotion-layout .pill-row {
  gap: 8px;
  margin-top: 14px;
}

.commotion-layout .pill-row span {
  min-height: 32px;
  padding-inline: 12px;
  font-size: 0.78rem;
}


.commotion-layout .commotion-hero-image {
  isolation: isolate;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  
  background: #050505 !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.16)),
    url("./assets/fond_site_ac2c.png") !important;
  background-color: #050505;
 background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.commotion-layout .hero-bg-img {
  width: 100%;

  object-fit: contain;
  object-position: center center;
}

.commotion-layout .commotion-hero-image h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 0.9;
  text-align: center;
}







.commotion-hero-image h1 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(1.7rem, 2.8vw, 3.15rem);
  line-height: 0.98;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #ddd8cf 74%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.2)) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.9));
  text-shadow: none;
}

.commotion-hero-image h1 span {
  background: linear-gradient(180deg, #ffd28a 0%, #ff930f 42%, #ff6b00 76%, #ffc36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 13px rgba(255, 133, 0, 0.38)) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.82));
}

.commotion-hero-image .kicker {
  width: 100%;
}

.commotion-hero-image .kicker,
.hocommotionme-hero-image h1,
.commotion-hero-image .pill-row {
  position: relative;
  z-index: 2;
}

.commotion-hero-image .pill-row {
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.commotion-choc-card {
  justify-content: center;
  gap: 0;
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 34px);
  background: linear-gradient(145deg, #ffe4bd, #ff8500) !important;
  color: #050505;
}

.commotion-choc-card h2 {
  font-size: clamp(1.28rem, 1.75vw, 2.15rem);
}

.commotion-choc-card ul {
  gap: 10px;
}

.commotion-choc-card li {
  white-space: normal;
  font-size: clamp(0.78rem, 0.9vw, 0.96rem);
}

.commotion-choc-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0;
  color: #050505;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

.commotion-choc-title strong {
  color: #050505;
  font-weight: 900;
}

.commotion-choc-title span:last-child {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.commotion-choc-specialite {
  margin: 0;
  color: #050505;
  font-size: clamp(0.95rem, 1.35vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commotion-choc-text {
  margin: 0;
  color: #050505;
  font-size: clamp(0.9rem, 1.28vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.commotion-choc-text span {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.commotion-logo-card {
  grid-area: ac2c;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 133, 0, 0.2), transparent 11rem),
    linear-gradient(145deg, #080808, #101820);
  text-align: center;
}

.commotion-logo-card img {
  display: block;
  width: min(98%, 520px);
  max-height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 133, 0, 0.28));
  animation: ac2cLogoFloat 6.2s ease-in-out infinite;
}

@keyframes ac2cLogoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 22px rgba(255, 133, 0, 0.28));
  }

  50% {
    transform: translateY(-8px) scale(1.025);
    filter: drop-shadow(0 0 34px rgba(255, 133, 0, 0.42));
  }
}

.commotion-logo-card p {
  margin: 0;
  color: #ff8500;
  font-size: clamp(0.76rem, 0.9vw, 0.96rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.commotion-devices {
  grid-area: devices;
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.6vw, 22px);
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 133, 0, 0.22), transparent 20rem),
    linear-gradient(145deg, #070707, #101820);
}

.commotion-devices .device-stage {
  min-height: 260px;
}

.commotion-devices .ac2c-tablet-shot {
  left: 4%;
  top: 50%;
  width: min(74%, 650px);
}

.commotion-devices .ac2c-mobile-shot {
  right: 6%;
  bottom: 5%;
  width: min(24%, 180px);
}

@media (min-width: 1101px) and (max-height: 920px) {
  .home-layout .cta-panel {
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
  }

  .home-layout .cta-content,
  .home-layout .contact-lines {
    gap: 6px;
  }

  .home-layout .cta-panel h2 {
    font-size: clamp(1.55rem, 2vw, 2.05rem);
    line-height: 0.96;
  }

  .home-layout .contact-lines span {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 0.98rem;
  }

  .home-layout .contact-lines strong {
    font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  }

  .home-layout .cta-panel a.cta-main {
    min-height: 40px;
    padding-inline: 18px;
    font-size: clamp(0.84rem, 0.95vw, 1rem);
  }

  .terrain-layout .side-info {
    justify-content: center;
    padding: 16px 20px;
  }

  .terrain-layout .side-info > .material-symbols-outlined {
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 2vw, 2rem);
  }

  .terrain-layout .side-info h2 {
    font-size: clamp(0.96rem, 1.34vw, 1.35rem);
  }

  .terrain-layout .side-info p {
    margin-top: 8px;
    font-size: clamp(0.72rem, 0.82vw, 0.84rem);
    line-height: 1.24;
  }

  .terrain-layout .communication-list {
    gap: 6px;
    margin-top: 10px;
  }

  .terrain-layout .communication-list li {
    padding-left: 10px;
    font-size: clamp(0.62rem, 0.72vw, 0.76rem);
    line-height: 1.16;
  }

  .commotion-logo-card {
    gap: 8px;
    padding: 12px 18px;
  }

  .commotion-logo-card img {
    width: min(90%, 460px);
    max-height: 190px;
  }

  .commotion-logo-card p {
    font-size: clamp(0.66rem, 0.78vw, 0.82rem);
  }

  .commotion-devices {
    padding: 10px 14px;
  }

  .commotion-devices .device-stage {
    min-height: 0;
  }

  .commotion-devices .ac2c-tablet-shot {
    left: 6%;
    width: min(68%, 600px);
    max-height: calc(100% - 18px);
    object-fit: contain;
  }

  .commotion-devices .ac2c-mobile-shot {
    right: 8%;
    bottom: 6%;
    width: min(20%, 150px);
    max-height: calc(100% - 18px);
    object-fit: contain;
  }

  .commotion-layout .cta-panel {
    justify-content: center;
    gap: 12px;
    padding: 18px 22px;
  }

  .commotion-layout .cta-panel h2 {
    font-size: clamp(1.85rem, 2.8vw, 2.85rem);
    line-height: 0.9;
  }

  .commotion-layout .cta-panel p {
    font-size: clamp(0.84rem, 1vw, 1rem);
    line-height: 1.3;
  }

  .commotion-layout .cta-panel a.cta-main {
    min-height: 42px;
    font-size: clamp(0.82rem, 0.95vw, 1rem);
  }

  .data-layout .data-access-card {
    justify-content: start;
    gap: 6px;
    padding: 10px 14px;
  }

  .data-access-card h2 {
    font-size: clamp(0.9rem, 1.12vw, 1.14rem);
    line-height: 1;
  }

  .access-levels {
    gap: 5px;
  }

  .access-levels article {
    gap: 7px;
    padding: 5px 8px;
  }

  .access-levels span {
    width: clamp(30px, 2.4vw, 38px);
    height: clamp(34px, 2.85vw, 42px);
    font-size: clamp(1.12rem, 1.58vw, 1.52rem);
  }

  .access-levels b {
    font-size: clamp(0.66rem, 0.78vw, 0.84rem);
  }

  .data-access-card p {
    font-size: clamp(0.62rem, 0.72vw, 0.76rem);
    line-height: 1.16;
  }

  .data-layout .api-card {
    justify-content: center;
    padding: 16px 18px;
  }

  .data-layout .api-card > .material-symbols-outlined {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 2vw, 2rem);
  }

  .data-layout .api-card h2 {
    font-size: clamp(1.15rem, 1.65vw, 1.7rem);
    line-height: 0.96;
  }

  .data-layout .api-card p {
    max-width: 23ch;
    margin-top: 8px;
    font-size: clamp(0.68rem, 0.8vw, 0.82rem);
    line-height: 1.22;
  }

  .api-tags {
    gap: 6px;
    margin-top: 12px;
  }

  .api-tags span {
    min-height: 24px;
    padding-inline: 8px;
    font-size: clamp(0.56rem, 0.66vw, 0.7rem);
  }
}

.commotion-layout .commotion-path {
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: clamp(12px, 1.3vw, 18px);
  background:
    radial-gradient(circle at 48% 12%, rgba(255, 133, 0, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(10, 11, 13, 0.98), rgba(0, 0, 0, 0.98));
}

.commotion-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  min-height: 0;
}

.commotion-path-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 0;
  padding: clamp(9px, 0.95vw, 13px) 8px;
  border: 1px solid rgba(255, 133, 0, 0.42);
  border-radius: 12px;
  background: rgba(255, 133, 0, 0.045);
  text-align: center;
}

.commotion-path .material-symbols-outlined {
  color: #ff8500;
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  text-shadow: 0 0 18px rgba(255, 133, 0, 0.28);
}

.commotion-path-grid b {
  color: #ff8500;
  font-size: clamp(0.62rem, 0.7vw, 0.76rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.commotion-path-education {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: clamp(12px, 1.2vw, 16px) clamp(14px, 1.4vw, 20px);
  border: 1px solid rgba(255, 133, 0, 0.62);
  border-radius: 14px;
  background: rgba(255, 133, 0, 0.04);
}

.commotion-path-education .material-symbols-outlined {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
}

.commotion-path-education h2 {
  margin: 0;
  color: #ff8500;
  font-size: clamp(0.82rem, 1.08vw, 1.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.commotion-path-education p {
  margin: 4px 0 0;
  color: #d8d2c8;
  font-size: clamp(0.68rem, 0.82vw, 0.92rem);
  font-weight: 500;
  line-height: 1.24;
}

.commotion-layout .commotion-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 12px;
  padding: clamp(14px, 1.4vw, 20px);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 133, 0, 0.1), transparent 11rem),
    linear-gradient(145deg, #0b0d0f, #050505);
}

.commotion-steps article {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 0;
  padding: 10px 8px;
  border: 1px solid rgba(255, 133, 0, 0.4);
  border-radius: 14px;
  background: rgba(255, 133, 0, 0.045);
  text-align: center;
}

.commotion-steps .step-number {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff8500;
  color: #050505;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.commotion-steps .material-symbols-outlined {
  color: #ff8500;
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 133, 0, 0.28);
}

.commotion-steps b {
  color: #f7f4ee;
  font-size: clamp(0.58rem, 0.66vw, 0.74rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 680px) {
  .commotion-layout .commotion-path {
    gap: 10px;
    padding: 12px;
  }

  .commotion-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .commotion-path-grid article {
    padding: 10px 6px;
  }

  .commotion-path .material-symbols-outlined {
    font-size: 1.65rem;
  }

  .commotion-path-grid b {
    font-size: 0.7rem;
    line-height: 1.08;
  }

  .commotion-path-education {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .commotion-layout .commotion-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .commotion-steps article {
    padding: 9px 6px;
  }

  .commotion-steps .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
  }

  .commotion-steps .material-symbols-outlined {
    font-size: 1.75rem;
  }

  .commotion-steps b {
    font-size: 0.68rem;
  }

  .commotion-devices {
    min-height: 380px;
  }

  .commotion-devices .device-stage {
    min-height: 330px;
  }

  .commotion-devices .ac2c-tablet-shot {
    left: 50%;
    top: 42%;
    width: 92%;
    transform: translate(-50%, -50%);
    animation-name: deviceFloatTabletMobile;
  }

  .commotion-devices .ac2c-mobile-shot {
    right: 8%;
    bottom: 5%;
    width: 28%;
  }
}

@media (max-width: 460px) {
  .tools-list {
    grid-template-columns: 1fr;
  }
}
