:root {
  --blue: #1174f2;
  --blue-deep: #075fcf;
  --blue-soft: #eaf4ff;
  --navy: #071a33;
  --ink: #152942;
  --muted: #63788f;
  --line: #d7e4f1;
  --soft: #f7fbff;
  --shell: min(1280px, calc(100% - 48px));
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(#eaf1f866 1px, transparent 1px),
    linear-gradient(90deg, #eaf1f866 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(#000, transparent 78%);
  mask-image: linear-gradient(#000, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  background: rgba(5, 20, 39, .36);
  opacity: 0;
  transition: opacity .22s ease;
}
body.nav-open { overflow: hidden; }
body.nav-open::after { pointer-events: auto; opacity: 1; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

/* En-tête */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e1ebf5;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(14, 47, 84, .08); }
.header-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}
.brand > img {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong {
  color: var(--navy);
  font-size: 31px;
  font-weight: 820;
  line-height: .92;
  letter-spacing: -1.25px;
}
.brand-copy strong span { color: var(--blue); }
.brand-copy small {
  color: #5c728b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .08px;
}
.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a,
.nav-contact {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #17324e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .15px;
}
.main-nav a::after,
.nav-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}
.main-nav a:hover,
.nav-contact:hover { color: var(--blue); }
.main-nav a:hover::after,
.nav-contact:hover::after { right: 0; }
.nav-contact {
  margin-left: 3px;
  padding-left: 22px;
  color: var(--blue);
}
.nav-contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: #b9d4f1;
  transform: translateY(-50%);
}
.header-actions {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(2px);
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #cbdcec;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 7px 18px rgba(29, 75, 122, .07);
}
.language-switch button {
  min-width: 38px;
  height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #50667d;
  font-size: 12px;
  font-weight: 850;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.language-switch button.active {
  background: linear-gradient(145deg, #52b7ff, #1681f5 42%, #0763d4);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 7px 16px rgba(17,116,242,.22);
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #cbdcec;
  border-radius: 50%;
  background: #fff;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.nav-open .mobile-menu-toggle { border-color: var(--blue); background: var(--blue); box-shadow: 0 8px 20px rgba(17,116,242,.25); }
body.nav-open .mobile-menu-toggle span { background: #fff; }

/* Hero : composition 38,2 / 61,8 et illustration intégrée au texte */
.hero {
  position: relative;
  min-height: 430px;
  padding: 36px 0 0;
  display: grid;
  grid-template-columns: 38.2% 61.8%;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  padding-top: 62px;
}
.hero h1 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(58px, 5vw, 72px);
  font-weight: 820;
  line-height: .92;
  letter-spacing: -4.6px;
  text-shadow: 0 1px 0 rgba(255,255,255,.72), 0 0 5px rgba(255,255,255,.44);
}
.hero h1 span { display: block; }
.hero h1 span:nth-child(1),
.hero h1 span:nth-child(3) { color: var(--blue); }
.hero h1 span:nth-child(2) { color: var(--navy); }
html[lang="en"] .hero h1 {
  line-height: 1.07;
  letter-spacing: -3px;
}
.hero-lead {
  position: relative;
  z-index: 4;
  max-width: 355px;
  margin: 26px 0 0;
  padding: 0 18px 0 0;
  color: #536d88;
  font-size: 16px;
  line-height: 1.65;
  background: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.95), 0 0 4px rgba(255,255,255,.86);
}
.hero-illustration {
  position: absolute;
  z-index: 0;
  left: 8%;
  right: -10%;
  top: 72px;
  bottom: -22px;
  display: flex;
  align-items: flex-start;
  overflow: visible;
  pointer-events: none;
}
.hero-illustration picture,
.hero-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}
.hero-illustration img {
  opacity: .34;
  object-fit: contain;
  object-position: center top;
  transform: none;
  transform-origin: center top;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.45) 7%, #000 22%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.45) 7%, #000 22%, #000 88%, transparent 100%);
  filter: brightness(1.12) contrast(1.02) saturate(.86);
}

/* Sections */
.section { padding: 80px 0; }
.section-title { margin: 0 0 40px; text-align: left; }
.section-title p,
.software-intro > p,
.dialog-layout header > p {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.6px;
}
.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(35px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.domain-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 63, 109, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.domain-card:hover {
  transform: translateY(-4px);
  border-color: #9bc9fc;
  box-shadow: 0 22px 52px rgba(21, 63, 109, .12);
}
.domain-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.618 / 1;
  object-fit: cover;
}
.domain-card > div { position: relative; padding: 24px 25px 27px; }
.domain-card span {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #91a5b9;
  font-size: 12px;
  font-weight: 850;
}
.domain-card h3 {
  margin: 0 42px 10px 0;
  color: var(--navy);
  font-size: 20px;
}
.domain-card p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}
.domain-card a { color: var(--blue); font-size: 21px; }


.domains-section {
  padding-top: 18px !important;
  margin-top: 0;
}
.domains-section .section-title {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.domains-section .section-title h2 {
  margin-left: 0;
}

.software-section {
  border-block: 1px solid #e2ebf4;
  background: #f8fbff;
}
.software-layout {
  display: grid;
  grid-template-columns: .618fr 1fr;
  gap: 48px;
  align-items: start;
}
.software-intro { padding-top: 14px; }
.software-intro h2 {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(36px, 3.3vw, 46px);
  line-height: 1.03;
  letter-spacing: -2.2px;
}
.software-intro > span {
  display: block;
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.software-intro > a {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.software-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.software-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 63, 109, .08);
}
.software-logo { display: block; height: 72px; }
.software-logo img {
  display: block;
  width: 295px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}
.software-card > p {
  min-height: 62px;
  margin: 19px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.software-card ul { margin: 0 0 18px; padding: 0; list-style: none; }
.software-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 17px;
  color: #4f657c;
  font-size: 13px;
  line-height: 1.45;
}
.software-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.software-preview {
  display: block;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  border-radius: 7px;
  aspect-ratio: 1.618 / 1;
  background: #071321;
}
.software-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.software-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 17px;
}
.software-card footer strong { color: var(--navy); font-size: 22px; }
.software-card footer small { font-size: 12px; }
.software-card footer a { color: var(--blue); font-size: 13px; font-weight: 850; }

.project-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.project-row a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1.618 / 1;
  background: #e8eef5;
}
.project-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
}
.project-row a:hover img { transform: scale(1.03); }
.outline-link {
  display: block;
  width: max-content;
  margin: 32px auto 0;
  padding: 11px 0 7px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

/* Pied de page */
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner.footer-legal {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-legal nav,
.footer-legal small { color: #718399; font-size: 14px; }
.footer-legal a:hover { color: var(--blue); }

/* Formulaire de contact */
dialog {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  border: 1px solid #cbd8e5;
  border-radius: 18px;
  background: rgba(248, 250, 252, .96);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(7, 27, 54, .28);
  backdrop-filter: blur(18px);
}
dialog::backdrop { background: rgba(7, 24, 44, .6); backdrop-filter: blur(5px); }
.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  color: #637589;
  font-size: 24px;
}
.dialog-layout { display: grid; grid-template-columns: .618fr 1fr; }
.dialog-layout header { padding: 52px 40px; background: #edf4fa; }
.dialog-layout header h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.05;
}
.dialog-layout header span { color: var(--muted); font-size: 14px; line-height: 1.65; }
.dialog-layout form { padding: 45px 42px; display: grid; gap: 15px; background: rgba(255,255,255,.92); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dialog-layout label { display: grid; gap: 7px; color: #51657b; font-size: 12px; font-weight: 700; }
.dialog-layout input,
.dialog-layout select,
.dialog-layout textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cbd9e7;
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}
.dialog-layout input:focus,
.dialog-layout select:focus,
.dialog-layout textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,116,242,.1); }
.consent { grid-template-columns: 18px 1fr !important; align-items: start; }
.consent input { width: 15px; }
.primary {
  justify-self: start;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #45adff, #1174f2 50%, #075fcf);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 24px rgba(17,116,242,.2);
}
.honeypot { position: absolute !important; left: -9999px !important; }
.status-toast {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  max-width: 380px;
  padding: 13px 16px;
  border-radius: 10px;
  background: #0b243e;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: .2s;
}
.status-toast.show { opacity: 1; transform: none; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --shell: min(100% - 34px, 1280px); }
  .site-header { background: #fff; backdrop-filter: none; }
  .header-inner { min-height: 88px; gap: 18px; }
  .brand { grid-column: 1; justify-self: start; }
  .header-actions { grid-column: 3; justify-self: end; }
  .brand > img { width: 52px; height: 52px; }
  .brand-copy strong { font-size: 28px; }
  .brand-copy small { font-size: 11px; }
  .mobile-menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    padding: 118px 34px 42px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.98);
    box-shadow: -25px 0 70px rgba(5,25,48,.16);
    transform: translateX(105%);
    transition: transform .24s ease;
  }
  body.nav-open .main-nav { transform: none; }
  .main-nav a,
  .nav-contact {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 16px;
    text-align: left;
  }
  .main-nav a::after,
  .nav-contact::after,
  .nav-contact::before { display: none; }
  .nav-contact { color: var(--blue); }
  .hero { min-height: 565px; grid-template-columns: 43% 57%; padding-top: 42px; }
  .hero-copy { padding-top: 55px; }
  .hero h1 { font-size: clamp(56px, 8vw, 66px); }
  .hero-illustration { left: 8%; right: -10%; top: 74px; bottom: -18px; }
  .software-layout { grid-template-columns: 1fr; }
  .software-intro { max-width: 660px; padding-top: 0; }
  .software-intro h2,
  .software-intro > span { max-width: 600px; }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .main-nav {
    position: static;
    z-index: auto;
    grid-column: 2;
    justify-self: end;
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 19px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .main-nav a,
  .nav-contact {
    width: auto;
    padding: 12px 0;
    border: 0;
    color: #17324e;
    font-size: 11.5px;
    text-align: center;
  }
  .main-nav a::after,
  .nav-contact::after { display: block; }
  .nav-contact { margin-left: 2px; padding-left: 18px; color: var(--blue); }
  .nav-contact::before { display: block; height: 20px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 24px, 1280px); }
  .header-inner { min-height: 84px; gap: 9px; }
  .brand { min-width: 0; gap: 8px; }
  .brand > img { width: 42px; height: 42px; }
  .brand-copy { min-width: 0; max-width: 158px; gap: 3px; }
  .brand-copy strong { font-size: 23px; letter-spacing: -.9px; }
  .brand-copy small {
    max-width: 158px;
    white-space: normal;
    font-size: 9.5px;
    line-height: 1.18;
  }
  .header-actions { gap: 6px; transform: translateY(1px); }
  .language-switch button { min-width: 33px; height: 31px; padding: 0 5px; font-size: 11px; }
  .mobile-menu-toggle { width: 38px; height: 38px; padding: 8px; }
  .main-nav { width: min(86vw, 330px); padding: 105px 28px 36px; }

  .hero {
    min-height: 335px;
    padding: 24px 0 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .hero-copy { grid-column: 1; width: 100%; padding-top: 8px; }
  .hero-copy::before {
    content: none;
  }
  .hero h1 {
    max-width: 305px;
    font-size: clamp(43px, 12.4vw, 49px);
    line-height: .98;
    letter-spacing: -3.2px;
  }
  html[lang="en"] .hero h1 {
    max-width: 300px;
    font-size: clamp(42px, 11.8vw, 47px);
    line-height: 1.09;
    letter-spacing: -2.2px;
  }
  .hero-lead {
    max-width: 300px;
    margin-top: 24px;
    padding-right: 9px;
    font-size: 15px;
    line-height: 1.58;
    background: transparent;
    box-shadow: none;
    text-shadow: 0 1px 0 rgba(255,255,255,.98), 0 0 5px rgba(255,255,255,.92);
  }
  .hero-illustration {
    z-index: 0;
    left: -18%;
    right: -20%;
    top: 43px;
    bottom: auto;
    width: auto;
    height: 355px;
    align-items: flex-start;
    overflow: hidden;
    opacity: 1;
  }
  .hero-illustration picture,
  .hero-illustration img { width: 100%; height: 100%; }
  .hero-illustration img {
    object-fit: contain;
    object-position: 57% top;
    transform: scale(.98);
    transform-origin: center top;
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.88) 64%, transparent 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.88) 64%, transparent 100%);
    opacity: .18;
    filter: brightness(1.14) contrast(1.05) saturate(.86);
  }

  .section { padding: 54px 0; }
  .domains-section { padding-top: 10px !important; margin-top: 0; }
  .section-title { margin-bottom: 30px; text-align: left; }
  .section-title p,
  .software-intro > p { font-size: 13px; }
  .section-title h2 { font-size: 34px; }
  .domain-grid,
  .software-products { grid-template-columns: 1fr; }
  .domain-card p { min-height: 0; }
  .software-intro h2 { font-size: 35px; }
  .software-intro > span { font-size: 15px; }
  .software-products { gap: 14px; }
  .software-card { padding: 23px; }
  .software-logo { height: 65px; }
  .software-logo img { width: 270px; height: 65px; }
  .software-card > p { min-height: 0; }
  .project-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-inner.footer-legal { min-height: 76px; padding: 20px 0; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-layout header { padding: 38px 27px; }
  .dialog-layout form { padding: 30px 25px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 600px) and (max-width: 820px) and (pointer: fine) {
  .mobile-menu-toggle { display: none; }
  .main-nav {
    position: static;
    z-index: auto;
    grid-column: 2;
    justify-self: end;
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .main-nav a,
  .nav-contact {
    width: auto;
    padding: 10px 0;
    border: 0;
    color: #17324e;
    font-size: 9.5px;
    text-align: center;
  }
  .main-nav a::after,
  .nav-contact::after { display: block; }
  .nav-contact { margin-left: 1px; padding-left: 12px; color: var(--blue); }
  .nav-contact::before { display: block; height: 17px; }
  .header-inner { gap: 11px; }
}

@media (max-width: 390px) {
  .brand > img { width: 39px; height: 39px; }
  .brand-copy { max-width: 145px; }
  .brand-copy strong { font-size: 22px; }
  .brand-copy small { max-width: 145px; font-size: 9px; }
  .language-switch button { min-width: 31px; }
  .hero { min-height: 325px; }
  .hero h1 { max-width: 285px; font-size: 44px; }
  html[lang="en"] .hero h1 { max-width: 285px; font-size: 43px; line-height: 1.1; letter-spacing: -1.9px; }
  .hero-lead { max-width: 280px; font-size: 14.5px; }
  .hero-illustration { left: -20%; right: -22%; top: 43px; bottom: auto; width: auto; height: 330px; }
  .domains-section { padding-top: 8px !important; margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .main-nav { transition: none; }
}
