:root {
  --green: #2a5240;
  --green-deep: #234535;
  --green-soft: #eef9f3;
  --cream: #faf7ee;
  --card: #fbf7ef;
  --orange: #e8662d;
  --orange-soft: #e8662d;
  --text: #345d4c;
  --muted: #345d4c;
  --white: #ffffff;
  --max: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--green);
  background: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(42, 82, 64, 0);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: var(--green);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 96px));
  min-height: 95px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: clamp(160px, 11vw, 190px);
  height: auto;
}

.footer-logo {
  display: block;
  width: min(230px, 58vw);
  height: auto;
}

.brand-text,
.footer-brand-text {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--white);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.brand-text::after,
.footer-brand-text::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-weight: 700;
  font-size: 16px;
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 36px 0;
}

.nav-item {
  position: relative;
}

.nav-item span {
  font-size: 15px;
  line-height: 1;
}

.dropdown {
  position: absolute;
  top: calc(100% - 18px);
  left: -24px;
  min-width: 178px;
  padding: 16px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--green);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.dropdown.wide,
.dropdown.mega {
  min-width: 230px;
}

.dropdown a {
  padding: 8px 10px;
  color: var(--green);
  font-size: 15px;
  border-radius: 3px;
}

.dropdown a:hover {
  background: var(--green-soft);
}

.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.outline-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 7px;
  font-weight: 900;
  font-size: 16px;
}

.outline-button {
  min-width: 154px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.solid-button {
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  transition: background 180ms ease, border-color 180ms ease;
}

.solid-button:hover {
  background: #cf5725;
  border-color: #cf5725;
}

.solid-button.small {
  min-width: 180px;
  min-height: 55px;
}

.solid-button.pale {
  background: var(--orange);
  border-color: var(--orange);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 82px;
}

h1,
h2,
h3,
h6 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.13;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: 65px;
  font-weight: 800;
}

h1 em,
h2 em {
  position: relative;
  z-index: 1;
  font-style: italic;
}

h1 em::after,
h2 em::after,
.testimonial-section h6::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 2px;
  background: var(--orange);
}

.hero p {
  max-width: 700px;
  margin: 24px 0 52px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
}

.intro-section {
  padding: 130px 0;
}

.light-green {
  background: var(--green-soft);
}

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

.image-panel {
  min-height: 460px;
  background-color: #dff2ea;
  background-image: var(--module-image, url("./assets/image2-regulatory-readiness.png"));
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 460px;
  min-height: 460px;
  object-fit: cover;
}

.fade-image {
  position: relative;
}

.copy-panel h2,
.section-heading h2 {
  color: var(--green);
  font-size: 56px;
  font-weight: 800;
}

.copy-panel p {
  margin: 30px 0 0;
  color: var(--text);
}

.divider {
  height: 1px;
  margin: 74px 0 53px;
  background: rgba(42, 82, 64, 0.38);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--orange);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 17px;
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 82px;
}

.service-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.service-card {
  min-height: 233px;
  padding: 30px 20px 25px;
  background: var(--card);
  border-radius: 6px;
}

.service-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-card h3,
.showcase-card h3,
.news-card h3,
.client-card h3,
.footer-grid h3 {
  color: var(--green);
  font-size: 27px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 24px;
}

.service-card p {
  margin: 15px 0 0;
  color: var(--text);
  font-size: 18px;
}

.video-feature {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17392d;
  color: var(--white);
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(35, 76, 55, 0.96) 0%, rgba(35, 76, 55, 0.82) 38%, rgba(35, 76, 55, 0.12) 56%), linear-gradient(rgba(35, 35, 35, 0.25), rgba(35, 35, 35, 0.25));
}

.video-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 96px));
  margin-left: calc((100vw - min(var(--max), calc(100vw - 96px))) / 2);
}

.video-copy h2 {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
}

.video-copy p {
  margin: 36px 0 0;
  color: var(--white);
}

.support-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.support-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 760ms ease, transform 1200ms ease;
}

.support-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.support-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-section {
  padding-bottom: 80px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.34fr;
  grid-template-rows: auto auto;
  gap: 42px 70px;
  align-items: start;
}

.showcase-card {
  min-width: 0;
  background: transparent;
  opacity: 1;
  clip-path: none;
}

.showcase-card img {
  width: 100%;
  display: block;
  background: #e8f8f1;
  object-fit: cover;
  border-radius: 5px;
}

.small-card img {
  height: 300px;
}

.tall-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.tall-card img {
  height: 760px;
}

.showcase-card h3 {
  margin-top: 24px;
  font-size: 32px;
}

.showcase-card a,
.news-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
}

.faq-section {
  padding-top: 90px;
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-list details {
  background: #f6fbfa;
  border-radius: 4px;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 124px;
  padding: 40px 94px 38px 20px;
  display: flex;
  align-items: center;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%) rotate(0deg);
  border-radius: 6px;
  background: #a5b8b0;
}

.faq-list summary::before {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: center;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%);
}

.faq-list details[open] summary::before {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: -18px 90px 38px 20px;
  color: var(--text);
}

.testimonial-section {
  padding: 130px 0 106px;
  text-align: center;
  background: var(--cream);
}

.testimonial-section h6 {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 21px;
  font-weight: 800;
}

.testimonial-quote {
  max-width: 1060px;
  margin: 70px auto 74px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.3;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.client-card {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border: 1px solid rgba(42, 82, 64, 0.42);
  border-radius: 6px;
  text-align: left;
  background: transparent;
}

.client-card.active {
  border-color: transparent;
  background: var(--white);
}

.client-card img {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 5px;
}

.client-card h3 {
  font-size: 25px;
}

.client-card p {
  margin: 0;
  color: var(--orange);
  font-size: 17px;
}

.quote-mark {
  position: absolute;
  top: -24px;
  left: -8px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 5px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.news-grid {
  gap: 32px;
}

.news-card img {
  width: 100%;
  height: 282px;
  object-fit: cover;
  border-radius: 5px;
}

.news-card h3 {
  margin-top: 24px;
  font-size: 28px;
}

.news-card p {
  margin: 13px 0 0;
  color: var(--text);
}

.site-footer {
  padding: 82px 0 42px;
  color: var(--white);
  background: var(--green);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top img:not(.footer-logo) {
  width: 151px;
}

.footer-top .footer-logo {
  width: min(230px, 58vw);
}

.socials {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 900;
}

.footer-divider {
  height: 2px;
  margin: 35px 0 66px;
  background: var(--orange);
  opacity: 0.72;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  gap: 48px;
}

.footer-grid h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 27px;
}

.footer-grid a {
  display: block;
  margin: 14px 0;
  color: var(--white);
}

.subscribe-form input {
  width: 100%;
  height: 56px;
  margin-bottom: 16px;
  padding: 0 24px;
  color: var(--green);
  background: var(--white);
  border: 0;
  border-radius: 6px;
}

.subscribe-form .solid-button {
  width: 100%;
}

.footer-bottom {
  margin-top: 78px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
}

.footer-bottom span + span {
  color: var(--orange-soft);
}

.promo-left {
  position: fixed;
  z-index: 80;
  left: 4px;
  bottom: 4px;
  width: 291px;
  padding: 17px 16px 14px;
  color: var(--white);
  background: #142273;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  line-height: 1.28;
}

.promo-left button {
  position: absolute;
  top: 8px;
  right: 10px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 29px;
  font-weight: 300;
}

.promo-left strong {
  max-width: 235px;
  display: block;
}

.promo-left span {
  color: #efb73e;
}

.promo-left div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 11px;
}

.promo-left a,
.promo-right a {
  min-height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 3px;
  font-weight: 700;
}

.promo-right {
  position: fixed;
  z-index: 80;
  right: 4px;
  bottom: 4px;
  width: 140px;
  display: grid;
  gap: 8px;
}

.promo-right a {
  min-height: 28px;
  justify-content: start;
  padding-left: 29px;
  color: #1a4fb8;
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 12px;
  position: relative;
}

.promo-right a::before {
  content: "▣";
  position: absolute;
  left: 8px;
  color: #2d5bea;
  font-size: 13px;
}

.outline-button,
.solid-button,
.service-card,
.service-card img,
.showcase-card img,
.news-card,
.news-card img,
.client-card,
.support-carousel,
.testimonial-quote {
  transition-duration: 220ms;
  transition-timing-function: ease;
}

.outline-button,
.solid-button {
  transition-property: transform, box-shadow, background, border-color;
}

.outline-button:hover,
.solid-button:hover {
  transform: translateY(-3px);
}

.solid-button:hover {
  box-shadow: 0 16px 34px rgba(232, 102, 45, 0.24);
}

.outline-button:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.service-card {
  transition-property: transform, box-shadow, background;
}

.service-card img {
  transition-property: transform;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #fffaf3;
  box-shadow: 0 22px 55px rgba(42, 82, 64, 0.12);
}

.service-card:hover img {
  transform: translateY(-4px) scale(1.06);
}

.showcase-card,
.news-card {
  overflow: hidden;
}

.showcase-card img,
.news-card img {
  transition-property: transform, filter;
}

.showcase-card:hover img,
.news-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.news-card {
  transition-property: transform;
}

.news-card:hover {
  transform: translateY(-7px);
}

.client-card {
  cursor: pointer;
  transition-property: transform, border-color, background, box-shadow;
}

.client-card.active {
  box-shadow: 0 18px 44px rgba(42, 82, 64, 0.08);
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 82, 64, 0.78);
}

.testimonial-quote {
  transition-property: opacity, transform;
}

.testimonial-quote.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.subpage-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-top: 96px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(29, 62, 46, 0.92), rgba(29, 62, 46, 0.62)), url("./assets/nexolvea-hero.png");
  background-size: cover;
  background-position: center;
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--white);
  font-size: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subpage-section {
  padding: 105px 0;
}

.subpage-section.light {
  background: var(--green-soft);
}

.subpage-section.cream {
  background: var(--cream);
}

.subpage-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.subpage-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.subpage-heading h2,
.subpage-grid h2,
.subpage-copy h2 {
  color: var(--green);
  font-size: 48px;
  font-weight: 800;
}

.subpage-heading p,
.subpage-copy p,
.page-card p,
.timeline-card p,
.notice-box p,
.check-list li {
  color: var(--text);
}

.subpage-heading p,
.subpage-copy p {
  margin: 22px 0 0;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

.page-card {
  min-height: 220px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(42, 82, 64, 0.16);
  border-radius: 6px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cream .page-card,
.subpage-section:not(.light) .page-card {
  background: var(--card);
}

.page-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(42, 82, 64, 0.1);
}

.page-card h3,
.timeline-card h3,
.notice-box h3 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 27px;
  font-weight: 800;
}

.page-card p {
  margin: 0;
}

.page-card .number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-weight: 900;
}

.subpage-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.subpage-split.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.subpage-image {
  min-height: 460px;
  background-color: #dff2ea;
  background-image: var(--module-image, url("./assets/image2-regulatory-readiness.png"));
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-radius: 6px;
}

.subpage-image img {
  width: 100%;
  height: 460px;
  min-height: 460px;
  object-fit: cover;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.timeline-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border-radius: 6px;
  border-top: 4px solid var(--orange);
}

.notice-box {
  padding: 32px;
  background: rgba(232, 102, 45, 0.1);
  border: 1px solid rgba(232, 102, 45, 0.34);
  border-radius: 6px;
}

.notice-box p {
  margin: 0;
}

.notice-box h3 + p {
  margin-top: 10px;
}

.resource-list {
  display: grid;
  gap: 18px;
}

.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(42, 82, 64, 0.16);
  border-radius: 6px;
  font-weight: 900;
}

.resource-link span {
  color: var(--orange);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--card);
  border-radius: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(42, 82, 64, 0.16);
  border-radius: 6px;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form .solid-button {
  width: max-content;
}

.disclaimer-text {
  margin-top: 28px;
  color: var(--text);
  font-size: 15px;
}

@media (max-width: 900px) {
  .subpage-hero {
    min-height: 520px;
  }

  .subpage-grid,
  .subpage-grid.two,
  .subpage-split,
  .subpage-split.reverse,
  .timeline-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .subpage-section {
    padding: 82px 0;
  }

  .subpage-heading h2,
  .subpage-grid h2,
  .subpage-copy h2 {
    font-size: 40px;
  }

  .subpage-image img {
    height: 340px;
  }
}

@media (max-width: 620px) {
  .subpage-hero h1 {
    font-size: 38px;
  }

  .subpage-hero p {
    font-size: 17px;
  }

  .subpage-heading h2,
  .subpage-grid h2,
  .subpage-copy h2 {
    font-size: 34px;
  }

  .page-card,
  .timeline-card,
  .notice-box,
  .contact-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-video {
    animation: heroZoom 12s ease-out both;
  }

  .hero-content h1 {
    animation: heroRise 720ms ease 120ms both;
  }

  .hero-content p {
    animation: heroRise 720ms ease 260ms both;
  }

  .hero-content .solid-button {
    animation: heroRise 720ms ease 390ms both;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .container,
  .nav-shell {
    width: min(var(--max), calc(100% - 48px));
  }

  .main-nav {
    gap: 22px;
  }

  .outline-button {
    min-width: 132px;
    padding: 0 22px;
  }

  h1 {
    font-size: 56px;
  }

  .copy-panel h2,
  .section-heading h2,
  .video-copy h2 {
    font-size: 48px;
  }

  .showcase-grid {
    gap: 35px;
  }

  .testimonial-quote {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: 84px;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    padding: 14px 24px 30px;
    background: var(--green);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a {
    padding: 14px 0;
  }

  .dropdown {
    position: static;
    margin-bottom: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown a {
    color: var(--white);
  }

  .has-menu:hover .dropdown,
  .has-menu:focus-within .dropdown {
    display: grid;
  }

  .menu-button {
    display: block;
  }

  .outline-button {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .split-grid,
  .service-grid,
  .news-grid,
  .client-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .section,
  .testimonial-section {
    padding: 90px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 52px;
  }

  .video-feature {
    min-height: 650px;
  }

  .video-copy {
    margin-left: 24px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .tall-card {
    grid-column: auto;
    grid-row: auto;
  }

  .tall-card img,
  .small-card img {
    height: 360px;
  }

  .footer-bottom,
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-left,
  .promo-right {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container,
  .nav-shell {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 146px;
  }

  .footer-logo {
    width: 168px;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 42px;
  }

  .copy-panel h2,
  .section-heading h2,
  .video-copy h2 {
    font-size: 39px;
  }

  .image-panel img {
    height: 320px;
  }

  .stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .stats strong {
    font-size: 42px;
  }

  .service-card {
    min-height: auto;
  }

  .video-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .faq-list summary {
    min-height: 95px;
    padding: 28px 70px 28px 16px;
    font-size: 23px;
  }

  .faq-list p {
    margin-right: 18px;
  }

  .testimonial-quote {
    margin: 42px auto;
    font-size: 31px;
  }

  .client-card {
    padding: 22px 18px;
  }

  .news-card img,
  .tall-card img,
  .small-card img {
    height: 260px;
  }
}

/* Reference-style motion and page presentation refinements */
.site-header {
  backdrop-filter: saturate(120%) blur(2px);
}

.site-header.scrolled,
.site-header.menu-open {
  background: #2a5240;
}

.dropdown {
  top: calc(100% - 10px);
  padding: 18px;
  transform: translateY(18px) scale(0.98);
  transform-origin: top left;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
}

.dropdown a {
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dropdown a:hover {
  transform: translateX(4px);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.52));
}

.hero-content h1 {
  text-shadow: 0 14px 55px rgba(0, 0, 0, 0.34);
}

.hero-content .solid-button,
.section-heading .solid-button {
  min-width: 159px;
}

.intro-section,
.section,
.subpage-section {
  overflow: hidden;
}

.section-heading {
  min-height: 83px;
}

.section-heading h2,
.copy-panel h2,
.subpage-heading h2,
.subpage-copy h2 {
  text-wrap: balance;
}

.image-panel,
.subpage-image {
  position: relative;
  box-shadow: 0 22px 58px rgba(42, 82, 64, 0.14);
}

.image-panel img,
.subpage-image img,
.showcase-card img,
.news-card img {
  transform-origin: center;
}

.service-card,
.page-card {
  background: var(--card);
  box-shadow: 0 4px 18px rgba(42, 82, 64, 0.04);
}

.service-card,
.page-card,
.timeline-card {
  border: 1px solid rgba(42, 82, 64, 0.06);
}

.service-card:hover,
.page-card:hover,
.timeline-card:hover {
  box-shadow: 0 26px 64px rgba(42, 82, 64, 0.13);
}

.page-card,
.timeline-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.timeline-card:hover {
  transform: translateY(-7px);
}

.subpage-hero {
  min-height: 548px;
  padding-top: 118px;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.58) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-hero.png");
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.18);
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 880px;
  font-size: 62px;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.subpage-hero .eyebrow {
  color: #f0b39c;
}

.page-company .subpage-hero,
body[data-topic="overview"] .subpage-hero,
body[data-topic="operating-model"] .subpage-hero,
body[data-topic="india-focus"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-company.png");
}

.page-platform .subpage-hero,
body[data-topic="fintech-software"] .subpage-hero,
body[data-topic="loan-systems"] .subpage-hero,
body[data-topic="data-workflows"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-platform.png");
}

.page-readiness .subpage-hero,
body[data-topic="rbi-pathway"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-rbi-readiness.png");
}

body[data-topic="due-diligence"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-due-diligence.png");
}

.page-governance .subpage-hero,
.page-faq .subpage-hero,
body[data-topic="kyc-aml-tools"] .subpage-hero,
body[data-topic="reporting-workflow"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-kyc-aml.png");
}

.page-insights .subpage-hero,
body[data-topic="risk-dashboards"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-risk-dashboard.png");
}

.page-contact .subpage-hero,
body[data-topic="integration-support"] .subpage-hero {
  background-image: linear-gradient(90deg, rgba(19, 37, 30, 0.9), rgba(19, 37, 30, 0.55) 55%, rgba(19, 37, 30, 0.78)), url("./assets/nexolvea-integration.png");
}

.subpage-section.light {
  background: #e8f8f1;
}

.page-faq .subpage-section.light {
  background: var(--white);
}

.faq-list details {
  background: #e8f8f1;
  border: 1px solid rgba(42, 82, 64, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-list details[open],
.faq-list details:hover {
  background: #edf9f4;
  box-shadow: 0 18px 44px rgba(42, 82, 64, 0.09);
}

.faq-list details:hover {
  transform: translateY(-3px);
}

.testimonial-section {
  background: #f8f5ea;
}

.testimonial-section h6 {
  color: var(--orange);
}

.testimonial-section h6::after {
  bottom: -0.42em;
  height: 1px;
}

.testimonial-quote {
  color: #315642;
  text-wrap: balance;
}

.client-card {
  min-height: 128px;
}

.client-card.active {
  background: var(--white);
}

.socials span {
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 950ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

.reveal[data-reveal="hero"] {
  transform: translate3d(0, 36px, 0);
}

.reveal[data-reveal="left"] {
  transform: translate3d(-58px, 0, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(58px, 0, 0);
}

.reveal[data-reveal="card"] {
  transform: translate3d(0, 68px, 0) scale(0.985);
}

.showcase-card.reveal {
  opacity: 1;
  clip-path: none;
}

.showcase-card.reveal[data-reveal="image-card"] {
  opacity: 1;
  clip-path: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal[data-reveal="scale"] {
  transform: translate(-50%, -50%) scale(0.84);
}

.reveal[data-reveal="image"],
.reveal[data-reveal="image-card"] {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 36px, 0) scale(1.015);
}

.subpage-image.reveal {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.image-panel.reveal {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.reveal.is-visible,
.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible,
.reveal[data-reveal="card"].is-visible,
.reveal[data-reveal="hero"].is-visible,
.reveal[data-reveal="image"].is-visible,
.reveal[data-reveal="image-card"].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

.image-panel.reveal img,
.subpage-image.reveal img {
  transform: scale(1.045);
  transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.image-panel.reveal.is-visible img,
.subpage-image.reveal.is-visible img {
  transform: scale(1);
}

@media (max-width: 900px) {
  .subpage-hero h1 {
    font-size: 48px;
  }

  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"],
  .reveal[data-reveal="card"],
  .reveal[data-reveal="hero"] {
    transform: translate3d(0, 44px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal[data-reveal],
  .image-panel.reveal img,
  .subpage-image.reveal img {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

.subpage-hero {
  min-height: 420px;
  padding-top: 96px;
  text-align: center;
}

.subpage-hero h1 {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  font-size: 58px;
}

.subpage-hero p {
  margin-right: auto;
  margin-left: auto;
  max-width: 790px;
  font-size: 18px;
}

.subpage-hero .eyebrow {
  margin-bottom: 16px;
  color: #f2b39c;
}

.subpage-section.light,
.subpage-section.cream {
  padding-top: 120px;
  padding-bottom: 120px;
}

.subpage-split {
  align-items: center;
}

.subpage-copy .eyebrow,
.subpage-heading .eyebrow {
  position: relative;
  color: var(--orange);
}

.subpage-copy .eyebrow::after,
.subpage-heading .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
}

.subpage-heading.center .eyebrow::after {
  left: 50%;
  right: auto;
  width: 100%;
  transform: translateX(-50%);
}

.subpage-section:not(.light):not(.cream) {
  background: var(--white);
}

.subpage-section.light .subpage-image,
.subpage-section.light .image-panel {
  box-shadow: none;
}

.contact-stack {
  display: grid;
  gap: 28px;
}

.contact-stack .contact-form {
  padding: 32px;
  background: var(--card);
}

.faq-intro-split {
  margin-bottom: 70px;
}

.resource-split {
  align-items: start;
}

.page-card::after,
.service-card::after,
.timeline-card::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 22px;
  background: var(--orange);
  transition: width 260ms ease;
}

.page-card:hover::after,
.service-card:hover::after,
.timeline-card:hover::after {
  width: 56px;
}

@media (max-width: 900px) {
  .subpage-hero {
    min-height: 390px;
    padding-top: 92px;
  }

  .subpage-hero h1 {
    font-size: 44px;
  }
}
