:root {
  --idr-orange: #f06b23;
  --idr-orange-dark: #d95612;
  --idr-green: #19b36b;
  --idr-ink: #10131a;
  --idr-navy: #24314f;
  --idr-muted: #616978;
  --idr-paper: #f4f5f7;
  --idr-card: #ffffff;
  --idr-line: rgba(255, 255, 255, 0.12);
  --idr-line-dark: #e3e6ed;
  --idr-shadow: 0 24px 64px rgba(16, 19, 26, 0.14);
  --idr-radius: 10px;
  --idr-max: 1370px;
  --idr-heading: "FP_Heavy", "Arial Black", "Segoe UI", sans-serif;
  --idr-body: "Inter", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "FP_Heavy";
  src:
    url("../../fonts/FuturaPT-Heavy.woff2") format("woff2"),
    url("../../fonts/FuturaPTHeavy.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "FP_heavy";
  src:
    url("../../fonts/FuturaPT-Heavy.woff2") format("woff2"),
    url("../../fonts/FuturaPTHeavy.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "FP_Light";
  src:
    url("../../fonts/FuturaPT-Light.woff2") format("woff2"),
    url("../../fonts/FuturaPTLight.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "FP_light";
  src:
    url("../../fonts/FuturaPT-Light.woff2") format("woff2"),
    url("../../fonts/FuturaPTLight.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--idr-ink);
  background: #ffffff;
  font-family: var(--idr-body);
}

body.idr-has-cursor,
body.idr-has-cursor * {
  cursor: none !important;
}

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

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

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

.idr-site-header {
  --idr-topbar-h: 46px;
  position: sticky;
  /* Pin the mainbar; topbar scrolls off above the viewport */
  top: calc(-1 * var(--idr-topbar-h));
  z-index: 1000;
  width: 100%;
}

body.admin-bar .idr-site-header {
  top: calc(32px - var(--idr-topbar-h));
}

.idr-site-header.is-home {
  position: sticky;
  inset: auto;
}

.idr-home .sh-page {
  margin-top: -130px;
}

.idr-topbar {
  position: relative;
  z-index: 4;
  min-height: var(--idr-topbar-h);
  background: rgba(8, 10, 15, 0.78);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.idr-topbar-inner,
.idr-mainbar-inner,
.idr-footer-shell,
.idr-shell {
  width: min(100% - 60px, var(--idr-max));
  margin: 0 auto;
}

.idr-site:not(.home) .idr-page-main,
.idr-site:not(.home) .idr-shell,
.idr-site:not(.home) .idr-blog-index,
.idr-site:not(.home) .idr-blog-archive,
.idr-site:not(.home) .idr-blog-single,
.idr-site:not(.home) .idr-work-index,
.idr-site:not(.home) .idr-work-single,
.idr-site:not(.home) .sh-page,
.idr-site:not(.home) .ai-page,
.idr-site:not(.home) .str-page {
  margin-top: -120px;
}

.idr-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
}

.idr-topbar-copy {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idr-topbar-nav ul,
.idr-primary-nav ul,
.idr-mobile-nav ul,
.idr-footer-nav ul,
.idr-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.idr-topbar-menu,
.idr-primary-menu,
.idr-footer-menu,
.idr-social-links {
  display: flex;
  align-items: center;
}

.idr-topbar-menu {
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.idr-topbar-menu li {
  position: relative;
}

.idr-topbar-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.idr-topbar-menu a:hover,
.idr-topbar-menu a:focus-visible {
  color: #ffffff;
}

.idr-topbar-menu .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.78;
}

.idr-topbar-menu .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(16, 19, 26, 0.98), rgba(11, 20, 36, 0.96)),
    rgba(8, 10, 15, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.idr-topbar-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 19, 26, 0.98);
  transform: rotate(45deg);
}

.idr-topbar-menu .sub-menu a {
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.idr-topbar-menu .sub-menu a:hover,
.idr-topbar-menu .sub-menu a:focus-visible {
  color: #ffffff;
  background: rgba(25, 179, 107, 0.14);
}

.idr-topbar-menu li:hover > .sub-menu,
.idr-topbar-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.idr-mainbar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 15, 0.58);
  backdrop-filter: blur(16px);
}

.idr-mainbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.idr-brand {
  --idr-brand-circle: var(--idr-orange);
  --idr-brand-glyph: #1e1e1e;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  position: relative;
  text-decoration: none;
}

.idr-brand:focus-visible {
  outline: 2px solid rgba(240, 107, 35, 0.55);
  outline-offset: 4px;
}

.idr-brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.idr-brand-atom {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-origin: center;
  animation: idrBrandAtomRotate 7.8s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.idr-brand-atom-dot {
  position: absolute;
  top: -19px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--idr-green);
  animation: idrBrandAtomDot 7.8s ease-in-out infinite;
  will-change: top, left, transform;
}

.idr-brand-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.idr-brand-circle-shape,
.idr-brand-bracket,
.idr-brand-slash,
.idr-brand-dot {
  transform-box: fill-box;
}

.idr-brand-circle-shape {
  fill: var(--idr-brand-circle);
}

.idr-brand-bracket,
.idr-brand-slash,
.idr-brand-dot {
  fill: var(--idr-brand-glyph);
}

.idr-brand-bracket-left {
  transform-origin: center;
}

.idr-brand-bracket-right {
  transform-origin: center;
}

.idr-brand-slash {
  transform-origin: center;
}

.idr-brand-dot {
  opacity: 0;
}

.idr-brand-text-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.idr-brand-kicker {
  --idr-brand-kicker-duration: 0.46s;
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  padding: 3px 9px 4px;
  border: 1px solid rgba(25, 179, 107, 0.68);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(25, 179, 107, 0.24), rgba(255, 255, 255, 0.05)),
    rgba(8, 10, 15, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 18px rgba(25, 179, 107, 0.16);
  font-family: "FP_Heavy", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.idr-brand-kicker.is-split {
  display: inline-flex;
}

.idr-brand-kicker.is-split::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -32px;
  z-index: -1;
  width: 22px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: translateX(0) skewX(-18deg);
  animation: idrBrandLabelSweep 7.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.idr-brand-kicker.is-split .idr-brand-kicker-char {
  position: relative;
  z-index: 1;
  display: inline-block;
  visibility: hidden;
  transform-origin: center bottom;
  animation-name: idrBrandLabelChar;
  animation-duration: var(--idr-brand-kicker-duration);
  animation-delay: var(--idr-brand-kicker-char-delay);
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  animation-fill-mode: both;
}

.idr-brand-kicker.is-split .idr-brand-kicker-char::before {
  content: attr(data-char);
  display: block;
  visibility: visible;
  animation: inherit;
  animation-name: idrBrandLabelCharGlow;
  animation-duration: calc(var(--idr-brand-kicker-duration) * 1.15);
}

.idr-brand-text-writing {
  --idr-brand-text-duration: 0.5s;
  display: inline-block;
  color: #ffffff;
  font-family: "FP_light", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1.65px;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.idr-brand-text-writing.is-split {
  display: inline-flex;
}

.idr-brand-text-writing.is-split .idr-brand-char {
  position: relative;
  display: inline-block;
  visibility: hidden;
  transform-origin: center bottom;
  animation-name: idrBrandCharTransform;
  animation-duration: var(--idr-brand-text-duration);
  animation-delay: var(--idr-brand-char-delay);
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  animation-fill-mode: both;
}

.idr-brand-text-writing.is-split .idr-brand-char::before {
  content: attr(data-char);
  display: block;
  visibility: visible;
  transform-origin: center bottom;
  animation: inherit;
  animation-name: idrBrandCharRotate;
  animation-duration: 0.55s;
}

.idr-brand-text-writing.is-split .idr-brand-char:first-child {
  animation-name: idrBrandFirstCharTransform;
  animation-duration: 1s;
  animation-delay: 0s;
}

.idr-brand-text-writing.is-split .idr-brand-char:first-child::before {
  animation-name: idrBrandFirstCharRotate;
  animation-duration: 1s;
}

.idr-brand-text-writing::before,
.idr-brand-text-writing::after {
  display: none;
}

@keyframes idrBrandLabelChar {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(7px) scale(0.82);
  }

  58% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-1px) scale(1.08);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes idrBrandLabelCharGlow {
  0% {
    color: rgba(255, 255, 255, 0.35);
    text-shadow: none;
  }

  48% {
    color: #19f08d;
    text-shadow: 0 0 10px rgba(25, 179, 107, 0.78);
  }

  100% {
    color: #ffffff;
    text-shadow: none;
  }
}

@keyframes idrBrandLabelSweep {
  0%,
  70% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }

  75% {
    opacity: 0.62;
  }

  88% {
    opacity: 0;
    transform: translateX(138px) skewX(-18deg);
  }

  100% {
    opacity: 0;
    transform: translateX(138px) skewX(-18deg);
  }
}

@keyframes idrBrandCharTransform {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  70% {
    transform: translateY(-6%);
  }

  90% {
    transform: translateY(1%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes idrBrandCharRotate {
  0% {
    transform: rotate(30deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes idrBrandFirstCharTransform {
  0% {
    opacity: 1;
    transform: translateX(var(--idr-brand-first-travel)) translateY(200%);
  }

  40% {
    transform: translateX(var(--idr-brand-first-travel)) translateY(-10%);
  }

  60% {
    transform: translateX(var(--idr-brand-first-travel)) translateY(7%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes idrBrandFirstCharRotate {
  0% {
    transform: rotate(0.5turn);
  }

  40% {
    transform: rotate(-0.1turn);
  }

  70% {
    transform: rotate(0.1turn);
  }

  100% {
    transform: rotate(0turn);
  }
}

@keyframes idrBrandAtomRotate {
  0% {
    transform: rotate(45deg);
  }

  61.5385%,
  100% {
    transform: rotate(405deg);
  }
}

@keyframes idrBrandAtomDot {
  0%,
  100% {
    top: calc(23.79% - 6.41px);
    left: calc(36.29% - 1.41px);
    background: var(--idr-green);
    transform: scale(0.8);
  }

  3.8462%,
  19.2308%,
  34.6154%,
  50% {
    left: 50%;
    transform: scale(0.55);
  }

  7.6923%,
  23.0769%,
  38.4615%,
  53.8462% {
    top: calc(100% + 9px);
    left: 50%;
    transform: scale(1);
  }

  11.5385%,
  26.9231%,
  42.3077%,
  57.6923% {
    left: 50%;
    transform: scale(1.45);
  }

  15.3846%,
  30.7692%,
  46.1538% {
    top: -19px;
    left: 50%;
    transform: scale(1);
  }

  61.5385% {
    top: calc(23.79% - 6.41px);
    left: calc(36.29% - 1.41px);
    background: var(--idr-green);
    transform: scale(0.8);
  }

  65.3846%,
  84.6154% {
    transform: scale(1.12);
  }

  69.2308%,
  88.4615% {
    transform: scale(0.8);
  }

  73.0769%,
  92.3077% {
    transform: scale(0.944);
  }

  76.9231%,
  96.1538% {
    transform: scale(0.8);
  }

  80.7692% {
    background: var(--idr-brand-glyph);
    transform: scale(0.8);
  }
}


.idr-primary-nav {
  display: block;
}

.idr-primary-menu {
  gap: 24px;
}

.idr-primary-menu > li {
  position: relative;
}

.idr-primary-menu li {
  position: relative;
}

.idr-primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idr-site-header.is-home .idr-primary-menu a {
  color: #ffffff;
}

.idr-primary-menu .menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.idr-primary-menu .sub-menu,
.idr-mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 12px;
}

.idr-primary-menu > li > .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 260px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 54px rgba(16, 19, 26, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.idr-primary-menu .sub-menu .sub-menu {
  position: absolute;
  top: -1px;
  left: calc(100% - 8px);
  display: grid;
  gap: 2px;
  min-width: 300px;
  max-width: min(340px, calc(100vw - 56px));
  max-height: min(72vh, 620px);
  padding: 12px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 54px rgba(16, 19, 26, 0.16);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.idr-primary-menu .sub-menu .sub-menu::before {
  content: none;
}

.idr-primary-menu .sub-menu a {
  min-height: 38px;
  color: var(--idr-ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.idr-site-header.is-home .idr-primary-menu .sub-menu a {
  color: var(--idr-ink);
}

.idr-primary-menu .sub-menu li > a {
  padding: 8px 10px;
  border-radius: 8px;
}

.idr-primary-menu > li > .sub-menu > li:hover > a,
.idr-primary-menu > li > .sub-menu > li:focus-within > a {
  color: var(--idr-orange);
  background: rgba(240, 107, 35, 0.08);
}

.idr-primary-menu .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.idr-primary-menu .sub-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.idr-primary-menu .sub-menu a:hover,
.idr-primary-menu .sub-menu a:focus-visible {
  color: var(--idr-orange);
  background: rgba(240, 107, 35, 0.08);
}

.idr-primary-menu li:hover > .sub-menu,
.idr-primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.idr-primary-menu .sub-menu li:hover > .sub-menu,
.idr-primary-menu .sub-menu li:focus-within > .sub-menu {
  transform: translateX(0);
}

@media (min-width: 1181px) {
  .idr-primary-menu > li:nth-last-child(-n + 2) > .sub-menu {
    left: auto;
    right: 0;
  }

  .idr-primary-menu > li:nth-last-child(-n + 2) > .sub-menu .sub-menu {
    left: auto;
    right: calc(100% - 8px);
    transform: translateX(-8px);
  }

  .idr-primary-menu > li:nth-last-child(-n + 2) > .sub-menu li:hover > .sub-menu,
  .idr-primary-menu > li:nth-last-child(-n + 2) > .sub-menu li:focus-within > .sub-menu {
    transform: translateX(0);
  }
}

.idr-header-cta,
.idr-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--idr-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(240, 107, 35, 0.28);
}

.idr-header-cta:hover,
.idr-mobile-cta:hover {
  background: var(--idr-orange-dark);
}

.idr-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.idr-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.idr-mobile-drawer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 15, 0.96);
}

.idr-mobile-drawer[hidden] {
  display: none;
}

.idr-mobile-drawer-inner {
  width: min(100% - 40px, var(--idr-max));
  margin: 0 auto;
  padding: 20px 0 28px;
}

.idr-mobile-menu {
  display: grid;
  gap: 8px;
}

.idr-mobile-menu li {
  position: relative;
}

.idr-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.idr-mobile-menu .menu-item-has-children > a {
  padding-right: 52px;
}

.idr-mobile-submenu-toggle {
  position: absolute;
  top: 4px;
  right: 0;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.idr-mobile-submenu-toggle::before,
.idr-mobile-submenu-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.idr-mobile-submenu-toggle::after {
  transform: rotate(90deg);
}

.idr-mobile-submenu-toggle[aria-expanded="true"]::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.2);
}

.idr-mobile-menu .sub-menu {
  display: none;
  gap: 8px;
  margin: 0 0 8px;
  padding: 4px 0 4px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.idr-mobile-menu .menu-item-has-children.is-open > .sub-menu {
  display: grid;
}

.idr-mobile-menu .sub-menu a {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.idr-mobile-cta {
  width: 100%;
  margin-top: 22px;
}

.idr-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--idr-green);
  box-shadow: 0 0 0 8px rgba(25, 179, 107, 0.16), 0 0 30px rgba(25, 179, 107, 0.48);
  pointer-events: none;
  z-index: 2147483000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.idr-cursor.active {
  opacity: 1;
}

.idr-cursor.large {
  transform: translate(-50%, -50%) scale(1.65);
  background: var(--idr-orange);
  box-shadow: 0 0 0 10px rgba(240, 107, 35, 0.14), 0 0 34px rgba(240, 107, 35, 0.44);
}

.idr-footer-find-us {
  --idr-footer-find-us-pattern: none;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--idr-ink);
}

.idr-footer-find-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--idr-footer-find-us-pattern);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
}

.idr-footer-find-us-shell {
  position: relative;
  width: min(100% - 60px, var(--idr-max));
  margin: 0 auto;
  padding: 0 0 88px;
}

.idr-footer-find-us-heading {
  margin: 0;
  padding: 72px 0 56px;
  color: var(--idr-orange);
  font-family: var(--idr-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.idr-footer-find-us-map {
  position: relative;
}

.idr-footer-find-us-image {
  width: 100%;
  height: auto;
}

.idr-footer-find-us-image.is-mobile {
  display: none;
}

.idr-site-footer {
  color: #ffffff;
  background: #ffffff;
}

.idr-footer-main {
  --idr-footer-bg: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  padding: 118px 0 78px;
  background:
    linear-gradient(132deg, rgba(255, 139, 20, 0.92) 0%, rgba(252, 109, 11, 0.9) 43%, rgba(219, 55, 28, 0.94) 100%),
    var(--idr-footer-bg) center top / cover no-repeat,
    #fc6d0b;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.idr-footer-main::before,
.idr-footer-main::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.idr-footer-main::before {
  inset: -28% auto auto -8%;
  width: 360px;
  height: 540px;
  border-radius: 90px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-31deg);
}

.idr-footer-main::after {
  right: 4%;
  top: 24%;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 48%, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 47% 42%, transparent 0 7px, #ffffff 8px 9px, transparent 10px),
    radial-gradient(circle at 62% 50%, #ffffff 0 13px, transparent 14px),
    radial-gradient(circle at 92% 35%, transparent 0 8px, #ffffff 9px 10px, transparent 11px);
  opacity: 0.95;
}

.idr-footer-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 0;
  text-align: center;
}

.idr-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.idr-footer-logo img {
  display: block;
  width: 114px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(80, 19, 5, 0.2));
}

.idr-footer-lead {
  display: none;
}

.idr-footer-nav-wrap {
  width: 100%;
}

.idr-footer-menu {
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.idr-footer-menu a {
  color: #ffffff;
  font-family: var(--idr-heading-light);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(80, 19, 5, 0.14);
  transition: color 180ms ease, transform 180ms ease;
}

.idr-footer-menu a:hover,
.idr-footer-menu a:focus-visible {
  color: #1e1e1e;
  transform: translateY(-2px);
}

.idr-footer-title {
  display: none;
}

.idr-social-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.idr-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(95, 27, 6, 0.14);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.idr-social-links a:hover,
.idr-social-links a:focus-visible {
  background: #ffffff;
  color: #fc6d0b;
  transform: translateY(-2px);
}

.idr-footer-bar {
  width: 100%;
  padding: 18px 0 0;
  border-top: 0;
}

.idr-footer-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--idr-heading-light);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.5;
}

.idr-shell {
  width: min(100% - 60px, var(--idr-max));
  margin: 0 auto;
  padding: 120px 0 72px;
}

.idr-panel {
  padding: 36px;
  border: 1px solid var(--idr-line-dark);
  border-radius: var(--idr-radius);
  background: #ffffff;
  box-shadow: var(--idr-shadow);
}

.idr-panel h1 {
  margin: 0 0 14px;
  color: var(--idr-navy);
  font-family: var(--idr-heading);
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
}

.idr-content,
.idr-panel p {
  color: var(--idr-muted);
  font-size: 17px;
  line-height: 1.72;
}

.idr-content > * + * {
  margin-top: 1rem;
}

.idr-form-fallback {
  padding: 16px;
  border: 1px dashed #cfd4df;
  border-radius: 8px;
  color: #626978;
  font-weight: 800;
}

.wpforms-container .wpforms-field {
  padding: 5px 0;
}

.idr-standalone-template .site,
.idr-standalone-template .wp-site-blocks {
  display: contents;
}

@media (max-width: 1180px) {
  .idr-topbar-copy,
  .idr-primary-nav,
  .idr-header-cta {
    display: none;
  }

  .idr-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 782px) {
  body.admin-bar .idr-site-header {
    top: calc(46px - var(--idr-topbar-h));
  }
}

@media (max-width: 680px) {
  .idr-topbar-inner,
  .idr-mainbar-inner,
  .idr-footer-find-us-shell,
  .idr-footer-shell,
  .idr-shell {
    width: min(100% - 28px, var(--idr-max));
  }

  .idr-site-header {
    --idr-topbar-h: 0px;
    top: 0;
  }

  body.admin-bar .idr-site-header {
    top: 46px;
  }

  .idr-topbar {
    display: none;
  }

  .idr-mainbar-inner {
    min-height: 74px;
  }

  .idr-brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .idr-brand-text-writing {
    font-size: 17px;
    letter-spacing: 1.35px;
  }

  .idr-brand-kicker {
    padding: 2px 7px 3px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .idr-panel {
    padding: 24px;
  }

  .idr-footer-find-us-shell {
    padding-bottom: 60px;
  }

  .idr-footer-find-us-heading {
    padding: 50px 0 24px;
    font-size: 30px;
    line-height: 1.15;
  }

  .idr-footer-find-us-image.is-desktop {
    display: none;
  }

  .idr-footer-find-us-image.is-mobile {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .idr-brand *,
  .idr-brand {
    animation: none !important;
    transition: none !important;
  }

  .idr-brand-atom {
    display: none;
  }

  .idr-brand-circle-shape,
  .idr-brand-bracket,
  .idr-brand-slash,
  .idr-brand-dot,
  .idr-brand-kicker,
  .idr-brand-text-writing,
  .idr-brand-text-writing::before,
  .idr-brand-text-writing::after {
    opacity: 1;
    transform: none;
  }

  .idr-brand-text-writing {
    color: #ffffff;
  }

  .idr-brand-kicker.is-split::after {
    display: none;
  }

  .idr-brand-kicker.is-split .idr-brand-kicker-char,
  .idr-brand-kicker.is-split .idr-brand-kicker-char::before,
  .idr-brand-text-writing.is-split .idr-brand-char,
  .idr-brand-text-writing.is-split .idr-brand-char::before {
    visibility: visible;
    animation: none !important;
    transform: none !important;
  }

  .idr-brand-text-writing::before,
  .idr-brand-text-writing::after {
    display: none;
  }
}
