:root {
  --r360-blue: #275da8;
  --r360-blue-deep: #173d72;
  --r360-green: #46a957;
  --r360-green-soft: #dff3df;
  --r360-coral: #d84b56;
  --r360-ink: #18304d;
  --r360-muted: #66758c;
  --r360-paper: #f7fbff;
  --r360-line: rgba(28, 60, 104, 0.14);
  --r360-shadow: 0 20px 70px rgba(24, 48, 77, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--r360-ink);
  background: var(--r360-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.r360-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 74px;
  padding: 0.85rem clamp(1rem, 5vw, 4rem);
  background: rgba(247, 251, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.r360-site-header.is-scrolled {
  background: rgba(247, 251, 255, 0.94);
  border-bottom-color: var(--r360-line);
  box-shadow: 0 12px 32px rgba(23, 61, 114, 0.08);
}

.r360-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: max-content;
  color: var(--r360-blue-deep);
  text-decoration: none;
}

.r360-site-brand > img {
  display: block;
  width: clamp(136px, 15vw, 220px);
  height: 46px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.r360-footer-logo {
  display: block;
  width: 176px;
  max-width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.r360-site-brand__mark {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(39, 93, 168, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(39, 93, 168, 0.16), transparent 45%),
    linear-gradient(315deg, rgba(70, 169, 87, 0.22), transparent 48%),
    #ffffff;
  box-shadow: 0 12px 26px rgba(39, 93, 168, 0.18);
}

.r360-site-brand__mark::before {
  position: absolute;
  width: 20px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--r360-coral);
  transform: rotate(12deg);
}

.r360-site-brand__mark span {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  border: 3px solid #ffffff;
  border-top-color: var(--r360-blue);
  border-right-color: var(--r360-green);
  border-radius: 50%;
}

.r360-site-brand__text {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1;
}

.r360-site-brand__text span,
.r360-site-footer strong span {
  color: var(--r360-green);
}

.r360-site-nav,
.r360-site-nav .menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r360-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--r360-muted);
  font-size: 0.95rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.r360-site-nav a:hover,
.r360-site-nav a:focus-visible {
  color: var(--r360-blue-deep);
  background: rgba(39, 93, 168, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.r360-site-main {
  min-height: 70vh;
}

.r360-page-content > *:first-child {
  margin-top: 0;
}

.r360-page-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.r360-page-content:has(.r360),
.home .r360-page-content {
  width: auto;
  padding: 0;
}

.r360-site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--r360-line);
  background: rgba(255, 255, 255, 0.82);
}

.r360-site-footer strong {
  color: var(--r360-blue-deep);
  font-size: 1.1rem;
}

.r360-site-footer p {
  margin: 0.2rem 0 0;
  color: var(--r360-muted);
  font-size: 0.9rem;
}

.r360-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.r360-site-footer a {
  color: var(--r360-muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.r360-partner-logos {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.r360-partner-logos > span:first-child {
  color: #73849a;
  font-size: 0.72rem;
  font-weight: 760;
  white-space: nowrap;
}

.r360-partner-logo {
  display: block;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.r360-partner-logo--minsal {
  width: 112px;
  height: 50px;
}

/* The supplied IHS artwork intentionally includes generous transparent
 * breathing room. The wrapper keeps the official artwork intact while
 * presenting its visible area at a compact footer scale. */
.r360-partner-logo--ihes-wrap {
  display: block;
  width: 112px;
  height: 60px;
  overflow: hidden;
}

.r360-partner-logo--ihes {
  width: 112px;
  height: auto;
  transform: translateY(-19px);
}

.r360-theme-fallback {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 0;
}

@media (max-width: 720px) {
  .r360-site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.8rem;
  }

  .r360-site-nav,
  .r360-site-nav .menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .r360-site-nav a {
    min-height: 38px;
    padding-inline: 0.75rem;
    white-space: nowrap;
  }

  .r360-site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .r360-site-footer nav {
    justify-content: flex-start;
  }

  .r360-partner-logos {
    align-items: flex-start;
  }
}
