:root {
  --bg: #050d18;
  --bg-soft: #081526;
  --panel: rgba(11, 29, 51, 0.78);
  --panel-solid: #0d1e34;
  --panel-light: rgba(255, 255, 255, 0.045);
  --text: #f4f9ff;
  --muted: #9fb2c9;
  --muted-2: #72879f;
  --line: rgba(147, 202, 255, 0.15);
  --line-strong: rgba(57, 216, 255, 0.36);
  --blue: #3c7cff;
  --cyan: #2fd7ff;
  --teal: #20e4b5;
  --green: #74f6a7;
  --orange: #ffbf66;
  --danger: #ff7180;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 20px 55px rgba(0, 0, 0, 0.23);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(47, 215, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 85% 14%, rgba(32, 228, 181, 0.09), transparent 28rem),
    linear-gradient(180deg, #050d18 0%, #071321 45%, #050d18 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  width: 320px;
  height: 320px;
  top: 18%;
  left: -180px;
  background: rgba(47, 215, 255, 0.13);
}

.ambient-two {
  width: 420px;
  height: 420px;
  right: -240px;
  top: 55%;
  background: rgba(32, 228, 181, 0.09);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-small {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(var(--max), calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 17px;
  color: #03111d !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 12px 30px rgba(32, 228, 181, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 3px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 90px);
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
}

.status-line {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 13px 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dff8ff;
  border: 1px solid rgba(47, 215, 255, 0.25);
  border-radius: 999px;
  background: rgba(47, 215, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.flag-fr {
  width: 25px;
  height: 17px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.13);
}

.flag-fr i:nth-child(1) { background: #183e9f; }
.flag-fr i:nth-child(2) { background: #fff; }
.flag-fr i:nth-child(3) { background: #ed2939; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(45px, 5.8vw, 75px);
  line-height: .94;
  letter-spacing: -.068em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: -.055em;
}

h3 {
  letter-spacing: -.035em;
}

.hero-text,
.section-heading > p:last-child,
.solution-copy > p:last-child,
.french-card > div > p,
.demo-copy > p,
.footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-text {
  max-width: 690px;
  font-size: 19px;
}

.hero-actions {
  margin: 32px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03111d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--teal), var(--green));
  box-shadow: 0 18px 45px rgba(32, 228, 181, 0.20);
}

.btn-primary:hover {
  box-shadow: 0 22px 55px rgba(32, 228, 181, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}

.btn-secondary:hover {
  border-color: rgba(47, 215, 255, .34);
  background: rgba(255, 255, 255, .075);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-row span,
.demo-badges span {
  padding: 8px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 13px;
  font-weight: 700;
}

.prelaunch-note {
  max-width: 670px;
  margin: 24px 0 0;
  padding-left: 14px;
  color: var(--muted-2);
  border-left: 2px solid var(--teal);
  font-size: 13px;
  line-height: 1.55;
}

.prelaunch-note strong {
  color: #dceaff;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.visual-label {
  position: absolute;
  top: 7px;
  left: 18px;
  z-index: 2;
  color: var(--muted-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dashboard-card {
  position: absolute;
  inset: 42px 18px auto 0;
  min-height: 470px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(18, 45, 77, .96), rgba(6, 17, 31, .97));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -120px;
  right: -80px;
  border-radius: 999px;
  background: rgba(47, 215, 255, .12);
  filter: blur(30px);
}

.dashboard-head {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-head p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-head h2 {
  margin: 0;
  font-size: 29px;
}

.online-pill {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cffff1;
  border: 1px solid rgba(32, 228, 181, .28);
  border-radius: 999px;
  background: rgba(32, 228, 181, .09);
  font-size: 12px;
  font-weight: 800;
}

.online-pill b {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal);
}

.kpi-grid {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.kpi-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.04);
}

.kpi-grid span,
.kpi-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.kpi-grid strong {
  display: block;
  margin: 5px 0 3px;
  font-size: 30px;
  letter-spacing: -.05em;
}

.kpi-grid small {
  color: var(--muted-2);
}

.activity-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
}

.activity {
  padding: 13px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(2, 10, 19, .34);
}

.activity-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-weight: 900;
}

.activity.danger .activity-icon {
  color: #ffd8dd;
  background: rgba(255,113,128,.14);
}

.activity.warning .activity-icon {
  color: #ffe7bf;
  background: rgba(255,191,102,.14);
}

.activity.success .activity-icon {
  color: #caffdf;
  background: rgba(32,228,181,.14);
}

.activity strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.activity p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.activity em {
  font-style: normal;
  color: var(--muted);
  font-size: 10px;
}

.float-card {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(6, 18, 33, .94);
  box-shadow: var(--shadow-soft);
}

.float-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.float-card strong {
  font-size: 16px;
}

.float-card-one {
  top: 12px;
  right: 0;
}

.float-card-two {
  right: 52px;
  bottom: 27px;
}

.audience-strip {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.audience-strip span::before {
  content: "•";
  margin-right: 12px;
  color: var(--teal);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.problem-card,
.module-card,
.price-card,
.option-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  padding: 27px;
}

.problem-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 13px;
}

.problem-card h3 {
  margin-bottom: 11px;
  font-size: 22px;
}

.problem-card p,
.module-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.66;
}

.solution-band {
  padding: 45px;
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(23, 61, 96, .83), rgba(7, 19, 34, .94));
  box-shadow: var(--shadow);
}

.solution-copy h2 {
  font-size: clamp(31px, 3.8vw, 46px);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.workflow > div {
  min-height: 155px;
  padding: 18px 13px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.workflow > div span {
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: #03111d;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  font-size: 13px;
  font-weight: 900;
}

.workflow strong,
.workflow small {
  display: block;
}

.workflow strong {
  margin-bottom: 7px;
}

.workflow small {
  color: var(--muted);
  line-height: 1.4;
}

.workflow > b {
  color: var(--teal);
}

.modules-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 52px;
  align-items: start;
}

.modules-section .section-heading {
  position: sticky;
  top: 120px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.module-card {
  min-height: 230px;
  padding: 24px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 215, 255, .28);
  background: rgba(15, 37, 63, .9);
}

.module-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 215, 255, .18);
  border-radius: 14px;
  background: rgba(47, 215, 255, .09);
  font-size: 20px;
}

.module-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.french-card {
  padding: 50px;
  display: grid;
  grid-template-columns: .34fr 1fr;
  align-items: center;
  gap: 52px;
  border: 1px solid rgba(47, 215, 255, .27);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 50%, rgba(60, 124, 255, .18), transparent 24rem),
    radial-gradient(circle at 100% 20%, rgba(237, 41, 57, .10), transparent 22rem),
    linear-gradient(145deg, rgba(13, 33, 58, .96), rgba(5, 15, 27, .96));
  box-shadow: var(--shadow);
}

.france-mark {
  aspect-ratio: 1;
  max-width: 270px;
  margin: auto;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(24,62,159,.34) 0 33.33%, rgba(255,255,255,.09) 33.33% 66.66%, rgba(237,41,57,.23) 66.66%);
  box-shadow: inset 0 0 55px rgba(255,255,255,.04), 0 25px 70px rgba(0,0,0,.26);
}

.france-mark span,
.france-mark strong {
  display: block;
}

.france-mark span {
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 950;
  letter-spacing: -.08em;
}

.france-mark strong {
  color: #d8e8f8;
  letter-spacing: .22em;
  font-size: 13px;
}

.french-points {
  margin: 25px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.french-points span {
  padding: 9px 12px;
  color: #ddecfa;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 700;
}

.french-card small {
  display: block;
  color: var(--muted-2);
  line-height: 1.55;
}

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

.price-card {
  position: relative;
  padding: 29px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  transform: translateY(-12px);
  border-color: rgba(32, 228, 181, .44);
  background:
    linear-gradient(160deg, rgba(19, 57, 89, .98), rgba(7, 20, 37, .98));
  box-shadow: 0 32px 90px rgba(0,0,0,.35), 0 0 45px rgba(32,228,181,.07);
}

.recommended {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 7px 10px;
  color: #03111d;
  border-radius: 999px;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.plan-name {
  margin-bottom: 17px;
  color: var(--cyan);
  font-weight: 900;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-bottom: 14px;
}

.price strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.065em;
}

.price span {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.plan-desc {
  min-height: 76px;
  color: var(--muted);
  line-height: 1.6;
}

.included {
  width: fit-content;
  margin-bottom: 17px;
  padding: 7px 10px;
  color: #d9fff1;
  border: 1px solid rgba(32, 228, 181, .24);
  border-radius: 999px;
  background: rgba(32, 228, 181, .07);
  font-size: 12px;
  font-weight: 800;
}

.price-card ul {
  min-height: 230px;
  margin: 0 0 25px;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 11px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #dce9f6;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.option-card {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.option-card > span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 9px;
  color: var(--cyan);
  border-radius: 8px;
  background: rgba(47,215,255,.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.option-card strong {
  min-height: 44px;
  margin-bottom: 12px;
}

.option-card b {
  margin-bottom: 5px;
  color: #eaf7ff;
  font-size: 21px;
}

.option-card small {
  color: var(--muted);
}

.faq-section {
  max-width: 900px;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 21px 24px;
}

.faq-list summary {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -5px;
  color: var(--teal);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 15px 0 0;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  line-height: 1.65;
}

.demo-card {
  padding: 44px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 45px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(47, 215, 255, .10), transparent 26rem),
    linear-gradient(145deg, rgba(14, 38, 65, .96), rgba(5, 16, 29, .98));
  box-shadow: var(--shadow);
}

.demo-copy {
  padding-top: 10px;
}

.demo-badges {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-form {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(3, 12, 22, .48);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dce9f5;
  font-size: 13px;
  font-weight: 750;
}

.form-grid {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.contact-form > label {
  margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.055);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select option {
  color: #101827;
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 215, 255, .52);
  box-shadow: 0 0 0 4px rgba(47, 215, 255, .08);
}

.consent-line {
  margin: 4px 0 17px !important;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent-line input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 0;
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr .7fr .7fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer p {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-status {
  color: var(--muted-2);
  font-size: 12px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav strong {
  margin-bottom: 5px;
  color: #ddecf9;
  font-size: 13px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .07s;
}

.delay-2 {
  transition-delay: .14s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 75px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .modules-section {
    grid-template-columns: 1fr;
  }

  .modules-section .section-heading {
    position: static;
  }

  .solution-band {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 75px 0;
  }

  .section-small,
  .footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar {
    top: 8px;
    width: calc(100% - 18px);
    margin-top: 8px;
    border-radius: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 74px;
    padding: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 14, 25, .98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.05);
  }

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

  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card ul,
  .plan-desc {
    min-height: auto;
  }

  .french-card {
    grid-template-columns: 1fr;
  }

  .france-mark {
    width: min(260px, 80%);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 47px;
  }

  .hero {
    padding-top: 55px;
    gap: 25px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-label {
    position: static;
    margin: 0 0 10px 5px;
  }

  .dashboard-card {
    position: relative;
    inset: auto;
    min-height: auto;
    padding: 19px;
  }

  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .activity {
    grid-template-columns: auto 1fr;
  }

  .activity em {
    display: none;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: calc(100% - 20px);
    margin: 10px 10px 0;
  }

  .audience-strip {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .solution-band,
  .french-card,
  .demo-card {
    padding: 28px 21px;
  }

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

  .workflow > b {
    transform: rotate(90deg);
    text-align: center;
  }

  .module-grid,
  .options-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


.price-prefix {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 620px) {
  h1 {
    font-size: 42px;
    line-height: .97;
  }

  .hero-text {
    font-size: 16px;
  }

  .status-line {
    font-size: 11px;
  }
}
