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

:root {
  /* Plug IO brand: yellow + blue bolt (logo colors — do not change) */
  --brand-yellow: #F5B400;
  --brand-yellow-light: #FFF8E6;
  --brand-blue: #1A7FE8;
  --brand-blue-dark: #1259A8;
  /* Site accents harmonized with logo */
  --green: var(--brand-blue);
  --green-dark: var(--brand-blue-dark);
  --green-light: var(--brand-yellow-light);
  --ink: #0F1A14;
  --ink-soft: #3D4F45;
  --muted: #6B7C72;
  --surface: #FFFFFF;
  --surface-alt: #F4F8F5;
  --border: #D8E5DC;
  --shadow: 0 18px 50px rgba(15, 26, 20, 0.08);
  --radius: 16px;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo-img {
  width: auto;
  display: block;
}

.logo-img--header {
  height: 52px;
  min-height: 46px;
}

.logo-img--footer {
  height: 40px;
  opacity: 0.92;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
}

/* Ensure the Contact Us button in the top nav always uses sharp white text
   (overrides .site-nav a { color: var(--ink-soft) } which can cause gray washout)
   and properly centers text even when it wraps on narrow viewports. */
.site-nav .btn-primary {
  color: #fff;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(27, 143, 78, 0.12), transparent 34%),
    linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-yellow-light);
  color: var(--brand-blue-dark);
  border: 1px solid rgba(245, 180, 0, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 54ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

/* Make the "Get a consultation" and "View live sites" buttons the same width and height (mirrors cta-actions) */
.hero-actions > a,
.hero-actions .live-sites-root {
  flex: 1;
  min-width: 0;
}

.hero-actions .btn,
.hero-actions .live-sites-trigger {
  height: 44px;
  padding: 0 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}

.live-sites-root {
  display: block;
  width: 100%;
}

.live-sites-menu {
  position: relative;
  display: block;
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.stat {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  min-width: 0; /* allow grid items to shrink equally */
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--surface-alt);
  overflow: hidden;
}

.hero-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #edf3ef 0%, #f8fbf9 100%);
}

.hero-image-frame img,
.split-image-frame img,
.carousel-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.live-sites-menu {
  position: relative;
  display: block;
  width: 100%;
}

.live-sites-trigger svg {
  transition: transform 0.15s ease;
}

.live-sites-menu.is-open .live-sites-trigger svg {
  transform: rotate(180deg);
}

.live-sites-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: min(360px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
  gap: 10px;
}

.live-sites-menu.is-open .live-sites-panel {
  display: grid;
}

.live-site-card {
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-alt);
}

.live-site-card-head {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
}

.live-site-card-head strong {
  color: var(--ink);
}

.live-site-card-head span,
.live-site-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.live-site-card p {
  margin-bottom: 10px;
}

.live-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.live-site-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}

.live-site-link:hover {
  background: var(--green-light);
  text-decoration: none;
}

.live-site-card.coming-soon {
  opacity: 0.75;
  background: #f8f8f8;
}

.live-site-link.coming-soon {
  background: #eee;
  border-color: #ddd;
  color: #888;
  cursor: default;
  font-weight: 600;
}

.live-site-link.coming-soon:hover {
  background: #eee;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header .label {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.04);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.card h3 {
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.process-step h3 {
  color: var(--ink);
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-image-frame {
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--surface-alt);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.carousel-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  max-height: 520px;
  padding: 12px;
  background: linear-gradient(180deg, #edf3ef 0%, #f8fbf9 100%);
}

.carousel-slide img {
  max-height: 496px;
}

.carousel-slide figcaption {
  padding: 16px 20px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.carousel-btn svg {
  display: block;
  pointer-events: none;
}

.carousel-btn:hover {
  background: var(--green-light);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c9d8ce;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.carousel-status {
  min-width: 88px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.quote {
  margin-top: 48px;
  padding: 32px;
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 0 18px 18px 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--muted);
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-actions .btn {
  height: 44px;
  padding: 0 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--green-dark);
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-list a {
  font-weight: 700;
  font-size: 1.05rem;
}

.how-to-content {
  max-width: 820px;
}

.how-to-intro h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.how-to-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.how-to-logos img {
  max-width: min(100%, 360px);
}

.how-to-accordions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.how-to-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.how-to-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.how-to-panel summary::-webkit-details-marker {
  display: none;
}

.how-to-panel summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.how-to-panel[open] summary::after {
  content: "\2212";
}

.how-to-panel-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}

.how-to-panel-body > :first-child {
  margin-top: 20px;
}

.how-to-steps {
  padding-left: 1.25rem;
  display: grid;
  gap: 10px;
}

.how-to-steps li::marker {
  color: var(--green);
  font-weight: 700;
}

.how-to-figure {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.how-to-led-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.how-to-led-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.led {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.led-green {
  background: var(--brand-blue);
}

.led-pulse {
  background: var(--brand-blue);
  box-shadow: 0 0 0 0 rgba(26, 127, 232, 0.6);
  animation: led-pulse 1.5s infinite;
}

.led-blue {
  background: #2B6CB0;
}

.led-red {
  background: #C53030;
}

@keyframes led-pulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 143, 78, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(27, 143, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 143, 78, 0); }
}

.how-to-apps {
  margin-top: 40px;
  text-align: center;
}

.how-to-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.how-to-app-badges img {
  height: 48px;
  width: auto;
}

.how-to-videos {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.how-to-video-card h3 {
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.how-to-video-card video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  margin-top: 12px;
}

.how-to-cta {
  margin-top: 48px;
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.how-to-cta p {
  max-width: 52ch;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.audience-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

.audience-card .checklist {
  margin-top: 6px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
}

.resource-icon {
  font-size: 2rem;
  line-height: 1;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.resource-cta {
  margin-top: 40px;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.resource-cta p {
  max-width: 62ch;
}

.resource-for {
  font-size: 0.92rem;
  color: var(--muted);
}

.resource-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface-alt);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 16px 24px;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

.footer-logo-link:hover {
  text-decoration: none;
  opacity: 0.88;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.4;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
}

.footer-copy {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  text-align: right;
  font-size: 14px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards-grid,
  .process-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .live-sites-panel {
    left: auto;
    right: 0;
    z-index: 1000;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Tighten the live sites popup so it feels connected to the button */
  .live-sites-panel {
    padding: 8px;
    gap: 6px;
    top: calc(100% + 4px); /* fallback for non-mobile positioning */
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.live-sites-open {
    overflow: hidden;
  }

  /* Mobile nav: positioned below header, high z-index to escape stacking contexts */
  .site-header {
    z-index: 100;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 76px; /* matches .header-inner min-height */
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* momentum scrolling on iOS */
    z-index: 1000;
  }

  .site-nav.is-open {
    display: flex;
    box-shadow: 0 10px 30px rgba(15, 26, 20, 0.12);
  }

  .menu-toggle {
    z-index: 1010;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav a,
  .site-nav .btn {
    width: 100%;
    justify-content: center;
    text-align: center; /* ensures wrapped text (e.g. "Contact us") stays centered */
  }

  /* Stronger, sharper "Contact Us" CTA in the mobile menu */
  .site-nav .btn-primary {
    background: #1A7FE8;   /* crisp, saturated brand blue */
    color: #fff;
    font-weight: 700;
    padding: 14px 20px;
    margin-top: 12px;      /* visual separation from the text links above it */
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(26, 127, 232, 0.25);
  }

  .site-nav .btn-primary:hover {
    background: #1259A8;   /* darker for clear feedback */
    color: #fff;
    transform: translateY(-1px);
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cards-grid,
  .resource-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 12px 14px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: 0;
  }

  /* Ensure the live-sites trigger button (secondary) matches the primary consultation button height exactly in the hero */
  .hero-actions .live-sites-trigger {
    height: 44px;
    padding: 0 22px;
    line-height: 1;
    box-sizing: border-box;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions > a,
  .hero-actions .live-sites-root {
    width: 100%;
    flex: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .footer-brand,
  .footer-nav,
  .footer-copy {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .logo-img--header {
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-track {
    transition: none !important;
  }

  .led-pulse {
    animation: none !important;
  }
}