[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 980;
  display: block;
}

:root {
  --bg: #f8f9f3;
  --bg-strong: #eef3e2;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #0f2d2a;
  --text: #0f2b36;
  --muted: #4c6871;
  --muted-strong: #35505a;
  --line: rgba(15, 43, 54, 0.12);
  --line-strong: rgba(15, 43, 54, 0.2);
  --green: #86c13d;
  --green-deep: #4f7e13;
  --teal: #1d7f7a;
  --sand: #dfe5cf;
  --accent: #d5f06e;
  --ring: #2f9f95;
  --shadow-soft: 0 16px 45px rgba(17, 43, 47, 0.08);
  --shadow-strong: 0 26px 70px rgba(17, 43, 47, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition-fast: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  text-decoration: none;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-home-lift {
  position: relative;
  z-index: 3;
  margin-top: -180px;
  padding-top: 0;
}

.section-divider .container {
  position: static;
}

.section-divider .container::before {
  content: none;
}

.section-shell,
.surface-card,
.hero-card,
.form-shell,
.legal-wrap,
.accordion-item,
.pricing-card,
.cta-band,
.story-card,
.metric-card,
.benefit-card,
.flow-step,
.trust-card,
.engine-card,
.timeline-card,
.video-shell,
.split-panel,
.visual-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.section-shell,
.surface-card,
.hero-card,
.form-shell,
.legal-wrap,
.pricing-card,
.cta-band,
.video-shell,
.split-panel {
  border-radius: var(--radius-lg);
}

.story-card,
.metric-card,
.benefit-card,
.flow-step,
.trust-card,
.engine-card,
.timeline-card,
.visual-card,
.accordion-item {
  border-radius: var(--radius-md);
}

.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.h-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  max-width: 15ch;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  max-width: 72ch;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted-strong);
}

li + li {
  margin-top: 0.5rem;
}

.text-small {
  font-size: 0.95rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted-strong);
}

.gradient-word {
  background: linear-gradient(110deg, #214c58 0%, #2b8d7d 48%, #8cc63f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(134, 193, 61, 0.3);
  background: rgba(134, 193, 61, 0.14);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-footer {
  background: rgba(107, 191, 196, 0.12);
  color: #e4f6f8;
  border-color: rgba(107, 191, 196, 0.22);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}

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

.btn-primary {
  background: linear-gradient(135deg, #86c13d 0%, #6fae2f 100%);
  color: #0b2f3b;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #94cf49 0%, #7bbb37 100%);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  background: #003055;
}

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

.logo-link img {
  width: 172px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #003055;
}

.mobile-drawer.open {
  display: block;
}

.mobile-links {
  display: grid;
  gap: 10px;
  padding: 16px 0 24px;
}

.mobile-links .nav-link {
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-demo-cta {
  width: 100%;
}

.site-header .btn-primary {
  background: linear-gradient(135deg, #86c13d 0%, #6fae2f 100%);
  color: #0b2f3b;
}

.site-header .btn-primary:hover {
  background: linear-gradient(135deg, #94cf49 0%, #7bbb37 100%);
}

.page-hero {
  position: relative;
  padding-top: 36px;
}

.page-hero-home {
  padding-top: 0;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.hero-card,
.form-shell,
.split-panel,
.video-shell,
.cta-band,
.legal-wrap {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.hero-card::before,
.form-shell::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--teal) 52%, #badc62 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, calc(100vh - 92px), 980px);
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, #d8effd 0%, #ecf7ff 45%, #f8faf6 100%);
  box-shadow: 0 36px 90px rgba(43, 104, 119, 0.12);
}

.hero-showcase-shell {
  position: relative;
  min-height: inherit;
}

.page-hero-home .hero-showcase {
  width: 100%;
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-scroll-stage {
  position: relative;
  min-height: 100vh;
}

.benefits-scroll-stage {
  position: relative;
  min-height: 100vh;
}

.pricing-scroll-stage {
  position: relative;
  min-height: 100vh;
}

.faq-scroll-stage {
  position: relative;
  min-height: 100vh;
}

.product-scroll-backdrop {
  position: fixed;
  inset: 84px 0 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #d8effd 0%, #ecf7ff 45%, #f8faf6 100%);
}

.product-scroll-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.94) 0%, rgba(246, 251, 255, 0.78) 24%, rgba(246, 251, 255, 0.56) 48%, rgba(246, 251, 255, 0.34) 68%, rgba(248, 249, 243, 0.3) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 1;
  pointer-events: none;
}

.product-scroll-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) brightness(1.05) contrast(0.9);
}

.benefits-scroll-backdrop {
  position: fixed;
  inset: 84px 0 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #dfeef8 0%, #eef6fb 46%, #f8faf6 100%);
}

.benefits-scroll-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.95) 0%, rgba(247, 251, 253, 0.8) 24%, rgba(247, 251, 253, 0.56) 48%, rgba(247, 251, 253, 0.34) 68%, rgba(248, 249, 243, 0.3) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 1;
  pointer-events: none;
}

.benefits-scroll-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) brightness(1.02) contrast(0.92);
}

.pricing-scroll-backdrop {
  position: fixed;
  inset: 84px 0 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #deecf5 0%, #eef5fa 46%, #f8faf6 100%);
}

.pricing-scroll-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.96) 0%, rgba(247, 251, 253, 0.82) 24%, rgba(247, 251, 253, 0.6) 46%, rgba(247, 251, 253, 0.38) 66%, rgba(248, 249, 243, 0.32) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 1;
  pointer-events: none;
}

.pricing-scroll-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.74) brightness(1.03) contrast(0.9);
}

.faq-scroll-backdrop {
  position: fixed;
  inset: 84px 0 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #e4edf4 0%, #eef5f9 46%, #f8faf6 100%);
}

.faq-scroll-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.96) 0%, rgba(247, 251, 253, 0.82) 24%, rgba(247, 251, 253, 0.6) 48%, rgba(247, 251, 253, 0.38) 66%, rgba(248, 249, 243, 0.32) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 1;
  pointer-events: none;
}

.faq-scroll-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.74) brightness(1.04) contrast(0.9);
}

.product-scroll-content {
  position: relative;
  z-index: 1;
}

.benefits-scroll-content {
  position: relative;
  z-index: 1;
}

.pricing-scroll-content {
  position: relative;
  z-index: 1;
}

.faq-scroll-content {
  position: relative;
  z-index: 1;
}

.home-scroll-stage {
  position: relative;
  min-height: 100vh;
}

.home-scroll-backdrop {
  position: fixed;
  inset: 84px 0 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #d8effd 0%, #ecf7ff 45%, #f8faf6 100%);
}

.home-scroll-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.95) 0%, rgba(246, 251, 255, 0.82) 24%, rgba(246, 251, 255, 0.56) 48%, rgba(246, 251, 255, 0.34) 68%, rgba(248, 249, 243, 0.3) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 1;
  pointer-events: none;
}

.home-scroll-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) brightness(1.05) contrast(0.9);
}

.home-scroll-content {
  position: relative;
  z-index: 1;
}

.page-hero-home {
  padding: 0;
}

.page-hero-home .hero-showcase-shell {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: flex-start;
}

.page-hero-product {
  padding: 0;
}

.page-hero-benefits {
  padding: 0;
}

.page-hero-pricing {
  padding-top: 0;
}

.page-hero-faq {
  padding: 0;
}

.page-hero-product .hero-grid {
  display: block;
}

.page-hero-benefits .hero-grid {
  display: block;
}

.page-hero-faq .hero-grid {
  display: block;
}

.pricing-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(92px, 10vw, 152px);
  text-align: center;
}

.faq-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(100px, 10vw, 164px);
  text-align: center;
  align-items: center;
}

.faq-hero-copy .button-row {
  justify-content: center;
}

.product-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(120px, 12vw, 200px);
  text-align: center;
  align-items: center;
}

.product-hero-copy .button-row,
.product-hero-copy .hero-points {
  justify-content: center;
}

.benefits-hero-copy {
  max-width: 880px;
  margin: 0 auto;
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(110px, 11vw, 180px);
  text-align: center;
  align-items: center;
}

.benefits-hero-copy .button-row {
  justify-content: center;
}

.hero-showcase::before {
  content: none;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(248, 249, 243, 0) 0%, rgba(248, 249, 243, 0.92) 72%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-showcase-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(32px, 5vw, 72px);
}

.home-scroll-content > .section:not(.page-hero-home),
.home-scroll-content > .section-tight {
  background: transparent;
}

.product-scroll-content > .section:not(.page-hero-product),
.product-scroll-content > .section-tight {
  background: transparent;
}

.benefits-scroll-content > .section:not(.page-hero-benefits),
.benefits-scroll-content > .section-tight {
  background: transparent;
}

.pricing-scroll-content > .section:not(.page-hero-pricing),
.pricing-scroll-content > .section-tight {
  background: transparent;
}

.faq-scroll-content > .section:not(.page-hero-faq),
.faq-scroll-content > .section-tight {
  background: transparent;
}

.section-product-lift {
  margin-top: -40px;
}

.section-benefits-lift {
  margin-top: -44px;
}

.section-pricing-lift {
  margin-top: -40px;
}

.section-faq-lift {
  margin-top: -40px;
}

.hero-showcase-copy h1 {
  max-width: 13.5ch;
}

.hero-showcase-copy p {
  max-width: 32rem;
}

.hero-showcase-copy .button-row {
  justify-content: center;
}

.hero-showcase-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-showcase-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(69, 117, 128, 0.08);
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-showcase-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.95) 0%, rgba(246, 251, 255, 0.8) 24%, rgba(246, 251, 255, 0.52) 48%, rgba(246, 251, 255, 0.28) 66%, rgba(248, 249, 243, 0.86) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 66%);
  z-index: 2;
  pointer-events: none;
}

.hero-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) brightness(1.05) contrast(0.9) drop-shadow(0 40px 90px rgba(24, 66, 76, 0.12));
}

.hero-grid-single,
.product-hero-single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-points,
.proof-list,
.list-check {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.proof-list,
.list-check {
  list-style: none;
  padding-left: 0;
}

.hero-points span,
.proof-list li,
.list-check li {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-points span::before,
.proof-list li::before,
.list-check li::before {
  content: "";
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 0 0 6px rgba(134, 193, 61, 0.12);
}

.hero-gallery {
  position: relative;
  display: grid;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(228, 237, 220, 0.94)),
    url("../Branding/Image%20Gallery/Grey%20Circles.png") right -70px top -30px / 280px auto no-repeat;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(240, 244, 234, 0), rgba(240, 244, 234, 0.94));
  pointer-events: none;
}

.hero-gallery-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-gallery-track {
  display: grid;
  gap: 18px;
  animation: heroGalleryScroll 24s linear infinite;
  will-change: transform;
}

.hero-gallery:hover .hero-gallery-track {
  animation-play-state: paused;
}

.hero-gallery-item {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(134, 193, 61, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 228, 0.94));
  box-shadow: 0 20px 36px rgba(95, 132, 58, 0.09);
}

.hero-gallery-image {
  min-height: 220px;
}

.hero-gallery-copy {
  display: grid;
  gap: 8px;
  padding: 0 4px 6px;
}

.hero-gallery-copy strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--text);
}

.hero-gallery-copy p {
  margin-bottom: 0;
}

.image-card {
  position: relative;
  min-height: 200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 43, 54, 0.12);
  box-shadow: 0 22px 42px rgba(17, 43, 47, 0.14);
  background-color: #dde7db;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 28, 0.02), rgba(9, 23, 28, 0.16));
}

.image-card-workspaces {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 43, 54, 0.08)),
    url("../Branding/Image%20Gallery/Workspaces.png");
}

.image-card-assessment {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 43, 54, 0.08)),
    url("../Branding/Image%20Gallery/Assessment.png");
}

.image-card-reporting {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 43, 54, 0.08)),
    url("../Branding/Image%20Gallery/Reporting.png");
}

.image-card-training {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 43, 54, 0.08)),
    url("../Branding/Image%20Gallery/Training.png");
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.story-grid,
.metric-grid,
.benefit-grid,
.flow-grid,
.trust-grid,
.engine-grid,
.comparison-cards,
.timeline-grid,
.logo-strip {
  display: grid;
  gap: 18px;
}

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

.story-card,
.metric-card,
.benefit-card,
.trust-card,
.timeline-card {
  padding: 22px;
}

.metric-card,
.benefit-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 231, 0.96) 100%);
  border-color: rgba(134, 193, 61, 0.16);
  box-shadow: 0 18px 38px rgba(120, 160, 78, 0.09);
}

.benefits-outcomes-grid .benefit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.story-card strong,
.metric-value {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-value {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric-copy {
  margin: 0;
}

.split-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-duo-grid {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.product-duo-panel {
  flex: 1 1 0;
  min-width: 0;
}

.product-duo-panel-primary {
  order: 2;
}

.product-duo-panel-secondary {
  order: 1;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-card {
  min-height: 190px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(231, 238, 220, 0.92)),
    url("../Branding/Image%20Gallery/Green%20Circles.png") right -40px bottom -40px / 190px auto no-repeat;
}

.visual-card p:last-child {
  margin-bottom: 0;
}

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

.benefit-card {
  min-height: 100%;
  padding: 24px;
}

.benefit-card h3 {
  max-width: 16ch;
}

.flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-step {
  position: relative;
  padding: 24px 20px 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(134, 193, 61, 0.18);
  color: var(--green-deep);
  font-weight: 800;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.integration-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(107, 191, 196, 0.22) 0%, rgba(107, 191, 196, 0) 24%),
    radial-gradient(circle at 16% 84%, rgba(140, 198, 63, 0.14) 0%, rgba(140, 198, 63, 0) 28%),
    linear-gradient(135deg, #003055 0%, #0a4566 56%, #0d566d 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .surface-mini {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-actions-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.cta-actions-panel .button-row {
  margin-top: 4px;
}

.cta-band .form-shell {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(248, 251, 253, 0.97);
  box-shadow: 0 28px 56px rgba(2, 24, 42, 0.2);
}

.cta-band .btn-primary {
  background: linear-gradient(135deg, #86c13d 0%, #6fae2f 100%);
  color: #0b2f3b;
}

.cta-band .btn-primary:hover {
  background: linear-gradient(135deg, #94cf49 0%, #7bbb37 100%);
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cta-band .form-note {
  color: #577080;
}

.cta-band .check-row span,
.cta-band .form-field label,
.cta-band .form-status {
  color: var(--muted-strong);
}

.surface-mini p:last-child {
  margin-bottom: 0;
}

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

.engine-card {
  padding: 24px;
}

.engine-card ul {
  margin-top: 1rem;
}

.loop-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.loop-copy {
  max-width: 44rem;
}

.loop-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loop-wheel-image {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.loop-list {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.video-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.video-poster {
  position: relative;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 43, 54, 0.08), rgba(15, 43, 54, 0.42)),
    url("../Branding/Image%20Gallery/Reporting.png") center / cover no-repeat;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 800;
}

.video-play::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-dark);
  color: #fff;
  font-size: 0.8rem;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 22px;
}

.price-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.price-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  padding: 8px 14px;
  cursor: pointer;
}

.price-toggle button[aria-pressed="true"] {
  background: var(--surface-dark);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

@media (min-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.pricing-card-themed {
  position: relative;
  overflow: hidden;
}

.pricing-card-themed::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.pricing-card.featured {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(29, 127, 122, 0.16);
}

.pricing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pricing-plan-title {
  margin-bottom: 6px;
}

.pricing-plan-type,
.pricing-users,
.pricing-description,
.price-per-user {
  margin: 0;
  color: var(--muted);
}

.pricing-plan-type {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.pricing-tier-badge {
  margin-top: 4px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.price-unit {
  color: var(--muted);
  font-weight: 800;
}

.pricing-feature-list {
  display: grid;
  gap: 10px;
}

.pricing-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-feature-text {
  color: var(--muted-strong);
  font-weight: 700;
}

.pricing-feature-check,
.comparison-status-included {
  color: var(--green-deep);
}

.comparison-status-excluded {
  color: #c84b3a;
}

.pricing-error,
.pricing-note {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
}

.pricing-error {
  border: 1px solid rgba(200, 75, 58, 0.24);
  background: rgba(255, 240, 238, 0.9);
  color: #82291d;
}

.pricing-note {
  border: 1px solid rgba(29, 127, 122, 0.2);
  background: rgba(29, 127, 122, 0.08);
  color: #195f5b;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 43, 54, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text);
  background: linear-gradient(90deg, rgba(134, 193, 61, 0.14), rgba(29, 127, 122, 0.12));
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: clip;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.accordion-header::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 1.35rem;
  line-height: 1;
}

.accordion-header[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
}

.accordion-panel.open {
  display: block;
}

.form-shell {
  padding: 28px;
}

.demo-form-shell {
  max-width: 960px;
  margin: 0 auto;
}

.compact-intro {
  margin-bottom: 22px;
}

.compact-intro h1 {
  max-width: 10ch;
}

.page-intro .section-head {
  margin-bottom: 0;
}

.page-intro h1 {
  max-width: 15ch;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-section-title {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 43, 54, 0.08);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--teal) 48%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  color: var(--text);
}

.required-mark {
  margin-left: 0.2rem;
  color: #c84b3a;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  padding: 0;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--muted-strong);
}

.choice-row input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.conditional-field[hidden] {
  display: none;
}

.field-hint,
.form-status,
.form-note {
  font-size: 0.92rem;
}

.field-hint {
  color: var(--muted);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
}

.form-status.error {
  color: #9c3021;
}

.form-status.success {
  color: #2d6611;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-row input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 84px;
  padding: 54px 0 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(107, 191, 196, 0.1) 0%, rgba(107, 191, 196, 0) 20%),
    linear-gradient(180deg, #002845 0%, #003055 100%);
  color: #dcebf2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.8fr;
  gap: 20px;
}

.footer-col h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
}

.footer-col a,
.footer-col button {
  border: 0;
  background: transparent;
  color: rgba(220, 235, 242, 0.88);
  font: inherit;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
}

.footer-col a:hover,
.footer-col button:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-logo img {
  width: 180px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(220, 235, 242, 0.78);
  font-size: 0.94rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-strong);
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1240;
  display: none;
  place-items: center;
  background: rgba(15, 43, 54, 0.42);
}

.cookie-modal-backdrop.show {
  display: grid;
}

.cookie-modal {
  width: min(640px, calc(100% - 2rem));
  max-height: 88vh;
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
}

.cookie-category {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 245, 239, 0.8);
}

.cookie-category + .cookie-category {
  margin-top: 10px;
}

.cookie-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.toggle {
  position: relative;
  width: 48px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #dbe3d1;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition-fast);
}

.toggle[aria-pressed="true"] {
  background: #a9d86a;
}

.toggle[aria-pressed="true"]::after {
  transform: translateX(19px);
}

.legal-wrap {
  background: rgba(255, 255, 255, 0.92);
}

.legal-wrap h2 {
  margin-top: 34px;
}

.not-found {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found .container {
  max-width: 760px;
}

.rise-in {
  animation: riseIn 700ms ease both;
}

.stagger-1 {
  animation-delay: 100ms;
}

.stagger-2 {
  animation-delay: 180ms;
}

.stagger-3 {
  animation-delay: 260ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGalleryScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 9px));
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split-grid,
  .cta-band,
  .video-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .benefit-grid,
  .trust-grid,
  .timeline-grid,
  .engine-grid,
  .metric-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-showcase {
    min-height: clamp(620px, calc(100vh - 88px), 860px);
  }

  .home-scroll-backdrop {
    inset: 84px 0 0;
  }

  .page-hero-home .hero-showcase-shell {
    min-height: calc(100vh - 84px);
  }

  .section-home-lift {
    margin-top: -140px;
  }

  .product-scroll-backdrop {
    inset: 84px 0 0;
  }

  .benefits-scroll-backdrop {
    inset: 84px 0 0;
  }

  .pricing-scroll-backdrop {
    inset: 84px 0 0;
  }

  .faq-scroll-backdrop {
    inset: 84px 0 0;
  }

  .section-product-lift {
    margin-top: -24px;
  }

  .section-benefits-lift {
    margin-top: -24px;
  }

  .section-pricing-lift {
    margin-top: -24px;
  }

  .section-faq-lift {
    margin-top: -24px;
  }

  .product-duo-grid {
    display: flex;
  }

  .loop-card {
    grid-template-columns: 1fr;
  }

  .loop-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .story-grid,
  .benefit-grid,
  .trust-grid,
  .timeline-grid,
  .engine-grid,
  .metric-grid,
  .flow-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    padding: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero-showcase {
    min-height: max(620px, calc(100vh - 78px));
    padding: 22px 18px;
  }

  .home-scroll-backdrop {
    inset: 78px 0 0;
  }

  .page-hero-home .hero-showcase-shell {
    min-height: calc(100vh - 78px);
  }

  .section-home-lift {
    margin-top: -96px;
  }

  .product-scroll-backdrop {
    inset: 78px 0 0;
  }

  .benefits-scroll-backdrop {
    inset: 78px 0 0;
  }

  .pricing-scroll-backdrop {
    inset: 78px 0 0;
  }

  .faq-scroll-backdrop {
    inset: 78px 0 0;
  }

  .product-hero-copy {
    margin: 0;
    max-width: none;
    padding-top: 16px;
    padding-bottom: 72px;
    text-align: left;
    align-items: flex-start;
  }

  .product-hero-copy .button-row,
  .product-hero-copy .hero-points {
    justify-content: flex-start;
  }

  .section-product-lift {
    margin-top: 0;
  }

  .benefits-hero-copy {
    margin: 0;
    max-width: none;
    padding-top: 16px;
    padding-bottom: 72px;
    text-align: left;
    align-items: flex-start;
  }

  .benefits-hero-copy .button-row {
    justify-content: flex-start;
  }

  .section-benefits-lift {
    margin-top: 0;
  }

  .pricing-hero-copy {
    margin: 0;
    max-width: none;
    padding-top: 16px;
    padding-bottom: 72px;
    text-align: left;
  }

  .section-pricing-lift {
    margin-top: 0;
  }

  .faq-hero-copy {
    margin: 0;
    max-width: none;
    padding-top: 16px;
    padding-bottom: 72px;
    text-align: left;
    align-items: flex-start;
  }

  .faq-hero-copy .button-row {
    justify-content: flex-start;
  }

  .section-faq-lift {
    margin-top: 0;
  }

  .hero-showcase-copy {
    justify-items: start;
    text-align: left;
    max-width: none;
    margin: 0;
    padding-top: 8px;
  }

  .hero-showcase-copy .button-row,
  .hero-showcase-points {
    justify-content: flex-start;
  }

  .hero-showcase-points {
    gap: 8px;
  }

  .hero-showcase-points span {
    justify-content: flex-start;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .hero-showcase-media {
    inset: 0;
  }

  .showcase-image-stage {
    min-height: 320px;
  }

  .product-duo-grid {
    display: flex;
    flex-direction: column;
  }

  .product-duo-panel-primary,
  .product-duo-panel-secondary {
    order: initial;
  }

  .loop-wheel-image {
    display: none;
  }

  .loop-list {
    position: static;
    width: auto;
    height: auto;
    margin: 22px 0 0;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    display: grid;
    gap: 14px;
    list-style: none;
  }

  .loop-list li {
    position: relative;
    min-height: 42px;
    padding-left: 58px;
    display: flex;
    align-items: center;
    color: var(--muted-strong);
    font-weight: 800;
  }

  .loop-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(134, 193, 61, 0.42);
    background: #fff;
    box-shadow: 0 0 0 8px rgba(245, 247, 239, 0.96);
    transform: translateY(-50%);
  }

  .logo-link img {
    width: 154px;
  }

  table {
    min-width: 620px;
  }

  .hero-gallery-track {
    animation-duration: 30s;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-gallery-track {
    animation: none !important;
  }
}
