/* Landing-page refinements: unified bolt, editorial Field Notes and a dedicated enquiry drawer. */

/* Match the BUGENCE service marker to the bolt used in the global CTA. */
body[data-page="home"] .bbc-service-card--bugence .bbc-service-card__mark svg {
  display: block;
  width: 21px;
  height: 24px;
  fill: currentColor;
}

/* Field Notes should read as editorial content, not floating cards. */
body[data-page="home"] #news .news__list-item,
body[data-page="home"] #news .news__list-item:first-child,
body[data-page="home"] #news .news__list-item:last-child {
  padding-inline: 0 !important;
  color: #f8f9f3 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(216, 255, 36, 0.24) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transition:
    transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1),
    border-color 260ms ease !important;
}

body[data-page="home"] #news .news__list-item:hover {
  background: transparent !important;
  border-color: rgba(216, 255, 36, 0.72) !important;
  box-shadow: none !important;
  transform: translate3d(0, -5px, 0) !important;
}

body[data-page="home"] #news .news__list-item::before {
  top: -1px !important;
  left: 0 !important;
  width: 54px !important;
}

body[data-page="home"] #news .news__list-item::after {
  display: none !important;
}

/* The careers section now has one clear action. */
body[data-page="home"] .bbc-careers__actions {
  gap: 0;
}

/* Landing enquiry drawer */
body[data-page="home"][data-aside-open="true"] .header__pill-wrap {
  position: fixed;
  z-index: 8;
  top: 28px;
  right: 28px;
  margin: 0;
}

body[data-page="home"][data-aside-open="true"] .header__pill {
  display: grid;
  place-items: center;
  width: 64px !important;
  min-width: 64px !important;
  height: 64px !important;
  padding: 5px !important;
  overflow: visible !important;
  background: rgba(3, 7, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    border-color 240ms ease,
    box-shadow 300ms ease,
    transform 480ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"][data-aside-open="true"] .header__pill-label {
  display: none !important;
}

body[data-page="home"][data-aside-open="true"] .header__pill-fallback {
  position: relative !important;
  display: grid !important;
  place-items: center;
  flex: 0 0 52px;
  width: 52px !important;
  height: 52px !important;
  background: #d8ff24;
  border: 1px solid rgba(3, 7, 16, 0.14);
  box-shadow:
    0 0 0 1px rgba(216, 255, 36, 0.18),
    0 7px 20px rgba(216, 255, 36, 0.16);
  transition:
    background-color 260ms ease,
    transform 520ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"][data-aside-open="true"] .header__pill-fallback::before,
body[data-page="home"][data-aside-open="true"] .header__pill-fallback::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #050812;
  border-radius: 999px;
  transform-origin: center;
}

body[data-page="home"][data-aside-open="true"] .header__pill-fallback::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body[data-page="home"][data-aside-open="true"] .header__pill-fallback::after {
  color: transparent;
  font-size: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

body[data-page="home"][data-aside-open="true"] .header__pill:hover {
  border-color: rgba(216, 255, 36, 0.62);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(216, 255, 36, 0.07);
  transform: translateY(-2px);
}

body[data-page="home"][data-aside-open="true"] .header__pill:hover .header__pill-fallback {
  background: #fff;
  transform: rotate(90deg) scale(0.94);
}

body[data-page="home"] .header__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 4, 13, 0.42), rgba(1, 4, 13, 0.78)),
    rgba(3, 7, 19, 0.56);
  -webkit-backdrop-filter: blur(8px) saturate(0.8);
  backdrop-filter: blur(8px) saturate(0.8);
}

body[data-page="home"] .header__panel {
  position: fixed;
  z-index: 2;
  top: 12px !important;
  right: 12px !important;
  bottom: 12px !important;
  width: min(calc(100vw - 24px), clamp(640px, 42vw, 800px)) !important;
  height: auto !important;
  overflow: hidden auto !important;
  color: #fff;
  background:
    radial-gradient(circle at 8% 92%, rgba(21, 87, 255, 0.13), transparent 31%),
    linear-gradient(145deg, #07101f 0%, #030711 62%, #02040a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(216, 255, 36, 0.035),
    -42px 24px 110px rgba(0, 0, 0, 0.54);
  transform-origin: right center;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.18, 1) !important;
}

body[data-page="home"][data-aside-open="false"] .header__panel {
  transform: translate3d(calc(100% + 28px), 0, 0) scale(0.975) !important;
}

body[data-page="home"][data-aside-open="true"] .header__panel {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

body[data-page="home"] .header__panel-container.home-contact {
  position: relative;
  display: block;
  min-height: 100%;
  height: 100%;
  background: transparent !important;
  transform: none !important;
}

body[data-page="home"] .home-contact__atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

body[data-page="home"] .home-contact__blueprint {
  position: absolute;
  top: -94px;
  right: -82px;
  width: 410px;
  height: 292px;
  background: linear-gradient(135deg, #1557ff 0%, #3974ff 46%, #1557ff 76%);
  background-size: 180% 180%;
  border-radius: 40% 20% 52% 36%;
  box-shadow: 0 24px 64px rgba(21, 87, 255, 0.2);
  opacity: 0;
  transform: translate3d(80px, -48px, 0) rotate(12deg) scale(0.82);
  transition:
    opacity 650ms ease 180ms,
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

body[data-page="home"] .home-contact__blueprint::before {
  content: "";
  position: absolute;
  right: 52px;
  bottom: -88px;
  width: 184px;
  height: 184px;
  border: 1px solid rgba(216, 255, 36, 0.3);
  border-radius: 50%;
  animation: home-contact-ring-breathe 4.8s ease-in-out infinite;
  animation-play-state: paused;
}

body[data-page="home"] .home-contact__blueprint::after {
  display: none;
}

body[data-page="home"][data-aside-open="true"] .home-contact__blueprint {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
  animation: home-contact-blueprint-drift 8s ease-in-out 1.1s infinite alternate;
}

body[data-page="home"][data-aside-open="true"] .home-contact__blueprint::before {
  animation-play-state: running;
}

body[data-page="home"] .home-contact__orbit {
  --home-orbit-radius: 137px;
  position: absolute;
  right: -92px;
  bottom: -112px;
  width: 292px;
  height: 292px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

body[data-page="home"] .home-contact__orbit::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(21, 87, 255, 0.44);
  border-radius: 50%;
}

body[data-page="home"] .home-contact__orbit::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #d8ff24;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(216, 255, 36, 0.58);
  transform: rotate(0deg) translateX(var(--home-orbit-radius));
  animation: home-contact-orbit 8s linear infinite;
  animation-play-state: paused;
}

body[data-page="home"][data-aside-open="true"] .home-contact__orbit::after {
  animation-play-state: running;
}

body[data-page="home"] .home-contact__signal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #1557ff 16%, rgba(216, 255, 36, 0.5) 62%, transparent);
  opacity: 0.75;
  transform-origin: top;
  animation: home-contact-signal 4.8s ease-in-out infinite;
}

body[data-page="home"] .header__panel-wrapper.home-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  height: 100%;
  padding: 82px clamp(36px, 3.2vw, 52px) 30px;
  text-align: left;
  opacity: 0;
  transform: translate3d(32px, 0, 0);
  transition:
    opacity 420ms ease,
    transform 760ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"][data-aside-open="true"] .header__panel-wrapper.home-contact__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 220ms;
}

body[data-page="home"] .home-contact__intro,
body[data-page="home"] .home-contact__form,
body[data-page="home"] .home-contact__privacy {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .home-contact__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #d8ff24;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-contact__eyebrow span {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

body[data-page="home"] .header__panel-title {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 12ch;
  margin: 0;
  padding: 0 !important;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: clamp(50px, 3.5vw, 64px) !important;
  font-weight: 430;
  line-height: 0.92 !important;
  letter-spacing: -0.055em;
}

body[data-page="home"] .header__panel-title em {
  color: #79a0ff;
  -webkit-text-fill-color: #79a0ff;
  font-style: normal;
}

body[data-page="home"] .header__panel-title .target {
  opacity: 0 !important;
  transform: translate3d(0, 28px, 0) !important;
  transition:
    opacity 520ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"][data-aside-open="true"] .header__panel-title .target {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

body[data-page="home"][data-aside-open="true"] .header__panel-title .target:nth-child(1) {
  transition-delay: 330ms;
}

body[data-page="home"][data-aside-open="true"] .header__panel-title .target:nth-child(2) {
  transition-delay: 400ms;
}

body[data-page="home"][data-aside-open="true"] .header__panel-title .target:nth-child(3) {
  transition-delay: 470ms;
}

body[data-page="home"] .home-contact__copy {
  max-width: 520px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="home"] .home-contact__promise {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

body[data-page="home"] .home-contact__promise p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.25;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__promise p:hover {
  color: #071020;
  background: #d8ff24;
  border-color: #d8ff24;
  transform: translateX(5px);
}

body[data-page="home"] .home-contact__promise b {
  color: #d8ff24;
  font-size: 10px;
  letter-spacing: 0.08em;
}

body[data-page="home"] .home-contact__promise p:hover b {
  color: #071020;
}

body[data-page="home"] .header__panel-form.home-contact__form {
  position: relative;
  display: grid;
  gap: 22px;
  width: 100%;
  max-width: none;
  margin: 0;
}

body[data-page="home"] .home-contact__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .home-contact__field {
  display: grid;
  gap: 8px;
}

body[data-page="home"] .home-contact__field label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body[data-page="home"] .home-contact__field input,
body[data-page="home"] .home-contact__field select,
body[data-page="home"] .home-contact__field textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  font: inherit;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 360ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__field textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.45;
}

body[data-page="home"] .home-contact__select {
  position: relative;
  min-width: 0;
}

body[data-page="home"] .home-contact__select-native {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

body[data-page="home"] .home-contact__select-trigger {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 13px 58px 13px 16px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #071a38;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-align: left;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 360ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__select-trigger::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 44px;
  bottom: 10px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .home-contact__select-trigger:hover {
  color: #061020;
  background: #d8ff24;
  border-color: #d8ff24;
  transform: translateY(-2px);
}

body[data-page="home"] .home-contact__select-trigger:hover::after {
  background: rgba(6, 16, 32, 0.24);
}

body[data-page="home"] .home-contact__select-trigger:hover .home-contact__select-chevron {
  border-color: #061020;
}

body[data-page="home"] .home-contact__select-trigger:focus-visible,
body[data-page="home"] .home-contact__select[data-select-open="true"] .home-contact__select-trigger {
  outline: none;
  color: #fff;
  background: #071a38;
  border-color: #d8ff24;
  box-shadow:
    0 0 0 3px rgba(216, 255, 36, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="home"] .home-contact__select[data-select-open="true"] .home-contact__select-trigger::after {
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .home-contact__select-chevron {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #d8ff24;
  border-bottom: 1.5px solid #d8ff24;
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
  transform-origin: center;
  transition:
    border-color 220ms ease,
    transform 360ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__select[data-select-open="true"] .home-contact__select-chevron {
  border-color: #fff;
  transform: translateY(-30%) rotate(225deg);
}

body[data-page="home"] .home-contact__select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 6px;
  background: #071a38;
  border: 1px solid rgba(121, 160, 255, 0.32);
  border-radius: 2px;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 280ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__select[data-select-open="true"] .home-contact__select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body[data-page="home"] .home-contact__select-menu [role="option"] {
  position: relative;
  width: 100%;
  min-height: 36px;
  padding: 8px 36px 8px 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  border-radius: 1px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-align: left;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 250ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__select-menu [role="option"]:hover,
body[data-page="home"] .home-contact__select-menu [role="option"]:focus-visible {
  outline: none;
  color: #061020;
  background: #d8ff24;
  transform: translateX(3px);
}

body[data-page="home"] .home-contact__select-menu [role="option"][aria-selected="true"] {
  color: #061020;
  background: #d8ff24;
  font-weight: 750;
}

body[data-page="home"] .home-contact__select-menu [role="option"][aria-selected="true"]::after {
  content: "✓";
  position: absolute;
  right: 12px;
  font-size: 12px;
  font-weight: 900;
}

body[data-page="home"] .home-contact__field input::placeholder,
body[data-page="home"] .home-contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

body[data-page="home"] .home-contact__field input:hover,
body[data-page="home"] .home-contact__field select:hover,
body[data-page="home"] .home-contact__field textarea:hover {
  background: rgba(21, 87, 255, 0.09);
  border-color: rgba(121, 160, 255, 0.62);
  transform: translateY(-2px);
}

body[data-page="home"] .home-contact__field input:focus,
body[data-page="home"] .home-contact__field select:focus,
body[data-page="home"] .home-contact__field textarea:focus {
  outline: 0;
  background: rgba(21, 87, 255, 0.12);
  border-color: #d8ff24;
  box-shadow: 0 0 0 3px rgba(216, 255, 36, 0.11);
}

body[data-page="home"] .header__panel-button.home-contact__submit {
  position: relative;
  inset: auto;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 58px;
  padding: 5px 5px 5px 22px;
  overflow: hidden;
  color: #fff;
  background: #1557ff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 280ms ease,
    transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .header__panel-button.home-contact__submit::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #d8ff24;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 620ms cubic-bezier(0.77, 0, 0.18, 1);
}

body[data-page="home"] .home-contact__submit > span {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .home-contact__submit-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #061020;
  background: #d8ff24;
  border-radius: 50%;
  transition:
    color 280ms ease,
    background-color 280ms ease,
    transform 520ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

body[data-page="home"] .home-contact__submit-mark svg {
  width: 18px;
  height: 15px;
  stroke: currentColor;
}

body[data-page="home"] .home-contact__submit:hover {
  color: #071020;
  transform: translateY(-3px);
}

body[data-page="home"] .home-contact__submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

body[data-page="home"] .home-contact__submit:hover .home-contact__submit-mark {
  color: #d8ff24;
  background: #061020;
  transform: rotate(-42deg) scale(0.94);
}

body[data-page="home"] .header__panel-form-message {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  justify-content: center;
  min-height: 0;
  transform: none;
}

body[data-page="home"] .header__panel-form-message .pill {
  top: 6px;
  font-size: 12px;
}

body[data-page="home"] .header__panel-message.home-contact__privacy {
  margin: 18px 0 0;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
}

body[data-page="home"] .home-contact__privacy a {
  color: #d8ff24;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body[data-page="home"] .home-contact__privacy a::before {
  display: none;
}

@keyframes home-contact-orbit {
  to { transform: rotate(360deg) translateX(var(--home-orbit-radius)); }
}

@keyframes home-contact-blueprint-drift {
  0% {
    background-position: 0% 50%;
    border-radius: 40% 20% 52% 36%;
    transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
  }
  50% {
    background-position: 72% 38%;
    border-radius: 46% 28% 44% 42%;
    transform: translate3d(-10px, 8px, 0) rotate(-7deg) scale(1.025);
  }
  100% {
    background-position: 100% 62%;
    border-radius: 34% 30% 55% 32%;
    transform: translate3d(4px, 15px, 0) rotate(-12deg) scale(1.01);
  }
}

@keyframes home-contact-ring-breathe {
  0%, 100% {
    border-color: rgba(216, 255, 36, 0.22);
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    border-color: rgba(216, 255, 36, 0.52);
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes home-contact-signal {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 0.95; transform: scaleY(1); }
}

@media (min-width: 901px) and (max-height: 960px) {
  body[data-page="home"] .header__panel-wrapper.home-contact__inner {
    padding: 68px 36px 14px;
  }

  body[data-page="home"] .home-contact__eyebrow {
    margin-bottom: 12px;
  }

  body[data-page="home"] .header__panel-title {
    max-width: 11ch;
    font-size: clamp(48px, 3.15vw, 58px) !important;
    line-height: 0.92 !important;
  }

  body[data-page="home"] .home-contact__copy {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  body[data-page="home"] .home-contact__promise {
    margin-bottom: 14px;
  }

  body[data-page="home"] .header__panel-form.home-contact__form {
    gap: 20px;
  }

  body[data-page="home"] .home-contact__field {
    gap: 8px;
  }

  body[data-page="home"] .home-contact__field input,
  body[data-page="home"] .home-contact__field select,
  body[data-page="home"] .home-contact__field textarea {
    min-height: 48px;
    padding: 11px 15px;
  }

  body[data-page="home"] .home-contact__select-trigger {
    min-height: 48px;
    padding: 11px 58px 11px 15px;
  }

  body[data-page="home"] .home-contact__field textarea {
    min-height: 70px;
  }

  body[data-page="home"] .header__panel-button.home-contact__submit {
    height: 54px;
  }

  body[data-page="home"] .home-contact__submit-mark {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  body[data-page="home"] .header__panel-message.home-contact__privacy {
    margin-top: 8px;
    padding-top: 0;
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .header__panel {
    top: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    width: calc(100vw - 16px) !important;
    border-radius: 26px;
  }

  body[data-page="home"] .header__panel-wrapper.home-contact__inner {
    padding: 78px 28px 22px;
  }

  body[data-page="home"] .header__panel-title {
    font-size: clamp(44px, 8vw, 62px) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"][data-aside-open="true"] .header__pill-wrap {
    top: 18px;
    right: 18px;
  }

  body[data-page="home"][data-aside-open="true"] .header__pill {
    width: 56px !important;
    min-width: 56px !important;
    height: 56px !important;
    padding: 4px !important;
  }

  body[data-page="home"][data-aside-open="true"] .header__pill-fallback {
    flex-basis: 46px;
    width: 46px !important;
    height: 46px !important;
  }

  body[data-page="home"] .home-contact__blueprint {
    top: -68px;
    right: -112px;
    width: 286px;
    height: 198px;
    opacity: 0.78;
  }

  body[data-page="home"] .home-contact__blueprint::before {
    right: 42px;
    bottom: -58px;
    width: 122px;
    height: 122px;
  }

  body[data-page="home"] .header__panel-wrapper.home-contact__inner {
    padding: 64px 16px 12px;
  }

  body[data-page="home"] .header__panel-title {
    max-width: 10ch;
    font-size: clamp(36px, 10vw, 44px) !important;
    line-height: 0.92 !important;
  }

  body[data-page="home"] .home-contact__copy {
    margin-block: 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  body[data-page="home"] .home-contact__promise {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
  }

  body[data-page="home"] .home-contact__promise p {
    align-items: flex-start;
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 9px;
  }

  body[data-page="home"] .home-contact__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="home"] .header__panel-form.home-contact__form {
    gap: 12px;
  }

  body[data-page="home"] .home-contact__field {
    gap: 6px;
  }

  body[data-page="home"] .home-contact__field label {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  body[data-page="home"] .home-contact__field input,
  body[data-page="home"] .home-contact__field select,
  body[data-page="home"] .home-contact__field textarea {
    min-height: 44px;
    padding: 10px 11px;
    border-radius: 2px;
    font-size: 12px;
  }

  body[data-page="home"] .home-contact__select-trigger {
    min-height: 44px;
    padding: 10px 48px 10px 11px;
    border-radius: 13px;
    font-size: 12px;
  }

  body[data-page="home"] .home-contact__select-menu {
    top: calc(100% + 6px);
    padding: 5px;
    border-radius: 2px;
  }

  body[data-page="home"] .home-contact__select-menu [role="option"] {
    min-height: 32px;
    padding: 7px 32px 7px 10px;
    border-radius: 1px;
    font-size: 11px;
  }

  body[data-page="home"] .home-contact__field textarea {
    min-height: 70px;
  }

  body[data-page="home"] .header__panel-button.home-contact__submit {
    height: 50px;
    padding-left: 16px;
    font-size: 12px;
  }

  body[data-page="home"] .home-contact__submit-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  body[data-page="home"] .header__panel-message.home-contact__privacy {
    margin-top: 8px;
    padding-top: 0;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-contact__blueprint,
  body[data-page="home"] .home-contact__orbit::after,
  body[data-page="home"] .home-contact__signal,
  body[data-page="home"] .header__panel,
  body[data-page="home"] .header__panel-wrapper.home-contact__inner {
    animation: none !important;
    transition: none !important;
  }
}
