:root {
  --bg: linear-gradient(135deg, #fdfefe 0%, #f5f8ff 45%, #fff8f2 100%);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-2: #f8fbff;
  --line: rgba(15, 23, 42, 0.08);
  --text: #274e6f;
  --muted: #64748b;
  --green: #2dd4bf;
  --orange: #f97316;
  --blue: #274e6f;
  --green2: #274e6f;
  --green-dim: #0ea5e9;
  --green-glow: rgba(39, 78, 111, 0.15);
  --shadow-soft: 0 18px 40px -24px rgba(15, 23, 42, 0.24);
}


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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-image: url("ChatGPT Image 10 août 2026, 15_54_33.png");
  background-repeat: repeat;
  background-size: auto;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.rien {
  text-align: center;
  font-size: 5rem;
  color: #008888;
}

.rien span {
  color: #f25B2A;
}

.navbar {
  background: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

.wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 25px 24px;
  width: 100%;
}


.eyebrow {
  padding-top: 0px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green2);
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}

:focus-visible {
  outline: 2px solid var(--green2);
  outline-offset: 3px;
}

.snap-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.panel {
  min-height: calc(100vh - 72px);
  display: none;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 104px 0 56px;
}

.panel.active {
  display: flex;
}

.panel-scroll {
  overflow-y: visible;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 19, 33, .75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 100%;
  padding: 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-image {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 12px;
  background: transparent;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .14em;
}

.logo span {
  color: #d70305;
}

.logo2 {
  display: inline-flex;
  align-items: center;
  color: #274e6f !important;

  padding: 8px 16px;

  transition: all .3s ease;
}

.logo2:hover {
  background: rgba(0, 136, 136, .08);
  transform: translateY(-2px);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.logo2 span {
  color: #f25B2A;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 1.75vw, 34px);
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  flex-shrink: 1;
}

.nav-links button,
.nav-links a.logo2 {
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.feat-slider-container {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feat-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0 60px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.feat-row:last-child {
  border-bottom: none;
}

.feat-row-reverse {
  direction: rtl;
}

.feat-row-reverse>* {
  direction: ltr;
}

.feat-row-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.feat-row-text p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.feat-row-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feat-row-img img {
  max-width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feat-row:hover .feat-row-img img {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 136, 136, 0.2), 0 0 0 1px var(--line);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.mid-cards-zone {
  background: linear-gradient(135deg, rgba(0, 136, 136, 0.12) 0%, rgba(13, 19, 33, 0.95) 40%, rgba(0, 102, 255, 0.1) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.mid-cards-zone::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 136, 136, 0.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.mid-cards-zone::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.feature-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
}



.feat-slide {
  display: none;
  align-items: center;
  max-width: 1500px;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
  text-align: left;
  transition: opacity 0.5s ease;
}

.feat-slide.active {
  display: flex;
  animation: fadeSlideIn 0.5s ease-out;
}

.sec-card-slide {
  display: none;
  animation: fadeSlideIn 0.5s ease-out;
}

.sec-card-slide.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 10;
}

.slide-nav:hover {
  background: rgba(52, 211, 153, 0.3);
  border-color: var(--green2);
  color: white;
}

.slide-nav.prev {
  left: 20px;
}

.slide-nav.next {
  right: 20px;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slide-dot.active {
  background: var(--green2);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--green-glow);
}

.feat-row-text {
  flex: 1;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  margin: 0 auto;
}

.feat-row-text p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;


  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.feat-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  color: var(--green2);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.feat-tag::before,
.feat-tag::after {
  content: "";
  width: 240px;
  /* longueur du trait */
  height: 2px;
  background: #274e6f;
  border-radius: 2px;
}

.feat-row-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #274e6f;
}

.feat-text p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.feat-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feat-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  transition: transform 0.5s ease;
}

.feat-slider-container:hover .feat-image-box img {
  transform: scale(1.02) translateY(-5px);
}



.nav-links button {
  position: relative;

  font-family: 'Inter', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color .25s ease;
}

.nav-links button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green2);
  /* ou #d70305 */
  transform: translateX(-50%);
  transition: width .3s ease;
}

.nav-links button:hover::after,
.nav-links button.active::after {
  width: 100%;
}

.nav-links button.active,
.nav-links button:hover {
  color: var(--text);
}

.nav-links a {
  background: transparent;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}



.btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}

.btn-primary {
  background: var(--green2);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px var(--green-glow);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--green2);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}


.dot-nav {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-nav button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.dot-nav button.active {
  background: var(--green2);
  transform: scale(1.3);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid>div:last-child {
  padding-top: 60px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.08;
  margin: 18px 0 20px;
}

.hero h1 .dim {
  color: var(--muted);
}

.hero p.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-row {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.stat-heading {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green2);
  margin: 24px 0 16px;
}

.stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  display: block;
  color: var(--green2);
}

.stat span {
  font-size: 15px;
  color: #274e6f;
}

/* Long bar stats */
.extra-stats {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.extra-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stats-divider {
  width: 1px;
  height: 50px;
  background: var(--line);
}

.stats-label-perf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.perf-text {
  color: #ff4d4d;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.perf-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.perf-line {
  height: 2px;
  background-color: #ff4d4d;
  border-radius: 2px;
}

.perf-line.l1 { width: 100%; }
.perf-line.l2 { width: 65%; }
.perf-line.l3 { width: 30%; }

.extra-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.extra-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.phone-preview {
  display: flex;
  justify-content: flex-end;
}

.phone-preview img {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

.phone-frame {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  border-radius: 44px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

.phone-frame::before,
.phone-frame::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
}

.phone-frame::before {
  top: 18px;
  width: 80px;
  height: 7px;
  border-radius: 999px;
}

.phone-frame::after {
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.80));
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.phone-screen img {
  width: 72%;
  height: auto;
  max-height: 72%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.phone-label {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 220px;
}

.live-stats-box {
  display: none;
}

.mesh {
  display: none;
}

@keyframes floatStat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.live-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 0.85rem;
}

.live-stat-label {
  color: var(--muted);
  font-weight: 500;
}

.live-stat-value {
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 10px rgba(255, 255, 255, 0.03);
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px auto;
  animation: floatStat 4s ease-in-out infinite alternate;
}

/* .rien block removed — element no longer in use */

.mesh svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mesh-node {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid #008888;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6);
}

.mesh-node svg {
  width: 26px;
  height: 26px;
  overflow: visible;
}

.mesh-node.chat {
  top: 6%;
  left: 6%;
}

.mesh-node.call {
  top: 60%;
  left: 0%;
}

.mesh-node.video {
  top: 27%;
  right: 4%;
}

.mesh-node.core {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 26px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--green2);
}

.mesh-node.core .logo-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 1400;
  color: var(--green2);
  font-size: 26px;
  letter-spacing: .08em;
}

.pulse-line {
  stroke: var(--green2);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 5 7;
  opacity: .55;
  animation: dash 3.5s linear infinite;
}

/* Overrides removed per user request */

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

.glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--green-glow), transparent 65%);
  filter: blur(10px);
  opacity: .5;
  pointer-events: none;
}


.sec-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: 1.1rem;
}

.download-section {
  padding: 100px 5%;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-head {
  max-width: 600px;
  margin-bottom: 44px;

  margin-left: max(0px, calc(25% - 265px));
}

.section-head h2 {
  font-size: 34px;
  margin-top: 14px;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;


  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}


.section-page {

  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 5% 40px;
  gap: 20px;

  min-height: calc(100vh - 220px);
}


.section-page.active {
  display: flex;
}



.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: border-color .2s, transform .2s;
}

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

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green2);
}

.feature-card h3 {
  font-size: 15.5px;
  margin-bottom: 7px;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.check-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-list li::before {
  content: "✓";
  color: var(--green2);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}


.interface-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.phones {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: flex-end;
}

.phone-mock {
  width: 220px;
  border-radius: 34px;
  background: #000;
  padding: 9px;
  position: relative;
  box-shadow: 0 40px 70px -24px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .06);
  flex: none;
}

.phone-mock.raised {
  width: 240px;
  margin-bottom: 22px;
}

.phone-mock::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 3px;
  background: #000;
  z-index: 2;
  box-shadow: 0 0 0 3px #000;
}

.phone-mock img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.interface-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.interface-item {
  display: flex;
  gap: 14px;
}

.interface-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--green2);
  font-size: 14px;
  width: 26px;
  flex: none;
}

.interface-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.interface-item p {
  font-size: 13.5px;
  color: var(--muted);
}


.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step .idx {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--green2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green2);
  flex: none;
}

.step h3 {
  font-size: 14.5px;
  margin-bottom: 3px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
}

.p2p-diagram {
  position: relative;
  height: 260px;
}

.p2p-diagram svg {
  width: 100%;
  height: 100%;
}

.device {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--green2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.device svg {
  width: 26px;
  height: 26px;
  stroke: var(--green2);
}

.device.left {
  top: 42%;
  left: 2%;
}

.device.right {
  top: 42%;
  right: 2%;
}

.server-off {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .4;
}

.server-off svg {
  width: 22px;
  height: 22px;
  stroke: var(--muted);
}

.server-off span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .06em;
}


.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-box h2 {
  font-size: 36px;
  margin: 14px 0 16px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 440px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-item h3 {
  font-size: 14.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--green2);
  box-shadow: 0 20px 40px -10px rgba(0, 136, 136, 0.15);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 136, 136, 0.1);
  border: 1px solid rgba(0, 136, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green2);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-card a,
.contact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--green2);
}

.contact-separator {
  font-size: 18px;
  color: var(--muted);
  margin: 0 6px;
}



footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 10px;
  margin-top: auto;
}

.foot-grid {
  padding: 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  width: 100%;
}

.foot-col {
  flex: 0 0 auto;
}

.foot-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 12px;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-col ul li {
  margin-bottom: 8px;
}

.foot-col ul li button,
.foot-col ul li a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 0;
  transition: color .2s;
  display: block;
  text-align: left;
}

.foot-col ul li button:hover,
.foot-col ul li a:hover {
  color: var(--text);
}

.foot-brand {
  text-align: center;
  flex: 1;
}

.foot-brand .logo {
  font-size: 18px;
  margin-bottom: 8px;
}

.foot-brand p {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 200px;
  margin: 0 auto;
}

.foot-right {
  text-align: right;
  flex: 1;
}

.foot-right ul li button,
.foot-right ul li a {
  text-align: right;
  display: block;
}

.foot-left,
.foot-left ul li button,
.foot-left ul li a {
  text-align: left;
  flex: 1;
}

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width:968px) {

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .section-head {
    margin-left: 20px;
    margin-bottom: 0px;
  }

  .section-head h2,
  .cta-box h2,
  .feat-row-text h3 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-right {
    display: flex;
  }

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

  .feature-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .phone-preview {
    justify-content: center;
  }

  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-row {
    justify-content: center;
  }

  .foot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
    align-items: flex-start;
  }

  .foot-brand {
    flex: 0 0 100%;
    order: -1;
    text-align: left;
    margin-bottom: 16px;
    padding: 0 24px;
  }

  .foot-brand p {
    margin: 0;
    max-width: 100%;
  }

  .foot-col:not(.foot-brand) {
    flex: 0 0 50%;
    padding: 0 24px;
    text-align: left;
  }

  .foot-right,
  .foot-right ul li button,
  .foot-right ul li a {
    text-align: left;
  }

  .foot-bottom {
    text-align: left;
  }

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

  .p2p-diagram {
    margin-top: 40px;
    height: 220px;
  }

  .hero-grid>div:last-child {
    padding-top: 24px;
  }

  .mesh {
    display: none;
  }

  .glow {
    display: none;
  }

  .live-stats-box {
    max-width: 100%;
    width: 100%;
  }

  .extra-stats {
    width: 80%;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    margin-top: 40px;
  }

  .stats-divider {
    width: 100%;
    height: 1px;
  }

  .feat-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }

  .feat-row-reverse {
    direction: ltr;
  }

  .feat-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .feat-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .feat-text h3 {
    font-size: 1.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}


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

/* Force-hide mobile elements on desktop regardless of JS state */
@media (min-width: 969px) {

  .mobile-nav,
  .mobile-nav.open {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
  }

  .mobile-right {
    display: none !important;
  }
}



.hamburger {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  transition: .3s;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 5px;
  transition: .3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {

  position: fixed;
  top: 82px;
  left: 20px;
  right: 20px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  backdrop-filter: blur(18px);

  border: 1px solid var(--line);

  border-radius: 20px;

  padding: 22px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, .4);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-15px);

  transition: .35s;

  z-index: 999;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a,
.mobile-nav button {
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: .2s;
  cursor: pointer;
  width: 100%;
}

.mobile-nav a:last-child,
.mobile-nav button:last-child {
  border: none;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
  color: var(--green2);
}

/* ===========================
   WORK THEME OVERRIDES (For Legal Pages)
=========================== */
body.work-theme {
  background-color: #fdfefe;
  background-image: url("ChatGPT Image 10 août 2026, 15_54_33.png");
  background-repeat: repeat;
  background-size: auto;
  color: #1e293b;
}

body.work-theme .legal-content h1,
body.work-theme .legal-content h2,
body.work-theme .legal-content strong {
  color: #274e6f;
}

body.work-theme .legal-content p {
  color: #274e6f;
}

body.work-theme #nav-work {
  background: rgba(253, 254, 254, 0.9);
  background-image: url("ChatGPT Image 10 août 2026, 15_54_33.png");
  border-bottom: 1px solid rgba(39, 78, 111, 0.1);
}

body.work-theme #nav-work .nav-links button,
body.work-theme #nav-work .nav-links a {
  color: #64748b;
}

body.work-theme #nav-work .logo {
  color: #008888;
}

body.work-theme #nav-work .logo2 {
  color: #008888;
}

body.work-theme #footer-work {
  background-color: transparent;
  border-top: 1px solid rgba(39, 78, 111, 0.1);
}

body.work-theme #footer-work .foot-col h4 {
  color: #008888;
}

body.work-theme #footer-work .foot-col ul li a,
body.work-theme #footer-work .foot-col ul li button {
  color: #64748b;
}

body.work-theme #footer-work .foot-bottom span,
body.work-theme #footer-work .foot-brand p {
  color: #64748b;
}

body.work-theme #footer-work .logo {
  color: #008888;
}