:root {
  --itm-ink: #050505;
  --itm-paper: #fff;
  --itm-fog: #f4f4f6;
  --itm-line: rgba(0, 0, 0, 0.13);
  --itm-muted: rgba(0, 0, 0, 0.56);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.itmerce-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--itm-paper);
  color: var(--itm-ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.itm-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.itm-skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #000;
  color: #fff;
}
.itm-skip-link:focus { top: 10px; }

.itm-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  pointer-events: none;
}
.itm-header > * { pointer-events: auto; }
.itm-brand {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.itm-brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
}
.itm-brand-mark i {
  position: absolute;
  top: 6px;
  width: 8px;
  height: 18px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-35deg);
}
.itm-brand-mark i:first-child { left: 6px; }
.itm-brand-mark i:last-child { left: 14px; opacity: .46; }
.itm-menu-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
}
.itm-menu-plus {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 19px;
  line-height: 1;
  transition: transform .35s ease;
}
.itm-menu-button[aria-expanded="true"] .itm-menu-plus { transform: rotate(45deg); }
.itm-header-tags {
  display: none;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(244, 244, 246, .9);
  backdrop-filter: blur(18px);
  color: var(--itm-muted);
  font-size: 10px;
}
.itm-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.itm-lang-switch {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: rgba(0,0,0,.48);
  font-size: 10px;
  backdrop-filter: blur(18px);
}
.itm-contact-pill {
  min-height: 38px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  background: rgba(244,244,246,.92);
  font-size: 11px;
}
.itm-contact-pill > i {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(2, 3px);
  place-content: center;
  gap: 3px;
  border-radius: 50%;
  background: #000;
}
.itm-contact-pill > i span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.itm-menu-overlay {
  position: fixed;
  z-index: 110;
  inset: 8px;
  padding: 108px 20px 25px;
  overflow-y: auto;
  border-radius: 30px;
  background: rgba(5,5,5,.985);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0 round 30px);
  transition: opacity .5s ease, visibility .5s ease, clip-path .7s cubic-bezier(.16,1,.3,1);
}
.itm-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0 round 30px);
}
.itm-menu-columns { display: grid; gap: 45px; }
.itm-menu-columns > div > p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.itm-overlay-nav, .itm-overlay-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.itm-overlay-nav a {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: clamp(1.35rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -.05em;
}
.itm-overlay-nav a span, .itm-overlay-nav a i {
  color: rgba(255,255,255,.4);
  font-size: 9px;
  font-style: normal;
}
.itm-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.itm-menu-contact p { margin-bottom: 12px !important; }

body.elementor-page .itm-elementor-fullwidth,
body.elementor-page main { overflow: clip; }
.itm-hero.elementor-element,
.itm-hero {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden;
  padding: 160px 18px 34px !important;
  background: #f2f2f3;
}
.itm-video-bg, .itm-orbit-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.itm-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.itm-video-bg > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,.84) 50%, transparent 100%);
}
.itm-orbit-bg {
  left: auto;
  top: 5%;
  right: -32%;
  width: min(90vw, 820px);
  height: min(90vw, 820px);
  border: 1px solid var(--itm-line);
  border-radius: 50%;
}
.itm-orbit-bg i {
  position: absolute;
  inset: 14%;
  border: 1px solid var(--itm-line);
  border-radius: 50%;
}
.itm-orbit-bg i:nth-child(2) { inset: 30%; }
.itm-orbit-bg i:nth-child(3) { inset: 44%; background: #000; }
.itm-orbit-bg b {
  position: absolute;
  inset: 47%;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 400;
}
.itm-hero-copy.elementor-element,
.itm-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
}
.itm-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--itm-muted);
  font-size: 12px;
}
.itm-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}
.itm-hero h1,
.itm-hero .elementor-heading-title {
  max-width: 1100px;
  margin: 0;
  color: #050505;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.75rem, 9vw, 7.4rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .94;
}
.itm-hero-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(0,0,0,.62);
  font-size: 14px;
  line-height: 1.75;
}
.itm-button-row.elementor-element,
.itm-button-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 9px;
  margin-top: 22px;
}
.itm-button-widget .elementor-button,
.itm-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: transform .25s ease;
}
.itm-button-widget .elementor-button:hover, .itm-button:hover { transform: translateY(-2px); }
.itm-button-primary .elementor-button { background: #000; color: #fff; }
.itm-button-secondary .elementor-button { border-color: rgba(0,0,0,.28); background: rgba(255,255,255,.6); color: #000; }

.itm-content-section.elementor-element,
.itm-content-section {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 36px !important;
  padding: 78px 18px !important;
  border-top: 1px solid var(--itm-line);
  background: #fff;
}
.itm-content-section:nth-child(even) { background: #f6f6f7; }
.itm-section-title > .elementor-element:first-child span {
  color: var(--itm-muted);
  font-size: 9px;
}
.itm-section-title h6, .itm-section-title .elementor-heading-title {
  margin: 12px 0;
  color: var(--itm-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.itm-section-title h2,
.itm-section-title .elementor-heading-title[role="heading"] {
  max-width: 720px;
  margin: 0;
  color: #050505;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1;
}
.itm-lead {
  max-width: 760px;
  margin: 0 0 30px;
  white-space: pre-line;
  color: var(--itm-muted);
  font-size: 14px;
  line-height: 1.8;
}
.itm-feature-list {
  display: grid;
  border-top: 1px solid var(--itm-line);
}
.itm-feature-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 19px 0;
  border-bottom: 1px solid var(--itm-line);
}
.itm-feature-list article > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 11px;
}
.itm-feature-list h3 {
  margin: 2px 0 7px;
  font-size: 14px;
  font-weight: 500;
}
.itm-feature-list p {
  margin: 0;
  color: var(--itm-muted);
  font-size: 12px;
  line-height: 1.65;
}
.itm-page-cta.elementor-element,
.itm-page-cta {
  padding: 90px 18px !important;
  background: #050505;
  color: #fff;
}
.itm-page-cta p { color: rgba(255,255,255,.48); font-size: 11px; }
.itm-page-cta h2, .itm-page-cta .elementor-heading-title {
  max-width: 1050px;
  margin: 20px 0 35px;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .95;
}
.itm-page-cta .itm-button-primary .elementor-button { background: #fff; color: #000; }

.itm-footer { background: #050505; color: #fff; }
.itm-footer-cta { padding: 85px 18px; border-bottom: 1px solid rgba(255,255,255,.16); }
.itm-footer-cta > p { color: rgba(255,255,255,.45); font-size: 11px; }
.itm-footer-cta h2 {
  max-width: 1050px;
  margin: 18px 0 34px;
  font-size: clamp(2.7rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .95;
}
.itm-button-white { background: #fff; color: #000; }
.itm-footer-grid {
  display: grid;
  gap: 36px;
  padding: 48px 18px;
}
.itm-brand-footer { padding-left: 0; background: transparent; color: #fff; }
.itm-footer-grid p, .itm-footer-grid span, .itm-footer-grid a {
  max-width: 360px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.7;
}
.itm-footer-grid h3 {
  margin: 0 0 15px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.itm-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 6px; }
.itm-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.34);
  font-size: 8px;
  letter-spacing: .06em;
}
.itm-content-shell, .itm-standard-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 145px 18px 80px;
}

.itm-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.itm-reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 768px) {
  .itm-header { padding: 24px 32px; }
  .itm-header-tags, .itm-contact-pill { display: inline-flex; }
  .itm-menu-overlay { inset: 12px; padding: 115px 34px 30px; }
  .itm-menu-columns { grid-template-columns: 1.25fr .75fr; gap: 80px; }
  .itm-hero.elementor-element, .itm-hero { padding: 180px 32px 46px !important; }
  .itm-orbit-bg { right: -8%; }
  .itm-content-section.elementor-element, .itm-content-section {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr) !important;
    gap: 85px !important;
    padding: 110px 32px !important;
  }
  .itm-feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .itm-feature-list article { min-height: 120px; padding: 22px; border-right: 1px solid var(--itm-line); }
  .itm-feature-list article:nth-child(even) { border-right: 0; }
  .itm-page-cta.elementor-element, .itm-page-cta { padding: 125px 32px !important; }
  .itm-footer-cta { padding: 120px 32px; }
  .itm-footer-grid { grid-template-columns: 1.6fr .7fr .7fr; padding: 60px 32px; }
  .itm-footer-bottom { flex-direction: row; justify-content: space-between; padding: 20px 32px; }
}

@media (min-width: 1180px) {
  .itm-content-section.elementor-element,
  .itm-page-cta.elementor-element,
  .itm-footer-cta,
  .itm-footer-grid,
  .itm-footer-bottom {
    padding-left: max(32px, calc((100vw - 1440px) / 2)) !important;
    padding-right: max(32px, calc((100vw - 1440px) / 2)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

