/* ═══════════════════════════════════════════════════════════════
   5ELABS — Global Animation System
   Scroll-reveal, micro-interactions, floating orbs, counters
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Load Curtain ─── */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f8f9fa;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-curtain.done {
  opacity: 0;
}

/* ─── Scroll Reveal Base ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Directional variants */
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}
[data-reveal="scale"].revealed {
  transform: scale(1);
}

[data-reveal="fade"] {
  transform: none;
}
[data-reveal="fade"].revealed {
  transform: none;
}

/* Stagger delays for grid children */
[data-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger] > *:nth-child(6) { transition-delay: 400ms; }
[data-stagger] > *:nth-child(7) { transition-delay: 480ms; }
[data-stagger] > *:nth-child(8) { transition-delay: 560ms; }

/* ─── Floating Orbs (pulsing background blurs) ─── */
@keyframes float-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(12px, -18px) scale(1.05); }
  50%      { transform: translate(-8px, -10px) scale(0.97); }
  75%      { transform: translate(6px, 14px) scale(1.03); }
}
.orb-float {
  animation: float-drift 8s ease-in-out infinite;
}
.orb-float-slow {
  animation: float-drift 14s ease-in-out infinite;
  animation-delay: -4s;
}

/* ─── Animated Progress Bars ─── */
[data-progress] .progress-fill {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-progress].revealed .progress-fill {
  transform: scaleX(1);
}

/* ─── Counter Glow Pulse ─── */
@keyframes counter-glow {
  0%   { text-shadow: 0 0 0 transparent; }
  50%  { text-shadow: 0 0 20px rgba(36, 96, 157, 0.25); }
  100% { text-shadow: 0 0 0 transparent; }
}
.counter-done {
  animation: counter-glow 1s ease-out;
}

/* ─── Card Hover Lift ─── */
.hover-lift {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12),
              0 8px 16px -8px rgba(0, 0, 0, 0.08);
}

/* ─── Glowing Border on Hover ─── */
.hover-glow {
  position: relative;
  overflow: hidden;
}
.hover-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: inset 0 0 0 1px rgba(36, 96, 157, 0.3);
  pointer-events: none;
}
.hover-glow:hover::after {
  opacity: 1;
}

/* ─── Icon Spin on Hover ─── */
.hover-icon-spin:hover .material-symbols-outlined {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(12deg) scale(1.15);
}

/* ─── Shimmer Sweep Effect ─── */
@keyframes shimmer-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.shimmer-on-hover {
  position: relative;
  overflow: hidden;
}
.shimmer-on-hover::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 1;
}
.shimmer-on-hover:hover::before {
  animation: shimmer-sweep 0.7s ease-out;
}

/* ─── Sidebar Link Indicator ─── */
aside nav a {
  position: relative;
}
aside nav a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 0;
  background: #24609d;
  border-radius: 0 4px 4px 0;
  transform: translateY(-50%);
  transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
aside nav a:hover::before,
aside nav a.bg-blue-50::before,
aside nav a[class*="bg-blue"]::before {
  height: 60%;
}

/* ─── Hero Text Gradient Shift ─── */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.animated-gradient-text {
  background: linear-gradient(135deg, #24609d, #016b5f, #24609d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease-in-out infinite;
}

/* ─── Particle Dots Background ─── */
@keyframes particle-float-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-20px); } }
@keyframes particle-float-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-25px,15px); } }
@keyframes particle-float-3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(15px,25px); } }

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle-field .dot {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(36, 96, 157, 0.4), rgba(36, 96, 157, 0.1));
  border-radius: 50%;
  pointer-events: none;
}
.particle-field .dot:nth-child(odd)  { animation: particle-float-1 12s ease-in-out infinite; }
.particle-field .dot:nth-child(even) { animation: particle-float-2 10s ease-in-out infinite; }
.particle-field .dot:nth-child(3n)   { animation: particle-float-3 14s ease-in-out infinite; }

/* ─── Table Row Slide-In ─── */
@keyframes row-slide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-rows tbody tr {
  animation: row-slide 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.animate-rows tbody tr:nth-child(1) { animation-delay: 0.1s; }
.animate-rows tbody tr:nth-child(2) { animation-delay: 0.2s; }
.animate-rows tbody tr:nth-child(3) { animation-delay: 0.3s; }
.animate-rows tbody tr:nth-child(4) { animation-delay: 0.4s; }
.animate-rows tbody tr:nth-child(5) { animation-delay: 0.5s; }

/* ─── ECG Heartbeat Line (Cardium) ─── */
@keyframes ecg-pulse {
  0%   { transform: scaleY(1); }
  10%  { transform: scaleY(2.5); }
  20%  { transform: scaleY(0.6); }
  30%  { transform: scaleY(1.8); }
  40%  { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}
.ecg-bar {
  animation: ecg-pulse 2s ease-in-out infinite;
  transform-origin: bottom;
}
.ecg-bar:nth-child(2)  { animation-delay: 0.1s; }
.ecg-bar:nth-child(3)  { animation-delay: 0.2s; }
.ecg-bar:nth-child(4)  { animation-delay: 0.3s; }
.ecg-bar:nth-child(5)  { animation-delay: 0.4s; }
.ecg-bar:nth-child(6)  { animation-delay: 0.5s; }
.ecg-bar:nth-child(7)  { animation-delay: 0.6s; }
.ecg-bar:nth-child(8)  { animation-delay: 0.7s; }
.ecg-bar:nth-child(9)  { animation-delay: 0.8s; }
.ecg-bar:nth-child(10) { animation-delay: 0.9s; }
.ecg-bar:nth-child(11) { animation-delay: 1.0s; }
.ecg-bar:nth-child(12) { animation-delay: 1.1s; }
.ecg-bar:nth-child(13) { animation-delay: 1.2s; }
.ecg-bar:nth-child(14) { animation-delay: 1.3s; }

/* ─── Smooth scroll ─── */
html {
  scroll-behavior: smooth;
}

/* Shared responsive platform navigation */
.site-desktop-nav {
  display: none;
}

.site-mobile-header {
  display: block;
}

.site-mobile-page-links {
  display: flex;
}

.mobile-platform-menu summary {
  list-style: none;
}

.mobile-platform-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-platform-chevron {
  flex: 0 0 auto;
  transition: transform 0.22s ease;
}

.mobile-platform-menu[open] .mobile-platform-chevron {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .site-desktop-nav {
    display: flex;
  }

  .site-mobile-header,
  .site-mobile-page-links {
    display: none;
  }
}

/* ─── Status Badge Pulse ─── */
.site-search-trigger {
  position: relative;
  z-index: 120;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.25rem;
  color: #5f6b72;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-search-trigger:hover {
  color: #24609d;
  background: transparent;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.site-search-trigger.is-search-active {
  color: #24609d !important;
  background: transparent;
  opacity: 1;
  box-shadow: none;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.site-search-trigger:focus-visible {
  outline: 2px solid rgba(36, 96, 157, 0.55);
  outline-offset: 3px;
}

.site-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: min(21.25rem, calc(100vw - 2rem));
  background: transparent;
}

.site-search-overlay.is-open,
.site-search-overlay.is-closing {
  display: block;
}

.site-search-panel {
  width: 100%;
  overflow: visible;
  background: transparent;
}

.site-search-overlay.is-open .site-search-panel {
  animation: site-search-enter 0.22s ease both;
}

.site-search-overlay.is-closing .site-search-panel {
  pointer-events: none;
  animation: site-search-exit 0.18s ease both;
}

.site-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-search-form {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.55rem;
  border: 1px solid rgba(115, 124, 127, 0.32);
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0,
    rgba(255, 255, 255, 0.9) calc(100% - 3.35rem),
    rgba(255, 255, 255, 0) calc(100% - 3.35rem),
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 16px 40px -24px rgba(12, 15, 16, 0.65);
}

.site-search-input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  border: 0 !important;
  border-radius: 999px;
  padding: 0.58rem 3.05rem 0.58rem 0.95rem;
  color: #2b3437;
  background: transparent !important;
  box-shadow: none !important;
  font: 500 0.88rem/1.3 "Public Sans", sans-serif;
}

.site-search-input::placeholder {
  color: #66737b;
  font-size: 0.76rem;
}

.site-search-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.site-search-form:focus-within {
  border-color: rgba(36, 96, 157, 0.6);
  box-shadow: 0 0 0 3px rgba(36, 96, 157, 0.16), 0 16px 40px -24px rgba(12, 15, 16, 0.65);
}

.site-search-results {
  display: none;
  max-height: min(17rem, calc(100dvh - 5rem));
  overflow-y: auto;
  scrollbar-gutter: stable;
  margin-top: 0.45rem;
  padding: 0.25rem 0;
  border: 1px solid rgba(171, 179, 183, 0.26);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 56px -28px rgba(12, 15, 16, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-search-panel.has-results .site-search-results {
  display: grid;
}

.site-search-dropdown-title {
  padding: 0.75rem 1rem;
  color: #2b3437;
  background: #eef3f7;
  font: 800 0.92rem/1.25 "Manrope", sans-serif;
}

.site-search-result {
  display: block;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  background: #f1f4f6;
  outline: none;
}

.site-search-result-title {
  color: #2b3437;
  font: 800 0.98rem/1.2 "Manrope", sans-serif;
}

.site-search-result-snippets {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.45rem;
}

.site-search-result-snippet {
  color: #586064;
  font: 500 0.78rem/1.4 "Public Sans", sans-serif;
}

.site-search-result mark {
  padding: 0 0.08rem;
  border-radius: 0.2rem;
  color: #0f4d86;
  background: rgba(181, 219, 255, 0.72);
  font-weight: 800;
}

.site-search-empty {
  margin: 0;
  padding: 1rem;
  color: #586064;
  text-align: left;
  font: 500 0.95rem/1.4 "Public Sans", sans-serif;
}

@keyframes site-search-enter {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-search-exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-0.45rem);
  }
}

@media (max-width: 640px) {
  .site-search-overlay {
    max-width: calc(100vw - 1.5rem);
  }

  .site-search-panel {
    width: 100%;
  }

  .site-search-results {
    max-height: min(17rem, calc(100dvh - 5rem));
  }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1, 107, 95, 0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(1, 107, 95, 0); }
}
.badge-pulse {
  animation: badge-pulse 2.5s ease-in-out infinite;
}

/* ─── Typing cursor blink ─── */
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50%      { border-color: #24609d; }
}
.typing-cursor {
  border-right: 2px solid #24609d;
  animation: blink-caret 1s step-end infinite;
  padding-right: 2px;
}

/* Research focus accordions */
.research-focus-card {
  transition: border-color 0.25s ease,
              background-color 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: height;
}

.research-focus-card[open] {
  border-color: rgba(36, 96, 157, 0.18);
  box-shadow: 0 18px 32px -24px rgba(36, 96, 157, 0.5);
}

.research-focus-summary {
  list-style: none;
}

.research-focus-summary::-webkit-details-marker {
  display: none;
}

.research-focus-summary h3 {
  overflow-wrap: anywhere;
}

.research-focus-summary:focus-visible {
  outline: 2px solid rgba(36, 96, 157, 0.55);
  outline-offset: -6px;
  border-radius: 0.5rem;
}

.research-card-chevron {
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.research-focus-card[open] .research-card-chevron {
  transform: rotate(180deg);
}

.research-focus-card.is-collapsing .research-card-chevron {
  transform: rotate(0deg);
}

.research-focus-description {
  margin: 0;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.research-focus-card.is-expanding .research-focus-description,
.research-focus-card.is-collapsing .research-focus-description {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-search-panel,
  .research-focus-description,
  .research-focus-card,
  .research-card-chevron {
    transition: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
}

/* Google Sites reference styling */
html {
  scroll-behavior: smooth;
}

.google-sites-mode {
  color: #212121;
  background: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
}

.google-sites-mode *,
.google-sites-mode *::before,
.google-sites-mode *::after {
  letter-spacing: 0;
}

.google-sites-mode .page-curtain {
  background: #ffffff;
}

.google-header {
  border-bottom: 1px solid #e8eaed;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.google-sites-mode .google-mobile-search-button {
  position: fixed !important;
  top: 14px !important;
  right: 18px !important;
  z-index: 500 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: #111111 !important;
  background: transparent !important;
  cursor: pointer;
}

.google-sites-mode .google-mobile-search-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
}

@media (max-width: 1023px) {
  .google-sites-mode .google-mobile-search-button,
  .google-sites-mode .google-mobile-search-button.site-search-trigger {
    right: auto !important;
    left: min(342px, calc(100vw - 50px)) !important;
  }
}

.google-sites-mode .google-search-button,
.google-sites-mode .google-search-button.site-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: #111111 !important;
  background: transparent !important;
  background-image: none !important;
  cursor: pointer;
}

.google-sites-mode .google-search-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
}

.google-sites-mode .google-search-button:hover svg,
.google-sites-mode .google-search-button.is-search-active svg {
  stroke-width: 2.9;
}

.google-chevron-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-apps-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 1024px) {
  .google-sites-mode .google-mobile-search-button {
    display: none !important;
  }
}

.google-brand {
  min-width: 0;
  text-decoration: none;
}

.google-brand span {
  white-space: nowrap;
}

.google-desktop-nav {
  color: #3c4043;
  font: 600 0.88rem/1.2 "Open Sans", Arial, sans-serif;
}

.google-desktop-nav > a,
.google-more-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 4rem;
  border-bottom: 3px solid transparent;
  color: #3c4043;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.google-desktop-nav > a:hover,
.google-desktop-nav > a:focus-visible,
.google-more-menu > summary:hover,
.google-more-menu > summary:focus-visible,
.google-desktop-nav > a.is-active {
  color: #212121;
  border-bottom-color: #212121;
  outline: none;
}

.google-more-menu {
  position: relative;
}

.google-more-menu > summary {
  cursor: pointer;
  list-style: none;
}

.google-menu-parent-link,
.google-mobile-menu-parent-link {
  color: inherit;
  text-decoration: none;
}

.google-menu-parent-link:focus-visible,
.google-mobile-menu-parent-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.google-more-menu > summary::-webkit-details-marker {
  display: none;
}

.google-more-menu nav {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 18rem;
  padding: 0.5rem 0;
  background: #ffffff;
  border: 1px solid #e8eaed;
  box-shadow: 0 12px 28px rgba(60, 64, 67, 0.18);
}

.google-more-menu[open] nav {
  display: grid;
}

.google-more-menu:hover nav,
.google-more-menu:focus-within nav {
  display: grid;
}

.google-more-menu nav a,
.google-mobile-menu a {
  color: #3c4043;
  text-decoration: none;
  font: 600 0.9rem/1.25 "Open Sans", Arial, sans-serif;
}

.google-more-menu nav a {
  padding: 0.75rem 1rem;
}

.google-more-menu nav a:hover,
.google-more-menu nav a:focus-visible,
.google-mobile-menu a:hover,
.google-mobile-menu a:focus-visible {
  color: #212121;
  background: #f4f4f4;
  outline: none;
}

.site-mobile-header {
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.site-mobile-page-links {
  color: #3c4043;
  font: 600 0.82rem/1.25 "Open Sans", Arial, sans-serif;
  scrollbar-width: none;
}

.site-mobile-page-links::-webkit-scrollbar {
  display: none;
}

.google-sites-mode .site-mobile-page-links a {
  color: #3c4043;
  text-decoration: none;
  white-space: nowrap;
  border-color: transparent;
}

.google-sites-mode .site-mobile-page-links a.text-blue-700 {
  color: #212121;
  border-color: #212121;
}

.google-sites-mode .mobile-platform-menu summary {
  color: #212121;
  background: #ffffff;
}

.google-mobile-menu a {
  padding: 0.72rem 0.85rem;
}

.google-main {
  padding-top: 9.25rem;
}

@media (min-width: 1024px) {
  .google-main {
    padding-top: 4rem;
  }
}

.google-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("https://ssl.gstatic.com/atari/images/impression-header.png");
  background-position: center;
  background-size: cover;
}

.google-hero-small {
  min-height: 260px;
}

.google-hero-inner,
.google-section-inner {
  width: min(100% - 2rem, 1080px);
  margin: 0 auto;
}

.google-hero-inner {
  padding: 4.5rem 0;
}

.google-hero-kicker,
.google-section-label {
  margin: 0 0 0.85rem;
  color: inherit;
  font: 700 0.78rem/1.35 "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.google-section-label {
  color: #5f6368;
}

.google-hero h1 {
  max-width: 760px;
  margin: 0;
  font: 600 clamp(3rem, 9vw, 5.7rem)/1 "Oswald", Arial, sans-serif;
}

.google-hero-copy {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font: 400 clamp(1rem, 2vw, 1.28rem)/1.75 "Open Sans", Arial, sans-serif;
}

.google-section {
  scroll-margin-top: 10rem;
  padding: clamp(3rem, 7vw, 5.25rem) 0;
  background: #ffffff;
}

.google-section-muted {
  background: #f4f4f4;
}

.google-section h2 {
  max-width: 760px;
  margin: 0;
  color: #212121;
  font: 500 clamp(2rem, 5vw, 3.5rem)/1.12 "Oswald", Arial, sans-serif;
}

.google-section h3 {
  margin: 0 0 0.65rem;
  color: #212121;
  font: 600 1.35rem/1.2 "Oswald", Arial, sans-serif;
}

.google-copy-stack {
  display: grid;
  gap: 1rem;
  color: #3c4043;
  font: 400 1rem/1.8 "Open Sans", Arial, sans-serif;
}

.google-copy-stack p,
.google-card p,
.google-platform-row p {
  margin: 0;
}

.google-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.google-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.google-card {
  min-height: 13rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-card p {
  color: #5f6368;
  font: 400 0.98rem/1.7 "Open Sans", Arial, sans-serif;
}

.google-framework-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.google-framework-grid div {
  min-height: 9rem;
  padding: 1.1rem;
  background: #ffffff;
  border-left: 5px solid #f1f676;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-framework-grid strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #212121;
  font: 600 1.15rem/1.2 "Oswald", Arial, sans-serif;
}

.google-framework-grid span {
  display: block;
  color: #5f6368;
  font: 400 0.9rem/1.55 "Open Sans", Arial, sans-serif;
}

.google-platform-list {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.google-platform-row {
  display: grid;
  grid-template-columns: minmax(11rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid #e8eaed;
  scroll-margin-top: 10rem;
}

.google-platform-row:last-child {
  border-bottom: 1px solid #e8eaed;
}

.google-platform-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: #212121;
  background: #f1f676;
  border: 1px solid #e2e75d;
}

.google-platform-media .material-symbols-outlined {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.google-platform-row p {
  max-width: 680px;
  color: #5f6368;
  font: 400 1rem/1.75 "Open Sans", Arial, sans-serif;
}

.google-footer {
  padding: 2.25rem 0;
  color: #3c4043;
  background: #f4f4f4;
  border-top: 1px solid #e8eaed;
}

.google-footer a {
  color: #3c4043;
  text-decoration: none;
}

.google-footer a:hover,
.google-footer a:focus-visible {
  color: #212121;
  text-decoration: underline;
  outline: none;
}

.google-downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.google-download-card,
.google-download-empty {
  background: #ffffff;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-download-card {
  display: grid;
  gap: 1.2rem;
  align-content: space-between;
  min-height: 15rem;
  padding: 1.35rem;
}

.google-download-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.google-download-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: #212121;
  background: #f1f676;
}

.google-download-card h3 {
  overflow: hidden;
  margin: 0;
  color: #212121;
  font: 600 1.18rem/1.25 "Oswald", Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-download-meta {
  margin: 0.35rem 0 0;
  color: #5f6368;
  font: 600 0.78rem/1.4 "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
}

.google-download-description {
  margin: 0;
  color: #5f6368;
  font: 400 0.92rem/1.65 "Open Sans", Arial, sans-serif;
}

.google-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.google-download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  color: #212121;
  border: 1px solid #dadce0;
  background: #ffffff;
  font: 700 0.9rem/1.2 "Open Sans", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.google-download-action-primary {
  color: #212121;
  background: #f1f676;
  border-color: #e2e75d;
}

.google-download-action:hover,
.google-download-action:focus-visible {
  color: #212121;
  background: #f4f4f4;
  outline: 2px solid rgba(33, 33, 33, 0.2);
  outline-offset: 2px;
}

.google-download-action-primary:hover,
.google-download-action-primary:focus-visible {
  background: #eef35f;
}

.google-download-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: 14rem;
  padding: 2rem;
  color: #5f6368;
  text-align: center;
}

.google-download-error {
  color: #b3261e;
  background: #fce8e6;
}

.google-sites-mode .particle-field {
  display: none;
}

.google-sites-mode .hover-lift:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-sites-mode .hover-glow::after,
.google-sites-mode .shimmer-on-hover::before {
  display: none;
}

.google-sites-mode .site-search-trigger {
  color: #5f6368;
  background: transparent;
}

.google-sites-mode .site-search-trigger {
  width: 32px;
  height: 32px;
  color: transparent !important;
  position: relative;
  overflow: visible;
}

.google-sites-mode .site-search-trigger::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 13px;
  height: 13px;
  border: 2px solid #111111;
  border-radius: 50%;
}

.google-sites-mode .site-search-trigger::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 19px;
  width: 10px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.google-sites-mode .site-search-trigger:hover,
.google-sites-mode .site-search-trigger.is-search-active {
  color: #174ea6 !important;
  background: transparent;
  font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.google-sites-mode .site-search-trigger:hover::before,
.google-sites-mode .site-search-trigger.is-search-active::before {
  border-width: 3px;
}

.google-sites-mode .site-search-trigger:hover::after,
.google-sites-mode .site-search-trigger.is-search-active::after {
  height: 3px;
}

.google-sites-mode .site-search-trigger:focus-visible {
  outline-color: rgba(23, 78, 166, 0.55);
}

.google-sites-mode .site-search-form {
  min-height: 42px;
  padding-right: 3rem;
  background: rgba(255, 255, 255, 0.94);
  border-color: #dadce0;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-sites-mode .site-search-form:focus-within {
  border-color: #174ea6;
  box-shadow: 0 0 0 2px rgba(23, 78, 166, 0.18);
}

.google-sites-mode .site-search-input {
  color: #212121;
  font: 600 0.78rem/1.2 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .site-search-input::placeholder {
  color: #5f6368;
  font-size: 0.78rem;
}

.google-sites-mode .site-search-results {
  max-height: min(20rem, calc(100dvh - 5rem));
  background: #ffffff;
  border-color: #e8eaed;
  border-radius: 0.35rem;
  box-shadow: 0 14px 28px rgba(60, 64, 67, 0.18);
}

.google-sites-mode .site-search-dropdown-title {
  color: #212121;
  background: #f4f4f4;
  font: 700 0.9rem/1.25 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .site-search-result {
  color: #212121;
}

.google-sites-mode .site-search-result:hover,
.google-sites-mode .site-search-result:focus-visible {
  background: #f8f9fa;
}

.google-sites-mode .site-search-result-title {
  color: #212121;
  font: 700 0.95rem/1.25 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .site-search-result-snippet {
  color: #5f6368;
  font: 400 0.78rem/1.45 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .site-search-result mark {
  color: #212121;
  background: #f1f676;
}

@media (max-width: 920px) {
  .google-two-column,
  .google-card-grid,
  .google-framework-grid,
  .google-platform-row,
  .google-downloads-grid {
    grid-template-columns: 1fr;
  }

  .google-card,
  .google-framework-grid div {
    min-height: 0;
  }

  .google-platform-media {
    max-width: 26rem;
  }
}

@media (max-width: 640px) {
  .google-hero {
    min-height: 300px;
  }

  .google-hero-inner {
    padding: 3rem 0;
  }

  .google-section {
    padding: 2.75rem 0;
  }

  .google-platform-row {
    gap: 1.15rem;
  }

  .google-download-actions {
    flex-direction: column;
  }

  .google-download-action {
    width: 100%;
  }
}

/* Google Sites screenshot alignment pass */
.google-sites-mode .google-header {
  height: 56px;
  border: 0;
  box-shadow: none;
}

.google-sites-mode .google-header-nav {
  max-width: none;
  height: 56px !important;
  padding: 0 24px 0 31px;
}

.google-sites-mode .google-brand {
  flex: 0 0 auto;
  gap: 12px;
  color: #111111;
}

.google-sites-mode .google-brand img {
  width: 29px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

.google-sites-mode .google-brand span {
  color: #111111;
  font: 400 22px/1.2 "Oswald", Arial, sans-serif;
}

.google-sites-mode .google-desktop-nav {
  margin-left: auto;
  margin-right: 22px;
  gap: 29px;
  color: #111111;
  font: 400 16px/1.2 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-desktop-nav > a,
.google-sites-mode .google-more-menu > summary {
  min-height: auto;
  height: 56px;
  padding: 0;
  border: 0;
  color: #111111;
  background: transparent;
  font: inherit;
}

.google-sites-mode .google-desktop-nav > a.is-active {
  height: 29px;
  min-height: 29px;
  padding: 0 10px;
  color: #ffffff;
  background: #111111;
}

.google-sites-mode .google-desktop-nav > a:hover,
.google-sites-mode .google-desktop-nav > a:focus-visible,
.google-sites-mode .google-more-menu > summary:hover,
.google-sites-mode .google-more-menu > summary:focus-visible {
  color: #111111;
  border: 0;
  opacity: 0.72;
}

.google-sites-mode .google-desktop-nav > a.is-active:hover,
.google-sites-mode .google-desktop-nav > a.is-active:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.google-sites-mode .google-more-menu-secondary {
  display: none;
}

.google-sites-mode .google-more-menu nav {
  top: 50px;
  left: 0;
  right: auto;
  min-width: 270px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(60, 64, 67, 0.28);
}

.google-sites-mode .google-more-menu nav a {
  padding: 11px 18px;
  color: #111111;
  font: 400 14px/1.3 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-more-menu nav a:hover,
.google-sites-mode .google-more-menu nav a:focus-visible,
.google-sites-mode .google-more-menu nav a.is-active {
  background: #f1f3f4;
}

.google-sites-mode header [data-icon="search"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 25px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.google-sites-mode .google-header-nav > div:last-child {
  flex: 0 0 auto;
  display: flex !important;
  justify-content: flex-end;
  min-width: 32px;
  margin-left: 10px;
}

@media (min-width: 1024px) {
  .google-sites-mode .google-search-control {
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 150;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }

  .google-sites-mode .google-desktop-nav {
    margin-right: 70px;
  }
}

.google-sites-mode .google-main {
  padding-top: 56px;
}

.google-sites-home-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 56px);
  padding: 26px 0 82px;
  align-content: start;
  align-items: start;
  justify-items: center;
  place-items: start center;
  overflow: hidden;
  background: #ffffff;
}

.google-sites-hero-logo {
  display: block;
  width: min(84.7vw, 1156px);
  max-height: calc(100vh - 160px);
  object-fit: contain;
  transform: translate(-32px, 10px) scale(1.03);
  transform-origin: center;
}

.google-sites-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 23px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #9e9e9e;
  text-decoration: none;
  transform: translateX(-50%);
}

.google-sites-scroll-cue .material-symbols-outlined {
  font-size: 34px;
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

.google-sites-mode .google-hero {
  min-height: 340px;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(33, 33, 33, 0.5), rgba(33, 33, 33, 0.5)),
    url("https://ssl.gstatic.com/atari/images/impression-header.png");
}

.google-sites-mode .google-sites-subpage-hero {
  min-height: 260px;
}

.google-sites-mode .google-hero h1 {
  font: 400 60pt/1.2 "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.google-sites-mode .google-hero-copy {
  font: 400 13pt/1.6 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-section {
  padding: 56px 0;
  background: #ffffff;
}

.google-sites-mode .google-section-muted {
  background: #f7f7f7;
}

.google-sites-mode .google-section-inner {
  width: min(100% - 96px, 960px);
}

.google-sites-centered-copy {
  max-width: 960px;
}

.google-sites-centered-copy h2 {
  margin: 0 0 18px;
  color: #000000;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
  text-transform: none;
}

.google-sites-centered-copy p {
  margin: 0;
  color: #000000;
  font: 500 12pt/1.6 "Lora", Georgia, serif;
}

.google-sites-mode #about .google-sites-centered-copy {
  text-align: center;
}

.google-sites-mode #about .google-sites-centered-copy h2,
.google-sites-mode #about .google-sites-centered-copy p {
  margin-left: auto;
  margin-right: auto;
}

.google-sites-mode #about .google-sites-centered-copy p {
  max-width: 860px;
}

.google-sites-mode .google-section-label {
  margin-bottom: 12px;
  color: #000000;
  font: 400 9pt/1.2 "Oswald", Arial, sans-serif;
  text-transform: none;
}

.google-sites-mode .google-section h2 {
  color: #1f1f1f;
  font: 400 38pt/1.23 "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.google-sites-mode .google-copy-stack {
  color: #212121;
  font: 400 13pt/1.6 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.google-sites-mode .google-card-grid,
.google-sites-mode .google-framework-grid {
  gap: 22px;
  margin-top: 34px;
}

.google-sites-mode .google-card,
.google-sites-mode .google-framework-grid div,
.google-sites-mode .google-download-card,
.google-sites-mode .google-download-empty {
  border: 0;
  box-shadow: none;
}

.google-sites-mode .google-card {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.google-sites-mode .google-card h3,
.google-sites-mode .google-framework-grid strong {
  color: #000000;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-card p,
.google-sites-mode .google-framework-grid span {
  color: #000000;
  font: 500 12pt/1.6 "Lora", Georgia, serif;
}

.google-sites-mode .google-framework-grid div {
  min-height: 0;
  padding: 0 0 0 18px;
  background: transparent;
  border-left: 4px solid #f1f676;
}

.google-sites-mode .google-platform-list {
  gap: 0;
  margin-top: 38px;
}

.google-sites-mode .google-platform-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  min-height: 320px;
  padding: 42px 0;
  border: 0;
}

.google-sites-mode .google-platform-row:nth-child(even) .google-platform-media {
  order: 2;
}

.google-sites-mode .google-platform-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: #f7f7f7;
  border: 0;
}

.google-sites-mode .google-platform-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-sites-mode .google-platform-media.google-platform-media-contain {
  display: grid;
  place-items: center;
  background: #f7f7f7;
}

.google-sites-mode .google-platform-media.google-platform-media-contain img {
  height: auto;
  object-fit: contain;
}

.google-sites-mode .google-platform-media .material-symbols-outlined {
  color: #b5b5b5;
  opacity: 0.32;
  font-size: 82px;
}

.google-sites-mode .google-platform-row h3 {
  margin: 0 0 18px;
  color: #000000;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-platform-row p {
  max-width: 100%;
  color: #000000;
  font: 500 12pt/1.6 "Lora", Georgia, serif;
}

.google-sites-mode .google-footer {
  padding: 28px 0;
  background: #f7f7f7;
  border: 0;
}

.google-sites-mode .google-downloads-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.google-sites-mode .google-download-card,
.google-sites-mode .google-download-empty {
  background: #f7f7f7;
}

.google-sites-mode .google-download-card h3 {
  color: #000000;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-download-description,
.google-sites-mode .google-download-meta {
  color: #000000;
  font-family: "Lora", Georgia, serif;
}

.google-sites-mode .google-download-action {
  border: 1px solid #000000;
  border-radius: 0;
  background: #f1f676;
  color: #000000;
  font: 400 13pt/22px "Open Sans", Arial, sans-serif;
}

@media (max-width: 1120px) {
  .google-sites-mode .google-desktop-nav {
    gap: 18px;
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .google-sites-mode .google-header {
    height: auto;
  }

  .google-sites-mode .google-header-nav {
    position: relative;
    height: 56px !important;
    padding-right: 64px;
  }

  .google-sites-mode .google-header-nav > div:last-child {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 160;
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }

  .google-sites-mode .google-main {
    padding-top: 160px;
  }

  .google-sites-mode .site-mobile-header {
    border-top: 0;
    box-shadow: none;
  }

  .google-sites-mode .site-mobile-page-links {
    height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    font: 400 14px/1.2 "Open Sans", Arial, sans-serif;
  }

  .google-sites-mode .mobile-platform-menu {
    background: #ffffff;
  }

  .google-sites-home-hero {
    min-height: calc(100vh - 160px);
  }
}

@media (max-width: 920px) {
  .google-sites-mode .google-two-column,
  .google-sites-mode .google-card-grid,
  .google-sites-mode .google-framework-grid,
  .google-sites-mode .google-platform-row,
  .google-sites-mode .google-downloads-grid {
    grid-template-columns: 1fr;
  }

  .google-sites-mode .google-platform-row:nth-child(even) .google-platform-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .google-sites-mode .google-header-nav {
    padding: 0 64px 0 24px;
  }

  .google-sites-mode .google-header-nav > div:last-child {
    right: 18px;
  }

  .google-sites-mode .google-brand img {
    width: 24px;
    height: 34px;
  }

  .google-sites-mode .google-brand span {
    font-size: 20px;
  }

  .google-sites-mode .google-section-inner {
    width: min(100% - 48px, 960px);
  }

  .google-sites-home-hero {
    padding: 28px 0 64px;
  }

  .google-sites-hero-logo {
    width: min(96vw, 1185px);
    transform: none;
  }

  .google-sites-mode .google-section h2 {
    font-size: 32pt;
  }

  .google-sites-mode .google-hero h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .google-sites-mode .google-hero-inner {
    width: min(330px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }

  .google-sites-mode .google-hero-copy {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.55;
  }

  .google-sites-mode .google-section {
    padding: 42px 0;
  }
}

.google-sites-mode .site-search-trigger {
  color: transparent !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='12.1' cy='12.1' r='6.5' stroke='%23111111' stroke-width='2.1'/%3E%3Cpath d='M17.1 17.1L23 23' stroke='%23111111' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 28px 28px !important;
}

.google-sites-mode .site-search-trigger::before,
.google-sites-mode .site-search-trigger::after {
  display: none;
}

.google-sites-mode .site-search-trigger:hover,
.google-sites-mode .site-search-trigger.is-search-active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='12.1' cy='12.1' r='6.5' stroke='%23111111' stroke-width='2.9'/%3E%3Cpath d='M17.1 17.1L23 23' stroke='%23111111' stroke-width='2.9' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

@media (max-width: 1023px) {
  .google-sites-mode .google-header-nav > div:last-child {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='12.1' cy='12.1' r='6.5' stroke='%23111111' stroke-width='2.1'/%3E%3Cpath d='M17.1 17.1L23 23' stroke='%23111111' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
  }

  .google-sites-mode .site-search-trigger {
    position: fixed !important;
    top: 14px;
    right: 18px;
    z-index: 500;
  }
}

.google-sites-mode .google-mobile-search-button {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: #111111;
  background: transparent;
  cursor: pointer;
}

.google-sites-mode .google-mobile-search-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
}

@media (min-width: 1024px) {
  .google-sites-mode .google-mobile-search-button {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .google-sites-mode .google-search-icon-font {
    display: none !important;
  }

  .google-sites-mode .google-mobile-search-button,
  .google-sites-mode .google-mobile-search-button.site-search-trigger {
    position: fixed !important;
    top: 14px;
    right: 18px;
    z-index: 500;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #111111 !important;
    background: transparent !important;
    background-image: none !important;
  }

  .google-sites-mode .google-desktop-search-button {
    display: none !important;
  }
}

.google-sites-mode .google-mobile-search-button:hover svg,
.google-sites-mode .google-mobile-search-button.is-search-active svg {
  stroke-width: 2.9;
}

/* Google Sites-style platform detail pages */
.google-sites-mode .google-more-menu.is-active > summary {
  color: #111111;
}

.google-sites-mode .google-more-menu.is-section-active > summary {
  color: #111111;
  opacity: 1;
}

.google-sites-mode .google-more-menu.is-section-active > summary > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  min-height: 29px;
  padding: 0 10px;
  color: #ffffff;
  background: #111111;
}

.google-sites-mode .google-more-menu.is-section-active > summary:hover,
.google-sites-mode .google-more-menu.is-section-active > summary:focus-visible {
  opacity: 1;
}

.google-sites-mode .google-more-menu nav {
  min-width: 320px;
}

.google-sites-mode .google-mobile-menu a.is-active {
  background: #f1f3f4;
}

.google-platform-title-link {
  color: inherit;
  text-decoration: none;
}

.google-platform-title-link:hover,
.google-platform-title-link:focus-visible {
  color: #111111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  outline: none;
}

.google-sites-mode .google-platform-detail-hero {
  min-height: 0;
  padding: 56px 0;
  color: #000000;
  background: #ffffff;
  background-image: none;
}

.google-sites-mode .google-platform-detail-main {
  overflow-x: hidden;
}

.google-sites-mode .google-platform-cover-hero {
  min-height: 500px;
  padding: 0;
  background: #ffffff;
  background-image: var(--google-platform-cover-image), var(--google-platform-cover-fallback, none);
  background-position: center center;
  background-size: min(78vw, 1120px) auto;
  background-repeat: no-repeat;
}

.google-sites-mode .google-platform-cover-inner {
  width: calc(100% - 96px);
  max-width: 960px;
  margin: 0 auto;
}

.google-sites-mode .google-platform-cover-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.google-sites-mode .google-platform-cover-natural {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: center;
  padding: 50px 0 0;
  background-image: none;
}

.google-sites-mode .google-atomic-cover-inner {
  max-width: 1066px;
}

.google-sites-mode .google-platform-title-section {
  padding-top: 48px;
}

.google-sites-mode .google-platform-title-copy {
  display: grid;
  gap: 14px;
}

.google-sites-mode .google-platform-title-copy h1 {
  margin: 0;
  color: #000000;
  font: 400 50pt/1.16 "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  text-wrap: balance;
}

.google-sites-mode .google-platform-title-copy p {
  max-width: 760px;
  margin: 0;
  color: #000000;
  font: 400 13pt/1.6 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-platform-detail-main .google-section-inner,
.google-sites-mode .google-platform-detail-main .google-hero-inner {
  width: calc(100% - 96px);
  max-width: 960px;
}

.google-sites-mode .google-platform-detail-hero h1,
.google-sites-mode .google-platform-detail-main .google-section h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
}

.google-sites-mode .google-platform-detail-main .google-two-column > *,
.google-sites-mode .google-platform-detail-main .google-copy-stack,
.google-sites-mode .google-platform-detail-main .google-copy-stack p {
  min-width: 0;
  max-width: 100%;
}

.google-sites-mode .google-platform-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 48px;
  margin-top: 38px;
}

.google-sites-mode .google-platform-feature-list article {
  min-height: 0;
  padding: 0 0 0 18px;
  background: transparent;
  border-left: 4px solid #f1f676;
  box-shadow: none;
}

.google-sites-mode .google-platform-feature-list h3 {
  margin: 0 0 10px;
  color: #000000;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-platform-feature-list p,
.google-sites-mode .google-platform-cta p {
  margin: 0;
  color: #000000;
  font: 500 12pt/1.6 "Lora", Georgia, serif;
}

.google-sites-mode .google-platform-media-section {
  align-items: center;
}

.google-sites-mode .google-platform-video,
.google-sites-mode .google-platform-media-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f7f7f7;
}

.google-sites-mode .google-platform-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.google-sites-mode .google-platform-media-frame {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #9e9e9e;
  text-align: center;
}

.google-sites-mode .google-platform-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-sites-mode .google-platform-media-frame.google-platform-media-natural {
  display: block;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.google-sites-mode .google-platform-media-frame.google-platform-media-natural img {
  height: auto;
  object-fit: contain;
}

.google-sites-mode .google-platform-media-frame .material-symbols-outlined {
  color: #b5b5b5;
  opacity: 0.42;
  font-size: 86px;
}

.google-sites-mode .google-platform-media-frame p {
  max-width: 80%;
  margin: 0;
  color: #777777;
  font: 700 18pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-platform-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 36px;
  margin-top: 38px;
}

.google-sites-mode .google-platform-gallery figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.google-sites-mode .google-platform-gallery figcaption {
  color: #000000;
  text-align: center;
  font: 700 16pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-atomic-story-grid,
.google-sites-mode .google-atomic-showcase-grid {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  align-items: start;
}

.google-sites-mode .google-atomic-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-sites-mode .google-atomic-showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.google-sites-mode .google-atomic-story-grid figure,
.google-sites-mode .google-atomic-showcase-grid figure,
.google-sites-mode .google-atomic-journal-cover {
  display: grid;
  gap: 12px;
  margin: 0;
}

.google-sites-mode .google-atomic-story-grid img,
.google-sites-mode .google-atomic-showcase-grid img,
.google-sites-mode .google-atomic-alignment-image img,
.google-sites-mode .google-atomic-journal-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.google-sites-mode .google-atomic-showcase-grid figcaption {
  color: #000000;
  text-align: center;
  font: 700 14pt/1.3 "Lora", Georgia, serif;
}

.google-sites-mode .google-atomic-alignment-image {
  display: grid;
  align-items: center;
}

.google-sites-mode .google-atomic-journal-cover {
  justify-self: center;
  width: min(100%, 430px);
}

.google-sites-mode .google-platform-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 20px;
  color: #000000;
  font: 500 12pt/1.6 "Lora", Georgia, serif;
}

.google-sites-mode .google-platform-cta {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.google-sites-mode .google-platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #000000;
  color: #000000;
  background: #f1f676;
  text-decoration: none;
  font: 400 13pt/22px "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-platform-button:hover,
.google-sites-mode .google-platform-button:focus-visible {
  background: #eef35f;
  outline: 2px solid rgba(17, 17, 17, 0.16);
  outline-offset: 2px;
}

/* Google Sites-style standalone section pages */
.google-sites-mode .google-reference-main {
  background: #ffffff;
}

.google-sites-mode .google-reference-banner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: #f1f676;
}

.google-sites-mode .google-reference-banner h1 {
  max-width: min(100%, 1100px);
  margin: 0;
  color: #1f1f1f;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
  font: 400 29pt/1.42 "Oswald", Arial, sans-serif;
}

.google-sites-mode .google-reference-content {
  width: min(100% - 160px, 1200px);
  margin: 0 auto;
  padding: 31px 0 44px;
}

.google-sites-mode .google-live-copy p {
  box-sizing: border-box;
  margin: 0 0 24px;
  color: #000000;
  overflow-wrap: anywhere;
}

.google-sites-mode .google-live-copy-peer p {
  font: 400 14pt/1.38 "Times New Roman", Times, serif;
}

.google-sites-mode .google-live-copy-peer em {
  font-style: italic;
}

.google-sites-mode .google-live-copy-events {
  --google-event-indent: 71pt;
}

.google-sites-mode .google-live-copy-events p {
  padding-left: var(--google-event-indent);
  text-align: justify;
  text-indent: calc(var(--google-event-indent) * -1);
  font: 500 11pt/1.38 "Lora", Georgia, serif;
}

.google-sites-mode .google-live-copy-events strong {
  font-weight: 700;
}

.google-sites-mode .google-live-copy-events em {
  font-style: italic;
}

.google-sites-mode .google-live-copy-events .google-live-link-line {
  padding-left: 0;
  text-align: left;
  text-indent: 0;
}

.google-sites-mode .google-live-copy a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.google-sites-mode .google-community-poster-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 96px, 1180px);
  margin: 20px auto 72px;
  align-items: start;
}

.google-sites-mode .google-community-poster {
  margin: 0;
}

.google-sites-mode .google-community-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.google-sites-mode .google-contact-template {
  width: min(100% - 96px, 562px);
  margin: 0 auto;
  padding: 35px 0 64px;
}

.google-sites-mode .google-contact-template h1 {
  margin: 0 0 72px;
  color: #2b2b2b;
  font: 400 32pt/1.28 "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.google-sites-mode .google-contact-block {
  margin: 0 0 60px;
}

.google-sites-mode .google-contact-block h2 {
  margin: 0 0 22px;
  color: #111111;
  font: 400 18pt/1.3 "Open Sans", Arial, sans-serif;
  text-transform: none;
}

.google-sites-mode .google-contact-block p {
  margin: 0 0 10px;
  color: #333333;
  font: 400 13pt/1.6 "Open Sans", Arial, sans-serif;
}

.google-sites-mode .google-contact-figure {
  width: 100%;
  margin: 0 0 72px;
}

.google-sites-mode .google-contact-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.google-sites-mode .google-contact-figure figcaption {
  margin-top: 12px;
  color: #111111;
  text-align: center;
  font: 400 8pt/1.2 "Oswald", Arial, sans-serif;
}

@media (max-width: 920px) {
  .google-sites-mode .google-platform-feature-list,
  .google-sites-mode .google-platform-gallery {
    grid-template-columns: 1fr;
  }

  .google-sites-mode .google-atomic-story-grid,
  .google-sites-mode .google-atomic-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .google-sites-mode .google-platform-cover-hero {
    min-height: 300px;
    background-size: min(92vw, 560px) auto;
  }

  .google-sites-mode .google-platform-cover-natural {
    min-height: auto;
    padding-top: 24px;
  }

  .google-sites-mode .google-platform-detail-main .google-section-inner,
  .google-sites-mode .google-platform-detail-main .google-hero-inner,
  .google-sites-mode .google-platform-cover-inner {
    width: calc(100% - 48px);
  }

  .google-sites-mode .google-platform-detail-hero h1,
  .google-sites-mode .google-platform-title-copy h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .google-sites-mode .google-platform-detail-main .google-section h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .google-sites-mode .google-reference-content,
  .google-sites-mode .google-contact-template {
    width: min(100% - 48px, 562px);
  }

  .google-sites-mode .google-reference-banner h1 {
    font-size: 26pt;
    line-height: 1.42;
  }

  .google-sites-mode .google-contact-template h1 {
    margin-bottom: 52px;
    font-size: 38px;
    line-height: 1.22;
  }

  .google-sites-mode .google-community-poster-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100% - 48px, 960px);
    gap: 12px;
  }

  .google-sites-mode .google-platform-detail-main .google-copy-stack {
    font-size: 16px;
    line-height: 1.65;
  }

  .google-sites-mode .google-platform-detail-main .google-copy-stack p {
    width: 300px !important;
    max-width: calc(100vw - 48px) !important;
    white-space: normal !important;
  }

  .google-sites-mode .google-platform-detail-main .google-two-column {
    gap: 28px;
  }

  .google-sites-mode .google-atomic-story-grid,
  .google-sites-mode .google-atomic-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .google-sites-mode .google-platform-feature-list {
    gap: 24px;
  }

  .google-sites-mode .google-platform-media-frame .material-symbols-outlined {
    font-size: 64px;
  }

  .google-sites-mode .google-platform-media-frame p {
    font-size: 16pt;
  }
}

@media (max-width: 520px) {
  .google-sites-mode .google-live-copy-events {
    --google-event-indent: 42px;
  }

  .google-sites-mode .google-reference-content {
    width: min(300px, calc(100vw - 72px));
  }

  .google-sites-mode .google-reference-banner h1 {
    font-size: 20pt;
    line-height: 1.35;
  }

  .google-sites-mode .google-community-poster-gallery {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 560px);
    gap: 18px;
  }
}

@media (max-width: 1023px) {
  .google-sites-mode .google-main {
    padding-top: 204px;
  }

  .google-sites-home-hero {
    min-height: calc(100vh - 204px);
  }
}

/* Google Sites-aligned admin panel */
.admin-page .admin-main {
  min-height: calc(100vh - 56px);
  background: #ffffff;
}

.admin-page .admin-panel-shell {
  width: min(100% - 96px, 1080px);
  margin: 56px auto 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

.admin-page .admin-panel-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: flex-start;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.admin-page .admin-panel-heading h1 {
  margin: 0;
  color: #111111;
  font: 400 44px/1.12 "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.admin-page .admin-panel-heading > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-page .admin-panel-heading span,
.admin-page .rounded-full {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.admin-page p,
.admin-page label,
.admin-page td,
.admin-page th,
.admin-page input,
.admin-page textarea,
.admin-page button,
.admin-page a {
  letter-spacing: 0;
}

.admin-page h2 {
  color: #000000 !important;
  font: 700 18pt/1.3 "Lora", Georgia, serif !important;
}

.admin-page .rounded-xl,
.admin-page .rounded-lg,
.admin-page .rounded,
.admin-page .shadow-lg,
.admin-page .shadow-sm {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.admin-page .bg-gray-50 {
  background-color: #f7f7f7 !important;
}

.admin-page .bg-white {
  background-color: #ffffff !important;
}

.admin-page .border-gray-100,
.admin-page .border-gray-200,
.admin-page .border-purple-200 {
  border-color: #e0e0e0 !important;
}

.admin-page input[type="text"],
.admin-page input[type="email"],
.admin-page input[type="password"],
.admin-page input[type="file"],
.admin-page textarea {
  border-color: #dadce0 !important;
  border-radius: 0 !important;
  color: #212121;
  background-color: #ffffff;
  font: 400 14px/1.45 "Open Sans", Arial, sans-serif;
}

.admin-page input:focus,
.admin-page textarea:focus {
  border-color: #111111 !important;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.14) !important;
}

.admin-page button[type="submit"],
.admin-page .bg-blue-600,
.admin-page .bg-gray-800 {
  border: 1px solid #111111 !important;
  border-radius: 0 !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font: 600 13px/1.25 "Open Sans", Arial, sans-serif;
}

.admin-page button[type="submit"]:hover,
.admin-page .bg-blue-600:hover,
.admin-page .bg-gray-800:hover {
  background: #333333 !important;
}

.admin-page table {
  border-collapse: collapse;
}

.admin-page thead,
.admin-page thead.bg-purple-50,
.admin-page thead.bg-white {
  background: #f7f7f7 !important;
}

.admin-page th {
  color: #111111 !important;
  font: 700 11px/1.3 "Open Sans", Arial, sans-serif;
}

.admin-page tbody tr:hover {
  background: #f7f7f7 !important;
}

.admin-page a {
  color: #111111;
}

.admin-page a:hover {
  color: #5f6368;
}

.admin-page .admin-footer {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .admin-page .admin-panel-shell {
    width: min(100% - 48px, 1080px);
    margin-top: 42px;
  }
}

@media (max-width: 640px) {
  .admin-page .admin-panel-shell {
    width: min(100% - 32px, 1080px);
    margin-top: 32px;
  }

  .admin-page .admin-panel-heading h1 {
    font-size: 38px;
  }
}

/* Downloads page icon fallbacks that do not depend on icon fonts */
.google-inline-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 2px solid #dadce0;
  border-top-color: #111111;
  border-radius: 50%;
  animation: google-spinner 0.8s linear infinite;
}

@keyframes google-spinner {
  to {
    transform: rotate(360deg);
  }
}

.google-download-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-download-icon .google-download-svg {
  width: 34px;
  height: 34px;
  color: #9e9e9e;
}

.google-preview-close-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Global CPU pulse background, using only the animated signal paths. */
.google-sites-mode.has-cpu-pulse-background {
  background: #ffffff;
}

.google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  color: #356f8f;
  opacity: 0.68;
  mix-blend-mode: multiply;
  contain: layout paint style;
}

.google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-svg {
  display: block;
  width: 142vw;
  height: 128vh;
  min-width: 980px;
  transform: translate(-21vw, -13vh) scale(1.04);
  transform-origin: center;
}

.google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-mask-line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-route {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.18;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.28;
  vector-effect: non-scaling-stroke;
}

html.is-plane-transitioning .google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-background {
  display: none;
}

.google-sites-mode.has-cpu-pulse-background .google-main,
.google-sites-mode.has-cpu-pulse-background .google-footer {
  position: relative;
  z-index: 1;
}

.google-sites-mode.has-cpu-pulse-background .google-sites-home-hero,
.google-sites-mode.has-cpu-pulse-background .google-section,
.google-sites-mode.has-cpu-pulse-background .google-reference-main,
.google-sites-mode.has-cpu-pulse-background .google-contact-main {
  background-color: rgba(255, 255, 255, 0.78);
}

.google-sites-mode.has-cpu-pulse-background .google-section-muted,
.google-sites-mode.has-cpu-pulse-background .google-footer {
  background-color: rgba(247, 247, 247, 0.82);
}

@media (max-width: 767px) {
  .google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-background {
    opacity: 0.56;
  }

  .google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-svg {
    width: 190vw;
    height: 124vh;
    min-width: 720px;
    transform: translate(-50vw, -9vh) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-sites-mode.has-cpu-pulse-background .site-cpu-pulse-background {
    display: none;
  }
}

/* Paper plane page transition */
.site-plane-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: opacity 0.12s ease, background-color 0.46s ease;
  contain: layout paint style;
  isolation: isolate;
  will-change: opacity, background-color;
}

.site-plane-transition.is-active {
  opacity: 1;
}

.site-plane-transition.is-exit {
  background-color: #ffffff;
}

html.is-plane-entry-cover::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: #ffffff;
  opacity: 1;
}

html.is-plane-entry-cover.is-plane-entry-revealed::before {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-plane-transition-plane {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(180px, min(30vw, 42vh), 440px);
  height: auto;
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(-120vw, -120vh, 0);
}

.site-plane-transition-trail {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  overflow: visible;
  will-change: opacity;
}

.site-plane-transition-trail-path {
  fill: none;
  stroke: rgba(36, 94, 108, 0.62);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 10;
  vector-effect: non-scaling-stroke;
  will-change: opacity;
}

html.is-plane-transitioning {
  cursor: progress;
}

@media (prefers-reduced-motion: reduce) {
  .site-plane-transition,
  .site-plane-transition-plane,
  .site-plane-transition-trail,
  .site-plane-transition-trail-path {
    transition: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  .site-plane-transition-plane {
    width: clamp(128px, 36vw, 210px);
  }

  .site-plane-transition-trail-path {
    stroke-width: 3;
    stroke-dasharray: 8 8;
  }
}
