:root {
  --color-blue-night: #00264e;
  --color-blue-light: #1a3a6b;
  --color-purple-electric: #8c52ff;
  --color-purple-light: #a67cff;
  --color-grey-medium: #5a6b7c;
  --color-white-off: #f9f9f7;
  --transition-base: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

p:not(li p):not(li > p) {
  text-align: justify;
}

li p,
li > p {
  text-align: left;
}

body {
  font-family: "Inter", sans-serif;
  background: #f9f9f7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* ── Navigation ── */
.nav-glass {
  background: rgba(249, 249, 247, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 38, 78, 0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: #5a6b7c;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #00264e;
}
.nav-cta {
  background: linear-gradient(135deg, #00264e, #1a3a6b);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: opacity 0.2s ease !important;
}
.nav-cta:hover {
  opacity: 0.88;
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #00264e;
  padding: 4px;
  line-height: 0;
}
.nav-burger svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 1.25rem;
  border-top: 1px solid rgba(0, 38, 78, 0.06);
}
.nav-mobile a {
  color: #5a6b7c;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-mobile a:hover {
  color: #00264e;
}
.nav-mobile.open {
  display: flex;
}
@media (max-width: 639px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

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

/* ── Hero blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 82, 255, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 38, 78, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: float2 15s ease-in-out infinite;
}
.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(166, 124, 255, 0.15) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.08);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 30px);
  }
}

/* ── Splash fade-in ── */
@keyframes splash-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-main {
  opacity: 1;
  padding-top: 100px;
  animation: splash-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Hero grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  width: 100%;
  padding-top: 1.5rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
  .hero-right {
    order: -1;
  }
}

/* ── ADN band ── */
.adn-band {
  background: linear-gradient(135deg, #00264e 0%, #1a1060 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.adn-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.adn-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.adn-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 160px;
}

.adn-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a67cff;
}

.adn-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #8c52ff, transparent);
  border-radius: 2px;
}

.adn-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .adn-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── À propos section ── */
.apropos-section {
  background: linear-gradient(180deg, #F9F9F7 0%, rgba(0,38,78,0.03) 100%);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 960px;
  width: 100%;
}

.apropos-left {
  display: flex;
  flex-direction: column;
}

.apropos-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.apropos-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: #8c52ff;
  border-left: 3px solid #8c52ff;
  padding-left: 1.25rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .apropos-right {
    order: -1;
  }
}

/* ── Services section ── */
.services-section {
  background: #F9F9F7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1060px;
  width: 100%;
  align-items: start;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0,38,78,0.09);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 32px rgba(0,38,78,0.09);
  transform: translateY(-2px);
}

.service-card--featured {
  border-color: rgba(140,82,255,0.3);
  box-shadow: 0 4px 24px rgba(140,82,255,0.1);
}

.service-card--featured:hover {
  box-shadow: 0 12px 36px rgba(140,82,255,0.18);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5a6b7c;
  background: rgba(90,107,124,0.08);
  border: 1px solid rgba(90,107,124,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.service-badge--purple {
  color: #8c52ff;
  background: rgba(140,82,255,0.08);
  border-color: rgba(140,82,255,0.2);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00264e;
  line-height: 1.35;
}

.service-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  color: #5a6b7c;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #5a6b7c;
  line-height: 1.45;
}

.service-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00264e;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,38,78,0.2);
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
}

.service-cta:hover {
  background: #00264e;
  color: #fff;
}

.service-cta--featured {
  background: linear-gradient(135deg,#8c52ff,#a67cff);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(140,82,255,0.35);
}

.service-cta--featured:hover {
  opacity: 0.88;
  background: linear-gradient(135deg,#8c52ff,#a67cff);
  color: #fff;
}

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

/* ── NestPulse section ── */
.nestpulse-section {
  background: linear-gradient(180deg, #F9F9F7 0%, rgba(140,82,255,0.04) 100%);
}

.nestpulse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  width: 100%;
  margin-top: 2.5rem;
}

.nestpulse-card {
  background: #fff;
  border: 1px solid rgba(140,82,255,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nestpulse-card:hover {
  box-shadow: 0 8px 28px rgba(140,82,255,0.12);
  transform: translateY(-2px);
}

.nestpulse-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(140,82,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c52ff;
}

.nestpulse-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.nestpulse-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #00264e;
}

.nestpulse-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #5a6b7c;
  line-height: 1.55;
}

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

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

/* ── Stats section ── */
.stats-section {
  background: #fff;
  border-top: 1px solid rgba(0,38,78,0.06);
  border-bottom: 1px solid rgba(0,38,78,0.06);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

/* ── Stats grid ── */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  gap: 0.4rem;
}
.stat-sep {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(140, 82, 255, 0.25), transparent);
  flex-shrink: 0;
}
.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1;
  color: #00264e;
}
.stat-unit {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #8c52ff;
  line-height: 1;
  padding-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.7rem;
  color: #5a6b7c;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
.stat-label span {
  display: block;
  color: #8c52ff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
}
.stat-label sup {
  font-size: 0.55rem;
}

/* ── Waitlist ── */
.waitlist-bg {
  background: linear-gradient(135deg, #00264e 0%, #1a3a6b 40%, #3d1f8a 100%);
  position: relative;
  overflow: hidden;
}
.waitlist-bg::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(140, 82, 255, 0.15);
  filter: blur(80px);
  top: -200px;
  right: -100px;
}
.waitlist-bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(166, 124, 255, 0.1);
  filter: blur(60px);
  bottom: -100px;
  left: -50px;
}
.waitlist-card {
  padding: 2rem 1.25rem;
}
@media (min-width: 640px) {
  .waitlist-card {
    padding: 3.5rem 4rem;
  }
}
@media (min-width: 768px) {
  .waitlist-card {
    padding: 5rem 7rem;
  }
}

/* ── Button primary ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00264e, #1a3a6b);
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 38, 78, 0.25);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 38, 78, 0.35);
}

/* ── Stat pill ── */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 38, 78, 0.08);
  border-radius: 100px;
  padding: 8px 20px;
  box-shadow: 0 2px 12px rgba(0, 38, 78, 0.06);
  font-size: 0.85rem;
  color: #5a6b7c;
  font-weight: 500;
}
.stat-pill strong {
  color: #00264e;
  font-weight: 700;
}
.stat-pill i,
.stat-pill svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
